diff --git a/SDK/Include/D2D1.h b/SDK/Include/D2D1.h deleted file mode 100644 index e8768df..0000000 --- a/SDK/Include/D2D1.h +++ /dev/null @@ -1,6996 +0,0 @@ -//--------------------------------------------------------------------------- -// Copyright (c) Microsoft Corporation. All rights reserved. -// -// This file is automatically generated. Please do not edit it directly. -// -// File name: D2D1.h -//--------------------------------------------------------------------------- -#pragma once - - -#ifndef _D2D1_H_ -#define _D2D1_H_ - -#ifndef COM_NO_WINDOWS_H -#include -#endif // #ifndef COM_NO_WINDOWS_H -#include -#include -#include -#include -#include -#ifndef D2D_NO_INCLUDE_D3D10 -#include -#endif // #ifndef D2D_NO_INCLUDE_D3D10 - -#ifndef D2D_USE_C_DEFINITIONS - -// -// We use the 'C' definitions if C++ is not defined -// -#ifndef __cplusplus -#define D2D_USE_C_DEFINITIONS -#endif - -#endif // #ifndef D2D_USE_C_DEFINITIONS - -#ifndef D2D1_DECLARE_INTERFACE -#define D2D1_DECLARE_INTERFACE(X) DECLSPEC_UUID(X) DECLSPEC_NOVTABLE -#endif - -// -// Forward declarations here -// - -typedef interface IDWriteTextFormat IDWriteTextFormat; -typedef interface IDWriteTextLayout IDWriteTextLayout; -typedef interface IDWriteRenderingParams IDWriteRenderingParams; -typedef interface IDXGISurface IDXGISurface; -typedef interface IWICBitmap IWICBitmap; -typedef interface IWICBitmapSource IWICBitmapSource; - -typedef struct DWRITE_GLYPH_RUN DWRITE_GLYPH_RUN; - -#ifndef D2D_USE_C_DEFINITIONS - -interface ID2D1Factory; -interface ID2D1RenderTarget; -interface ID2D1BitmapRenderTarget; -interface ID2D1SimplifiedGeometrySink; -interface ID2D1TessellationSink; -interface ID2D1Geometry; -interface ID2D1Brush; - -#else - -typedef interface ID2D1Factory ID2D1Factory; -typedef interface ID2D1RenderTarget ID2D1RenderTarget; -typedef interface ID2D1BitmapRenderTarget ID2D1BitmapRenderTarget; -typedef interface ID2D1SimplifiedGeometrySink ID2D1SimplifiedGeometrySink;; -typedef interface ID2D1TessellationSink ID2D1TessellationSink; -typedef interface ID2D1Geometry ID2D1Geometry; -typedef interface ID2D1Brush ID2D1Brush; - -#endif - -#define D2D1_INVALID_TAG ULONGLONG_MAX -#define D2D1_DEFAULT_FLATTENING_TOLERANCE (0.25f) - -//+----------------------------------------------------------------------------- -// -// Enum: -// D2D1_ALPHA_MODE -// -// Synopsis: -// Qualifies how alpha is to be treated in a bitmap or render target containing -// alpha. -// -//------------------------------------------------------------------------------ -typedef enum D2D1_ALPHA_MODE -{ - - // - // Alpha mode should be determined implicitly. Some target surfaces do not supply - // or imply this information in which case alpha must be specified. - // - D2D1_ALPHA_MODE_UNKNOWN = 0, - - // - // Treat the alpha as premultipled. - // - D2D1_ALPHA_MODE_PREMULTIPLIED = 1, - - // - // Opacity is in the 'A' component only. - // - D2D1_ALPHA_MODE_STRAIGHT = 2, - - // - // Ignore any alpha channel information. - // - D2D1_ALPHA_MODE_IGNORE = 3, - D2D1_ALPHA_MODE_FORCE_DWORD = 0xffffffff - -} D2D1_ALPHA_MODE; - - -//+----------------------------------------------------------------------------- -// -// Enum: -// D2D1_GAMMA -// -// Synopsis: -// This determines what gamma is used for interpolation/blending. -// -//------------------------------------------------------------------------------ -typedef enum D2D1_GAMMA -{ - - // - // Colors are manipulated in 2.2 gamma color space. - // - D2D1_GAMMA_2_2 = 0, - - // - // Colors are manipulated in 1.0 gamma color space. - // - D2D1_GAMMA_1_0 = 1, - D2D1_GAMMA_FORCE_DWORD = 0xffffffff - -} D2D1_GAMMA; - - -//+----------------------------------------------------------------------------- -// -// Enum: -// D2D1_OPACITY_MASK_CONTENT -// -// Synopsis: -// Specifies what the contents are of an opacity mask. -// -//------------------------------------------------------------------------------ -typedef enum D2D1_OPACITY_MASK_CONTENT -{ - - // - // The mask contains geometries or bitmaps. - // - D2D1_OPACITY_MASK_CONTENT_GRAPHICS = 0, - - // - // The mask contains text rendered using one of the natural text modes. - // - D2D1_OPACITY_MASK_CONTENT_TEXT_NATURAL = 1, - - // - // The mask contains text rendered using one of the GDI compatible text modes. - // - D2D1_OPACITY_MASK_CONTENT_TEXT_GDI_COMPATIBLE = 2, - D2D1_OPACITY_MASK_CONTENT_FORCE_DWORD = 0xffffffff - -} D2D1_OPACITY_MASK_CONTENT; - - -//+----------------------------------------------------------------------------- -// -// Enum: -// D2D1_EXTEND_MODE -// -// Synopsis: -// Enum which descibes how to sample from a source outside it's base tile. -// -//------------------------------------------------------------------------------ -typedef enum D2D1_EXTEND_MODE -{ - - // - // Extend the edges of the source out by clamping sample points outside the source - // to the edges. - // - D2D1_EXTEND_MODE_CLAMP = 0, - - // - // The base tile is drawn untransformed and the remainder are filled by repeating - // the base tile. - // - D2D1_EXTEND_MODE_WRAP = 1, - - // - // The same as wrap, but alternate tiles are flipped The base tile is drawn - // untransformed. - // - D2D1_EXTEND_MODE_MIRROR = 2, - D2D1_EXTEND_MODE_FORCE_DWORD = 0xffffffff - -} D2D1_EXTEND_MODE; - - -//+----------------------------------------------------------------------------- -// -// Enum: -// D2D1_ANTIALIAS_MODE -// -// Synopsis: -// Enum which descibes the manner in which we render edges of non-text primitives. -// -//------------------------------------------------------------------------------ -typedef enum D2D1_ANTIALIAS_MODE -{ - - // - // The edges of each primitive are antialiased sequentially. - // - D2D1_ANTIALIAS_MODE_PER_PRIMITIVE = 0, - - // - // Each pixel is rendered if its pixel center is contained by the geometry. - // - D2D1_ANTIALIAS_MODE_ALIASED = 1, - D2D1_ANTIALIAS_MODE_FORCE_DWORD = 0xffffffff - -} D2D1_ANTIALIAS_MODE; - - -//+----------------------------------------------------------------------------- -// -// Enum: -// D2D1_TEXT_ANTIALIAS_MODE -// -//------------------------------------------------------------------------------ -typedef enum D2D1_TEXT_ANTIALIAS_MODE -{ - - // - // Render text using the current system setting. - // - D2D1_TEXT_ANTIALIAS_MODE_DEFAULT = 0, - - // - // Render text using ClearType. - // - D2D1_TEXT_ANTIALIAS_MODE_CLEARTYPE = 1, - - // - // Render text using gray-scale. - // - D2D1_TEXT_ANTIALIAS_MODE_GRAYSCALE = 2, - - // - // Render text aliased. - // - D2D1_TEXT_ANTIALIAS_MODE_ALIASED = 3, - D2D1_TEXT_ANTIALIAS_MODE_FORCE_DWORD = 0xffffffff - -} D2D1_TEXT_ANTIALIAS_MODE; - - -//+----------------------------------------------------------------------------- -// -// Enum: -// D2D1_BITMAP_INTERPOLATION_MODE -// -//------------------------------------------------------------------------------ -typedef enum D2D1_BITMAP_INTERPOLATION_MODE -{ - - // - // Nearest Neighbor filtering. Also known as nearest pixel or nearest point - // sampling. - // - D2D1_BITMAP_INTERPOLATION_MODE_NEAREST_NEIGHBOR = 0, - - // - // Linear filtering. - // - D2D1_BITMAP_INTERPOLATION_MODE_LINEAR = 1, - D2D1_BITMAP_INTERPOLATION_MODE_FORCE_DWORD = 0xffffffff - -} D2D1_BITMAP_INTERPOLATION_MODE; - - -//+----------------------------------------------------------------------------- -// -// Flag: -// D2D1_DRAW_TEXT_OPTIONS -// -// Synopsis: -// Modifications made to the draw text call that influence how the text is -// rendered. -// -//------------------------------------------------------------------------------ -typedef enum D2D1_DRAW_TEXT_OPTIONS -{ - - // - // Do not snap the baseline of the text vertically. - // - D2D1_DRAW_TEXT_OPTIONS_NO_SNAP = 0x00000001, - - // - // Clip the text to the content bounds. - // - D2D1_DRAW_TEXT_OPTIONS_CLIP = 0x00000002, - D2D1_DRAW_TEXT_OPTIONS_NONE = 0x00000000, - D2D1_DRAW_TEXT_OPTIONS_FORCE_DWORD = 0xffffffff - -} D2D1_DRAW_TEXT_OPTIONS; - -DEFINE_ENUM_FLAG_OPERATORS(D2D1_DRAW_TEXT_OPTIONS); - - -//+----------------------------------------------------------------------------- -// -// Struct: -// D2D1_PIXEL_FORMAT -// -//------------------------------------------------------------------------------ -typedef struct D2D1_PIXEL_FORMAT -{ - DXGI_FORMAT format; - D2D1_ALPHA_MODE alphaMode; - -} D2D1_PIXEL_FORMAT; - -typedef D2D_POINT_2U D2D1_POINT_2U; -typedef D2D_POINT_2F D2D1_POINT_2F; -typedef D2D_RECT_F D2D1_RECT_F; -typedef D2D_RECT_U D2D1_RECT_U; -typedef D2D_SIZE_F D2D1_SIZE_F; -typedef D2D_SIZE_U D2D1_SIZE_U; -typedef D2D_COLOR_F D2D1_COLOR_F; -typedef D2D_MATRIX_3X2_F D2D1_MATRIX_3X2_F; -typedef UINT64 D2D1_TAG; - -//+----------------------------------------------------------------------------- -// -// Struct: -// D2D1_BITMAP_PROPERTIES -// -//------------------------------------------------------------------------------ -typedef struct D2D1_BITMAP_PROPERTIES -{ - D2D1_PIXEL_FORMAT pixelFormat; - FLOAT dpiX; - FLOAT dpiY; - -} D2D1_BITMAP_PROPERTIES; - - -//+----------------------------------------------------------------------------- -// -// Struct: -// D2D1_GRADIENT_STOP -// -//------------------------------------------------------------------------------ -typedef struct D2D1_GRADIENT_STOP -{ - FLOAT position; - D2D1_COLOR_F color; - -} D2D1_GRADIENT_STOP; - - -//+----------------------------------------------------------------------------- -// -// Struct: -// D2D1_BRUSH_PROPERTIES -// -//------------------------------------------------------------------------------ -typedef struct D2D1_BRUSH_PROPERTIES -{ - FLOAT opacity; - D2D1_MATRIX_3X2_F transform; - -} D2D1_BRUSH_PROPERTIES; - - -//+----------------------------------------------------------------------------- -// -// Struct: -// D2D1_BITMAP_BRUSH_PROPERTIES -// -//------------------------------------------------------------------------------ -typedef struct D2D1_BITMAP_BRUSH_PROPERTIES -{ - D2D1_EXTEND_MODE extendModeX; - D2D1_EXTEND_MODE extendModeY; - D2D1_BITMAP_INTERPOLATION_MODE interpolationMode; - -} D2D1_BITMAP_BRUSH_PROPERTIES; - - -//+----------------------------------------------------------------------------- -// -// Struct: -// D2D1_LINEAR_GRADIENT_BRUSH_PROPERTIES -// -//------------------------------------------------------------------------------ -typedef struct D2D1_LINEAR_GRADIENT_BRUSH_PROPERTIES -{ - D2D1_POINT_2F startPoint; - D2D1_POINT_2F endPoint; - -} D2D1_LINEAR_GRADIENT_BRUSH_PROPERTIES; - - -//+----------------------------------------------------------------------------- -// -// Struct: -// D2D1_RADIAL_GRADIENT_BRUSH_PROPERTIES -// -//------------------------------------------------------------------------------ -typedef struct D2D1_RADIAL_GRADIENT_BRUSH_PROPERTIES -{ - D2D1_POINT_2F center; - D2D1_POINT_2F gradientOriginOffset; - FLOAT radiusX; - FLOAT radiusY; - -} D2D1_RADIAL_GRADIENT_BRUSH_PROPERTIES; - - -//+----------------------------------------------------------------------------- -// -// Enum: -// D2D1_ARC_SIZE -// -// Synopsis: -// Differentiates which of the two possible arcs could match the given arc -// parameters. -// -//------------------------------------------------------------------------------ -typedef enum D2D1_ARC_SIZE -{ - D2D1_ARC_SIZE_SMALL = 0, - D2D1_ARC_SIZE_LARGE = 1, - D2D1_ARC_SIZE_FORCE_DWORD = 0xffffffff - -} D2D1_ARC_SIZE; - - -//+----------------------------------------------------------------------------- -// -// Enum: -// D2D1_CAP_STYLE -// -// Synopsis: -// Enum which descibes the drawing of the ends of a line. -// -//------------------------------------------------------------------------------ -typedef enum D2D1_CAP_STYLE -{ - - // - // Flat line cap. - // - D2D1_CAP_STYLE_FLAT = 0, - - // - // Square line cap. - // - D2D1_CAP_STYLE_SQUARE = 1, - - // - // Round line cap. - // - D2D1_CAP_STYLE_ROUND = 2, - - // - // Triangle line cap. - // - D2D1_CAP_STYLE_TRIANGLE = 3, - D2D1_CAP_STYLE_FORCE_DWORD = 0xffffffff - -} D2D1_CAP_STYLE; - - -//+----------------------------------------------------------------------------- -// -// Enum: -// D2D1_DASH_STYLE -// -//------------------------------------------------------------------------------ -typedef enum D2D1_DASH_STYLE -{ - D2D1_DASH_STYLE_SOLID = 0, - D2D1_DASH_STYLE_DASH = 1, - D2D1_DASH_STYLE_DOT = 2, - D2D1_DASH_STYLE_DASH_DOT = 3, - D2D1_DASH_STYLE_DASH_DOT_DOT = 4, - D2D1_DASH_STYLE_CUSTOM = 5, - D2D1_DASH_STYLE_FORCE_DWORD = 0xffffffff - -} D2D1_DASH_STYLE; - - -//+----------------------------------------------------------------------------- -// -// Enum: -// D2D1_LINE_JOIN -// -// Synopsis: -// Enum which descibes the drawing of the corners on the line. -// -//------------------------------------------------------------------------------ -typedef enum D2D1_LINE_JOIN -{ - - // - // Miter join. - // - D2D1_LINE_JOIN_MITER = 0, - - // - // Bevel join. - // - D2D1_LINE_JOIN_BEVEL = 1, - - // - // Round join. - // - D2D1_LINE_JOIN_ROUND = 2, - - // - // Miter/Bevel join. - // - D2D1_LINE_JOIN_MITER_OR_BEVEL = 3, - D2D1_LINE_JOIN_FORCE_DWORD = 0xffffffff - -} D2D1_LINE_JOIN; - - -//+----------------------------------------------------------------------------- -// -// Enum: -// D2D1_COMBINE_MODE -// -// Synopsis: -// This enumeration describes the type of combine operation to be performed. -// -//------------------------------------------------------------------------------ -typedef enum D2D1_COMBINE_MODE -{ - - // - // Produce a geometry representing the set of points contained in either - // the first or the second geometry. - // - D2D1_COMBINE_MODE_UNION = 0, - - // - // Produce a geometry representing the set of points common to the first - // and the second geometries. - // - D2D1_COMBINE_MODE_INTERSECT = 1, - - // - // Produce a geometry representing the set of points contained in the - // first geometry or the second geometry, but not both. - // - D2D1_COMBINE_MODE_XOR = 2, - - // - // Produce a geometry representing the set of points contained in the - // first geometry but not the second geometry. - // - D2D1_COMBINE_MODE_EXCLUDE = 3, - D2D1_COMBINE_MODE_FORCE_DWORD = 0xffffffff - -} D2D1_COMBINE_MODE; - - -//+----------------------------------------------------------------------------- -// -// Enum: -// D2D1_GEOMETRY_RELATION -// -//------------------------------------------------------------------------------ -typedef enum D2D1_GEOMETRY_RELATION -{ - - // - // The relation between the geometries couldn't be determined. This value is never - // returned by any D2D method. - // - D2D1_GEOMETRY_RELATION_UNKNOWN = 0, - - // - // The two geometries do not intersect at all. - // - D2D1_GEOMETRY_RELATION_DISJOINT = 1, - - // - // The passed in geometry is entirely contained by the object. - // - D2D1_GEOMETRY_RELATION_IS_CONTAINED = 2, - - // - // The object entirely contains the passed in geometry. - // - D2D1_GEOMETRY_RELATION_CONTAINS = 3, - - // - // The two geometries overlap but neither completely contains the other. - // - D2D1_GEOMETRY_RELATION_OVERLAP = 4, - D2D1_GEOMETRY_RELATION_FORCE_DWORD = 0xffffffff - -} D2D1_GEOMETRY_RELATION; - - -//+----------------------------------------------------------------------------- -// -// Enum: -// D2D1_GEOMETRY_SIMPLIFICATION_OPTION -// -// Synopsis: -// Specifies how simple the output of a simplified geometry sink should be. -// -//------------------------------------------------------------------------------ -typedef enum D2D1_GEOMETRY_SIMPLIFICATION_OPTION -{ - D2D1_GEOMETRY_SIMPLIFICATION_OPTION_CUBICS_AND_LINES = 0, - D2D1_GEOMETRY_SIMPLIFICATION_OPTION_LINES = 1, - D2D1_GEOMETRY_SIMPLIFICATION_OPTION_FORCE_DWORD = 0xffffffff - -} D2D1_GEOMETRY_SIMPLIFICATION_OPTION; - - -//+----------------------------------------------------------------------------- -// -// Enum: -// D2D1_FIGURE_BEGIN -// -// Synopsis: -// Indicates whether the given figure is filled or hollow. -// -//------------------------------------------------------------------------------ -typedef enum D2D1_FIGURE_BEGIN -{ - D2D1_FIGURE_BEGIN_FILLED = 0, - D2D1_FIGURE_BEGIN_HOLLOW = 1, - D2D1_FIGURE_BEGIN_FORCE_DWORD = 0xffffffff - -} D2D1_FIGURE_BEGIN; - - -//+----------------------------------------------------------------------------- -// -// Enum: -// D2D1_FIGURE_END -// -// Synopsis: -// Indicates whether the figure ir open or closed on its end point. -// -//------------------------------------------------------------------------------ -typedef enum D2D1_FIGURE_END -{ - D2D1_FIGURE_END_OPEN = 0, - D2D1_FIGURE_END_CLOSED = 1, - D2D1_FIGURE_END_FORCE_DWORD = 0xffffffff - -} D2D1_FIGURE_END; - - -//+----------------------------------------------------------------------------- -// -// Struct: -// D2D1_BEZIER_SEGMENT -// -// Synopsis: -// Describes a cubic bezier in a path. -// -//------------------------------------------------------------------------------ -typedef struct D2D1_BEZIER_SEGMENT -{ - D2D1_POINT_2F point1; - D2D1_POINT_2F point2; - D2D1_POINT_2F point3; - -} D2D1_BEZIER_SEGMENT; - - -//+----------------------------------------------------------------------------- -// -// Struct: -// D2D1_TRIANGLE -// -// Synopsis: -// Describes a triangle. -// -//------------------------------------------------------------------------------ -typedef struct D2D1_TRIANGLE -{ - D2D1_POINT_2F point1; - D2D1_POINT_2F point2; - D2D1_POINT_2F point3; - -} D2D1_TRIANGLE; - - -//+----------------------------------------------------------------------------- -// -// Flag: -// D2D1_PATH_SEGMENT -// -// Synopsis: -// Indicates whether the given segment should be stroked, or, if the join between -// this segment and the previous one should be smooth. -// -//------------------------------------------------------------------------------ -typedef enum D2D1_PATH_SEGMENT -{ - D2D1_PATH_SEGMENT_NONE = 0x00000000, - D2D1_PATH_SEGMENT_FORCE_UNSTROKED = 0x00000001, - D2D1_PATH_SEGMENT_FORCE_ROUND_LINE_JOIN = 0x00000002, - D2D1_PATH_SEGMENT_FORCE_DWORD = 0xffffffff - -} D2D1_PATH_SEGMENT; - -DEFINE_ENUM_FLAG_OPERATORS(D2D1_PATH_SEGMENT); - - -//+----------------------------------------------------------------------------- -// -// Enum: -// D2D1_SWEEP_DIRECTION -// -//------------------------------------------------------------------------------ -typedef enum D2D1_SWEEP_DIRECTION -{ - D2D1_SWEEP_DIRECTION_COUNTER_CLOCKWISE = 0, - D2D1_SWEEP_DIRECTION_CLOCKWISE = 1, - D2D1_SWEEP_DIRECTION_FORCE_DWORD = 0xffffffff - -} D2D1_SWEEP_DIRECTION; - - -//+----------------------------------------------------------------------------- -// -// Enum: -// D2D1_FILL_MODE -// -//------------------------------------------------------------------------------ -typedef enum D2D1_FILL_MODE -{ - D2D1_FILL_MODE_ALTERNATE = 0, - D2D1_FILL_MODE_WINDING = 1, - D2D1_FILL_MODE_FORCE_DWORD = 0xffffffff - -} D2D1_FILL_MODE; - - -//+----------------------------------------------------------------------------- -// -// Struct: -// D2D1_ARC_SEGMENT -// -// Synopsis: -// Describes an arc that is defined as part of a path. -// -//------------------------------------------------------------------------------ -typedef struct D2D1_ARC_SEGMENT -{ - D2D1_POINT_2F point; - D2D1_SIZE_F size; - FLOAT rotationAngle; - D2D1_SWEEP_DIRECTION sweepDirection; - D2D1_ARC_SIZE arcSize; - -} D2D1_ARC_SEGMENT; - - -//+----------------------------------------------------------------------------- -// -// Struct: -// D2D1_QUADRATIC_BEZIER_SEGMENT -// -//------------------------------------------------------------------------------ -typedef struct D2D1_QUADRATIC_BEZIER_SEGMENT -{ - D2D1_POINT_2F point1; - D2D1_POINT_2F point2; - -} D2D1_QUADRATIC_BEZIER_SEGMENT; - - -//+----------------------------------------------------------------------------- -// -// Struct: -// D2D1_ELLIPSE -// -//------------------------------------------------------------------------------ -typedef struct D2D1_ELLIPSE -{ - D2D1_POINT_2F point; - FLOAT radiusX; - FLOAT radiusY; - -} D2D1_ELLIPSE; - - -//+----------------------------------------------------------------------------- -// -// Struct: -// D2D1_ROUNDED_RECT -// -//------------------------------------------------------------------------------ -typedef struct D2D1_ROUNDED_RECT -{ - D2D1_RECT_F rect; - FLOAT radiusX; - FLOAT radiusY; - -} D2D1_ROUNDED_RECT; - - -//+----------------------------------------------------------------------------- -// -// Struct: -// D2D1_STROKE_STYLE_PROPERTIES -// -// Synopsis: -// Properties, aside from the width, that allow geometric penning to be specified. -// -//------------------------------------------------------------------------------ -typedef struct D2D1_STROKE_STYLE_PROPERTIES -{ - D2D1_CAP_STYLE startCap; - D2D1_CAP_STYLE endCap; - D2D1_CAP_STYLE dashCap; - D2D1_LINE_JOIN lineJoin; - FLOAT miterLimit; - D2D1_DASH_STYLE dashStyle; - FLOAT dashOffset; - -} D2D1_STROKE_STYLE_PROPERTIES; - - -//+----------------------------------------------------------------------------- -// -// Flag: -// D2D1_LAYER_OPTIONS -// -// Synopsis: -// Specified options that can be applied when a layer resource is applied to create -// a layer. -// -//------------------------------------------------------------------------------ -typedef enum D2D1_LAYER_OPTIONS -{ - D2D1_LAYER_OPTIONS_NONE = 0x00000000, - - // - // The layer will render correctly for ClearType text. If the render target was set - // to ClearType previously, the layer will continue to render ClearType. If the - // render target was set to ClearType and this option is not specified, the render - // target will be set to render gray-scale until the layer is popped. The caller - // can override this default by calling SetTextAntialiasMode while within the - // layer. This flag is slightly slower than the default. - // - D2D1_LAYER_OPTIONS_INITIALIZE_FOR_CLEARTYPE = 0x00000001, - D2D1_LAYER_OPTIONS_FORCE_DWORD = 0xffffffff - -} D2D1_LAYER_OPTIONS; - -DEFINE_ENUM_FLAG_OPERATORS(D2D1_LAYER_OPTIONS); - - -//+----------------------------------------------------------------------------- -// -// Struct: -// D2D1_LAYER_PARAMETERS -// -//------------------------------------------------------------------------------ -typedef struct D2D1_LAYER_PARAMETERS -{ - - // - // The rectangular clip that will be applied to the layer. The clip is affected by - // the world transform. Content outside of the content bounds will not render. - // - D2D1_RECT_F contentBounds; - - // - // A general mask that can be optionally applied to the content. Content not inside - // the fill of the mask will not be rendered. - // - __field_ecount_opt(1) ID2D1Geometry *geometricMask; - - // - // Specifies whether the mask should be aliased or antialiased. - // - D2D1_ANTIALIAS_MODE maskAntialiasMode; - - // - // An additional transform that may be applied to the mask in addition to the - // current world transform. - // - D2D1_MATRIX_3X2_F maskTransform; - - // - // The opacity with which all of the content in the layer will be blended back to - // the target when the layer is popped. - // - FLOAT opacity; - - // - // An additional brush that can be applied to the layer. Only the opacity channel - // is sampled from this brush and multiplied both with the layer content and the - // over-all layer opacity. - // - __field_ecount_opt(1) ID2D1Brush *opacityBrush; - - // - // Specifies if ClearType will be rendered into the layer. - // - D2D1_LAYER_OPTIONS layerOptions; - -} D2D1_LAYER_PARAMETERS; - - -//+----------------------------------------------------------------------------- -// -// Flag: -// D2D1_WINDOW_STATE -// -//------------------------------------------------------------------------------ -typedef enum D2D1_WINDOW_STATE -{ - D2D1_WINDOW_STATE_NONE = 0x0000000, - D2D1_WINDOW_STATE_OCCLUDED = 0x0000001, - D2D1_WINDOW_STATE_FORCE_DWORD = 0xffffffff - -} D2D1_WINDOW_STATE; - -DEFINE_ENUM_FLAG_OPERATORS(D2D1_WINDOW_STATE); - - -//+----------------------------------------------------------------------------- -// -// Enum: -// D2D1_RENDER_TARGET_TYPE -// -//------------------------------------------------------------------------------ -typedef enum D2D1_RENDER_TARGET_TYPE -{ - - // - // D2D is free to choose the render target type for the caller. - // - D2D1_RENDER_TARGET_TYPE_DEFAULT = 0, - - // - // The render target will render using the CPU. - // - D2D1_RENDER_TARGET_TYPE_SOFTWARE = 1, - - // - // The render target will render using the GPU. - // - D2D1_RENDER_TARGET_TYPE_HARDWARE = 2, - D2D1_RENDER_TARGET_TYPE_FORCE_DWORD = 0xffffffff - -} D2D1_RENDER_TARGET_TYPE; - - -//+----------------------------------------------------------------------------- -// -// Enum: -// D2D1_FEATURE_LEVEL -// -//------------------------------------------------------------------------------ -typedef enum D2D1_FEATURE_LEVEL -{ - - // - // The caller does not require a particular underlying D3D device level. - // - D2D1_FEATURE_LEVEL_DEFAULT = 0, - - // - // The D3D device level is DX9 compatible. - // - D2D1_FEATURE_LEVEL_9 = D3D10_FEATURE_LEVEL_9_1, - - // - // The D3D device level is DX10 compatible. - // - D2D1_FEATURE_LEVEL_10 = D3D10_FEATURE_LEVEL_10_0, - D2D1_FEATURE_LEVEL_FORCE_DWORD = 0xffffffff - -} D2D1_FEATURE_LEVEL; - - -//+----------------------------------------------------------------------------- -// -// Flag: -// D2D1_RENDER_TARGET_USAGE -// -//------------------------------------------------------------------------------ -typedef enum D2D1_RENDER_TARGET_USAGE -{ - D2D1_RENDER_TARGET_USAGE_NONE = 0x00000000, - - // - // Rendering will occur locally, if a terminal-services session is established, the - // bitmap updates will be sent to the terminal services client. - // - D2D1_RENDER_TARGET_USAGE_FORCE_BITMAP_REMOTING = 0x00000001, - - // - // The render target will allow a call to GetDC on the IGdiInteropRenderTarget - // interface. Rendering will also occur locally. - // - D2D1_RENDER_TARGET_USAGE_GDI_COMPATIBLE = 0x00000002, - D2D1_RENDER_TARGET_USAGE_FORCE_DWORD = 0xffffffff - -} D2D1_RENDER_TARGET_USAGE; - -DEFINE_ENUM_FLAG_OPERATORS(D2D1_RENDER_TARGET_USAGE); - - -//+----------------------------------------------------------------------------- -// -// Flag: -// D2D1_PRESENT_OPTIONS -// -// Synopsis: -// Describes how present should behave. -// -//------------------------------------------------------------------------------ -typedef enum D2D1_PRESENT_OPTIONS -{ - D2D1_PRESENT_OPTIONS_NONE = 0x00000000, - - // - // Keep the target contents intact through present. - // - D2D1_PRESENT_OPTIONS_RETAIN_CONTENTS = 0x00000001, - - // - // Do not wait for display refresh to commit changes to display. - // - D2D1_PRESENT_OPTIONS_IMMEDIATELY = 0x00000002, - D2D1_PRESENT_OPTIONS_FORCE_DWORD = 0xffffffff - -} D2D1_PRESENT_OPTIONS; - -DEFINE_ENUM_FLAG_OPERATORS(D2D1_PRESENT_OPTIONS); - - -//+----------------------------------------------------------------------------- -// -// Struct: -// D2D1_RENDER_TARGET_PROPERTIES -// -//------------------------------------------------------------------------------ -typedef struct D2D1_RENDER_TARGET_PROPERTIES -{ - D2D1_RENDER_TARGET_TYPE type; - D2D1_PIXEL_FORMAT pixelFormat; - FLOAT dpiX; - FLOAT dpiY; - D2D1_RENDER_TARGET_USAGE usage; - D2D1_FEATURE_LEVEL minLevel; - -} D2D1_RENDER_TARGET_PROPERTIES; - - -//+----------------------------------------------------------------------------- -// -// Struct: -// D2D1_HWND_RENDER_TARGET_PROPERTIES -// -//------------------------------------------------------------------------------ -typedef struct D2D1_HWND_RENDER_TARGET_PROPERTIES -{ - HWND hwnd; - D2D1_SIZE_U pixelSize; - D2D1_PRESENT_OPTIONS presentOptions; - -} D2D1_HWND_RENDER_TARGET_PROPERTIES; - - -//+----------------------------------------------------------------------------- -// -// Flag: -// D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS -// -//------------------------------------------------------------------------------ -typedef enum D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS -{ - D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS_NONE = 0x00000000, - - // - // The compatible render target will allow a call to GetDC on the - // IGdiInteropRenderTarget interface. This can be specified even if the parent - // render target is not GDI compatible. - // - D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS_GDI_COMPATIBLE = 0x00000001, - D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS_FORCE_DWORD = 0xffffffff - -} D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS; - -DEFINE_ENUM_FLAG_OPERATORS(D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS); - - -//+----------------------------------------------------------------------------- -// -// Struct: -// D2D1_DRAWING_STATE_DESCRIPTION -// -// Synopsis: -// Allows the drawing state to be atomically created. This also specifies the -// drawing state that is saved into an IDrawingStateBlock object. -// -//------------------------------------------------------------------------------ -typedef struct D2D1_DRAWING_STATE_DESCRIPTION -{ - D2D1_ANTIALIAS_MODE antialiasMode; - D2D1_TEXT_ANTIALIAS_MODE textAntialiasMode; - D2D1_TAG tag1; - D2D1_TAG tag2; - D2D1_MATRIX_3X2_F transform; - -} D2D1_DRAWING_STATE_DESCRIPTION; - - -//+----------------------------------------------------------------------------- -// -// Enum: -// D2D1_DC_INITIALIZE_MODE -// -//------------------------------------------------------------------------------ -typedef enum D2D1_DC_INITIALIZE_MODE -{ - - // - // The contents of the D2D render target will be copied to the DC. - // - D2D1_DC_INITIALIZE_MODE_COPY = 0, - - // - // The contents of the DC will be cleared. - // - D2D1_DC_INITIALIZE_MODE_CLEAR = 1, - D2D1_DC_INITIALIZE_MODE_FORCE_DWORD = 0xffffffff - -} D2D1_DC_INITIALIZE_MODE; - - -//+----------------------------------------------------------------------------- -// -// Enum: -// D2D1_DEBUG_LEVEL -// -// Synopsis: -// Indicates the debug level to be outputed by the debug layer. -// -//------------------------------------------------------------------------------ -typedef enum D2D1_DEBUG_LEVEL -{ - D2D1_DEBUG_LEVEL_NONE = 0, - D2D1_DEBUG_LEVEL_ERROR = 1, - D2D1_DEBUG_LEVEL_WARNING = 2, - D2D1_DEBUG_LEVEL_INFORMATION = 3, - D2D1_DEBUG_LEVEL_FORCE_DWORD = 0xffffffff - -} D2D1_DEBUG_LEVEL; - - -//+----------------------------------------------------------------------------- -// -// Enum: -// D2D1_FACTORY_TYPE -// -// Synopsis: -// Specifies the threading model of the created factory and all of its derived -// resources. -// -//------------------------------------------------------------------------------ -typedef enum D2D1_FACTORY_TYPE -{ - - // - // The resulting factory and derived resources may only be invoked serially. - // Reference counts on resources are interlocked, however, resource and render - // target state is not protected from multi-threaded access. - // - D2D1_FACTORY_TYPE_SINGLE_THREADED = 0, - - // - // The resulting factory may be invoked from multiple threads. Returned resources - // use interlocked reference counting and their state is protected. - // - D2D1_FACTORY_TYPE_MULTI_THREADED = 1, - D2D1_FACTORY_TYPE_FORCE_DWORD = 0xffffffff - -} D2D1_FACTORY_TYPE; - - -//+----------------------------------------------------------------------------- -// -// Struct: -// D2D1_FACTORY_OPTIONS -// -// Synopsis: -// Allows additional parameters for factory creation. -// -//------------------------------------------------------------------------------ -typedef struct D2D1_FACTORY_OPTIONS -{ - - // - // Requests a certain level of debugging information from the debug layer. This - // parameter is ignored if the debug layer DLL is not present. - // - D2D1_DEBUG_LEVEL debugLevel; - -} D2D1_FACTORY_OPTIONS; - - -#ifndef D2D_USE_C_DEFINITIONS - - - -//+----------------------------------------------------------------------------- -// -// Interface: -// ID2D1Resource -// -// Synopsis: -// The root interface for all resources in D2D. -// -//------------------------------------------------------------------------------ -interface D2D1_DECLARE_INTERFACE("2cd90691-12e2-11dc-9fed-001143a055f9") ID2D1Resource : public IUnknown -{ - - - // - // Retrieve the factory associated with this resource. - // - STDMETHOD_(void, GetFactory)( - __deref_out ID2D1Factory **factory - ) CONST PURE; -}; // interface ID2D1Resource - - - -//+----------------------------------------------------------------------------- -// -// Interface: -// ID2D1Bitmap -// -// Synopsis: -// Root bitmap resource, linearly scaled on a draw call. -// -//------------------------------------------------------------------------------ -interface D2D1_DECLARE_INTERFACE("a2296057-ea42-4099-983b-539fb6505426") ID2D1Bitmap : public ID2D1Resource -{ - - - // - // Returns the size of the bitmap in resolution independent units. - // - STDMETHOD_(D2D1_SIZE_F, GetSize)( - ) CONST PURE; - - - // - // Returns the size of the bitmap in resolution dependent units, (pixels). - // - STDMETHOD_(D2D1_SIZE_U, GetPixelSize)( - ) CONST PURE; - - - // - // Retrieve the format of the bitmap. - // - STDMETHOD_(D2D1_PIXEL_FORMAT, GetPixelFormat)( - ) CONST PURE; - - - // - // Return the DPI of the bitmap. - // - STDMETHOD_(void, GetDpi)( - __out FLOAT *dpiX, - __out FLOAT *dpiY - ) CONST PURE; - - STDMETHOD(CopyFromBitmap)( - __in_opt CONST D2D1_POINT_2U *destPoint, - __in ID2D1Bitmap *bitmap, - __in_opt CONST D2D1_RECT_U *srcRect - ) PURE; - - STDMETHOD(CopyFromRenderTarget)( - __in_opt CONST D2D1_POINT_2U *destPoint, - __in ID2D1RenderTarget *renderTarget, - __in_opt CONST D2D1_RECT_U *srcRect - ) PURE; - - STDMETHOD(CopyFromMemory)( - __in_opt CONST D2D1_RECT_U *dstRect, - __in CONST void *srcData, - UINT32 pitch - ) PURE; -}; // interface ID2D1Bitmap - - - -//+----------------------------------------------------------------------------- -// -// Interface: -// ID2D1GradientStopCollection -// -// Synopsis: -// Represents an collection of gradient stops that can then be the source resource -// for either a linear or radial gradient brush. -// -//------------------------------------------------------------------------------ -interface D2D1_DECLARE_INTERFACE("2cd906a7-12e2-11dc-9fed-001143a055f9") ID2D1GradientStopCollection : public ID2D1Resource -{ - - - // - // Returns the number of stops in the gradient. - // - STDMETHOD_(UINT32, GetGradientStopCount)( - ) CONST PURE; - - - // - // Copies the gradient stops from the collection into the caller's interface. - // - STDMETHOD_(void, GetGradientStops)( - __out_ecount(gradientStopsCount) D2D1_GRADIENT_STOP *gradientStops, - UINT gradientStopsCount - ) CONST PURE; - - - // - // Returns whether the interpolation occurs with 1.0 or 2.2 gamma. - // - STDMETHOD_(D2D1_GAMMA, GetColorInterpolationGamma)( - ) CONST PURE; - - STDMETHOD_(D2D1_EXTEND_MODE, GetExtendMode)( - ) CONST PURE; -}; // interface ID2D1GradientStopCollection - - - -//+----------------------------------------------------------------------------- -// -// Interface: -// ID2D1Brush -// -// Synopsis: -// The root brush interface. All brushes can be used to fill or pen a geometry. -// -//------------------------------------------------------------------------------ -interface D2D1_DECLARE_INTERFACE("2cd906a8-12e2-11dc-9fed-001143a055f9") ID2D1Brush : public ID2D1Resource -{ - - - // - // Sets the opacity for when the brush is drawn over the entire fill of the brush. - // - STDMETHOD_(void, SetOpacity)( - FLOAT opacity - ) PURE; - - - // - // Sets the transform that applies to everything drawn by the brush. - // - STDMETHOD_(void, SetTransform)( - __in CONST D2D1_MATRIX_3X2_F *transform - ) PURE; - - STDMETHOD_(FLOAT, GetOpacity)( - ) CONST PURE; - - STDMETHOD_(void, GetTransform)( - __out D2D1_MATRIX_3X2_F *transform - ) CONST PURE; - - void - SetTransform( - CONST D2D1_MATRIX_3X2_F &transform - ) - { - SetTransform(&transform); - } -}; // interface ID2D1Brush - - - -//+----------------------------------------------------------------------------- -// -// Interface: -// ID2D1BitmapBrush -// -// Synopsis: -// A bitmap brush allows a bitmap to be used to fill a geometry. -// -//------------------------------------------------------------------------------ -interface D2D1_DECLARE_INTERFACE("2cd906aa-12e2-11dc-9fed-001143a055f9") ID2D1BitmapBrush : public ID2D1Brush -{ - - - // - // Sets how the bitmap is to be treated outside of its natural extent on the X - // axis. - // - STDMETHOD_(void, SetExtendModeX)( - D2D1_EXTEND_MODE extendModeX - ) PURE; - - - // - // Sets how the bitmap is to be treated outside of its natural extent on the X - // axis. - // - STDMETHOD_(void, SetExtendModeY)( - D2D1_EXTEND_MODE extendModeY - ) PURE; - - - // - // Sets the interpolation mode used when this brush is used. - // - STDMETHOD_(void, SetInterpolationMode)( - D2D1_BITMAP_INTERPOLATION_MODE interpolationMode - ) PURE; - - - // - // Sets the bitmap associated as the source of this brush. - // - STDMETHOD_(void, SetBitmap)( - __in ID2D1Bitmap *bitmap - ) PURE; - - STDMETHOD_(D2D1_EXTEND_MODE, GetExtendModeX)( - ) CONST PURE; - - STDMETHOD_(D2D1_EXTEND_MODE, GetExtendModeY)( - ) CONST PURE; - - STDMETHOD_(D2D1_BITMAP_INTERPOLATION_MODE, GetInterpolationMode)( - ) CONST PURE; - - STDMETHOD_(void, GetBitmap)( - __deref_out ID2D1Bitmap **bitmap - ) CONST PURE; -}; // interface ID2D1BitmapBrush - - - -//+----------------------------------------------------------------------------- -// -// Interface: -// ID2D1SolidColorBrush -// -//------------------------------------------------------------------------------ -interface D2D1_DECLARE_INTERFACE("2cd906a9-12e2-11dc-9fed-001143a055f9") ID2D1SolidColorBrush : public ID2D1Brush -{ - - STDMETHOD_(void, SetColor)( - __in CONST D2D1_COLOR_F *color - ) PURE; - - STDMETHOD_(D2D1_COLOR_F, GetColor)( - ) CONST PURE; - - void - SetColor( - CONST D2D1_COLOR_F &color - ) - { - SetColor(&color); - } -}; // interface ID2D1SolidColorBrush - - - -//+----------------------------------------------------------------------------- -// -// Interface: -// ID2D1LinearGradientBrush -// -//------------------------------------------------------------------------------ -interface D2D1_DECLARE_INTERFACE("2cd906ab-12e2-11dc-9fed-001143a055f9") ID2D1LinearGradientBrush : public ID2D1Brush -{ - - STDMETHOD_(void, SetStartPoint)( - D2D1_POINT_2F startPoint - ) PURE; - - - // - // Sets the end point of the gradient in local coordinate space. This is not - // influenced by the geometry being filled. - // - STDMETHOD_(void, SetEndPoint)( - D2D1_POINT_2F endPoint - ) PURE; - - STDMETHOD_(D2D1_POINT_2F, GetStartPoint)( - ) CONST PURE; - - STDMETHOD_(D2D1_POINT_2F, GetEndPoint)( - ) CONST PURE; - - STDMETHOD_(void, GetGradientStopCollection)( - __deref_out ID2D1GradientStopCollection **gradientStopCollection - ) CONST PURE; -}; // interface ID2D1LinearGradientBrush - - - -//+----------------------------------------------------------------------------- -// -// Interface: -// ID2D1RadialGradientBrush -// -//------------------------------------------------------------------------------ -interface D2D1_DECLARE_INTERFACE("2cd906ac-12e2-11dc-9fed-001143a055f9") ID2D1RadialGradientBrush : public ID2D1Brush -{ - - - // - // Sets the center of the radial gradient. This will be in local coordinates and - // will not depend on the geometry being filled. - // - STDMETHOD_(void, SetCenter)( - D2D1_POINT_2F center - ) PURE; - - - // - // Sets offset of the origin relative to the radial gradient center. - // - STDMETHOD_(void, SetGradientOriginOffset)( - D2D1_POINT_2F gradientOriginOffset - ) PURE; - - STDMETHOD_(void, SetRadiusX)( - FLOAT radiusX - ) PURE; - - STDMETHOD_(void, SetRadiusY)( - FLOAT radiusY - ) PURE; - - STDMETHOD_(D2D1_POINT_2F, GetCenter)( - ) CONST PURE; - - STDMETHOD_(D2D1_POINT_2F, GetGradientOriginOffset)( - ) CONST PURE; - - STDMETHOD_(FLOAT, GetRadiusX)( - ) CONST PURE; - - STDMETHOD_(FLOAT, GetRadiusY)( - ) CONST PURE; - - STDMETHOD_(void, GetGradientStopCollection)( - __deref_out ID2D1GradientStopCollection **gradientStopCollection - ) CONST PURE; -}; // interface ID2D1RadialGradientBrush - - - -//+----------------------------------------------------------------------------- -// -// Interface: -// ID2D1StrokeStyle -// -// Synopsis: -// Resource interface that holds pen style properties. -// -//------------------------------------------------------------------------------ -interface D2D1_DECLARE_INTERFACE("2cd9069d-12e2-11dc-9fed-001143a055f9") ID2D1StrokeStyle : public ID2D1Resource -{ - - STDMETHOD_(D2D1_CAP_STYLE, GetStartCap)( - ) CONST PURE; - - STDMETHOD_(D2D1_CAP_STYLE, GetEndCap)( - ) CONST PURE; - - STDMETHOD_(D2D1_CAP_STYLE, GetDashCap)( - ) CONST PURE; - - STDMETHOD_(FLOAT, GetMiterLimit)( - ) CONST PURE; - - STDMETHOD_(D2D1_LINE_JOIN, GetLineJoin)( - ) CONST PURE; - - STDMETHOD_(FLOAT, GetDashOffset)( - ) CONST PURE; - - STDMETHOD_(D2D1_DASH_STYLE, GetDashStyle)( - ) CONST PURE; - - STDMETHOD_(UINT32, GetDashesCount)( - ) CONST PURE; - - - // - // Returns the dashes from the object into a user allocated array. The user must - // call GetDashesCount to retrieve the required size. - // - STDMETHOD_(void, GetDashes)( - __out_ecount(dashesCount) FLOAT *dashes, - UINT dashesCount - ) CONST PURE; -}; // interface ID2D1StrokeStyle - - - -//+----------------------------------------------------------------------------- -// -// Interface: -// ID2D1Geometry -// -//------------------------------------------------------------------------------ -interface D2D1_DECLARE_INTERFACE("2cd906a1-12e2-11dc-9fed-001143a055f9") ID2D1Geometry : public ID2D1Resource -{ - - - // - // Retrieve the bounds of the geometry, with an optional applied transform. - // - STDMETHOD(GetBounds)( - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - __out D2D1_RECT_F *bounds - ) CONST PURE; - - - // - // Get the bounds of the corresponding geometry after it has been widened or have - // an optional pen style applied. - // - STDMETHOD(GetWidenedBounds)( - FLOAT strokeWidth, - __in_opt ID2D1StrokeStyle *strokeStyle, - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - FLOAT flatteningTolerance, - __out D2D1_RECT_F *bounds - ) CONST PURE; - - - // - // Checks to see whether the corresponding penned and widened geometry contains the - // given point. - // - STDMETHOD(StrokeContainsPoint)( - D2D1_POINT_2F point, - FLOAT strokeWidth, - __in_opt ID2D1StrokeStyle *strokeStyle, - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - FLOAT flatteningTolerance, - __out BOOL *contains - ) CONST PURE; - - - // - // Test whether the given fill of this geometry would contain this point. - // - STDMETHOD(FillContainsPoint)( - D2D1_POINT_2F point, - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - FLOAT flatteningTolerance, - __out BOOL *contains - ) CONST PURE; - - - // - // Compare how one geometry intersects or contains another geometry. - // - STDMETHOD(CompareWithGeometry)( - __in ID2D1Geometry *inputGeometry, - __in_opt CONST D2D1_MATRIX_3X2_F *inputGeometryTransform, - FLOAT flatteningTolerance, - __out D2D1_GEOMETRY_RELATION *relation - ) CONST PURE; - - - // - // Converts a geometry to a simplified geometry that has arcs and quadratic beziers - // removed. - // - STDMETHOD(Simplify)( - D2D1_GEOMETRY_SIMPLIFICATION_OPTION simplificationOption, - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - FLOAT flatteningTolerance, - __in ID2D1SimplifiedGeometrySink *geometrySink - ) CONST PURE; - - - // - // Tessellates a geometry into triangles. - // - STDMETHOD(Tessellate)( - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - FLOAT flatteningTolerance, - __in ID2D1TessellationSink *tessellationSink - ) CONST PURE; - - - // - // Performs a combine operation between the two geometries to produce a resulting - // geometry. - // - STDMETHOD(CombineWithGeometry)( - __in ID2D1Geometry *inputGeometry, - D2D1_COMBINE_MODE combineMode, - __in_opt CONST D2D1_MATRIX_3X2_F *inputGeometryTransform, - FLOAT flatteningTolerance, - __in ID2D1SimplifiedGeometrySink *geometrySink - ) CONST PURE; - - - // - // Computes the outline of the geometry. The result is written back into a - // simplified geometry sink. - // - STDMETHOD(Outline)( - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - FLOAT flatteningTolerance, - __in ID2D1SimplifiedGeometrySink *geometrySink - ) CONST PURE; - - - // - // Computes the area of the geometry. - // - STDMETHOD(ComputeArea)( - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - FLOAT flatteningTolerance, - __out FLOAT *area - ) CONST PURE; - - - // - // Computes the length of the geometry. - // - STDMETHOD(ComputeLength)( - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - FLOAT flatteningTolerance, - __out FLOAT *length - ) CONST PURE; - - - // - // Computes the point and tangent a given distance along the path. - // - STDMETHOD(ComputePointAtLength)( - FLOAT length, - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - FLOAT flatteningTolerance, - __out_opt D2D1_POINT_2F *point, - __out_opt D2D1_POINT_2F *unitTangentVector - ) CONST PURE; - - - // - // Get the geometry and widen it as well as apply an optional pen style. - // - STDMETHOD(Widen)( - FLOAT strokeWidth, - __in_opt ID2D1StrokeStyle *strokeStyle, - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - FLOAT flatteningTolerance, - __in ID2D1SimplifiedGeometrySink *geometrySink - ) CONST PURE; - - - // - // Retrieve the bounds of the geometry, with an optional applied transform. - // - HRESULT - GetBounds( - CONST D2D1_MATRIX_3X2_F &worldTransform, - __out D2D1_RECT_F *bounds - ) CONST - { - return GetBounds(&worldTransform, bounds); - } - - - // - // Get the bounds of the corresponding geometry after it has been widened or have - // an optional pen style applied. - // - HRESULT - GetWidenedBounds( - FLOAT strokeWidth, - __in_opt ID2D1StrokeStyle *strokeStyle, - CONST D2D1_MATRIX_3X2_F &worldTransform, - FLOAT flatteningTolerance, - __out D2D1_RECT_F *bounds - ) CONST - { - return GetWidenedBounds(strokeWidth, strokeStyle, &worldTransform, flatteningTolerance, bounds); - } - - - // - // Get the bounds of the corresponding geometry after it has been widened or have - // an optional pen style applied. - // - HRESULT - GetWidenedBounds( - FLOAT strokeWidth, - __in_opt ID2D1StrokeStyle *strokeStyle, - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - __out D2D1_RECT_F *bounds - ) CONST - { - return GetWidenedBounds(strokeWidth, strokeStyle, worldTransform, D2D1_DEFAULT_FLATTENING_TOLERANCE, bounds); - } - - - // - // Get the bounds of the corresponding geometry after it has been widened or have - // an optional pen style applied. - // - HRESULT - GetWidenedBounds( - FLOAT strokeWidth, - __in_opt ID2D1StrokeStyle *strokeStyle, - CONST D2D1_MATRIX_3X2_F &worldTransform, - __out D2D1_RECT_F *bounds - ) CONST - { - return GetWidenedBounds(strokeWidth, strokeStyle, &worldTransform, D2D1_DEFAULT_FLATTENING_TOLERANCE, bounds); - } - - HRESULT - StrokeContainsPoint( - D2D1_POINT_2F point, - FLOAT strokeWidth, - __in_opt ID2D1StrokeStyle *strokeStyle, - CONST D2D1_MATRIX_3X2_F &worldTransform, - FLOAT flatteningTolerance, - __out BOOL *contains - ) CONST - { - return StrokeContainsPoint(point, strokeWidth, strokeStyle, &worldTransform, flatteningTolerance, contains); - } - - - // - // Checks to see whether the corresponding penned and widened geometry contains the - // given point. - // - HRESULT - StrokeContainsPoint( - D2D1_POINT_2F point, - FLOAT strokeWidth, - __in_opt ID2D1StrokeStyle *strokeStyle, - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - __out BOOL *contains - ) CONST - { - return StrokeContainsPoint(point, strokeWidth, strokeStyle, worldTransform, D2D1_DEFAULT_FLATTENING_TOLERANCE, contains); - } - - HRESULT - StrokeContainsPoint( - D2D1_POINT_2F point, - FLOAT strokeWidth, - __in_opt ID2D1StrokeStyle *strokeStyle, - CONST D2D1_MATRIX_3X2_F &worldTransform, - __out BOOL *contains - ) CONST - { - return StrokeContainsPoint(point, strokeWidth, strokeStyle, &worldTransform, D2D1_DEFAULT_FLATTENING_TOLERANCE, contains); - } - - HRESULT - FillContainsPoint( - D2D1_POINT_2F point, - CONST D2D1_MATRIX_3X2_F &worldTransform, - FLOAT flatteningTolerance, - __out BOOL *contains - ) CONST - { - return FillContainsPoint(point, &worldTransform, flatteningTolerance, contains); - } - - - // - // Test whether the given fill of this geometry would contain this point. - // - HRESULT - FillContainsPoint( - D2D1_POINT_2F point, - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - __out BOOL *contains - ) CONST - { - return FillContainsPoint(point, worldTransform, D2D1_DEFAULT_FLATTENING_TOLERANCE, contains); - } - - HRESULT - FillContainsPoint( - D2D1_POINT_2F point, - CONST D2D1_MATRIX_3X2_F &worldTransform, - __out BOOL *contains - ) CONST - { - return FillContainsPoint(point, &worldTransform, D2D1_DEFAULT_FLATTENING_TOLERANCE, contains); - } - - - // - // Compare how one geometry intersects or contains another geometry. - // - HRESULT - CompareWithGeometry( - __in ID2D1Geometry *inputGeometry, - CONST D2D1_MATRIX_3X2_F &inputGeometryTransform, - FLOAT flatteningTolerance, - __out D2D1_GEOMETRY_RELATION *relation - ) CONST - { - return CompareWithGeometry(inputGeometry, &inputGeometryTransform, flatteningTolerance, relation); - } - - - // - // Compare how one geometry intersects or contains another geometry. - // - HRESULT - CompareWithGeometry( - __in ID2D1Geometry *inputGeometry, - __in_opt CONST D2D1_MATRIX_3X2_F *inputGeometryTransform, - __out D2D1_GEOMETRY_RELATION *relation - ) CONST - { - return CompareWithGeometry(inputGeometry, inputGeometryTransform, D2D1_DEFAULT_FLATTENING_TOLERANCE, relation); - } - - - // - // Compare how one geometry intersects or contains another geometry. - // - HRESULT - CompareWithGeometry( - __in ID2D1Geometry *inputGeometry, - CONST D2D1_MATRIX_3X2_F &inputGeometryTransform, - __out D2D1_GEOMETRY_RELATION *relation - ) CONST - { - return CompareWithGeometry(inputGeometry, &inputGeometryTransform, D2D1_DEFAULT_FLATTENING_TOLERANCE, relation); - } - - - // - // Converts a geometry to a simplified geometry that has arcs and quadratic beziers - // removed. - // - HRESULT - Simplify( - D2D1_GEOMETRY_SIMPLIFICATION_OPTION simplificationOption, - CONST D2D1_MATRIX_3X2_F &worldTransform, - FLOAT flatteningTolerance, - __in ID2D1SimplifiedGeometrySink *geometrySink - ) CONST - { - return Simplify(simplificationOption, &worldTransform, flatteningTolerance, geometrySink); - } - - - // - // Converts a geometry to a simplified geometry that has arcs and quadratic beziers - // removed. - // - HRESULT - Simplify( - D2D1_GEOMETRY_SIMPLIFICATION_OPTION simplificationOption, - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - __in ID2D1SimplifiedGeometrySink *geometrySink - ) CONST - { - return Simplify(simplificationOption, worldTransform, D2D1_DEFAULT_FLATTENING_TOLERANCE, geometrySink); - } - - - // - // Converts a geometry to a simplified geometry that has arcs and quadratic beziers - // removed. - // - HRESULT - Simplify( - D2D1_GEOMETRY_SIMPLIFICATION_OPTION simplificationOption, - CONST D2D1_MATRIX_3X2_F &worldTransform, - __in ID2D1SimplifiedGeometrySink *geometrySink - ) CONST - { - return Simplify(simplificationOption, &worldTransform, D2D1_DEFAULT_FLATTENING_TOLERANCE, geometrySink); - } - - - // - // Tessellates a geometry into triangles. - // - HRESULT - Tessellate( - CONST D2D1_MATRIX_3X2_F &worldTransform, - FLOAT flatteningTolerance, - __in ID2D1TessellationSink *tessellationSink - ) CONST - { - return Tessellate(&worldTransform, flatteningTolerance, tessellationSink); - } - - - // - // Tessellates a geometry into triangles. - // - HRESULT - Tessellate( - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - __in ID2D1TessellationSink *tessellationSink - ) CONST - { - return Tessellate(worldTransform, D2D1_DEFAULT_FLATTENING_TOLERANCE, tessellationSink); - } - - - // - // Tessellates a geometry into triangles. - // - HRESULT - Tessellate( - CONST D2D1_MATRIX_3X2_F &worldTransform, - __in ID2D1TessellationSink *tessellationSink - ) CONST - { - return Tessellate(&worldTransform, D2D1_DEFAULT_FLATTENING_TOLERANCE, tessellationSink); - } - - - // - // Performs a combine operation between the two geometries to produce a resulting - // geometry. - // - HRESULT - CombineWithGeometry( - __in ID2D1Geometry *inputGeometry, - D2D1_COMBINE_MODE combineMode, - CONST D2D1_MATRIX_3X2_F &inputGeometryTransform, - FLOAT flatteningTolerance, - __in ID2D1SimplifiedGeometrySink *geometrySink - ) CONST - { - return CombineWithGeometry(inputGeometry, combineMode, &inputGeometryTransform, flatteningTolerance, geometrySink); - } - - - // - // Performs a combine operation between the two geometries to produce a resulting - // geometry. - // - HRESULT - CombineWithGeometry( - __in ID2D1Geometry *inputGeometry, - D2D1_COMBINE_MODE combineMode, - __in_opt CONST D2D1_MATRIX_3X2_F *inputGeometryTransform, - __in ID2D1SimplifiedGeometrySink *geometrySink - ) CONST - { - return CombineWithGeometry(inputGeometry, combineMode, inputGeometryTransform, D2D1_DEFAULT_FLATTENING_TOLERANCE, geometrySink); - } - - - // - // Performs a combine operation between the two geometries to produce a resulting - // geometry. - // - HRESULT - CombineWithGeometry( - __in ID2D1Geometry *inputGeometry, - D2D1_COMBINE_MODE combineMode, - CONST D2D1_MATRIX_3X2_F &inputGeometryTransform, - __in ID2D1SimplifiedGeometrySink *geometrySink - ) CONST - { - return CombineWithGeometry(inputGeometry, combineMode, &inputGeometryTransform, D2D1_DEFAULT_FLATTENING_TOLERANCE, geometrySink); - } - - - // - // Computes the outline of the geometry. The result is written back into a - // simplified geometry sink. - // - HRESULT - Outline( - CONST D2D1_MATRIX_3X2_F &worldTransform, - FLOAT flatteningTolerance, - __in ID2D1SimplifiedGeometrySink *geometrySink - ) CONST - { - return Outline(&worldTransform, flatteningTolerance, geometrySink); - } - - - // - // Computes the outline of the geometry. The result is written back into a - // simplified geometry sink. - // - HRESULT - Outline( - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - __in ID2D1SimplifiedGeometrySink *geometrySink - ) CONST - { - return Outline(worldTransform, D2D1_DEFAULT_FLATTENING_TOLERANCE, geometrySink); - } - - - // - // Computes the outline of the geometry. The result is written back into a - // simplified geometry sink. - // - HRESULT - Outline( - CONST D2D1_MATRIX_3X2_F &worldTransform, - __in ID2D1SimplifiedGeometrySink *geometrySink - ) CONST - { - return Outline(&worldTransform, D2D1_DEFAULT_FLATTENING_TOLERANCE, geometrySink); - } - - - // - // Computes the area of the geometry. - // - HRESULT - ComputeArea( - CONST D2D1_MATRIX_3X2_F &worldTransform, - FLOAT flatteningTolerance, - __out FLOAT *area - ) CONST - { - return ComputeArea(&worldTransform, flatteningTolerance, area); - } - - - // - // Computes the area of the geometry. - // - HRESULT - ComputeArea( - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - __out FLOAT *area - ) CONST - { - return ComputeArea(worldTransform, D2D1_DEFAULT_FLATTENING_TOLERANCE, area); - } - - - // - // Computes the area of the geometry. - // - HRESULT - ComputeArea( - CONST D2D1_MATRIX_3X2_F &worldTransform, - __out FLOAT *area - ) CONST - { - return ComputeArea(&worldTransform, D2D1_DEFAULT_FLATTENING_TOLERANCE, area); - } - - - // - // Computes the length of the geometry. - // - HRESULT - ComputeLength( - CONST D2D1_MATRIX_3X2_F &worldTransform, - FLOAT flatteningTolerance, - __out FLOAT *length - ) CONST - { - return ComputeLength(&worldTransform, flatteningTolerance, length); - } - - - // - // Computes the length of the geometry. - // - HRESULT - ComputeLength( - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - __out FLOAT *length - ) CONST - { - return ComputeLength(worldTransform, D2D1_DEFAULT_FLATTENING_TOLERANCE, length); - } - - - // - // Computes the length of the geometry. - // - HRESULT - ComputeLength( - CONST D2D1_MATRIX_3X2_F &worldTransform, - __out FLOAT *length - ) CONST - { - return ComputeLength(&worldTransform, D2D1_DEFAULT_FLATTENING_TOLERANCE, length); - } - - - // - // Computes the point and tangent a given distance along the path. - // - HRESULT - ComputePointAtLength( - FLOAT length, - CONST D2D1_MATRIX_3X2_F &worldTransform, - FLOAT flatteningTolerance, - __out_opt D2D1_POINT_2F *point, - __out_opt D2D1_POINT_2F *unitTangentVector - ) CONST - { - return ComputePointAtLength(length, &worldTransform, flatteningTolerance, point, unitTangentVector); - } - - - // - // Computes the point and tangent a given distance along the path. - // - HRESULT - ComputePointAtLength( - FLOAT length, - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - __out_opt D2D1_POINT_2F *point, - __out_opt D2D1_POINT_2F *unitTangentVector - ) CONST - { - return ComputePointAtLength(length, worldTransform, D2D1_DEFAULT_FLATTENING_TOLERANCE, point, unitTangentVector); - } - - - // - // Computes the point and tangent a given distance along the path. - // - HRESULT - ComputePointAtLength( - FLOAT length, - CONST D2D1_MATRIX_3X2_F &worldTransform, - __out_opt D2D1_POINT_2F *point, - __out_opt D2D1_POINT_2F *unitTangentVector - ) CONST - { - return ComputePointAtLength(length, &worldTransform, D2D1_DEFAULT_FLATTENING_TOLERANCE, point, unitTangentVector); - } - - - // - // Get the geometry and widen it as well as apply an optional pen style. - // - HRESULT - Widen( - FLOAT strokeWidth, - __in_opt ID2D1StrokeStyle *strokeStyle, - CONST D2D1_MATRIX_3X2_F &worldTransform, - FLOAT flatteningTolerance, - __in ID2D1SimplifiedGeometrySink *geometrySink - ) CONST - { - return Widen(strokeWidth, strokeStyle, &worldTransform, flatteningTolerance, geometrySink); - } - - - // - // Get the geometry and widen it as well as apply an optional pen style. - // - HRESULT - Widen( - FLOAT strokeWidth, - __in_opt ID2D1StrokeStyle *strokeStyle, - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - __in ID2D1SimplifiedGeometrySink *geometrySink - ) CONST - { - return Widen(strokeWidth, strokeStyle, worldTransform, D2D1_DEFAULT_FLATTENING_TOLERANCE, geometrySink); - } - - - // - // Get the geometry and widen it as well as apply an optional pen style. - // - HRESULT - Widen( - FLOAT strokeWidth, - __in_opt ID2D1StrokeStyle *strokeStyle, - CONST D2D1_MATRIX_3X2_F &worldTransform, - __in ID2D1SimplifiedGeometrySink *geometrySink - ) CONST - { - return Widen(strokeWidth, strokeStyle, &worldTransform, D2D1_DEFAULT_FLATTENING_TOLERANCE, geometrySink); - } -}; // interface ID2D1Geometry - - - -//+----------------------------------------------------------------------------- -// -// Interface: -// ID2D1RectangleGeometry -// -//------------------------------------------------------------------------------ -interface D2D1_DECLARE_INTERFACE("2cd906a2-12e2-11dc-9fed-001143a055f9") ID2D1RectangleGeometry : public ID2D1Geometry -{ - - STDMETHOD_(void, GetRect)( - __out D2D1_RECT_F *rect - ) CONST PURE; -}; // interface ID2D1RectangleGeometry - - - -//+----------------------------------------------------------------------------- -// -// Interface: -// ID2D1RoundedRectangleGeometry -// -//------------------------------------------------------------------------------ -interface D2D1_DECLARE_INTERFACE("2cd906a3-12e2-11dc-9fed-001143a055f9") ID2D1RoundedRectangleGeometry : public ID2D1Geometry -{ - - STDMETHOD_(void, GetRoundedRect)( - __out D2D1_ROUNDED_RECT *roundedRect - ) CONST PURE; -}; // interface ID2D1RoundedRectangleGeometry - - - -//+----------------------------------------------------------------------------- -// -// Interface: -// ID2D1EllipseGeometry -// -//------------------------------------------------------------------------------ -interface D2D1_DECLARE_INTERFACE("2cd906a4-12e2-11dc-9fed-001143a055f9") ID2D1EllipseGeometry : public ID2D1Geometry -{ - - STDMETHOD_(void, GetEllipse)( - __out D2D1_ELLIPSE *ellipse - ) CONST PURE; -}; // interface ID2D1EllipseGeometry - - - -//+----------------------------------------------------------------------------- -// -// Interface: -// ID2D1GeometryGroup -// -//------------------------------------------------------------------------------ -interface D2D1_DECLARE_INTERFACE("2cd906a6-12e2-11dc-9fed-001143a055f9") ID2D1GeometryGroup : public ID2D1Geometry -{ - - STDMETHOD_(D2D1_FILL_MODE, GetFillMode)( - ) CONST PURE; - - STDMETHOD_(UINT32, GetSourceGeometryCount)( - ) CONST PURE; - - STDMETHOD_(void, GetSourceGeometries)( - __out_ecount(geometriesCount) ID2D1Geometry **geometries, - UINT geometriesCount - ) CONST PURE; -}; // interface ID2D1GeometryGroup - - - -//+----------------------------------------------------------------------------- -// -// Interface: -// ID2D1TransformedGeometry -// -//------------------------------------------------------------------------------ -interface D2D1_DECLARE_INTERFACE("2cd906bb-12e2-11dc-9fed-001143a055f9") ID2D1TransformedGeometry : public ID2D1Geometry -{ - - STDMETHOD_(void, GetSourceGeometry)( - __deref_out ID2D1Geometry **sourceGeometry - ) CONST PURE; - - STDMETHOD_(void, GetTransform)( - __out D2D1_MATRIX_3X2_F *transform - ) CONST PURE; -}; // interface ID2D1TransformedGeometry - - - -//+----------------------------------------------------------------------------- -// -// Interface: -// ID2D1SimplifiedGeometrySink -// -//------------------------------------------------------------------------------ -interface D2D1_DECLARE_INTERFACE("2cd9069e-12e2-11dc-9fed-001143a055f9") ID2D1SimplifiedGeometrySink : public IUnknown -{ - - STDMETHOD_(void, SetFillMode)( - D2D1_FILL_MODE fillMode - ) PURE; - - STDMETHOD_(void, SetSegmentFlags)( - D2D1_PATH_SEGMENT vertexFlags - ) PURE; - - STDMETHOD_(void, BeginFigure)( - D2D1_POINT_2F startPoint, - D2D1_FIGURE_BEGIN figureBegin - ) PURE; - - STDMETHOD_(void, AddLines)( - __in_ecount(pointsCount) CONST D2D1_POINT_2F *points, - UINT pointsCount - ) PURE; - - STDMETHOD_(void, AddBeziers)( - __in_ecount(beziersCount) CONST D2D1_BEZIER_SEGMENT *beziers, - UINT beziersCount - ) PURE; - - STDMETHOD_(void, EndFigure)( - D2D1_FIGURE_END figureEnd - ) PURE; - - STDMETHOD(Close)( - ) PURE; -}; // interface ID2D1SimplifiedGeometrySink - - - -//+----------------------------------------------------------------------------- -// -// Interface: -// ID2D1GeometrySink -// -//------------------------------------------------------------------------------ -interface D2D1_DECLARE_INTERFACE("2cd9069f-12e2-11dc-9fed-001143a055f9") ID2D1GeometrySink : public ID2D1SimplifiedGeometrySink -{ - - STDMETHOD_(void, AddLine)( - D2D1_POINT_2F point - ) PURE; - - STDMETHOD_(void, AddBezier)( - __in CONST D2D1_BEZIER_SEGMENT *bezier - ) PURE; - - STDMETHOD_(void, AddQuadraticBezier)( - __in CONST D2D1_QUADRATIC_BEZIER_SEGMENT *bezier - ) PURE; - - STDMETHOD_(void, AddQuadraticBeziers)( - __in_ecount(beziersCount) CONST D2D1_QUADRATIC_BEZIER_SEGMENT *beziers, - UINT beziersCount - ) PURE; - - STDMETHOD_(void, AddArc)( - __in CONST D2D1_ARC_SEGMENT *arc - ) PURE; - - void - AddBezier( - CONST D2D1_BEZIER_SEGMENT &bezier - ) - { - AddBezier(&bezier); - } - - void - AddQuadraticBezier( - CONST D2D1_QUADRATIC_BEZIER_SEGMENT &bezier - ) - { - AddQuadraticBezier(&bezier); - } - - void - AddArc( - CONST D2D1_ARC_SEGMENT &arc - ) - { - AddArc(&arc); - } -}; // interface ID2D1GeometrySink - - - -//+----------------------------------------------------------------------------- -// -// Interface: -// ID2D1TessellationSink -// -//------------------------------------------------------------------------------ -interface D2D1_DECLARE_INTERFACE("2cd906c1-12e2-11dc-9fed-001143a055f9") ID2D1TessellationSink : public IUnknown -{ - - STDMETHOD_(void, AddTriangles)( - __in_ecount(trianglesCount) CONST D2D1_TRIANGLE *triangles, - UINT trianglesCount - ) PURE; - - STDMETHOD(Close)( - ) PURE; -}; // interface ID2D1TessellationSink - - - -//+----------------------------------------------------------------------------- -// -// Interface: -// ID2D1PathGeometry -// -//------------------------------------------------------------------------------ -interface D2D1_DECLARE_INTERFACE("2cd906a5-12e2-11dc-9fed-001143a055f9") ID2D1PathGeometry : public ID2D1Geometry -{ - - - // - // Opens a geometry sink that will be used to create this path geometry. - // - STDMETHOD(Open)( - __deref_out ID2D1GeometrySink **geometrySink - ) PURE; - - - // - // Retrieve the contents of this geometry. The caller passes an implementation of a - // ID2D1GeometrySink interface to receive the data. - // - STDMETHOD(Stream)( - __in ID2D1GeometrySink *geometrySink - ) CONST PURE; - - STDMETHOD(GetSegmentCount)( - __out UINT32 *count - ) CONST PURE; - - STDMETHOD(GetFigureCount)( - __out UINT32 *count - ) CONST PURE; -}; // interface ID2D1PathGeometry - - - -//+----------------------------------------------------------------------------- -// -// Interface: -// ID2D1Mesh -// -//------------------------------------------------------------------------------ -interface D2D1_DECLARE_INTERFACE("2cd906c2-12e2-11dc-9fed-001143a055f9") ID2D1Mesh : public ID2D1Resource -{ - - - // - // Opens the mesh for population. - // - STDMETHOD(Open)( - __deref_out ID2D1TessellationSink **tessellationSink - ) PURE; -}; // interface ID2D1Mesh - - - -//+----------------------------------------------------------------------------- -// -// Interface: -// ID2D1Layer -// -//------------------------------------------------------------------------------ -interface D2D1_DECLARE_INTERFACE("2cd9069b-12e2-11dc-9fed-001143a055f9") ID2D1Layer : public ID2D1Resource -{ - - STDMETHOD_(D2D1_SIZE_F, GetSize)( - ) CONST PURE; -}; // interface ID2D1Layer - - - -//+----------------------------------------------------------------------------- -// -// Interface: -// ID2D1DrawingStateBlock -// -//------------------------------------------------------------------------------ -interface D2D1_DECLARE_INTERFACE("28506e39-ebf6-46a1-bb47-fd85565ab957") ID2D1DrawingStateBlock : public ID2D1Resource -{ - - - // - // Retrieves the state currently contained within this state block resource. - // - STDMETHOD_(void, GetDescription)( - __out D2D1_DRAWING_STATE_DESCRIPTION *stateDescription - ) CONST PURE; - - - // - // Sets the state description of this state block resource. - // - STDMETHOD_(void, SetDescription)( - __in CONST D2D1_DRAWING_STATE_DESCRIPTION *stateDescription - ) PURE; - - - // - // Sets the text rendering parameters of this state block resource. - // - STDMETHOD_(void, SetTextRenderingParams)( - __in_opt IDWriteRenderingParams *textRenderingParams = NULL - ) PURE; - - - // - // Retrieves the text rendering parameters contained within this state block - // resource. If a NULL text rendering parameter was specified, NULL will be - // returned. - // - STDMETHOD_(void, GetTextRenderingParams)( - __deref_out_opt IDWriteRenderingParams **textRenderingParams - ) CONST PURE; - - void - SetDescription( - CONST D2D1_DRAWING_STATE_DESCRIPTION &stateDescription - ) - { - SetDescription(&stateDescription); - } -}; // interface ID2D1DrawingStateBlock - - - -//+----------------------------------------------------------------------------- -// -// Interface: -// ID2D1RenderTarget -// -//------------------------------------------------------------------------------ -interface D2D1_DECLARE_INTERFACE("2cd90694-12e2-11dc-9fed-001143a055f9") ID2D1RenderTarget : public ID2D1Resource -{ - - - // - // Create a D2D bitmap by copying from memory, or create uninitialized. - // - STDMETHOD(CreateBitmap)( - D2D1_SIZE_U size, - __in_opt CONST void *srcData, - UINT32 pitch, - __in CONST D2D1_BITMAP_PROPERTIES *bitmapProperties, - __deref_out ID2D1Bitmap **bitmap - ) PURE; - - - // - // Create a D2D bitmap by copying a WIC bitmap. - // - STDMETHOD(CreateBitmapFromWicBitmap)( - __in IWICBitmapSource *wicBitmapSource, - __in_opt CONST D2D1_BITMAP_PROPERTIES *bitmapProperties, - __deref_out ID2D1Bitmap **bitmap - ) PURE; - - - // - // Create a D2D bitmap by sharing bits from another resource. The bitmap must be - // compatible with the render target for the call to succeed. - // For example, an IWICBitmap can be shared with a software target, or a DXGI - // surface can be shared with a DXGI render target. - // - STDMETHOD(CreateSharedBitmap)( - __in REFIID riid, - __inout void *data, - __in_opt CONST D2D1_BITMAP_PROPERTIES *bitmapProperties, - __deref_out ID2D1Bitmap **bitmap - ) PURE; - - - // - // Creates a bitmap brush. The bitmap is scaled, rotated, skewed or tiled to fill - // or pen a geometry. - // - STDMETHOD(CreateBitmapBrush)( - __in ID2D1Bitmap *bitmap, - __in_opt CONST D2D1_BITMAP_BRUSH_PROPERTIES *bitmapBrushProperties, - __in_opt CONST D2D1_BRUSH_PROPERTIES *brushProperties, - __deref_out ID2D1BitmapBrush **bitmapBrush - ) PURE; - - STDMETHOD(CreateSolidColorBrush)( - __in CONST D2D1_COLOR_F *color, - __in_opt CONST D2D1_BRUSH_PROPERTIES *brushProperties, - __deref_out ID2D1SolidColorBrush **solidColorBrush - ) PURE; - - - // - // A gradient stop collection represents a set of stops in an ideal unit length. - // This is the source resource for a linear gradient and radial gradient brush. - // - STDMETHOD(CreateGradientStopCollection)( - __in_ecount(gradientStopsCount) CONST D2D1_GRADIENT_STOP *gradientStops, - __range(>=,1) UINT gradientStopsCount, - - // - // Specifies which space the color interpolation occurs in. - // - D2D1_GAMMA colorInterpolationGamma, - - // - // Specifies how the gradient will be extended outside of the unit length. - // - D2D1_EXTEND_MODE extendMode, - __deref_out ID2D1GradientStopCollection **gradientStopCollection - ) PURE; - - STDMETHOD(CreateLinearGradientBrush)( - __in CONST D2D1_LINEAR_GRADIENT_BRUSH_PROPERTIES *linearGradientBrushProperties, - __in_opt CONST D2D1_BRUSH_PROPERTIES *brushProperties, - __in ID2D1GradientStopCollection *gradientStopCollection, - __deref_out ID2D1LinearGradientBrush **linearGradientBrush - ) PURE; - - STDMETHOD(CreateRadialGradientBrush)( - __in CONST D2D1_RADIAL_GRADIENT_BRUSH_PROPERTIES *radialGradientBrushProperties, - __in_opt CONST D2D1_BRUSH_PROPERTIES *brushProperties, - __in ID2D1GradientStopCollection *gradientStopCollection, - __deref_out ID2D1RadialGradientBrush **radialGradientBrush - ) PURE; - - - // - // Creates a bitmap render target whose bitmap can be used as a source for - // rendering in the API. - // - STDMETHOD(CreateCompatibleRenderTarget)( - - // - // The requested size of the target in DIPs. If the pixel size is not specified, - // the DPI is inherited from the parent target. However, the render target will - // never contain a fractional number of pixels. - // - __in_opt CONST D2D1_SIZE_F *desiredSize, - - // - // The requested size of the render target in pixels. If the DIP size is also - // specified, the DPI is calculated from these two values. If the desired size is - // not specified, the DPI is inherited from the parent render target. If neither - // value is specified, the compatible render target will be the same size and have - // the same DPI as the parent target. - // - __in_opt CONST D2D1_SIZE_U *desiredPixelSize, - - // - // The desired pixel format. The format must be compatible with the parent render - // target type. If the format is not specified, it will be inherited from the - // parent render target. - // - __in_opt CONST D2D1_PIXEL_FORMAT *desiredFormat, - - // - // Allows the caller to retrieve a GDI compatible render target. - // - D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS options, - - // - // The returned bitmap render target. - // - __deref_out ID2D1BitmapRenderTarget **bitmapRenderTarget - ) PURE; - - - // - // Creates a layer resource that can be used on any target and which will resize - // under the covers if necessary. - // - STDMETHOD(CreateLayer)( - - // - // The resolution independent minimum size hint for the layer resource. Specify - // this to prevent unwanted reallocation of the layer backing store. The size is in - // DIPs, but, it is unaffected by the current world transform. If the size is - // unspecified, the returned resource is a placeholder and the backing store will - // be allocated to be the minimum size that can hold the content when the layer is - // pushed. - // - __in_opt CONST D2D1_SIZE_F *size, - __deref_out ID2D1Layer **layer - ) PURE; - - - // - // Create a D2D mesh. - // - STDMETHOD(CreateMesh)( - __deref_out ID2D1Mesh **mesh - ) PURE; - - STDMETHOD_(void, DrawLine)( - D2D1_POINT_2F point0, - D2D1_POINT_2F point1, - __in ID2D1Brush *brush, - FLOAT strokeWidth = 1.0f, - __in_opt ID2D1StrokeStyle *strokeStyle = NULL - ) PURE; - - STDMETHOD_(void, DrawRectangle)( - __in CONST D2D1_RECT_F *rect, - __in ID2D1Brush *brush, - FLOAT strokeWidth = 1.0f, - __in_opt ID2D1StrokeStyle *strokeStyle = NULL - ) PURE; - - STDMETHOD_(void, FillRectangle)( - __in CONST D2D1_RECT_F *rect, - __in ID2D1Brush *brush - ) PURE; - - STDMETHOD_(void, DrawRoundedRectangle)( - __in CONST D2D1_ROUNDED_RECT *roundedRect, - __in ID2D1Brush *brush, - FLOAT strokeWidth = 1.0f, - __in_opt ID2D1StrokeStyle *strokeStyle = NULL - ) PURE; - - STDMETHOD_(void, FillRoundedRectangle)( - __in CONST D2D1_ROUNDED_RECT *roundedRect, - __in ID2D1Brush *brush - ) PURE; - - STDMETHOD_(void, DrawEllipse)( - __in CONST D2D1_ELLIPSE *ellipse, - __in ID2D1Brush *brush, - FLOAT strokeWidth = 1.0f, - __in_opt ID2D1StrokeStyle *strokeStyle = NULL - ) PURE; - - STDMETHOD_(void, FillEllipse)( - __in CONST D2D1_ELLIPSE *ellipse, - __in ID2D1Brush *brush - ) PURE; - - STDMETHOD_(void, DrawGeometry)( - __in ID2D1Geometry *geometry, - __in ID2D1Brush *brush, - FLOAT strokeWidth = 1.0f, - __in_opt ID2D1StrokeStyle *strokeStyle = NULL - ) PURE; - - STDMETHOD_(void, FillGeometry)( - __in ID2D1Geometry *geometry, - __in ID2D1Brush *brush, - - // - // An optionally specified opacity brush. Only the alpha channel of the - // corresponding brush will be sampled and will be applied to the entire fill of - // the geometry. If this brush is specified, the fill brush must be a bitmap brush - // with an extend mode of D2D1_EXTEND_MODE_CLAMP. - // - __in_opt ID2D1Brush *opacityBrush = NULL - ) PURE; - - - // - // Fill a mesh. Since meshes can only render aliased content, the render target - // antialiasing mode must be set to aliased. - // - STDMETHOD_(void, FillMesh)( - __in ID2D1Mesh *mesh, - __in ID2D1Brush *brush - ) PURE; - - - // - // Fill using the opacity channel of the supplied bitmap as a mask. The alpha - // channel of the bitmap is used to represent the coverage of the geometry at each - // pixel, and this is filled appropriately with the brush. The render target - // antialiasing mode must be set to aliased. - // - STDMETHOD_(void, FillOpacityMask)( - __in ID2D1Bitmap *opacityMask, - __in ID2D1Brush *brush, - D2D1_OPACITY_MASK_CONTENT content, - __in_opt CONST D2D1_RECT_F *destinationRectangle = NULL, - __in_opt CONST D2D1_RECT_F *sourceRectangle = NULL - ) PURE; - - STDMETHOD_(void, DrawBitmap)( - __in ID2D1Bitmap *bitmap, - __in_opt CONST D2D1_RECT_F *destinationRectangle = NULL, - FLOAT opacity = 1.0f, - D2D1_BITMAP_INTERPOLATION_MODE interpolationMode = D2D1_BITMAP_INTERPOLATION_MODE_LINEAR, - __in_opt CONST D2D1_RECT_F *sourceRectangle = NULL - ) PURE; - - - // - // Draws the text within the given layout rectangle and by default also snaps and - // clips it to the content bounds. - // - STDMETHOD_(void, DrawText)( - __in_ecount(stringLength) CONST WCHAR *string, - UINT stringLength, - __in IDWriteTextFormat *textFormat, - __in CONST D2D1_RECT_F *layoutRect, - __in ID2D1Brush *defaultForegroundBrush, - D2D1_DRAW_TEXT_OPTIONS options = D2D1_DRAW_TEXT_OPTIONS_NONE, - DWRITE_MEASURING_MODE measuringMode = DWRITE_MEASURING_MODE_NATURAL - ) PURE; - - - // - // Draw a snapped text layout object. Since the layout is not subsequently changed, - // this can be more effecient than DrawText when drawing the same layout - // repeatedly. - // - STDMETHOD_(void, DrawTextLayout)( - D2D1_POINT_2F origin, - __in IDWriteTextLayout *textLayout, - __in ID2D1Brush *defaultForegroundBrush, - - // - // The specified text options. NOTE: By default the text is clipped to the layout - // bounds. This is derived from the origin and the layout bounds of the - // corresponding IDWriteTextLayout object. - // - D2D1_DRAW_TEXT_OPTIONS options = D2D1_DRAW_TEXT_OPTIONS_NONE - ) PURE; - - STDMETHOD_(void, DrawGlyphRun)( - D2D1_POINT_2F baselineOrigin, - __in CONST DWRITE_GLYPH_RUN *glyphRun, - __in ID2D1Brush *foregroundBrush, - DWRITE_MEASURING_MODE measuringMode = DWRITE_MEASURING_MODE_NATURAL - ) PURE; - - STDMETHOD_(void, SetTransform)( - __in CONST D2D1_MATRIX_3X2_F *transform - ) PURE; - - STDMETHOD_(void, GetTransform)( - __out D2D1_MATRIX_3X2_F *transform - ) CONST PURE; - - STDMETHOD_(void, SetAntialiasMode)( - D2D1_ANTIALIAS_MODE antialiasMode - ) PURE; - - STDMETHOD_(D2D1_ANTIALIAS_MODE, GetAntialiasMode)( - ) CONST PURE; - - STDMETHOD_(void, SetTextAntialiasMode)( - D2D1_TEXT_ANTIALIAS_MODE textAntialiasMode - ) PURE; - - STDMETHOD_(D2D1_TEXT_ANTIALIAS_MODE, GetTextAntialiasMode)( - ) CONST PURE; - - STDMETHOD_(void, SetTextRenderingParams)( - __in_opt IDWriteRenderingParams *textRenderingParams = NULL - ) PURE; - - - // - // Retrieve the text render parameters. NOTE: If NULL is specified to - // SetTextRenderingParameters, NULL will be returned. - // - STDMETHOD_(void, GetTextRenderingParams)( - __deref_out_opt IDWriteRenderingParams **textRenderingParams - ) CONST PURE; - - - // - // Set a tag to correspond to the succeeding primitives. If an error occurs - // rendering a primtive, the tags can be returned from the Flush or EndDraw call. - // - STDMETHOD_(void, SetTags)( - D2D1_TAG tag1, - D2D1_TAG tag2 - ) PURE; - - - // - // Retrieves the currently set tags. This does not retrieve the tags corresponding - // to any primitive that is in error. - // - STDMETHOD_(void, GetTags)( - __out_opt D2D1_TAG *tag1 = NULL, - __out_opt D2D1_TAG *tag2 = NULL - ) CONST PURE; - - - // - // Start a layer of drawing calls. The way in which the layer must be resolved is - // specified first as well as the logical resource that stores the layer - // parameters. The supplied layer resource might grow if the specified content - // cannot fit inside it. The layer will grow monitonically on each axis. - // - STDMETHOD_(void, PushLayer)( - __in CONST D2D1_LAYER_PARAMETERS *layerParameters, - __in ID2D1Layer *layer - ) PURE; - - - // - // Ends a layer that was defined with particular layer resources. - // - STDMETHOD_(void, PopLayer)( - ) PURE; - - STDMETHOD(Flush)( - __out_opt D2D1_TAG *tag1 = NULL, - __out_opt D2D1_TAG *tag2 = NULL - ) PURE; - - - // - // Gets the current drawing state and saves it into the supplied - // IDrawingStatckBlock. - // - STDMETHOD_(void, SaveDrawingState)( - __inout ID2D1DrawingStateBlock *drawingStateBlock - ) CONST PURE; - - - // - // Copies the state stored in the block interface. - // - STDMETHOD_(void, RestoreDrawingState)( - __in ID2D1DrawingStateBlock *drawingStateBlock - ) PURE; - - - // - // Pushes a clip. The clip can be antialiased. The clip must be axis aligned. If - // the current world transform is not axis preserving, then the bounding box of the - // transformed clip rect will be used. The clip will remain in effect until a - // PopAxisAligned clip call is made. - // - STDMETHOD_(void, PushAxisAlignedClip)( - __in CONST D2D1_RECT_F *clipRect, - D2D1_ANTIALIAS_MODE antialiasMode - ) PURE; - - STDMETHOD_(void, PopAxisAlignedClip)( - ) PURE; - - STDMETHOD_(void, Clear)( - __in_opt CONST D2D1_COLOR_F *clearColor = NULL - ) PURE; - - - // - // Start drawing on this render target. Draw calls can only be issued between a - // BeginDraw and EndDraw call. - // - STDMETHOD_(void, BeginDraw)( - ) PURE; - - - // - // Ends drawing on the render target, error results can be retrieved at this time, - // or when calling flush. - // - STDMETHOD(EndDraw)( - __out_opt D2D1_TAG *tag1 = NULL, - __out_opt D2D1_TAG *tag2 = NULL - ) PURE; - - STDMETHOD_(D2D1_PIXEL_FORMAT, GetPixelFormat)( - ) CONST PURE; - - - // - // Sets the DPI on the render target. This results in the render target being - // interpretted to a different scale. Neither DPI can be negative. If zero is - // specified for both, the system DPI is chosen. If one is zero and the other - // unspecified, the DPI is not changed. - // - STDMETHOD_(void, SetDpi)( - FLOAT dpiX, - FLOAT dpiY - ) PURE; - - - // - // Return the current DPI from the target. - // - STDMETHOD_(void, GetDpi)( - __out FLOAT *dpiX, - __out FLOAT *dpiY - ) CONST PURE; - - - // - // Returns the size of the render target in DIPs. - // - STDMETHOD_(D2D1_SIZE_F, GetSize)( - ) CONST PURE; - - - // - // Returns the size of the render target in pixels. - // - STDMETHOD_(D2D1_SIZE_U, GetPixelSize)( - ) CONST PURE; - - - // - // Returns the maximum bitmap and render target size that is guaranteed to be - // supported by the render target. - // - STDMETHOD_(UINT32, GetMaximumBitmapSize)( - ) CONST PURE; - - - // - // Returns true if the given properties are supported by this render target. The - // DPI is ignored. NOTE: If the render target type is software, then neither - // D2D1_FEATURE_LEVEL_9 nor D2D1_FEATURE_LEVEL_10 will be considered to be - // supported. - // - STDMETHOD_(BOOL, IsSupported)( - __in CONST D2D1_RENDER_TARGET_PROPERTIES *renderTargetProperties - ) CONST PURE; - - HRESULT - CreateBitmap( - D2D1_SIZE_U size, - __in_opt CONST void *srcData, - UINT32 pitch, - CONST D2D1_BITMAP_PROPERTIES &bitmapProperties, - __deref_out ID2D1Bitmap **bitmap - ) - { - return CreateBitmap(size, srcData, pitch, &bitmapProperties, bitmap); - } - - HRESULT - CreateBitmap( - D2D1_SIZE_U size, - CONST D2D1_BITMAP_PROPERTIES &bitmapProperties, - __deref_out ID2D1Bitmap **bitmap - ) - { - return CreateBitmap(size, NULL, 0, &bitmapProperties, bitmap); - } - - - // - // Create a D2D bitmap by copying a WIC bitmap. - // - HRESULT - CreateBitmapFromWicBitmap( - __in IWICBitmapSource *wicBitmapSource, - CONST D2D1_BITMAP_PROPERTIES &bitmapProperties, - __deref_out ID2D1Bitmap **bitmap - ) - { - return CreateBitmapFromWicBitmap(wicBitmapSource, &bitmapProperties, bitmap); - } - - - // - // Create a D2D bitmap by copying a WIC bitmap. - // - HRESULT - CreateBitmapFromWicBitmap( - __in IWICBitmapSource *wicBitmapSource, - __deref_out ID2D1Bitmap **bitmap - ) - { - return CreateBitmapFromWicBitmap(wicBitmapSource, NULL, bitmap); - } - - - // - // Creates a bitmap brush. The bitmap is scaled, rotated, skewed or tiled to fill - // or pen a geometry. - // - HRESULT - CreateBitmapBrush( - __in ID2D1Bitmap *bitmap, - __deref_out ID2D1BitmapBrush **bitmapBrush - ) - { - return CreateBitmapBrush(bitmap, NULL, NULL, bitmapBrush); - } - - - // - // Creates a bitmap brush. The bitmap is scaled, rotated, skewed or tiled to fill - // or pen a geometry. - // - HRESULT - CreateBitmapBrush( - __in ID2D1Bitmap *bitmap, - CONST D2D1_BITMAP_BRUSH_PROPERTIES &bitmapBrushProperties, - __deref_out ID2D1BitmapBrush **bitmapBrush - ) - { - return CreateBitmapBrush(bitmap, &bitmapBrushProperties, NULL, bitmapBrush); - } - - - // - // Creates a bitmap brush. The bitmap is scaled, rotated, skewed or tiled to fill - // or pen a geometry. - // - HRESULT - CreateBitmapBrush( - __in ID2D1Bitmap *bitmap, - CONST D2D1_BITMAP_BRUSH_PROPERTIES &bitmapBrushProperties, - CONST D2D1_BRUSH_PROPERTIES &brushProperties, - __deref_out ID2D1BitmapBrush **bitmapBrush - ) - { - return CreateBitmapBrush(bitmap, &bitmapBrushProperties, &brushProperties, bitmapBrush); - } - - HRESULT - CreateSolidColorBrush( - CONST D2D1_COLOR_F &color, - __deref_out ID2D1SolidColorBrush **solidColorBrush - ) - { - return CreateSolidColorBrush(&color, NULL, solidColorBrush); - } - - HRESULT - CreateSolidColorBrush( - CONST D2D1_COLOR_F &color, - CONST D2D1_BRUSH_PROPERTIES &brushProperties, - __deref_out ID2D1SolidColorBrush **solidColorBrush - ) - { - return CreateSolidColorBrush(&color, &brushProperties, solidColorBrush); - } - - HRESULT - CreateGradientStopCollection( - __in_ecount(gradientStopsCount) CONST D2D1_GRADIENT_STOP *gradientStops, - UINT gradientStopsCount, - __deref_out ID2D1GradientStopCollection **gradientStopCollection - ) - { - return CreateGradientStopCollection(gradientStops, gradientStopsCount, D2D1_GAMMA_2_2, D2D1_EXTEND_MODE_CLAMP, gradientStopCollection); - } - - HRESULT - CreateLinearGradientBrush( - CONST D2D1_LINEAR_GRADIENT_BRUSH_PROPERTIES &linearGradientBrushProperties, - __in ID2D1GradientStopCollection *gradientStopCollection, - __deref_out ID2D1LinearGradientBrush **linearGradientBrush - ) - { - return CreateLinearGradientBrush(&linearGradientBrushProperties, NULL, gradientStopCollection, linearGradientBrush); - } - - HRESULT - CreateLinearGradientBrush( - CONST D2D1_LINEAR_GRADIENT_BRUSH_PROPERTIES &linearGradientBrushProperties, - CONST D2D1_BRUSH_PROPERTIES &brushProperties, - __in ID2D1GradientStopCollection *gradientStopCollection, - __deref_out ID2D1LinearGradientBrush **linearGradientBrush - ) - { - return CreateLinearGradientBrush(&linearGradientBrushProperties, &brushProperties, gradientStopCollection, linearGradientBrush); - } - - HRESULT - CreateRadialGradientBrush( - CONST D2D1_RADIAL_GRADIENT_BRUSH_PROPERTIES &radialGradientBrushProperties, - __in ID2D1GradientStopCollection *gradientStopCollection, - __deref_out ID2D1RadialGradientBrush **radialGradientBrush - ) - { - return CreateRadialGradientBrush(&radialGradientBrushProperties, NULL, gradientStopCollection, radialGradientBrush); - } - - HRESULT - CreateRadialGradientBrush( - CONST D2D1_RADIAL_GRADIENT_BRUSH_PROPERTIES &radialGradientBrushProperties, - CONST D2D1_BRUSH_PROPERTIES &brushProperties, - __in ID2D1GradientStopCollection *gradientStopCollection, - __deref_out ID2D1RadialGradientBrush **radialGradientBrush - ) - { - return CreateRadialGradientBrush(&radialGradientBrushProperties, &brushProperties, gradientStopCollection, radialGradientBrush); - } - - HRESULT - CreateCompatibleRenderTarget( - __deref_out ID2D1BitmapRenderTarget **bitmapRenderTarget - ) - { - return CreateCompatibleRenderTarget(NULL, NULL, NULL, D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS_NONE, bitmapRenderTarget); - } - - HRESULT - CreateCompatibleRenderTarget( - D2D1_SIZE_F desiredSize, - __deref_out ID2D1BitmapRenderTarget **bitmapRenderTarget - ) - { - return CreateCompatibleRenderTarget(&desiredSize, NULL, NULL, D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS_NONE, bitmapRenderTarget); - } - - HRESULT - CreateCompatibleRenderTarget( - D2D1_SIZE_F desiredSize, - D2D1_SIZE_U desiredPixelSize, - __deref_out ID2D1BitmapRenderTarget **bitmapRenderTarget - ) - { - return CreateCompatibleRenderTarget(&desiredSize, &desiredPixelSize, NULL, D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS_NONE, bitmapRenderTarget); - } - - HRESULT - CreateCompatibleRenderTarget( - D2D1_SIZE_F desiredSize, - D2D1_SIZE_U desiredPixelSize, - D2D1_PIXEL_FORMAT desiredFormat, - __deref_out ID2D1BitmapRenderTarget **bitmapRenderTarget - ) - { - return CreateCompatibleRenderTarget(&desiredSize, &desiredPixelSize, &desiredFormat, D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS_NONE, bitmapRenderTarget); - } - - HRESULT - CreateCompatibleRenderTarget( - D2D1_SIZE_F desiredSize, - D2D1_SIZE_U desiredPixelSize, - D2D1_PIXEL_FORMAT desiredFormat, - D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS options, - __deref_out ID2D1BitmapRenderTarget **bitmapRenderTarget - ) - { - return CreateCompatibleRenderTarget(&desiredSize, &desiredPixelSize, &desiredFormat, options, bitmapRenderTarget); - } - - HRESULT - CreateLayer( - D2D1_SIZE_F size, - __deref_out ID2D1Layer **layer - ) - { - return CreateLayer(&size, layer); - } - - HRESULT - CreateLayer( - __deref_out ID2D1Layer **layer - ) - { - return CreateLayer(NULL, layer); - } - - void - DrawRectangle( - CONST D2D1_RECT_F &rect, - __in ID2D1Brush *brush, - FLOAT strokeWidth = 1.0f, - __in_opt ID2D1StrokeStyle *strokeStyle = NULL - ) - { - DrawRectangle(&rect, brush, strokeWidth, strokeStyle); - } - - void - FillRectangle( - CONST D2D1_RECT_F &rect, - __in ID2D1Brush *brush - ) - { - FillRectangle(&rect, brush); - } - - void - DrawRoundedRectangle( - CONST D2D1_ROUNDED_RECT &roundedRect, - __in ID2D1Brush *brush, - FLOAT strokeWidth = 1.0f, - __in_opt ID2D1StrokeStyle *strokeStyle = NULL - ) - { - DrawRoundedRectangle(&roundedRect, brush, strokeWidth, strokeStyle); - } - - void - FillRoundedRectangle( - CONST D2D1_ROUNDED_RECT &roundedRect, - __in ID2D1Brush *brush - ) - { - FillRoundedRectangle(&roundedRect, brush); - } - - void - DrawEllipse( - CONST D2D1_ELLIPSE &ellipse, - __in ID2D1Brush *brush, - FLOAT strokeWidth = 1.0f, - __in_opt ID2D1StrokeStyle *strokeStyle = NULL - ) - { - DrawEllipse(&ellipse, brush, strokeWidth, strokeStyle); - } - - void - FillEllipse( - CONST D2D1_ELLIPSE &ellipse, - __in ID2D1Brush *brush - ) - { - FillEllipse(&ellipse, brush); - } - - void - FillOpacityMask( - __in ID2D1Bitmap *opacityMask, - __in ID2D1Brush *brush, - D2D1_OPACITY_MASK_CONTENT content, - CONST D2D1_RECT_F &destinationRectangle, - CONST D2D1_RECT_F &sourceRectangle - ) - { - FillOpacityMask(opacityMask, brush, content, &destinationRectangle, &sourceRectangle); - } - - void - DrawBitmap( - __in ID2D1Bitmap *bitmap, - CONST D2D1_RECT_F &destinationRectangle, - FLOAT opacity = 1.0f, - D2D1_BITMAP_INTERPOLATION_MODE interpolationMode = D2D1_BITMAP_INTERPOLATION_MODE_LINEAR, - __in_opt CONST D2D1_RECT_F *sourceRectangle = NULL - ) - { - DrawBitmap(bitmap, &destinationRectangle, opacity, interpolationMode, sourceRectangle); - } - - void - DrawBitmap( - __in ID2D1Bitmap *bitmap, - CONST D2D1_RECT_F &destinationRectangle, - FLOAT opacity, - D2D1_BITMAP_INTERPOLATION_MODE interpolationMode, - CONST D2D1_RECT_F &sourceRectangle - ) - { - DrawBitmap(bitmap, &destinationRectangle, opacity, interpolationMode, &sourceRectangle); - } - - void - SetTransform( - CONST D2D1_MATRIX_3X2_F &transform - ) - { - SetTransform(&transform); - } - - void - PushLayer( - CONST D2D1_LAYER_PARAMETERS &layerParameters, - __in ID2D1Layer *layer - ) - { - PushLayer(&layerParameters, layer); - } - - void - PushAxisAlignedClip( - CONST D2D1_RECT_F &clipRect, - D2D1_ANTIALIAS_MODE antialiasMode - ) - { - return PushAxisAlignedClip(&clipRect, antialiasMode); - } - - void - Clear( - CONST D2D1_COLOR_F &clearColor - ) - { - return Clear(&clearColor); - } - - - // - // Draws the text within the given layout rectangle and by default also snaps and - // clips it. - // - void - DrawText( - __in_ecount(stringLength) CONST WCHAR *string, - UINT stringLength, - __in IDWriteTextFormat *textFormat, - CONST D2D1_RECT_F &layoutRect, - __in ID2D1Brush *defaultForegroundBrush, - D2D1_DRAW_TEXT_OPTIONS options = D2D1_DRAW_TEXT_OPTIONS_NONE, - DWRITE_MEASURING_MODE measuringMode = DWRITE_MEASURING_MODE_NATURAL - ) - { - return DrawText(string, stringLength, textFormat, &layoutRect, defaultForegroundBrush, options, measuringMode); - } - - BOOL - IsSupported( - CONST D2D1_RENDER_TARGET_PROPERTIES &renderTargetProperties - ) CONST - { - return IsSupported(&renderTargetProperties); - } -}; // interface ID2D1RenderTarget - - - -//+----------------------------------------------------------------------------- -// -// Interface: -// ID2D1BitmapRenderTarget -// -//------------------------------------------------------------------------------ -interface D2D1_DECLARE_INTERFACE("2cd90695-12e2-11dc-9fed-001143a055f9") ID2D1BitmapRenderTarget : public ID2D1RenderTarget -{ - - STDMETHOD(GetBitmap)( - __deref_out ID2D1Bitmap **bitmap - ) PURE; -}; // interface ID2D1BitmapRenderTarget - - - -//+----------------------------------------------------------------------------- -// -// Interface: -// ID2D1HwndRenderTarget -// -//------------------------------------------------------------------------------ -interface D2D1_DECLARE_INTERFACE("2cd90698-12e2-11dc-9fed-001143a055f9") ID2D1HwndRenderTarget : public ID2D1RenderTarget -{ - - STDMETHOD_(D2D1_WINDOW_STATE, CheckWindowState)( - ) PURE; - - - // - // Resize the buffer underlying the render target. This operation might fail if - // there is insufficent video memory or system memory, or if the render target is - // resized beyond the maximum bitmap size. If the method fails, the render target - // will be placed in a zombie state and D2DERR_RECREATE_TARGET will be returned - // from it when EndDraw is called. In addition an appropriate failure result will - // be returned from Resize. - // - STDMETHOD(Resize)( - __in CONST D2D1_SIZE_U *pixelSize - ) PURE; - - STDMETHOD_(HWND, GetHwnd)( - ) CONST PURE; - - HRESULT - Resize( - CONST D2D1_SIZE_U &pixelSize - ) - { - return Resize(&pixelSize); - } -}; // interface ID2D1HwndRenderTarget - - - -//+----------------------------------------------------------------------------- -// -// Interface: -// ID2D1GdiInteropRenderTarget -// -//------------------------------------------------------------------------------ -interface D2D1_DECLARE_INTERFACE("e0db51c3-6f77-4bae-b3d5-e47509b35838") ID2D1GdiInteropRenderTarget : public IUnknown -{ - - STDMETHOD(GetDC)( - D2D1_DC_INITIALIZE_MODE mode, - __out HDC *hdc - ) PURE; - - STDMETHOD(ReleaseDC)( - __in_opt CONST RECT *update - ) PURE; -}; // interface ID2D1GdiInteropRenderTarget - - - -//+----------------------------------------------------------------------------- -// -// Interface: -// ID2D1DCRenderTarget -// -//------------------------------------------------------------------------------ -interface D2D1_DECLARE_INTERFACE("1c51bc64-de61-46fd-9899-63a5d8f03950") ID2D1DCRenderTarget : public ID2D1RenderTarget -{ - - STDMETHOD(BindDC)( - __in CONST HDC hDC, - __in CONST RECT *pSubRect - ) PURE; -}; // interface ID2D1DCRenderTarget - - - -//+----------------------------------------------------------------------------- -// -// Interface: -// ID2D1Factory -// -// Synopsis: -// The root factory interface for all of D2D's objects. -// -//------------------------------------------------------------------------------ -interface D2D1_DECLARE_INTERFACE("06152247-6f50-465a-9245-118bfd3b6007") ID2D1Factory : public IUnknown -{ - - - // - // Cause the factory to refresh any system metrics that it might have been snapped - // on factory creation. - // - STDMETHOD(ReloadSystemMetrics)( - ) PURE; - - - // - // Retrieves the current desktop DPI. To refresh this, call ReloadSystemMetrics. - // - STDMETHOD_(void, GetDesktopDpi)( - __out FLOAT *dpiX, - __out FLOAT *dpiY - ) PURE; - - STDMETHOD(CreateRectangleGeometry)( - __in CONST D2D1_RECT_F *rectangle, - __deref_out ID2D1RectangleGeometry **rectangleGeometry - ) PURE; - - STDMETHOD(CreateRoundedRectangleGeometry)( - __in CONST D2D1_ROUNDED_RECT *roundedRectangle, - __deref_out ID2D1RoundedRectangleGeometry **roundedRectangleGeometry - ) PURE; - - STDMETHOD(CreateEllipseGeometry)( - __in CONST D2D1_ELLIPSE *ellipse, - __deref_out ID2D1EllipseGeometry **ellipseGeometry - ) PURE; - - - // - // Create a geometry which holds other geometries. - // - STDMETHOD(CreateGeometryGroup)( - D2D1_FILL_MODE fillMode, - __in_ecount(geometriesCount) ID2D1Geometry **geometries, - UINT geometriesCount, - __deref_out ID2D1GeometryGroup **geometryGroup - ) PURE; - - STDMETHOD(CreateTransformedGeometry)( - __in ID2D1Geometry *sourceGeometry, - __in CONST D2D1_MATRIX_3X2_F *transform, - __deref_out ID2D1TransformedGeometry **transformedGeometry - ) PURE; - - - // - // Returns an initially empty path geometry interface. A geometry sink is created - // off the interface to populate it. - // - STDMETHOD(CreatePathGeometry)( - __deref_out ID2D1PathGeometry **pathGeometry - ) PURE; - - - // - // Allows a non-default stroke style to be specified for a given geometry at draw - // time. - // - STDMETHOD(CreateStrokeStyle)( - __in CONST D2D1_STROKE_STYLE_PROPERTIES *strokeStyleProperties, - __in_ecount_opt(dashesCount) CONST FLOAT *dashes, - UINT dashesCount, - __deref_out ID2D1StrokeStyle **strokeStyle - ) PURE; - - - // - // Creates a new drawing state block, this can be used in subsequent - // SaveDrawingState and RestoreDrawingState operations on the render target. - // - STDMETHOD(CreateDrawingStateBlock)( - __in_opt CONST D2D1_DRAWING_STATE_DESCRIPTION *drawingStateDescription, - __in_opt IDWriteRenderingParams *textRenderingParams, - __deref_out ID2D1DrawingStateBlock **drawingStateBlock - ) PURE; - - - // - // Creates a render target which is a source of bitmaps. - // - STDMETHOD(CreateWicBitmapRenderTarget)( - __in IWICBitmap *target, - __in CONST D2D1_RENDER_TARGET_PROPERTIES *renderTargetProperties, - __deref_out ID2D1RenderTarget **renderTarget - ) PURE; - - - // - // Creates a render target that appears on the display. - // - STDMETHOD(CreateHwndRenderTarget)( - __in CONST D2D1_RENDER_TARGET_PROPERTIES *renderTargetProperties, - __in CONST D2D1_HWND_RENDER_TARGET_PROPERTIES *hwndRenderTargetProperties, - __deref_out ID2D1HwndRenderTarget **hwndRenderTarget - ) PURE; - - - // - // Creates a render target that draws to a DXGI Surface. The device that owns the - // surface is used for rendering. - // - STDMETHOD(CreateDxgiSurfaceRenderTarget)( - __in IDXGISurface *dxgiSurface, - __in CONST D2D1_RENDER_TARGET_PROPERTIES *renderTargetProperties, - __deref_out ID2D1RenderTarget **renderTarget - ) PURE; - - - // - // Creates a render target that draws to a GDI device context. - // - STDMETHOD(CreateDCRenderTarget)( - __in CONST D2D1_RENDER_TARGET_PROPERTIES *renderTargetProperties, - __deref_out ID2D1DCRenderTarget **dcRenderTarget - ) PURE; - - HRESULT - CreateRectangleGeometry( - CONST D2D1_RECT_F &rectangle, - __deref_out ID2D1RectangleGeometry **rectangleGeometry - ) - { - return CreateRectangleGeometry(&rectangle, rectangleGeometry); - } - - HRESULT - CreateRoundedRectangleGeometry( - CONST D2D1_ROUNDED_RECT &roundedRectangle, - __deref_out ID2D1RoundedRectangleGeometry **roundedRectangleGeometry - ) - { - return CreateRoundedRectangleGeometry(&roundedRectangle, roundedRectangleGeometry); - } - - HRESULT - CreateEllipseGeometry( - CONST D2D1_ELLIPSE &ellipse, - __deref_out ID2D1EllipseGeometry **ellipseGeometry - ) - { - return CreateEllipseGeometry(&ellipse, ellipseGeometry); - } - - HRESULT - CreateTransformedGeometry( - __in ID2D1Geometry *sourceGeometry, - CONST D2D1_MATRIX_3X2_F &transform, - __deref_out ID2D1TransformedGeometry **transformedGeometry - ) - { - return CreateTransformedGeometry(sourceGeometry, &transform, transformedGeometry); - } - - HRESULT - CreateStrokeStyle( - CONST D2D1_STROKE_STYLE_PROPERTIES &strokeStyleProperties, - __in_ecount(dashesCount) CONST FLOAT *dashes, - UINT dashesCount, - __deref_out ID2D1StrokeStyle **strokeStyle - ) - { - return CreateStrokeStyle(&strokeStyleProperties, dashes, dashesCount, strokeStyle); - } - - HRESULT - CreateDrawingStateBlock( - CONST D2D1_DRAWING_STATE_DESCRIPTION &drawingStateDescription, - __deref_out ID2D1DrawingStateBlock **drawingStateBlock - ) - { - return CreateDrawingStateBlock(&drawingStateDescription, NULL, drawingStateBlock); - } - - HRESULT - CreateDrawingStateBlock( - __deref_out ID2D1DrawingStateBlock **drawingStateBlock - ) - { - return CreateDrawingStateBlock(NULL, NULL, drawingStateBlock); - } - - HRESULT - CreateWicBitmapRenderTarget( - __in IWICBitmap *target, - CONST D2D1_RENDER_TARGET_PROPERTIES &renderTargetProperties, - __deref_out ID2D1RenderTarget **renderTarget - ) - { - return CreateWicBitmapRenderTarget(target, &renderTargetProperties, renderTarget); - } - - HRESULT - CreateHwndRenderTarget( - CONST D2D1_RENDER_TARGET_PROPERTIES &renderTargetProperties, - CONST D2D1_HWND_RENDER_TARGET_PROPERTIES &hwndRenderTargetProperties, - __deref_out ID2D1HwndRenderTarget **hwndRenderTarget - ) - { - return CreateHwndRenderTarget(&renderTargetProperties, &hwndRenderTargetProperties, hwndRenderTarget); - } - - HRESULT - CreateDxgiSurfaceRenderTarget( - __in IDXGISurface *dxgiSurface, - CONST D2D1_RENDER_TARGET_PROPERTIES &renderTargetProperties, - __deref_out ID2D1RenderTarget **renderTarget - ) - { - return CreateDxgiSurfaceRenderTarget(dxgiSurface, &renderTargetProperties, renderTarget); - } -}; // interface ID2D1Factory - - - -#endif - - -EXTERN_C CONST IID IID_ID2D1Resource; -EXTERN_C CONST IID IID_ID2D1Bitmap; -EXTERN_C CONST IID IID_ID2D1GradientStopCollection; -EXTERN_C CONST IID IID_ID2D1Brush; -EXTERN_C CONST IID IID_ID2D1BitmapBrush; -EXTERN_C CONST IID IID_ID2D1SolidColorBrush; -EXTERN_C CONST IID IID_ID2D1LinearGradientBrush; -EXTERN_C CONST IID IID_ID2D1RadialGradientBrush; -EXTERN_C CONST IID IID_ID2D1StrokeStyle; -EXTERN_C CONST IID IID_ID2D1Geometry; -EXTERN_C CONST IID IID_ID2D1RectangleGeometry; -EXTERN_C CONST IID IID_ID2D1RoundedRectangleGeometry; -EXTERN_C CONST IID IID_ID2D1EllipseGeometry; -EXTERN_C CONST IID IID_ID2D1GeometryGroup; -EXTERN_C CONST IID IID_ID2D1TransformedGeometry; -EXTERN_C CONST IID IID_ID2D1SimplifiedGeometrySink; -EXTERN_C CONST IID IID_ID2D1GeometrySink; -EXTERN_C CONST IID IID_ID2D1TessellationSink; -EXTERN_C CONST IID IID_ID2D1PathGeometry; -EXTERN_C CONST IID IID_ID2D1Mesh; -EXTERN_C CONST IID IID_ID2D1Layer; -EXTERN_C CONST IID IID_ID2D1DrawingStateBlock; -EXTERN_C CONST IID IID_ID2D1RenderTarget; -EXTERN_C CONST IID IID_ID2D1BitmapRenderTarget; -EXTERN_C CONST IID IID_ID2D1HwndRenderTarget; -EXTERN_C CONST IID IID_ID2D1GdiInteropRenderTarget; -EXTERN_C CONST IID IID_ID2D1DCRenderTarget; -EXTERN_C CONST IID IID_ID2D1Factory; - - -#ifdef D2D_USE_C_DEFINITIONS - - -typedef interface ID2D1Resource ID2D1Resource; - -typedef struct ID2D1ResourceVtbl -{ - - IUnknownVtbl Base; - - - STDMETHOD_(void, GetFactory)( - ID2D1Resource *This, - __deref_out ID2D1Factory **factory - ) PURE; -} ID2D1ResourceVtbl; - -interface ID2D1Resource -{ - CONST struct ID2D1ResourceVtbl *lpVtbl; -}; - - -#define ID2D1Resource_QueryInterface(This, riid, ppv) \ - ((This)->lpVtbl->Base.QueryInterface((IUnknown *)This, riid, ppv)) - -#define ID2D1Resource_AddRef(This) \ - ((This)->lpVtbl->Base.AddRef((IUnknown *)This)) - -#define ID2D1Resource_Release(This) \ - ((This)->lpVtbl->Base.Release((IUnknown *)This)) - -#define ID2D1Resource_GetFactory(This, factory) \ - ((This)->lpVtbl->GetFactory(This, factory)) - -typedef interface ID2D1Bitmap ID2D1Bitmap; - -typedef struct ID2D1BitmapVtbl -{ - - ID2D1ResourceVtbl Base; - - - STDMETHOD_(D2D1_SIZE_F, GetSize)( - ID2D1Bitmap *This - ) PURE; - - STDMETHOD_(D2D1_SIZE_U, GetPixelSize)( - ID2D1Bitmap *This - ) PURE; - - STDMETHOD_(D2D1_PIXEL_FORMAT, GetPixelFormat)( - ID2D1Bitmap *This - ) PURE; - - STDMETHOD_(void, GetDpi)( - ID2D1Bitmap *This, - __out FLOAT *dpiX, - __out FLOAT *dpiY - ) PURE; - - STDMETHOD(CopyFromBitmap)( - ID2D1Bitmap *This, - __in_opt CONST D2D1_POINT_2U *destPoint, - __in ID2D1Bitmap *bitmap, - __in_opt CONST D2D1_RECT_U *srcRect - ) PURE; - - STDMETHOD(CopyFromRenderTarget)( - ID2D1Bitmap *This, - __in_opt CONST D2D1_POINT_2U *destPoint, - __in ID2D1RenderTarget *renderTarget, - __in_opt CONST D2D1_RECT_U *srcRect - ) PURE; - - STDMETHOD(CopyFromMemory)( - ID2D1Bitmap *This, - __in_opt CONST D2D1_RECT_U *dstRect, - __in CONST void *srcData, - UINT32 pitch - ) PURE; -} ID2D1BitmapVtbl; - -interface ID2D1Bitmap -{ - CONST struct ID2D1BitmapVtbl *lpVtbl; -}; - - -#define ID2D1Bitmap_QueryInterface(This, riid, ppv) \ - ((This)->lpVtbl->Base.Base.QueryInterface((IUnknown *)This, riid, ppv)) - -#define ID2D1Bitmap_AddRef(This) \ - ((This)->lpVtbl->Base.Base.AddRef((IUnknown *)This)) - -#define ID2D1Bitmap_Release(This) \ - ((This)->lpVtbl->Base.Base.Release((IUnknown *)This)) - -#define ID2D1Bitmap_GetFactory(This, factory) \ - ((This)->lpVtbl->Base.GetFactory((ID2D1Resource *)This, factory)) - -#define ID2D1Bitmap_GetSize(This) \ - ((This)->lpVtbl->GetSize(This)) - -#define ID2D1Bitmap_GetPixelSize(This) \ - ((This)->lpVtbl->GetPixelSize(This)) - -#define ID2D1Bitmap_GetPixelFormat(This) \ - ((This)->lpVtbl->GetPixelFormat(This)) - -#define ID2D1Bitmap_GetDpi(This, dpiX, dpiY) \ - ((This)->lpVtbl->GetDpi(This, dpiX, dpiY)) - -#define ID2D1Bitmap_CopyFromBitmap(This, destPoint, bitmap, srcRect) \ - ((This)->lpVtbl->CopyFromBitmap(This, destPoint, bitmap, srcRect)) - -#define ID2D1Bitmap_CopyFromRenderTarget(This, destPoint, renderTarget, srcRect) \ - ((This)->lpVtbl->CopyFromRenderTarget(This, destPoint, renderTarget, srcRect)) - -#define ID2D1Bitmap_CopyFromMemory(This, dstRect, srcData, pitch) \ - ((This)->lpVtbl->CopyFromMemory(This, dstRect, srcData, pitch)) - -typedef interface ID2D1GradientStopCollection ID2D1GradientStopCollection; - -typedef struct ID2D1GradientStopCollectionVtbl -{ - - ID2D1ResourceVtbl Base; - - - STDMETHOD_(UINT32, GetGradientStopCount)( - ID2D1GradientStopCollection *This - ) PURE; - - STDMETHOD_(void, GetGradientStops)( - ID2D1GradientStopCollection *This, - __out_ecount(gradientStopsCount) D2D1_GRADIENT_STOP *gradientStops, - UINT gradientStopsCount - ) PURE; - - STDMETHOD_(D2D1_GAMMA, GetColorInterpolationGamma)( - ID2D1GradientStopCollection *This - ) PURE; - - STDMETHOD_(D2D1_EXTEND_MODE, GetExtendMode)( - ID2D1GradientStopCollection *This - ) PURE; -} ID2D1GradientStopCollectionVtbl; - -interface ID2D1GradientStopCollection -{ - CONST struct ID2D1GradientStopCollectionVtbl *lpVtbl; -}; - - -#define ID2D1GradientStopCollection_QueryInterface(This, riid, ppv) \ - ((This)->lpVtbl->Base.Base.QueryInterface((IUnknown *)This, riid, ppv)) - -#define ID2D1GradientStopCollection_AddRef(This) \ - ((This)->lpVtbl->Base.Base.AddRef((IUnknown *)This)) - -#define ID2D1GradientStopCollection_Release(This) \ - ((This)->lpVtbl->Base.Base.Release((IUnknown *)This)) - -#define ID2D1GradientStopCollection_GetFactory(This, factory) \ - ((This)->lpVtbl->Base.GetFactory((ID2D1Resource *)This, factory)) - -#define ID2D1GradientStopCollection_GetGradientStopCount(This) \ - ((This)->lpVtbl->GetGradientStopCount(This)) - -#define ID2D1GradientStopCollection_GetGradientStops(This, gradientStops, gradientStopsCount) \ - ((This)->lpVtbl->GetGradientStops(This, gradientStops, gradientStopsCount)) - -#define ID2D1GradientStopCollection_GetColorInterpolationGamma(This) \ - ((This)->lpVtbl->GetColorInterpolationGamma(This)) - -#define ID2D1GradientStopCollection_GetExtendMode(This) \ - ((This)->lpVtbl->GetExtendMode(This)) - -typedef interface ID2D1Brush ID2D1Brush; - -typedef struct ID2D1BrushVtbl -{ - - ID2D1ResourceVtbl Base; - - - STDMETHOD_(void, SetOpacity)( - ID2D1Brush *This, - FLOAT opacity - ) PURE; - - STDMETHOD_(void, SetTransform)( - ID2D1Brush *This, - __in CONST D2D1_MATRIX_3X2_F *transform - ) PURE; - - STDMETHOD_(FLOAT, GetOpacity)( - ID2D1Brush *This - ) PURE; - - STDMETHOD_(void, GetTransform)( - ID2D1Brush *This, - __out D2D1_MATRIX_3X2_F *transform - ) PURE; -} ID2D1BrushVtbl; - -interface ID2D1Brush -{ - CONST struct ID2D1BrushVtbl *lpVtbl; -}; - - -#define ID2D1Brush_QueryInterface(This, riid, ppv) \ - ((This)->lpVtbl->Base.Base.QueryInterface((IUnknown *)This, riid, ppv)) - -#define ID2D1Brush_AddRef(This) \ - ((This)->lpVtbl->Base.Base.AddRef((IUnknown *)This)) - -#define ID2D1Brush_Release(This) \ - ((This)->lpVtbl->Base.Base.Release((IUnknown *)This)) - -#define ID2D1Brush_GetFactory(This, factory) \ - ((This)->lpVtbl->Base.GetFactory((ID2D1Resource *)This, factory)) - -#define ID2D1Brush_SetOpacity(This, opacity) \ - ((This)->lpVtbl->SetOpacity(This, opacity)) - -#define ID2D1Brush_SetTransform(This, transform) \ - ((This)->lpVtbl->SetTransform(This, transform)) - -#define ID2D1Brush_GetOpacity(This) \ - ((This)->lpVtbl->GetOpacity(This)) - -#define ID2D1Brush_GetTransform(This, transform) \ - ((This)->lpVtbl->GetTransform(This, transform)) - -typedef interface ID2D1BitmapBrush ID2D1BitmapBrush; - -typedef struct ID2D1BitmapBrushVtbl -{ - - ID2D1BrushVtbl Base; - - - STDMETHOD_(void, SetExtendModeX)( - ID2D1BitmapBrush *This, - D2D1_EXTEND_MODE extendModeX - ) PURE; - - STDMETHOD_(void, SetExtendModeY)( - ID2D1BitmapBrush *This, - D2D1_EXTEND_MODE extendModeY - ) PURE; - - STDMETHOD_(void, SetInterpolationMode)( - ID2D1BitmapBrush *This, - D2D1_BITMAP_INTERPOLATION_MODE interpolationMode - ) PURE; - - STDMETHOD_(void, SetBitmap)( - ID2D1BitmapBrush *This, - __in ID2D1Bitmap *bitmap - ) PURE; - - STDMETHOD_(D2D1_EXTEND_MODE, GetExtendModeX)( - ID2D1BitmapBrush *This - ) PURE; - - STDMETHOD_(D2D1_EXTEND_MODE, GetExtendModeY)( - ID2D1BitmapBrush *This - ) PURE; - - STDMETHOD_(D2D1_BITMAP_INTERPOLATION_MODE, GetInterpolationMode)( - ID2D1BitmapBrush *This - ) PURE; - - STDMETHOD_(void, GetBitmap)( - ID2D1BitmapBrush *This, - __deref_out ID2D1Bitmap **bitmap - ) PURE; -} ID2D1BitmapBrushVtbl; - -interface ID2D1BitmapBrush -{ - CONST struct ID2D1BitmapBrushVtbl *lpVtbl; -}; - - -#define ID2D1BitmapBrush_QueryInterface(This, riid, ppv) \ - ((This)->lpVtbl->Base.Base.Base.QueryInterface((IUnknown *)This, riid, ppv)) - -#define ID2D1BitmapBrush_AddRef(This) \ - ((This)->lpVtbl->Base.Base.Base.AddRef((IUnknown *)This)) - -#define ID2D1BitmapBrush_Release(This) \ - ((This)->lpVtbl->Base.Base.Base.Release((IUnknown *)This)) - -#define ID2D1BitmapBrush_GetFactory(This, factory) \ - ((This)->lpVtbl->Base.Base.GetFactory((ID2D1Resource *)This, factory)) - -#define ID2D1BitmapBrush_SetOpacity(This, opacity) \ - ((This)->lpVtbl->Base.SetOpacity((ID2D1Brush *)This, opacity)) - -#define ID2D1BitmapBrush_SetTransform(This, transform) \ - ((This)->lpVtbl->Base.SetTransform((ID2D1Brush *)This, transform)) - -#define ID2D1BitmapBrush_GetOpacity(This) \ - ((This)->lpVtbl->Base.GetOpacity((ID2D1Brush *)This)) - -#define ID2D1BitmapBrush_GetTransform(This, transform) \ - ((This)->lpVtbl->Base.GetTransform((ID2D1Brush *)This, transform)) - -#define ID2D1BitmapBrush_SetExtendModeX(This, extendModeX) \ - ((This)->lpVtbl->SetExtendModeX(This, extendModeX)) - -#define ID2D1BitmapBrush_SetExtendModeY(This, extendModeY) \ - ((This)->lpVtbl->SetExtendModeY(This, extendModeY)) - -#define ID2D1BitmapBrush_SetInterpolationMode(This, interpolationMode) \ - ((This)->lpVtbl->SetInterpolationMode(This, interpolationMode)) - -#define ID2D1BitmapBrush_SetBitmap(This, bitmap) \ - ((This)->lpVtbl->SetBitmap(This, bitmap)) - -#define ID2D1BitmapBrush_GetExtendModeX(This) \ - ((This)->lpVtbl->GetExtendModeX(This)) - -#define ID2D1BitmapBrush_GetExtendModeY(This) \ - ((This)->lpVtbl->GetExtendModeY(This)) - -#define ID2D1BitmapBrush_GetInterpolationMode(This) \ - ((This)->lpVtbl->GetInterpolationMode(This)) - -#define ID2D1BitmapBrush_GetBitmap(This, bitmap) \ - ((This)->lpVtbl->GetBitmap(This, bitmap)) - -typedef interface ID2D1SolidColorBrush ID2D1SolidColorBrush; - -typedef struct ID2D1SolidColorBrushVtbl -{ - - ID2D1BrushVtbl Base; - - - STDMETHOD_(void, SetColor)( - ID2D1SolidColorBrush *This, - __in CONST D2D1_COLOR_F *color - ) PURE; - - STDMETHOD_(D2D1_COLOR_F, GetColor)( - ID2D1SolidColorBrush *This - ) PURE; -} ID2D1SolidColorBrushVtbl; - -interface ID2D1SolidColorBrush -{ - CONST struct ID2D1SolidColorBrushVtbl *lpVtbl; -}; - - -#define ID2D1SolidColorBrush_QueryInterface(This, riid, ppv) \ - ((This)->lpVtbl->Base.Base.Base.QueryInterface((IUnknown *)This, riid, ppv)) - -#define ID2D1SolidColorBrush_AddRef(This) \ - ((This)->lpVtbl->Base.Base.Base.AddRef((IUnknown *)This)) - -#define ID2D1SolidColorBrush_Release(This) \ - ((This)->lpVtbl->Base.Base.Base.Release((IUnknown *)This)) - -#define ID2D1SolidColorBrush_GetFactory(This, factory) \ - ((This)->lpVtbl->Base.Base.GetFactory((ID2D1Resource *)This, factory)) - -#define ID2D1SolidColorBrush_SetOpacity(This, opacity) \ - ((This)->lpVtbl->Base.SetOpacity((ID2D1Brush *)This, opacity)) - -#define ID2D1SolidColorBrush_SetTransform(This, transform) \ - ((This)->lpVtbl->Base.SetTransform((ID2D1Brush *)This, transform)) - -#define ID2D1SolidColorBrush_GetOpacity(This) \ - ((This)->lpVtbl->Base.GetOpacity((ID2D1Brush *)This)) - -#define ID2D1SolidColorBrush_GetTransform(This, transform) \ - ((This)->lpVtbl->Base.GetTransform((ID2D1Brush *)This, transform)) - -#define ID2D1SolidColorBrush_SetColor(This, color) \ - ((This)->lpVtbl->SetColor(This, color)) - -#define ID2D1SolidColorBrush_GetColor(This) \ - ((This)->lpVtbl->GetColor(This)) - -typedef interface ID2D1LinearGradientBrush ID2D1LinearGradientBrush; - -typedef struct ID2D1LinearGradientBrushVtbl -{ - - ID2D1BrushVtbl Base; - - - STDMETHOD_(void, SetStartPoint)( - ID2D1LinearGradientBrush *This, - D2D1_POINT_2F startPoint - ) PURE; - - STDMETHOD_(void, SetEndPoint)( - ID2D1LinearGradientBrush *This, - D2D1_POINT_2F endPoint - ) PURE; - - STDMETHOD_(D2D1_POINT_2F, GetStartPoint)( - ID2D1LinearGradientBrush *This - ) PURE; - - STDMETHOD_(D2D1_POINT_2F, GetEndPoint)( - ID2D1LinearGradientBrush *This - ) PURE; - - STDMETHOD_(void, GetGradientStopCollection)( - ID2D1LinearGradientBrush *This, - __deref_out ID2D1GradientStopCollection **gradientStopCollection - ) PURE; -} ID2D1LinearGradientBrushVtbl; - -interface ID2D1LinearGradientBrush -{ - CONST struct ID2D1LinearGradientBrushVtbl *lpVtbl; -}; - - -#define ID2D1LinearGradientBrush_QueryInterface(This, riid, ppv) \ - ((This)->lpVtbl->Base.Base.Base.QueryInterface((IUnknown *)This, riid, ppv)) - -#define ID2D1LinearGradientBrush_AddRef(This) \ - ((This)->lpVtbl->Base.Base.Base.AddRef((IUnknown *)This)) - -#define ID2D1LinearGradientBrush_Release(This) \ - ((This)->lpVtbl->Base.Base.Base.Release((IUnknown *)This)) - -#define ID2D1LinearGradientBrush_GetFactory(This, factory) \ - ((This)->lpVtbl->Base.Base.GetFactory((ID2D1Resource *)This, factory)) - -#define ID2D1LinearGradientBrush_SetOpacity(This, opacity) \ - ((This)->lpVtbl->Base.SetOpacity((ID2D1Brush *)This, opacity)) - -#define ID2D1LinearGradientBrush_SetTransform(This, transform) \ - ((This)->lpVtbl->Base.SetTransform((ID2D1Brush *)This, transform)) - -#define ID2D1LinearGradientBrush_GetOpacity(This) \ - ((This)->lpVtbl->Base.GetOpacity((ID2D1Brush *)This)) - -#define ID2D1LinearGradientBrush_GetTransform(This, transform) \ - ((This)->lpVtbl->Base.GetTransform((ID2D1Brush *)This, transform)) - -#define ID2D1LinearGradientBrush_SetStartPoint(This, startPoint) \ - ((This)->lpVtbl->SetStartPoint(This, startPoint)) - -#define ID2D1LinearGradientBrush_SetEndPoint(This, endPoint) \ - ((This)->lpVtbl->SetEndPoint(This, endPoint)) - -#define ID2D1LinearGradientBrush_GetStartPoint(This) \ - ((This)->lpVtbl->GetStartPoint(This)) - -#define ID2D1LinearGradientBrush_GetEndPoint(This) \ - ((This)->lpVtbl->GetEndPoint(This)) - -#define ID2D1LinearGradientBrush_GetGradientStopCollection(This, gradientStopCollection) \ - ((This)->lpVtbl->GetGradientStopCollection(This, gradientStopCollection)) - -typedef interface ID2D1RadialGradientBrush ID2D1RadialGradientBrush; - -typedef struct ID2D1RadialGradientBrushVtbl -{ - - ID2D1BrushVtbl Base; - - - STDMETHOD_(void, SetCenter)( - ID2D1RadialGradientBrush *This, - D2D1_POINT_2F center - ) PURE; - - STDMETHOD_(void, SetGradientOriginOffset)( - ID2D1RadialGradientBrush *This, - D2D1_POINT_2F gradientOriginOffset - ) PURE; - - STDMETHOD_(void, SetRadiusX)( - ID2D1RadialGradientBrush *This, - FLOAT radiusX - ) PURE; - - STDMETHOD_(void, SetRadiusY)( - ID2D1RadialGradientBrush *This, - FLOAT radiusY - ) PURE; - - STDMETHOD_(D2D1_POINT_2F, GetCenter)( - ID2D1RadialGradientBrush *This - ) PURE; - - STDMETHOD_(D2D1_POINT_2F, GetGradientOriginOffset)( - ID2D1RadialGradientBrush *This - ) PURE; - - STDMETHOD_(FLOAT, GetRadiusX)( - ID2D1RadialGradientBrush *This - ) PURE; - - STDMETHOD_(FLOAT, GetRadiusY)( - ID2D1RadialGradientBrush *This - ) PURE; - - STDMETHOD_(void, GetGradientStopCollection)( - ID2D1RadialGradientBrush *This, - __deref_out ID2D1GradientStopCollection **gradientStopCollection - ) PURE; -} ID2D1RadialGradientBrushVtbl; - -interface ID2D1RadialGradientBrush -{ - CONST struct ID2D1RadialGradientBrushVtbl *lpVtbl; -}; - - -#define ID2D1RadialGradientBrush_QueryInterface(This, riid, ppv) \ - ((This)->lpVtbl->Base.Base.Base.QueryInterface((IUnknown *)This, riid, ppv)) - -#define ID2D1RadialGradientBrush_AddRef(This) \ - ((This)->lpVtbl->Base.Base.Base.AddRef((IUnknown *)This)) - -#define ID2D1RadialGradientBrush_Release(This) \ - ((This)->lpVtbl->Base.Base.Base.Release((IUnknown *)This)) - -#define ID2D1RadialGradientBrush_GetFactory(This, factory) \ - ((This)->lpVtbl->Base.Base.GetFactory((ID2D1Resource *)This, factory)) - -#define ID2D1RadialGradientBrush_SetOpacity(This, opacity) \ - ((This)->lpVtbl->Base.SetOpacity((ID2D1Brush *)This, opacity)) - -#define ID2D1RadialGradientBrush_SetTransform(This, transform) \ - ((This)->lpVtbl->Base.SetTransform((ID2D1Brush *)This, transform)) - -#define ID2D1RadialGradientBrush_GetOpacity(This) \ - ((This)->lpVtbl->Base.GetOpacity((ID2D1Brush *)This)) - -#define ID2D1RadialGradientBrush_GetTransform(This, transform) \ - ((This)->lpVtbl->Base.GetTransform((ID2D1Brush *)This, transform)) - -#define ID2D1RadialGradientBrush_SetCenter(This, center) \ - ((This)->lpVtbl->SetCenter(This, center)) - -#define ID2D1RadialGradientBrush_SetGradientOriginOffset(This, gradientOriginOffset) \ - ((This)->lpVtbl->SetGradientOriginOffset(This, gradientOriginOffset)) - -#define ID2D1RadialGradientBrush_SetRadiusX(This, radiusX) \ - ((This)->lpVtbl->SetRadiusX(This, radiusX)) - -#define ID2D1RadialGradientBrush_SetRadiusY(This, radiusY) \ - ((This)->lpVtbl->SetRadiusY(This, radiusY)) - -#define ID2D1RadialGradientBrush_GetCenter(This) \ - ((This)->lpVtbl->GetCenter(This)) - -#define ID2D1RadialGradientBrush_GetGradientOriginOffset(This) \ - ((This)->lpVtbl->GetGradientOriginOffset(This)) - -#define ID2D1RadialGradientBrush_GetRadiusX(This) \ - ((This)->lpVtbl->GetRadiusX(This)) - -#define ID2D1RadialGradientBrush_GetRadiusY(This) \ - ((This)->lpVtbl->GetRadiusY(This)) - -#define ID2D1RadialGradientBrush_GetGradientStopCollection(This, gradientStopCollection) \ - ((This)->lpVtbl->GetGradientStopCollection(This, gradientStopCollection)) - -typedef interface ID2D1StrokeStyle ID2D1StrokeStyle; - -typedef struct ID2D1StrokeStyleVtbl -{ - - ID2D1ResourceVtbl Base; - - - STDMETHOD_(D2D1_CAP_STYLE, GetStartCap)( - ID2D1StrokeStyle *This - ) PURE; - - STDMETHOD_(D2D1_CAP_STYLE, GetEndCap)( - ID2D1StrokeStyle *This - ) PURE; - - STDMETHOD_(D2D1_CAP_STYLE, GetDashCap)( - ID2D1StrokeStyle *This - ) PURE; - - STDMETHOD_(FLOAT, GetMiterLimit)( - ID2D1StrokeStyle *This - ) PURE; - - STDMETHOD_(D2D1_LINE_JOIN, GetLineJoin)( - ID2D1StrokeStyle *This - ) PURE; - - STDMETHOD_(FLOAT, GetDashOffset)( - ID2D1StrokeStyle *This - ) PURE; - - STDMETHOD_(D2D1_DASH_STYLE, GetDashStyle)( - ID2D1StrokeStyle *This - ) PURE; - - STDMETHOD_(UINT32, GetDashesCount)( - ID2D1StrokeStyle *This - ) PURE; - - STDMETHOD_(void, GetDashes)( - ID2D1StrokeStyle *This, - __out_ecount(dashesCount) FLOAT *dashes, - UINT dashesCount - ) PURE; -} ID2D1StrokeStyleVtbl; - -interface ID2D1StrokeStyle -{ - CONST struct ID2D1StrokeStyleVtbl *lpVtbl; -}; - - -#define ID2D1StrokeStyle_QueryInterface(This, riid, ppv) \ - ((This)->lpVtbl->Base.Base.QueryInterface((IUnknown *)This, riid, ppv)) - -#define ID2D1StrokeStyle_AddRef(This) \ - ((This)->lpVtbl->Base.Base.AddRef((IUnknown *)This)) - -#define ID2D1StrokeStyle_Release(This) \ - ((This)->lpVtbl->Base.Base.Release((IUnknown *)This)) - -#define ID2D1StrokeStyle_GetFactory(This, factory) \ - ((This)->lpVtbl->Base.GetFactory((ID2D1Resource *)This, factory)) - -#define ID2D1StrokeStyle_GetStartCap(This) \ - ((This)->lpVtbl->GetStartCap(This)) - -#define ID2D1StrokeStyle_GetEndCap(This) \ - ((This)->lpVtbl->GetEndCap(This)) - -#define ID2D1StrokeStyle_GetDashCap(This) \ - ((This)->lpVtbl->GetDashCap(This)) - -#define ID2D1StrokeStyle_GetMiterLimit(This) \ - ((This)->lpVtbl->GetMiterLimit(This)) - -#define ID2D1StrokeStyle_GetLineJoin(This) \ - ((This)->lpVtbl->GetLineJoin(This)) - -#define ID2D1StrokeStyle_GetDashOffset(This) \ - ((This)->lpVtbl->GetDashOffset(This)) - -#define ID2D1StrokeStyle_GetDashStyle(This) \ - ((This)->lpVtbl->GetDashStyle(This)) - -#define ID2D1StrokeStyle_GetDashesCount(This) \ - ((This)->lpVtbl->GetDashesCount(This)) - -#define ID2D1StrokeStyle_GetDashes(This, dashes, dashesCount) \ - ((This)->lpVtbl->GetDashes(This, dashes, dashesCount)) - -typedef interface ID2D1Geometry ID2D1Geometry; - -typedef struct ID2D1GeometryVtbl -{ - - ID2D1ResourceVtbl Base; - - - STDMETHOD(GetBounds)( - ID2D1Geometry *This, - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - __out D2D1_RECT_F *bounds - ) PURE; - - STDMETHOD(GetWidenedBounds)( - ID2D1Geometry *This, - FLOAT strokeWidth, - __in_opt ID2D1StrokeStyle *strokeStyle, - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - FLOAT flatteningTolerance, - __out D2D1_RECT_F *bounds - ) PURE; - - STDMETHOD(StrokeContainsPoint)( - ID2D1Geometry *This, - D2D1_POINT_2F point, - FLOAT strokeWidth, - __in_opt ID2D1StrokeStyle *strokeStyle, - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - FLOAT flatteningTolerance, - __out BOOL *contains - ) PURE; - - STDMETHOD(FillContainsPoint)( - ID2D1Geometry *This, - D2D1_POINT_2F point, - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - FLOAT flatteningTolerance, - __out BOOL *contains - ) PURE; - - STDMETHOD(CompareWithGeometry)( - ID2D1Geometry *This, - __in ID2D1Geometry *inputGeometry, - __in_opt CONST D2D1_MATRIX_3X2_F *inputGeometryTransform, - FLOAT flatteningTolerance, - __out D2D1_GEOMETRY_RELATION *relation - ) PURE; - - STDMETHOD(Simplify)( - ID2D1Geometry *This, - D2D1_GEOMETRY_SIMPLIFICATION_OPTION simplificationOption, - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - FLOAT flatteningTolerance, - __in ID2D1SimplifiedGeometrySink *geometrySink - ) PURE; - - STDMETHOD(Tessellate)( - ID2D1Geometry *This, - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - FLOAT flatteningTolerance, - __in ID2D1TessellationSink *tessellationSink - ) PURE; - - STDMETHOD(CombineWithGeometry)( - ID2D1Geometry *This, - __in ID2D1Geometry *inputGeometry, - D2D1_COMBINE_MODE combineMode, - __in_opt CONST D2D1_MATRIX_3X2_F *inputGeometryTransform, - FLOAT flatteningTolerance, - __in ID2D1SimplifiedGeometrySink *geometrySink - ) PURE; - - STDMETHOD(Outline)( - ID2D1Geometry *This, - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - FLOAT flatteningTolerance, - __in ID2D1SimplifiedGeometrySink *geometrySink - ) PURE; - - STDMETHOD(ComputeArea)( - ID2D1Geometry *This, - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - FLOAT flatteningTolerance, - __out FLOAT *area - ) PURE; - - STDMETHOD(ComputeLength)( - ID2D1Geometry *This, - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - FLOAT flatteningTolerance, - __out FLOAT *length - ) PURE; - - STDMETHOD(ComputePointAtLength)( - ID2D1Geometry *This, - FLOAT length, - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - FLOAT flatteningTolerance, - __out_opt D2D1_POINT_2F *point, - __out_opt D2D1_POINT_2F *unitTangentVector - ) PURE; - - STDMETHOD(Widen)( - ID2D1Geometry *This, - FLOAT strokeWidth, - __in_opt ID2D1StrokeStyle *strokeStyle, - __in_opt CONST D2D1_MATRIX_3X2_F *worldTransform, - FLOAT flatteningTolerance, - __in ID2D1SimplifiedGeometrySink *geometrySink - ) PURE; -} ID2D1GeometryVtbl; - -interface ID2D1Geometry -{ - CONST struct ID2D1GeometryVtbl *lpVtbl; -}; - - -#define ID2D1Geometry_QueryInterface(This, riid, ppv) \ - ((This)->lpVtbl->Base.Base.QueryInterface((IUnknown *)This, riid, ppv)) - -#define ID2D1Geometry_AddRef(This) \ - ((This)->lpVtbl->Base.Base.AddRef((IUnknown *)This)) - -#define ID2D1Geometry_Release(This) \ - ((This)->lpVtbl->Base.Base.Release((IUnknown *)This)) - -#define ID2D1Geometry_GetFactory(This, factory) \ - ((This)->lpVtbl->Base.GetFactory((ID2D1Resource *)This, factory)) - -#define ID2D1Geometry_GetBounds(This, worldTransform, bounds) \ - ((This)->lpVtbl->GetBounds(This, worldTransform, bounds)) - -#define ID2D1Geometry_GetWidenedBounds(This, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, bounds) \ - ((This)->lpVtbl->GetWidenedBounds(This, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, bounds)) - -#define ID2D1Geometry_StrokeContainsPoint(This, point, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, contains) \ - ((This)->lpVtbl->StrokeContainsPoint(This, point, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, contains)) - -#define ID2D1Geometry_FillContainsPoint(This, point, worldTransform, flatteningTolerance, contains) \ - ((This)->lpVtbl->FillContainsPoint(This, point, worldTransform, flatteningTolerance, contains)) - -#define ID2D1Geometry_CompareWithGeometry(This, inputGeometry, inputGeometryTransform, flatteningTolerance, relation) \ - ((This)->lpVtbl->CompareWithGeometry(This, inputGeometry, inputGeometryTransform, flatteningTolerance, relation)) - -#define ID2D1Geometry_Simplify(This, simplificationOption, worldTransform, flatteningTolerance, geometrySink) \ - ((This)->lpVtbl->Simplify(This, simplificationOption, worldTransform, flatteningTolerance, geometrySink)) - -#define ID2D1Geometry_Tessellate(This, worldTransform, flatteningTolerance, tessellationSink) \ - ((This)->lpVtbl->Tessellate(This, worldTransform, flatteningTolerance, tessellationSink)) - -#define ID2D1Geometry_CombineWithGeometry(This, inputGeometry, combineMode, inputGeometryTransform, flatteningTolerance, geometrySink) \ - ((This)->lpVtbl->CombineWithGeometry(This, inputGeometry, combineMode, inputGeometryTransform, flatteningTolerance, geometrySink)) - -#define ID2D1Geometry_Outline(This, worldTransform, flatteningTolerance, geometrySink) \ - ((This)->lpVtbl->Outline(This, worldTransform, flatteningTolerance, geometrySink)) - -#define ID2D1Geometry_ComputeArea(This, worldTransform, flatteningTolerance, area) \ - ((This)->lpVtbl->ComputeArea(This, worldTransform, flatteningTolerance, area)) - -#define ID2D1Geometry_ComputeLength(This, worldTransform, flatteningTolerance, length) \ - ((This)->lpVtbl->ComputeLength(This, worldTransform, flatteningTolerance, length)) - -#define ID2D1Geometry_ComputePointAtLength(This, length, worldTransform, flatteningTolerance, point, unitTangentVector) \ - ((This)->lpVtbl->ComputePointAtLength(This, length, worldTransform, flatteningTolerance, point, unitTangentVector)) - -#define ID2D1Geometry_Widen(This, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, geometrySink) \ - ((This)->lpVtbl->Widen(This, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, geometrySink)) - -typedef interface ID2D1RectangleGeometry ID2D1RectangleGeometry; - -typedef struct ID2D1RectangleGeometryVtbl -{ - - ID2D1GeometryVtbl Base; - - - STDMETHOD_(void, GetRect)( - ID2D1RectangleGeometry *This, - __out D2D1_RECT_F *rect - ) PURE; -} ID2D1RectangleGeometryVtbl; - -interface ID2D1RectangleGeometry -{ - CONST struct ID2D1RectangleGeometryVtbl *lpVtbl; -}; - - -#define ID2D1RectangleGeometry_QueryInterface(This, riid, ppv) \ - ((This)->lpVtbl->Base.Base.Base.QueryInterface((IUnknown *)This, riid, ppv)) - -#define ID2D1RectangleGeometry_AddRef(This) \ - ((This)->lpVtbl->Base.Base.Base.AddRef((IUnknown *)This)) - -#define ID2D1RectangleGeometry_Release(This) \ - ((This)->lpVtbl->Base.Base.Base.Release((IUnknown *)This)) - -#define ID2D1RectangleGeometry_GetFactory(This, factory) \ - ((This)->lpVtbl->Base.Base.GetFactory((ID2D1Resource *)This, factory)) - -#define ID2D1RectangleGeometry_GetBounds(This, worldTransform, bounds) \ - ((This)->lpVtbl->Base.GetBounds((ID2D1Geometry *)This, worldTransform, bounds)) - -#define ID2D1RectangleGeometry_GetWidenedBounds(This, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, bounds) \ - ((This)->lpVtbl->Base.GetWidenedBounds((ID2D1Geometry *)This, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, bounds)) - -#define ID2D1RectangleGeometry_StrokeContainsPoint(This, point, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, contains) \ - ((This)->lpVtbl->Base.StrokeContainsPoint((ID2D1Geometry *)This, point, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, contains)) - -#define ID2D1RectangleGeometry_FillContainsPoint(This, point, worldTransform, flatteningTolerance, contains) \ - ((This)->lpVtbl->Base.FillContainsPoint((ID2D1Geometry *)This, point, worldTransform, flatteningTolerance, contains)) - -#define ID2D1RectangleGeometry_CompareWithGeometry(This, inputGeometry, inputGeometryTransform, flatteningTolerance, relation) \ - ((This)->lpVtbl->Base.CompareWithGeometry((ID2D1Geometry *)This, inputGeometry, inputGeometryTransform, flatteningTolerance, relation)) - -#define ID2D1RectangleGeometry_Simplify(This, simplificationOption, worldTransform, flatteningTolerance, geometrySink) \ - ((This)->lpVtbl->Base.Simplify((ID2D1Geometry *)This, simplificationOption, worldTransform, flatteningTolerance, geometrySink)) - -#define ID2D1RectangleGeometry_Tessellate(This, worldTransform, flatteningTolerance, tessellationSink) \ - ((This)->lpVtbl->Base.Tessellate((ID2D1Geometry *)This, worldTransform, flatteningTolerance, tessellationSink)) - -#define ID2D1RectangleGeometry_CombineWithGeometry(This, inputGeometry, combineMode, inputGeometryTransform, flatteningTolerance, geometrySink) \ - ((This)->lpVtbl->Base.CombineWithGeometry((ID2D1Geometry *)This, inputGeometry, combineMode, inputGeometryTransform, flatteningTolerance, geometrySink)) - -#define ID2D1RectangleGeometry_Outline(This, worldTransform, flatteningTolerance, geometrySink) \ - ((This)->lpVtbl->Base.Outline((ID2D1Geometry *)This, worldTransform, flatteningTolerance, geometrySink)) - -#define ID2D1RectangleGeometry_ComputeArea(This, worldTransform, flatteningTolerance, area) \ - ((This)->lpVtbl->Base.ComputeArea((ID2D1Geometry *)This, worldTransform, flatteningTolerance, area)) - -#define ID2D1RectangleGeometry_ComputeLength(This, worldTransform, flatteningTolerance, length) \ - ((This)->lpVtbl->Base.ComputeLength((ID2D1Geometry *)This, worldTransform, flatteningTolerance, length)) - -#define ID2D1RectangleGeometry_ComputePointAtLength(This, length, worldTransform, flatteningTolerance, point, unitTangentVector) \ - ((This)->lpVtbl->Base.ComputePointAtLength((ID2D1Geometry *)This, length, worldTransform, flatteningTolerance, point, unitTangentVector)) - -#define ID2D1RectangleGeometry_Widen(This, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, geometrySink) \ - ((This)->lpVtbl->Base.Widen((ID2D1Geometry *)This, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, geometrySink)) - -#define ID2D1RectangleGeometry_GetRect(This, rect) \ - ((This)->lpVtbl->GetRect(This, rect)) - -typedef interface ID2D1RoundedRectangleGeometry ID2D1RoundedRectangleGeometry; - -typedef struct ID2D1RoundedRectangleGeometryVtbl -{ - - ID2D1GeometryVtbl Base; - - - STDMETHOD_(void, GetRoundedRect)( - ID2D1RoundedRectangleGeometry *This, - __out D2D1_ROUNDED_RECT *roundedRect - ) PURE; -} ID2D1RoundedRectangleGeometryVtbl; - -interface ID2D1RoundedRectangleGeometry -{ - CONST struct ID2D1RoundedRectangleGeometryVtbl *lpVtbl; -}; - - -#define ID2D1RoundedRectangleGeometry_QueryInterface(This, riid, ppv) \ - ((This)->lpVtbl->Base.Base.Base.QueryInterface((IUnknown *)This, riid, ppv)) - -#define ID2D1RoundedRectangleGeometry_AddRef(This) \ - ((This)->lpVtbl->Base.Base.Base.AddRef((IUnknown *)This)) - -#define ID2D1RoundedRectangleGeometry_Release(This) \ - ((This)->lpVtbl->Base.Base.Base.Release((IUnknown *)This)) - -#define ID2D1RoundedRectangleGeometry_GetFactory(This, factory) \ - ((This)->lpVtbl->Base.Base.GetFactory((ID2D1Resource *)This, factory)) - -#define ID2D1RoundedRectangleGeometry_GetBounds(This, worldTransform, bounds) \ - ((This)->lpVtbl->Base.GetBounds((ID2D1Geometry *)This, worldTransform, bounds)) - -#define ID2D1RoundedRectangleGeometry_GetWidenedBounds(This, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, bounds) \ - ((This)->lpVtbl->Base.GetWidenedBounds((ID2D1Geometry *)This, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, bounds)) - -#define ID2D1RoundedRectangleGeometry_StrokeContainsPoint(This, point, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, contains) \ - ((This)->lpVtbl->Base.StrokeContainsPoint((ID2D1Geometry *)This, point, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, contains)) - -#define ID2D1RoundedRectangleGeometry_FillContainsPoint(This, point, worldTransform, flatteningTolerance, contains) \ - ((This)->lpVtbl->Base.FillContainsPoint((ID2D1Geometry *)This, point, worldTransform, flatteningTolerance, contains)) - -#define ID2D1RoundedRectangleGeometry_CompareWithGeometry(This, inputGeometry, inputGeometryTransform, flatteningTolerance, relation) \ - ((This)->lpVtbl->Base.CompareWithGeometry((ID2D1Geometry *)This, inputGeometry, inputGeometryTransform, flatteningTolerance, relation)) - -#define ID2D1RoundedRectangleGeometry_Simplify(This, simplificationOption, worldTransform, flatteningTolerance, geometrySink) \ - ((This)->lpVtbl->Base.Simplify((ID2D1Geometry *)This, simplificationOption, worldTransform, flatteningTolerance, geometrySink)) - -#define ID2D1RoundedRectangleGeometry_Tessellate(This, worldTransform, flatteningTolerance, tessellationSink) \ - ((This)->lpVtbl->Base.Tessellate((ID2D1Geometry *)This, worldTransform, flatteningTolerance, tessellationSink)) - -#define ID2D1RoundedRectangleGeometry_CombineWithGeometry(This, inputGeometry, combineMode, inputGeometryTransform, flatteningTolerance, geometrySink) \ - ((This)->lpVtbl->Base.CombineWithGeometry((ID2D1Geometry *)This, inputGeometry, combineMode, inputGeometryTransform, flatteningTolerance, geometrySink)) - -#define ID2D1RoundedRectangleGeometry_Outline(This, worldTransform, flatteningTolerance, geometrySink) \ - ((This)->lpVtbl->Base.Outline((ID2D1Geometry *)This, worldTransform, flatteningTolerance, geometrySink)) - -#define ID2D1RoundedRectangleGeometry_ComputeArea(This, worldTransform, flatteningTolerance, area) \ - ((This)->lpVtbl->Base.ComputeArea((ID2D1Geometry *)This, worldTransform, flatteningTolerance, area)) - -#define ID2D1RoundedRectangleGeometry_ComputeLength(This, worldTransform, flatteningTolerance, length) \ - ((This)->lpVtbl->Base.ComputeLength((ID2D1Geometry *)This, worldTransform, flatteningTolerance, length)) - -#define ID2D1RoundedRectangleGeometry_ComputePointAtLength(This, length, worldTransform, flatteningTolerance, point, unitTangentVector) \ - ((This)->lpVtbl->Base.ComputePointAtLength((ID2D1Geometry *)This, length, worldTransform, flatteningTolerance, point, unitTangentVector)) - -#define ID2D1RoundedRectangleGeometry_Widen(This, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, geometrySink) \ - ((This)->lpVtbl->Base.Widen((ID2D1Geometry *)This, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, geometrySink)) - -#define ID2D1RoundedRectangleGeometry_GetRoundedRect(This, roundedRect) \ - ((This)->lpVtbl->GetRoundedRect(This, roundedRect)) - -typedef interface ID2D1EllipseGeometry ID2D1EllipseGeometry; - -typedef struct ID2D1EllipseGeometryVtbl -{ - - ID2D1GeometryVtbl Base; - - - STDMETHOD_(void, GetEllipse)( - ID2D1EllipseGeometry *This, - __out D2D1_ELLIPSE *ellipse - ) PURE; -} ID2D1EllipseGeometryVtbl; - -interface ID2D1EllipseGeometry -{ - CONST struct ID2D1EllipseGeometryVtbl *lpVtbl; -}; - - -#define ID2D1EllipseGeometry_QueryInterface(This, riid, ppv) \ - ((This)->lpVtbl->Base.Base.Base.QueryInterface((IUnknown *)This, riid, ppv)) - -#define ID2D1EllipseGeometry_AddRef(This) \ - ((This)->lpVtbl->Base.Base.Base.AddRef((IUnknown *)This)) - -#define ID2D1EllipseGeometry_Release(This) \ - ((This)->lpVtbl->Base.Base.Base.Release((IUnknown *)This)) - -#define ID2D1EllipseGeometry_GetFactory(This, factory) \ - ((This)->lpVtbl->Base.Base.GetFactory((ID2D1Resource *)This, factory)) - -#define ID2D1EllipseGeometry_GetBounds(This, worldTransform, bounds) \ - ((This)->lpVtbl->Base.GetBounds((ID2D1Geometry *)This, worldTransform, bounds)) - -#define ID2D1EllipseGeometry_GetWidenedBounds(This, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, bounds) \ - ((This)->lpVtbl->Base.GetWidenedBounds((ID2D1Geometry *)This, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, bounds)) - -#define ID2D1EllipseGeometry_StrokeContainsPoint(This, point, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, contains) \ - ((This)->lpVtbl->Base.StrokeContainsPoint((ID2D1Geometry *)This, point, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, contains)) - -#define ID2D1EllipseGeometry_FillContainsPoint(This, point, worldTransform, flatteningTolerance, contains) \ - ((This)->lpVtbl->Base.FillContainsPoint((ID2D1Geometry *)This, point, worldTransform, flatteningTolerance, contains)) - -#define ID2D1EllipseGeometry_CompareWithGeometry(This, inputGeometry, inputGeometryTransform, flatteningTolerance, relation) \ - ((This)->lpVtbl->Base.CompareWithGeometry((ID2D1Geometry *)This, inputGeometry, inputGeometryTransform, flatteningTolerance, relation)) - -#define ID2D1EllipseGeometry_Simplify(This, simplificationOption, worldTransform, flatteningTolerance, geometrySink) \ - ((This)->lpVtbl->Base.Simplify((ID2D1Geometry *)This, simplificationOption, worldTransform, flatteningTolerance, geometrySink)) - -#define ID2D1EllipseGeometry_Tessellate(This, worldTransform, flatteningTolerance, tessellationSink) \ - ((This)->lpVtbl->Base.Tessellate((ID2D1Geometry *)This, worldTransform, flatteningTolerance, tessellationSink)) - -#define ID2D1EllipseGeometry_CombineWithGeometry(This, inputGeometry, combineMode, inputGeometryTransform, flatteningTolerance, geometrySink) \ - ((This)->lpVtbl->Base.CombineWithGeometry((ID2D1Geometry *)This, inputGeometry, combineMode, inputGeometryTransform, flatteningTolerance, geometrySink)) - -#define ID2D1EllipseGeometry_Outline(This, worldTransform, flatteningTolerance, geometrySink) \ - ((This)->lpVtbl->Base.Outline((ID2D1Geometry *)This, worldTransform, flatteningTolerance, geometrySink)) - -#define ID2D1EllipseGeometry_ComputeArea(This, worldTransform, flatteningTolerance, area) \ - ((This)->lpVtbl->Base.ComputeArea((ID2D1Geometry *)This, worldTransform, flatteningTolerance, area)) - -#define ID2D1EllipseGeometry_ComputeLength(This, worldTransform, flatteningTolerance, length) \ - ((This)->lpVtbl->Base.ComputeLength((ID2D1Geometry *)This, worldTransform, flatteningTolerance, length)) - -#define ID2D1EllipseGeometry_ComputePointAtLength(This, length, worldTransform, flatteningTolerance, point, unitTangentVector) \ - ((This)->lpVtbl->Base.ComputePointAtLength((ID2D1Geometry *)This, length, worldTransform, flatteningTolerance, point, unitTangentVector)) - -#define ID2D1EllipseGeometry_Widen(This, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, geometrySink) \ - ((This)->lpVtbl->Base.Widen((ID2D1Geometry *)This, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, geometrySink)) - -#define ID2D1EllipseGeometry_GetEllipse(This, ellipse) \ - ((This)->lpVtbl->GetEllipse(This, ellipse)) - -typedef interface ID2D1GeometryGroup ID2D1GeometryGroup; - -typedef struct ID2D1GeometryGroupVtbl -{ - - ID2D1GeometryVtbl Base; - - - STDMETHOD_(D2D1_FILL_MODE, GetFillMode)( - ID2D1GeometryGroup *This - ) PURE; - - STDMETHOD_(UINT32, GetSourceGeometryCount)( - ID2D1GeometryGroup *This - ) PURE; - - STDMETHOD_(void, GetSourceGeometries)( - ID2D1GeometryGroup *This, - __out_ecount(geometriesCount) ID2D1Geometry **geometries, - UINT geometriesCount - ) PURE; -} ID2D1GeometryGroupVtbl; - -interface ID2D1GeometryGroup -{ - CONST struct ID2D1GeometryGroupVtbl *lpVtbl; -}; - - -#define ID2D1GeometryGroup_QueryInterface(This, riid, ppv) \ - ((This)->lpVtbl->Base.Base.Base.QueryInterface((IUnknown *)This, riid, ppv)) - -#define ID2D1GeometryGroup_AddRef(This) \ - ((This)->lpVtbl->Base.Base.Base.AddRef((IUnknown *)This)) - -#define ID2D1GeometryGroup_Release(This) \ - ((This)->lpVtbl->Base.Base.Base.Release((IUnknown *)This)) - -#define ID2D1GeometryGroup_GetFactory(This, factory) \ - ((This)->lpVtbl->Base.Base.GetFactory((ID2D1Resource *)This, factory)) - -#define ID2D1GeometryGroup_GetBounds(This, worldTransform, bounds) \ - ((This)->lpVtbl->Base.GetBounds((ID2D1Geometry *)This, worldTransform, bounds)) - -#define ID2D1GeometryGroup_GetWidenedBounds(This, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, bounds) \ - ((This)->lpVtbl->Base.GetWidenedBounds((ID2D1Geometry *)This, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, bounds)) - -#define ID2D1GeometryGroup_StrokeContainsPoint(This, point, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, contains) \ - ((This)->lpVtbl->Base.StrokeContainsPoint((ID2D1Geometry *)This, point, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, contains)) - -#define ID2D1GeometryGroup_FillContainsPoint(This, point, worldTransform, flatteningTolerance, contains) \ - ((This)->lpVtbl->Base.FillContainsPoint((ID2D1Geometry *)This, point, worldTransform, flatteningTolerance, contains)) - -#define ID2D1GeometryGroup_CompareWithGeometry(This, inputGeometry, inputGeometryTransform, flatteningTolerance, relation) \ - ((This)->lpVtbl->Base.CompareWithGeometry((ID2D1Geometry *)This, inputGeometry, inputGeometryTransform, flatteningTolerance, relation)) - -#define ID2D1GeometryGroup_Simplify(This, simplificationOption, worldTransform, flatteningTolerance, geometrySink) \ - ((This)->lpVtbl->Base.Simplify((ID2D1Geometry *)This, simplificationOption, worldTransform, flatteningTolerance, geometrySink)) - -#define ID2D1GeometryGroup_Tessellate(This, worldTransform, flatteningTolerance, tessellationSink) \ - ((This)->lpVtbl->Base.Tessellate((ID2D1Geometry *)This, worldTransform, flatteningTolerance, tessellationSink)) - -#define ID2D1GeometryGroup_CombineWithGeometry(This, inputGeometry, combineMode, inputGeometryTransform, flatteningTolerance, geometrySink) \ - ((This)->lpVtbl->Base.CombineWithGeometry((ID2D1Geometry *)This, inputGeometry, combineMode, inputGeometryTransform, flatteningTolerance, geometrySink)) - -#define ID2D1GeometryGroup_Outline(This, worldTransform, flatteningTolerance, geometrySink) \ - ((This)->lpVtbl->Base.Outline((ID2D1Geometry *)This, worldTransform, flatteningTolerance, geometrySink)) - -#define ID2D1GeometryGroup_ComputeArea(This, worldTransform, flatteningTolerance, area) \ - ((This)->lpVtbl->Base.ComputeArea((ID2D1Geometry *)This, worldTransform, flatteningTolerance, area)) - -#define ID2D1GeometryGroup_ComputeLength(This, worldTransform, flatteningTolerance, length) \ - ((This)->lpVtbl->Base.ComputeLength((ID2D1Geometry *)This, worldTransform, flatteningTolerance, length)) - -#define ID2D1GeometryGroup_ComputePointAtLength(This, length, worldTransform, flatteningTolerance, point, unitTangentVector) \ - ((This)->lpVtbl->Base.ComputePointAtLength((ID2D1Geometry *)This, length, worldTransform, flatteningTolerance, point, unitTangentVector)) - -#define ID2D1GeometryGroup_Widen(This, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, geometrySink) \ - ((This)->lpVtbl->Base.Widen((ID2D1Geometry *)This, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, geometrySink)) - -#define ID2D1GeometryGroup_GetFillMode(This) \ - ((This)->lpVtbl->GetFillMode(This)) - -#define ID2D1GeometryGroup_GetSourceGeometryCount(This) \ - ((This)->lpVtbl->GetSourceGeometryCount(This)) - -#define ID2D1GeometryGroup_GetSourceGeometries(This, geometries, geometriesCount) \ - ((This)->lpVtbl->GetSourceGeometries(This, geometries, geometriesCount)) - -typedef interface ID2D1TransformedGeometry ID2D1TransformedGeometry; - -typedef struct ID2D1TransformedGeometryVtbl -{ - - ID2D1GeometryVtbl Base; - - - STDMETHOD_(void, GetSourceGeometry)( - ID2D1TransformedGeometry *This, - __deref_out ID2D1Geometry **sourceGeometry - ) PURE; - - STDMETHOD_(void, GetTransform)( - ID2D1TransformedGeometry *This, - __out D2D1_MATRIX_3X2_F *transform - ) PURE; -} ID2D1TransformedGeometryVtbl; - -interface ID2D1TransformedGeometry -{ - CONST struct ID2D1TransformedGeometryVtbl *lpVtbl; -}; - - -#define ID2D1TransformedGeometry_QueryInterface(This, riid, ppv) \ - ((This)->lpVtbl->Base.Base.Base.QueryInterface((IUnknown *)This, riid, ppv)) - -#define ID2D1TransformedGeometry_AddRef(This) \ - ((This)->lpVtbl->Base.Base.Base.AddRef((IUnknown *)This)) - -#define ID2D1TransformedGeometry_Release(This) \ - ((This)->lpVtbl->Base.Base.Base.Release((IUnknown *)This)) - -#define ID2D1TransformedGeometry_GetFactory(This, factory) \ - ((This)->lpVtbl->Base.Base.GetFactory((ID2D1Resource *)This, factory)) - -#define ID2D1TransformedGeometry_GetBounds(This, worldTransform, bounds) \ - ((This)->lpVtbl->Base.GetBounds((ID2D1Geometry *)This, worldTransform, bounds)) - -#define ID2D1TransformedGeometry_GetWidenedBounds(This, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, bounds) \ - ((This)->lpVtbl->Base.GetWidenedBounds((ID2D1Geometry *)This, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, bounds)) - -#define ID2D1TransformedGeometry_StrokeContainsPoint(This, point, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, contains) \ - ((This)->lpVtbl->Base.StrokeContainsPoint((ID2D1Geometry *)This, point, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, contains)) - -#define ID2D1TransformedGeometry_FillContainsPoint(This, point, worldTransform, flatteningTolerance, contains) \ - ((This)->lpVtbl->Base.FillContainsPoint((ID2D1Geometry *)This, point, worldTransform, flatteningTolerance, contains)) - -#define ID2D1TransformedGeometry_CompareWithGeometry(This, inputGeometry, inputGeometryTransform, flatteningTolerance, relation) \ - ((This)->lpVtbl->Base.CompareWithGeometry((ID2D1Geometry *)This, inputGeometry, inputGeometryTransform, flatteningTolerance, relation)) - -#define ID2D1TransformedGeometry_Simplify(This, simplificationOption, worldTransform, flatteningTolerance, geometrySink) \ - ((This)->lpVtbl->Base.Simplify((ID2D1Geometry *)This, simplificationOption, worldTransform, flatteningTolerance, geometrySink)) - -#define ID2D1TransformedGeometry_Tessellate(This, worldTransform, flatteningTolerance, tessellationSink) \ - ((This)->lpVtbl->Base.Tessellate((ID2D1Geometry *)This, worldTransform, flatteningTolerance, tessellationSink)) - -#define ID2D1TransformedGeometry_CombineWithGeometry(This, inputGeometry, combineMode, inputGeometryTransform, flatteningTolerance, geometrySink) \ - ((This)->lpVtbl->Base.CombineWithGeometry((ID2D1Geometry *)This, inputGeometry, combineMode, inputGeometryTransform, flatteningTolerance, geometrySink)) - -#define ID2D1TransformedGeometry_Outline(This, worldTransform, flatteningTolerance, geometrySink) \ - ((This)->lpVtbl->Base.Outline((ID2D1Geometry *)This, worldTransform, flatteningTolerance, geometrySink)) - -#define ID2D1TransformedGeometry_ComputeArea(This, worldTransform, flatteningTolerance, area) \ - ((This)->lpVtbl->Base.ComputeArea((ID2D1Geometry *)This, worldTransform, flatteningTolerance, area)) - -#define ID2D1TransformedGeometry_ComputeLength(This, worldTransform, flatteningTolerance, length) \ - ((This)->lpVtbl->Base.ComputeLength((ID2D1Geometry *)This, worldTransform, flatteningTolerance, length)) - -#define ID2D1TransformedGeometry_ComputePointAtLength(This, length, worldTransform, flatteningTolerance, point, unitTangentVector) \ - ((This)->lpVtbl->Base.ComputePointAtLength((ID2D1Geometry *)This, length, worldTransform, flatteningTolerance, point, unitTangentVector)) - -#define ID2D1TransformedGeometry_Widen(This, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, geometrySink) \ - ((This)->lpVtbl->Base.Widen((ID2D1Geometry *)This, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, geometrySink)) - -#define ID2D1TransformedGeometry_GetSourceGeometry(This, sourceGeometry) \ - ((This)->lpVtbl->GetSourceGeometry(This, sourceGeometry)) - -#define ID2D1TransformedGeometry_GetTransform(This, transform) \ - ((This)->lpVtbl->GetTransform(This, transform)) - -typedef interface ID2D1SimplifiedGeometrySink ID2D1SimplifiedGeometrySink; - -typedef struct ID2D1SimplifiedGeometrySinkVtbl -{ - - IUnknownVtbl Base; - - - STDMETHOD_(void, SetFillMode)( - ID2D1SimplifiedGeometrySink *This, - D2D1_FILL_MODE fillMode - ) PURE; - - STDMETHOD_(void, SetSegmentFlags)( - ID2D1SimplifiedGeometrySink *This, - D2D1_PATH_SEGMENT vertexFlags - ) PURE; - - STDMETHOD_(void, BeginFigure)( - ID2D1SimplifiedGeometrySink *This, - D2D1_POINT_2F startPoint, - D2D1_FIGURE_BEGIN figureBegin - ) PURE; - - STDMETHOD_(void, AddLines)( - ID2D1SimplifiedGeometrySink *This, - __in_ecount(pointsCount) CONST D2D1_POINT_2F *points, - UINT pointsCount - ) PURE; - - STDMETHOD_(void, AddBeziers)( - ID2D1SimplifiedGeometrySink *This, - __in_ecount(beziersCount) CONST D2D1_BEZIER_SEGMENT *beziers, - UINT beziersCount - ) PURE; - - STDMETHOD_(void, EndFigure)( - ID2D1SimplifiedGeometrySink *This, - D2D1_FIGURE_END figureEnd - ) PURE; - - STDMETHOD(Close)( - ID2D1SimplifiedGeometrySink *This - ) PURE; -} ID2D1SimplifiedGeometrySinkVtbl; - -interface ID2D1SimplifiedGeometrySink -{ - CONST struct ID2D1SimplifiedGeometrySinkVtbl *lpVtbl; -}; - - -#define ID2D1SimplifiedGeometrySink_QueryInterface(This, riid, ppv) \ - ((This)->lpVtbl->Base.QueryInterface((IUnknown *)This, riid, ppv)) - -#define ID2D1SimplifiedGeometrySink_AddRef(This) \ - ((This)->lpVtbl->Base.AddRef((IUnknown *)This)) - -#define ID2D1SimplifiedGeometrySink_Release(This) \ - ((This)->lpVtbl->Base.Release((IUnknown *)This)) - -#define ID2D1SimplifiedGeometrySink_SetFillMode(This, fillMode) \ - ((This)->lpVtbl->SetFillMode(This, fillMode)) - -#define ID2D1SimplifiedGeometrySink_SetSegmentFlags(This, vertexFlags) \ - ((This)->lpVtbl->SetSegmentFlags(This, vertexFlags)) - -#define ID2D1SimplifiedGeometrySink_BeginFigure(This, startPoint, figureBegin) \ - ((This)->lpVtbl->BeginFigure(This, startPoint, figureBegin)) - -#define ID2D1SimplifiedGeometrySink_AddLines(This, points, pointsCount) \ - ((This)->lpVtbl->AddLines(This, points, pointsCount)) - -#define ID2D1SimplifiedGeometrySink_AddBeziers(This, beziers, beziersCount) \ - ((This)->lpVtbl->AddBeziers(This, beziers, beziersCount)) - -#define ID2D1SimplifiedGeometrySink_EndFigure(This, figureEnd) \ - ((This)->lpVtbl->EndFigure(This, figureEnd)) - -#define ID2D1SimplifiedGeometrySink_Close(This) \ - ((This)->lpVtbl->Close(This)) - -typedef interface ID2D1GeometrySink ID2D1GeometrySink; - -typedef struct ID2D1GeometrySinkVtbl -{ - - ID2D1SimplifiedGeometrySinkVtbl Base; - - - STDMETHOD_(void, AddLine)( - ID2D1GeometrySink *This, - D2D1_POINT_2F point - ) PURE; - - STDMETHOD_(void, AddBezier)( - ID2D1GeometrySink *This, - __in CONST D2D1_BEZIER_SEGMENT *bezier - ) PURE; - - STDMETHOD_(void, AddQuadraticBezier)( - ID2D1GeometrySink *This, - __in CONST D2D1_QUADRATIC_BEZIER_SEGMENT *bezier - ) PURE; - - STDMETHOD_(void, AddQuadraticBeziers)( - ID2D1GeometrySink *This, - __in_ecount(beziersCount) CONST D2D1_QUADRATIC_BEZIER_SEGMENT *beziers, - UINT beziersCount - ) PURE; - - STDMETHOD_(void, AddArc)( - ID2D1GeometrySink *This, - __in CONST D2D1_ARC_SEGMENT *arc - ) PURE; -} ID2D1GeometrySinkVtbl; - -interface ID2D1GeometrySink -{ - CONST struct ID2D1GeometrySinkVtbl *lpVtbl; -}; - - -#define ID2D1GeometrySink_QueryInterface(This, riid, ppv) \ - ((This)->lpVtbl->Base.Base.QueryInterface((IUnknown *)This, riid, ppv)) - -#define ID2D1GeometrySink_AddRef(This) \ - ((This)->lpVtbl->Base.Base.AddRef((IUnknown *)This)) - -#define ID2D1GeometrySink_Release(This) \ - ((This)->lpVtbl->Base.Base.Release((IUnknown *)This)) - -#define ID2D1GeometrySink_SetFillMode(This, fillMode) \ - ((This)->lpVtbl->Base.SetFillMode((ID2D1SimplifiedGeometrySink *)This, fillMode)) - -#define ID2D1GeometrySink_SetSegmentFlags(This, vertexFlags) \ - ((This)->lpVtbl->Base.SetSegmentFlags((ID2D1SimplifiedGeometrySink *)This, vertexFlags)) - -#define ID2D1GeometrySink_BeginFigure(This, startPoint, figureBegin) \ - ((This)->lpVtbl->Base.BeginFigure((ID2D1SimplifiedGeometrySink *)This, startPoint, figureBegin)) - -#define ID2D1GeometrySink_AddLines(This, points, pointsCount) \ - ((This)->lpVtbl->Base.AddLines((ID2D1SimplifiedGeometrySink *)This, points, pointsCount)) - -#define ID2D1GeometrySink_AddBeziers(This, beziers, beziersCount) \ - ((This)->lpVtbl->Base.AddBeziers((ID2D1SimplifiedGeometrySink *)This, beziers, beziersCount)) - -#define ID2D1GeometrySink_EndFigure(This, figureEnd) \ - ((This)->lpVtbl->Base.EndFigure((ID2D1SimplifiedGeometrySink *)This, figureEnd)) - -#define ID2D1GeometrySink_Close(This) \ - ((This)->lpVtbl->Base.Close((ID2D1SimplifiedGeometrySink *)This)) - -#define ID2D1GeometrySink_AddLine(This, point) \ - ((This)->lpVtbl->AddLine(This, point)) - -#define ID2D1GeometrySink_AddBezier(This, bezier) \ - ((This)->lpVtbl->AddBezier(This, bezier)) - -#define ID2D1GeometrySink_AddQuadraticBezier(This, bezier) \ - ((This)->lpVtbl->AddQuadraticBezier(This, bezier)) - -#define ID2D1GeometrySink_AddQuadraticBeziers(This, beziers, beziersCount) \ - ((This)->lpVtbl->AddQuadraticBeziers(This, beziers, beziersCount)) - -#define ID2D1GeometrySink_AddArc(This, arc) \ - ((This)->lpVtbl->AddArc(This, arc)) - -typedef interface ID2D1TessellationSink ID2D1TessellationSink; - -typedef struct ID2D1TessellationSinkVtbl -{ - - IUnknownVtbl Base; - - - STDMETHOD_(void, AddTriangles)( - ID2D1TessellationSink *This, - __in_ecount(trianglesCount) CONST D2D1_TRIANGLE *triangles, - UINT trianglesCount - ) PURE; - - STDMETHOD(Close)( - ID2D1TessellationSink *This - ) PURE; -} ID2D1TessellationSinkVtbl; - -interface ID2D1TessellationSink -{ - CONST struct ID2D1TessellationSinkVtbl *lpVtbl; -}; - - -#define ID2D1TessellationSink_QueryInterface(This, riid, ppv) \ - ((This)->lpVtbl->Base.QueryInterface((IUnknown *)This, riid, ppv)) - -#define ID2D1TessellationSink_AddRef(This) \ - ((This)->lpVtbl->Base.AddRef((IUnknown *)This)) - -#define ID2D1TessellationSink_Release(This) \ - ((This)->lpVtbl->Base.Release((IUnknown *)This)) - -#define ID2D1TessellationSink_AddTriangles(This, triangles, trianglesCount) \ - ((This)->lpVtbl->AddTriangles(This, triangles, trianglesCount)) - -#define ID2D1TessellationSink_Close(This) \ - ((This)->lpVtbl->Close(This)) - -typedef interface ID2D1PathGeometry ID2D1PathGeometry; - -typedef struct ID2D1PathGeometryVtbl -{ - - ID2D1GeometryVtbl Base; - - - STDMETHOD(Open)( - ID2D1PathGeometry *This, - __deref_out ID2D1GeometrySink **geometrySink - ) PURE; - - STDMETHOD(Stream)( - ID2D1PathGeometry *This, - __in ID2D1GeometrySink *geometrySink - ) PURE; - - STDMETHOD(GetSegmentCount)( - ID2D1PathGeometry *This, - __out UINT32 *count - ) PURE; - - STDMETHOD(GetFigureCount)( - ID2D1PathGeometry *This, - __out UINT32 *count - ) PURE; -} ID2D1PathGeometryVtbl; - -interface ID2D1PathGeometry -{ - CONST struct ID2D1PathGeometryVtbl *lpVtbl; -}; - - -#define ID2D1PathGeometry_QueryInterface(This, riid, ppv) \ - ((This)->lpVtbl->Base.Base.Base.QueryInterface((IUnknown *)This, riid, ppv)) - -#define ID2D1PathGeometry_AddRef(This) \ - ((This)->lpVtbl->Base.Base.Base.AddRef((IUnknown *)This)) - -#define ID2D1PathGeometry_Release(This) \ - ((This)->lpVtbl->Base.Base.Base.Release((IUnknown *)This)) - -#define ID2D1PathGeometry_GetFactory(This, factory) \ - ((This)->lpVtbl->Base.Base.GetFactory((ID2D1Resource *)This, factory)) - -#define ID2D1PathGeometry_GetBounds(This, worldTransform, bounds) \ - ((This)->lpVtbl->Base.GetBounds((ID2D1Geometry *)This, worldTransform, bounds)) - -#define ID2D1PathGeometry_GetWidenedBounds(This, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, bounds) \ - ((This)->lpVtbl->Base.GetWidenedBounds((ID2D1Geometry *)This, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, bounds)) - -#define ID2D1PathGeometry_StrokeContainsPoint(This, point, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, contains) \ - ((This)->lpVtbl->Base.StrokeContainsPoint((ID2D1Geometry *)This, point, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, contains)) - -#define ID2D1PathGeometry_FillContainsPoint(This, point, worldTransform, flatteningTolerance, contains) \ - ((This)->lpVtbl->Base.FillContainsPoint((ID2D1Geometry *)This, point, worldTransform, flatteningTolerance, contains)) - -#define ID2D1PathGeometry_CompareWithGeometry(This, inputGeometry, inputGeometryTransform, flatteningTolerance, relation) \ - ((This)->lpVtbl->Base.CompareWithGeometry((ID2D1Geometry *)This, inputGeometry, inputGeometryTransform, flatteningTolerance, relation)) - -#define ID2D1PathGeometry_Simplify(This, simplificationOption, worldTransform, flatteningTolerance, geometrySink) \ - ((This)->lpVtbl->Base.Simplify((ID2D1Geometry *)This, simplificationOption, worldTransform, flatteningTolerance, geometrySink)) - -#define ID2D1PathGeometry_Tessellate(This, worldTransform, flatteningTolerance, tessellationSink) \ - ((This)->lpVtbl->Base.Tessellate((ID2D1Geometry *)This, worldTransform, flatteningTolerance, tessellationSink)) - -#define ID2D1PathGeometry_CombineWithGeometry(This, inputGeometry, combineMode, inputGeometryTransform, flatteningTolerance, geometrySink) \ - ((This)->lpVtbl->Base.CombineWithGeometry((ID2D1Geometry *)This, inputGeometry, combineMode, inputGeometryTransform, flatteningTolerance, geometrySink)) - -#define ID2D1PathGeometry_Outline(This, worldTransform, flatteningTolerance, geometrySink) \ - ((This)->lpVtbl->Base.Outline((ID2D1Geometry *)This, worldTransform, flatteningTolerance, geometrySink)) - -#define ID2D1PathGeometry_ComputeArea(This, worldTransform, flatteningTolerance, area) \ - ((This)->lpVtbl->Base.ComputeArea((ID2D1Geometry *)This, worldTransform, flatteningTolerance, area)) - -#define ID2D1PathGeometry_ComputeLength(This, worldTransform, flatteningTolerance, length) \ - ((This)->lpVtbl->Base.ComputeLength((ID2D1Geometry *)This, worldTransform, flatteningTolerance, length)) - -#define ID2D1PathGeometry_ComputePointAtLength(This, length, worldTransform, flatteningTolerance, point, unitTangentVector) \ - ((This)->lpVtbl->Base.ComputePointAtLength((ID2D1Geometry *)This, length, worldTransform, flatteningTolerance, point, unitTangentVector)) - -#define ID2D1PathGeometry_Widen(This, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, geometrySink) \ - ((This)->lpVtbl->Base.Widen((ID2D1Geometry *)This, strokeWidth, strokeStyle, worldTransform, flatteningTolerance, geometrySink)) - -#define ID2D1PathGeometry_Open(This, geometrySink) \ - ((This)->lpVtbl->Open(This, geometrySink)) - -#define ID2D1PathGeometry_Stream(This, geometrySink) \ - ((This)->lpVtbl->Stream(This, geometrySink)) - -#define ID2D1PathGeometry_GetSegmentCount(This, count) \ - ((This)->lpVtbl->GetSegmentCount(This, count)) - -#define ID2D1PathGeometry_GetFigureCount(This, count) \ - ((This)->lpVtbl->GetFigureCount(This, count)) - -typedef interface ID2D1Mesh ID2D1Mesh; - -typedef struct ID2D1MeshVtbl -{ - - ID2D1ResourceVtbl Base; - - - STDMETHOD(Open)( - ID2D1Mesh *This, - __deref_out ID2D1TessellationSink **tessellationSink - ) PURE; -} ID2D1MeshVtbl; - -interface ID2D1Mesh -{ - CONST struct ID2D1MeshVtbl *lpVtbl; -}; - - -#define ID2D1Mesh_QueryInterface(This, riid, ppv) \ - ((This)->lpVtbl->Base.Base.QueryInterface((IUnknown *)This, riid, ppv)) - -#define ID2D1Mesh_AddRef(This) \ - ((This)->lpVtbl->Base.Base.AddRef((IUnknown *)This)) - -#define ID2D1Mesh_Release(This) \ - ((This)->lpVtbl->Base.Base.Release((IUnknown *)This)) - -#define ID2D1Mesh_GetFactory(This, factory) \ - ((This)->lpVtbl->Base.GetFactory((ID2D1Resource *)This, factory)) - -#define ID2D1Mesh_Open(This, tessellationSink) \ - ((This)->lpVtbl->Open(This, tessellationSink)) - -typedef interface ID2D1Layer ID2D1Layer; - -typedef struct ID2D1LayerVtbl -{ - - ID2D1ResourceVtbl Base; - - - STDMETHOD_(D2D1_SIZE_F, GetSize)( - ID2D1Layer *This - ) PURE; -} ID2D1LayerVtbl; - -interface ID2D1Layer -{ - CONST struct ID2D1LayerVtbl *lpVtbl; -}; - - -#define ID2D1Layer_QueryInterface(This, riid, ppv) \ - ((This)->lpVtbl->Base.Base.QueryInterface((IUnknown *)This, riid, ppv)) - -#define ID2D1Layer_AddRef(This) \ - ((This)->lpVtbl->Base.Base.AddRef((IUnknown *)This)) - -#define ID2D1Layer_Release(This) \ - ((This)->lpVtbl->Base.Base.Release((IUnknown *)This)) - -#define ID2D1Layer_GetFactory(This, factory) \ - ((This)->lpVtbl->Base.GetFactory((ID2D1Resource *)This, factory)) - -#define ID2D1Layer_GetSize(This) \ - ((This)->lpVtbl->GetSize(This)) - -typedef interface ID2D1DrawingStateBlock ID2D1DrawingStateBlock; - -typedef struct ID2D1DrawingStateBlockVtbl -{ - - ID2D1ResourceVtbl Base; - - - STDMETHOD_(void, GetDescription)( - ID2D1DrawingStateBlock *This, - __out D2D1_DRAWING_STATE_DESCRIPTION *stateDescription - ) PURE; - - STDMETHOD_(void, SetDescription)( - ID2D1DrawingStateBlock *This, - __in CONST D2D1_DRAWING_STATE_DESCRIPTION *stateDescription - ) PURE; - - STDMETHOD_(void, SetTextRenderingParams)( - ID2D1DrawingStateBlock *This, - __in_opt IDWriteRenderingParams *textRenderingParams - ) PURE; - - STDMETHOD_(void, GetTextRenderingParams)( - ID2D1DrawingStateBlock *This, - __deref_out_opt IDWriteRenderingParams **textRenderingParams - ) PURE; -} ID2D1DrawingStateBlockVtbl; - -interface ID2D1DrawingStateBlock -{ - CONST struct ID2D1DrawingStateBlockVtbl *lpVtbl; -}; - - -#define ID2D1DrawingStateBlock_QueryInterface(This, riid, ppv) \ - ((This)->lpVtbl->Base.Base.QueryInterface((IUnknown *)This, riid, ppv)) - -#define ID2D1DrawingStateBlock_AddRef(This) \ - ((This)->lpVtbl->Base.Base.AddRef((IUnknown *)This)) - -#define ID2D1DrawingStateBlock_Release(This) \ - ((This)->lpVtbl->Base.Base.Release((IUnknown *)This)) - -#define ID2D1DrawingStateBlock_GetFactory(This, factory) \ - ((This)->lpVtbl->Base.GetFactory((ID2D1Resource *)This, factory)) - -#define ID2D1DrawingStateBlock_GetDescription(This, stateDescription) \ - ((This)->lpVtbl->GetDescription(This, stateDescription)) - -#define ID2D1DrawingStateBlock_SetDescription(This, stateDescription) \ - ((This)->lpVtbl->SetDescription(This, stateDescription)) - -#define ID2D1DrawingStateBlock_SetTextRenderingParams(This, textRenderingParams) \ - ((This)->lpVtbl->SetTextRenderingParams(This, textRenderingParams)) - -#define ID2D1DrawingStateBlock_GetTextRenderingParams(This, textRenderingParams) \ - ((This)->lpVtbl->GetTextRenderingParams(This, textRenderingParams)) - -typedef interface ID2D1RenderTarget ID2D1RenderTarget; - -typedef struct ID2D1RenderTargetVtbl -{ - - ID2D1ResourceVtbl Base; - - - STDMETHOD(CreateBitmap)( - ID2D1RenderTarget *This, - D2D1_SIZE_U size, - __in_opt CONST void *srcData, - UINT32 pitch, - __in CONST D2D1_BITMAP_PROPERTIES *bitmapProperties, - __deref_out ID2D1Bitmap **bitmap - ) PURE; - - STDMETHOD(CreateBitmapFromWicBitmap)( - ID2D1RenderTarget *This, - __in IWICBitmapSource *wicBitmapSource, - __in_opt CONST D2D1_BITMAP_PROPERTIES *bitmapProperties, - __deref_out ID2D1Bitmap **bitmap - ) PURE; - - STDMETHOD(CreateSharedBitmap)( - ID2D1RenderTarget *This, - __in REFIID riid, - __inout void *data, - __in_opt CONST D2D1_BITMAP_PROPERTIES *bitmapProperties, - __deref_out ID2D1Bitmap **bitmap - ) PURE; - - STDMETHOD(CreateBitmapBrush)( - ID2D1RenderTarget *This, - __in ID2D1Bitmap *bitmap, - __in_opt CONST D2D1_BITMAP_BRUSH_PROPERTIES *bitmapBrushProperties, - __in_opt CONST D2D1_BRUSH_PROPERTIES *brushProperties, - __deref_out ID2D1BitmapBrush **bitmapBrush - ) PURE; - - STDMETHOD(CreateSolidColorBrush)( - ID2D1RenderTarget *This, - __in CONST D2D1_COLOR_F *color, - __in_opt CONST D2D1_BRUSH_PROPERTIES *brushProperties, - __deref_out ID2D1SolidColorBrush **solidColorBrush - ) PURE; - - STDMETHOD(CreateGradientStopCollection)( - ID2D1RenderTarget *This, - __in_ecount(gradientStopsCount) CONST D2D1_GRADIENT_STOP *gradientStops, - __range(>=,1) UINT gradientStopsCount, - D2D1_GAMMA colorInterpolationGamma, - D2D1_EXTEND_MODE extendMode, - __deref_out ID2D1GradientStopCollection **gradientStopCollection - ) PURE; - - STDMETHOD(CreateLinearGradientBrush)( - ID2D1RenderTarget *This, - __in CONST D2D1_LINEAR_GRADIENT_BRUSH_PROPERTIES *linearGradientBrushProperties, - __in_opt CONST D2D1_BRUSH_PROPERTIES *brushProperties, - __in ID2D1GradientStopCollection *gradientStopCollection, - __deref_out ID2D1LinearGradientBrush **linearGradientBrush - ) PURE; - - STDMETHOD(CreateRadialGradientBrush)( - ID2D1RenderTarget *This, - __in CONST D2D1_RADIAL_GRADIENT_BRUSH_PROPERTIES *radialGradientBrushProperties, - __in_opt CONST D2D1_BRUSH_PROPERTIES *brushProperties, - __in ID2D1GradientStopCollection *gradientStopCollection, - __deref_out ID2D1RadialGradientBrush **radialGradientBrush - ) PURE; - - STDMETHOD(CreateCompatibleRenderTarget)( - ID2D1RenderTarget *This, - __in_opt CONST D2D1_SIZE_F *desiredSize, - __in_opt CONST D2D1_SIZE_U *desiredPixelSize, - __in_opt CONST D2D1_PIXEL_FORMAT *desiredFormat, - D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS options, - __deref_out ID2D1BitmapRenderTarget **bitmapRenderTarget - ) PURE; - - STDMETHOD(CreateLayer)( - ID2D1RenderTarget *This, - __in_opt CONST D2D1_SIZE_F *size, - __deref_out ID2D1Layer **layer - ) PURE; - - STDMETHOD(CreateMesh)( - ID2D1RenderTarget *This, - __deref_out ID2D1Mesh **mesh - ) PURE; - - STDMETHOD_(void, DrawLine)( - ID2D1RenderTarget *This, - D2D1_POINT_2F point0, - D2D1_POINT_2F point1, - __in ID2D1Brush *brush, - FLOAT strokeWidth, - __in_opt ID2D1StrokeStyle *strokeStyle - ) PURE; - - STDMETHOD_(void, DrawRectangle)( - ID2D1RenderTarget *This, - __in CONST D2D1_RECT_F *rect, - __in ID2D1Brush *brush, - FLOAT strokeWidth, - __in_opt ID2D1StrokeStyle *strokeStyle - ) PURE; - - STDMETHOD_(void, FillRectangle)( - ID2D1RenderTarget *This, - __in CONST D2D1_RECT_F *rect, - __in ID2D1Brush *brush - ) PURE; - - STDMETHOD_(void, DrawRoundedRectangle)( - ID2D1RenderTarget *This, - __in CONST D2D1_ROUNDED_RECT *roundedRect, - __in ID2D1Brush *brush, - FLOAT strokeWidth, - __in_opt ID2D1StrokeStyle *strokeStyle - ) PURE; - - STDMETHOD_(void, FillRoundedRectangle)( - ID2D1RenderTarget *This, - __in CONST D2D1_ROUNDED_RECT *roundedRect, - __in ID2D1Brush *brush - ) PURE; - - STDMETHOD_(void, DrawEllipse)( - ID2D1RenderTarget *This, - __in CONST D2D1_ELLIPSE *ellipse, - __in ID2D1Brush *brush, - FLOAT strokeWidth, - __in_opt ID2D1StrokeStyle *strokeStyle - ) PURE; - - STDMETHOD_(void, FillEllipse)( - ID2D1RenderTarget *This, - __in CONST D2D1_ELLIPSE *ellipse, - __in ID2D1Brush *brush - ) PURE; - - STDMETHOD_(void, DrawGeometry)( - ID2D1RenderTarget *This, - __in ID2D1Geometry *geometry, - __in ID2D1Brush *brush, - FLOAT strokeWidth, - __in_opt ID2D1StrokeStyle *strokeStyle - ) PURE; - - STDMETHOD_(void, FillGeometry)( - ID2D1RenderTarget *This, - __in ID2D1Geometry *geometry, - __in ID2D1Brush *brush, - __in_opt ID2D1Brush *opacityBrush - ) PURE; - - STDMETHOD_(void, FillMesh)( - ID2D1RenderTarget *This, - __in ID2D1Mesh *mesh, - __in ID2D1Brush *brush - ) PURE; - - STDMETHOD_(void, FillOpacityMask)( - ID2D1RenderTarget *This, - __in ID2D1Bitmap *opacityMask, - __in ID2D1Brush *brush, - D2D1_OPACITY_MASK_CONTENT content, - __in_opt CONST D2D1_RECT_F *destinationRectangle, - __in_opt CONST D2D1_RECT_F *sourceRectangle - ) PURE; - - STDMETHOD_(void, DrawBitmap)( - ID2D1RenderTarget *This, - __in ID2D1Bitmap *bitmap, - __in_opt CONST D2D1_RECT_F *destinationRectangle, - FLOAT opacity, - D2D1_BITMAP_INTERPOLATION_MODE interpolationMode, - __in_opt CONST D2D1_RECT_F *sourceRectangle - ) PURE; - - STDMETHOD_(void, DrawText)( - ID2D1RenderTarget *This, - __in_ecount(stringLength) CONST WCHAR *string, - UINT stringLength, - __in IDWriteTextFormat *textFormat, - __in CONST D2D1_RECT_F *layoutRect, - __in ID2D1Brush *defaultForegroundBrush, - D2D1_DRAW_TEXT_OPTIONS options, - DWRITE_MEASURING_MODE measuringMode - ) PURE; - - STDMETHOD_(void, DrawTextLayout)( - ID2D1RenderTarget *This, - D2D1_POINT_2F origin, - __in IDWriteTextLayout *textLayout, - __in ID2D1Brush *defaultForegroundBrush, - D2D1_DRAW_TEXT_OPTIONS options - ) PURE; - - STDMETHOD_(void, DrawGlyphRun)( - ID2D1RenderTarget *This, - D2D1_POINT_2F baselineOrigin, - __in CONST DWRITE_GLYPH_RUN *glyphRun, - __in ID2D1Brush *foregroundBrush, - DWRITE_MEASURING_MODE measuringMode - ) PURE; - - STDMETHOD_(void, SetTransform)( - ID2D1RenderTarget *This, - __in CONST D2D1_MATRIX_3X2_F *transform - ) PURE; - - STDMETHOD_(void, GetTransform)( - ID2D1RenderTarget *This, - __out D2D1_MATRIX_3X2_F *transform - ) PURE; - - STDMETHOD_(void, SetAntialiasMode)( - ID2D1RenderTarget *This, - D2D1_ANTIALIAS_MODE antialiasMode - ) PURE; - - STDMETHOD_(D2D1_ANTIALIAS_MODE, GetAntialiasMode)( - ID2D1RenderTarget *This - ) PURE; - - STDMETHOD_(void, SetTextAntialiasMode)( - ID2D1RenderTarget *This, - D2D1_TEXT_ANTIALIAS_MODE textAntialiasMode - ) PURE; - - STDMETHOD_(D2D1_TEXT_ANTIALIAS_MODE, GetTextAntialiasMode)( - ID2D1RenderTarget *This - ) PURE; - - STDMETHOD_(void, SetTextRenderingParams)( - ID2D1RenderTarget *This, - __in_opt IDWriteRenderingParams *textRenderingParams - ) PURE; - - STDMETHOD_(void, GetTextRenderingParams)( - ID2D1RenderTarget *This, - __deref_out_opt IDWriteRenderingParams **textRenderingParams - ) PURE; - - STDMETHOD_(void, SetTags)( - ID2D1RenderTarget *This, - D2D1_TAG tag1, - D2D1_TAG tag2 - ) PURE; - - STDMETHOD_(void, GetTags)( - ID2D1RenderTarget *This, - __out_opt D2D1_TAG *tag1, - __out_opt D2D1_TAG *tag2 - ) PURE; - - STDMETHOD_(void, PushLayer)( - ID2D1RenderTarget *This, - __in CONST D2D1_LAYER_PARAMETERS *layerParameters, - __in ID2D1Layer *layer - ) PURE; - - STDMETHOD_(void, PopLayer)( - ID2D1RenderTarget *This - ) PURE; - - STDMETHOD(Flush)( - ID2D1RenderTarget *This, - __out_opt D2D1_TAG *tag1, - __out_opt D2D1_TAG *tag2 - ) PURE; - - STDMETHOD_(void, SaveDrawingState)( - ID2D1RenderTarget *This, - __inout ID2D1DrawingStateBlock *drawingStateBlock - ) PURE; - - STDMETHOD_(void, RestoreDrawingState)( - ID2D1RenderTarget *This, - __in ID2D1DrawingStateBlock *drawingStateBlock - ) PURE; - - STDMETHOD_(void, PushAxisAlignedClip)( - ID2D1RenderTarget *This, - __in CONST D2D1_RECT_F *clipRect, - D2D1_ANTIALIAS_MODE antialiasMode - ) PURE; - - STDMETHOD_(void, PopAxisAlignedClip)( - ID2D1RenderTarget *This - ) PURE; - - STDMETHOD_(void, Clear)( - ID2D1RenderTarget *This, - __in_opt CONST D2D1_COLOR_F *clearColor - ) PURE; - - STDMETHOD_(void, BeginDraw)( - ID2D1RenderTarget *This - ) PURE; - - STDMETHOD(EndDraw)( - ID2D1RenderTarget *This, - __out_opt D2D1_TAG *tag1, - __out_opt D2D1_TAG *tag2 - ) PURE; - - STDMETHOD_(D2D1_PIXEL_FORMAT, GetPixelFormat)( - ID2D1RenderTarget *This - ) PURE; - - STDMETHOD_(void, SetDpi)( - ID2D1RenderTarget *This, - FLOAT dpiX, - FLOAT dpiY - ) PURE; - - STDMETHOD_(void, GetDpi)( - ID2D1RenderTarget *This, - __out FLOAT *dpiX, - __out FLOAT *dpiY - ) PURE; - - STDMETHOD_(D2D1_SIZE_F, GetSize)( - ID2D1RenderTarget *This - ) PURE; - - STDMETHOD_(D2D1_SIZE_U, GetPixelSize)( - ID2D1RenderTarget *This - ) PURE; - - STDMETHOD_(UINT32, GetMaximumBitmapSize)( - ID2D1RenderTarget *This - ) PURE; - - STDMETHOD_(BOOL, IsSupported)( - ID2D1RenderTarget *This, - __in CONST D2D1_RENDER_TARGET_PROPERTIES *renderTargetProperties - ) PURE; -} ID2D1RenderTargetVtbl; - -interface ID2D1RenderTarget -{ - CONST struct ID2D1RenderTargetVtbl *lpVtbl; -}; - - -#define ID2D1RenderTarget_QueryInterface(This, riid, ppv) \ - ((This)->lpVtbl->Base.Base.QueryInterface((IUnknown *)This, riid, ppv)) - -#define ID2D1RenderTarget_AddRef(This) \ - ((This)->lpVtbl->Base.Base.AddRef((IUnknown *)This)) - -#define ID2D1RenderTarget_Release(This) \ - ((This)->lpVtbl->Base.Base.Release((IUnknown *)This)) - -#define ID2D1RenderTarget_GetFactory(This, factory) \ - ((This)->lpVtbl->Base.GetFactory((ID2D1Resource *)This, factory)) - -#define ID2D1RenderTarget_CreateBitmap(This, size, srcData, pitch, bitmapProperties, bitmap) \ - ((This)->lpVtbl->CreateBitmap(This, size, srcData, pitch, bitmapProperties, bitmap)) - -#define ID2D1RenderTarget_CreateBitmapFromWicBitmap(This, wicBitmapSource, bitmapProperties, bitmap) \ - ((This)->lpVtbl->CreateBitmapFromWicBitmap(This, wicBitmapSource, bitmapProperties, bitmap)) - -#define ID2D1RenderTarget_CreateSharedBitmap(This, riid, data, bitmapProperties, bitmap) \ - ((This)->lpVtbl->CreateSharedBitmap(This, riid, data, bitmapProperties, bitmap)) - -#define ID2D1RenderTarget_CreateBitmapBrush(This, bitmap, bitmapBrushProperties, brushProperties, bitmapBrush) \ - ((This)->lpVtbl->CreateBitmapBrush(This, bitmap, bitmapBrushProperties, brushProperties, bitmapBrush)) - -#define ID2D1RenderTarget_CreateSolidColorBrush(This, color, brushProperties, solidColorBrush) \ - ((This)->lpVtbl->CreateSolidColorBrush(This, color, brushProperties, solidColorBrush)) - -#define ID2D1RenderTarget_CreateGradientStopCollection(This, gradientStops, gradientStopsCount, colorInterpolationGamma, extendMode, gradientStopCollection) \ - ((This)->lpVtbl->CreateGradientStopCollection(This, gradientStops, gradientStopsCount, colorInterpolationGamma, extendMode, gradientStopCollection)) - -#define ID2D1RenderTarget_CreateLinearGradientBrush(This, linearGradientBrushProperties, brushProperties, gradientStopCollection, linearGradientBrush) \ - ((This)->lpVtbl->CreateLinearGradientBrush(This, linearGradientBrushProperties, brushProperties, gradientStopCollection, linearGradientBrush)) - -#define ID2D1RenderTarget_CreateRadialGradientBrush(This, radialGradientBrushProperties, brushProperties, gradientStopCollection, radialGradientBrush) \ - ((This)->lpVtbl->CreateRadialGradientBrush(This, radialGradientBrushProperties, brushProperties, gradientStopCollection, radialGradientBrush)) - -#define ID2D1RenderTarget_CreateCompatibleRenderTarget(This, desiredSize, desiredPixelSize, desiredFormat, options, bitmapRenderTarget) \ - ((This)->lpVtbl->CreateCompatibleRenderTarget(This, desiredSize, desiredPixelSize, desiredFormat, options, bitmapRenderTarget)) - -#define ID2D1RenderTarget_CreateLayer(This, size, layer) \ - ((This)->lpVtbl->CreateLayer(This, size, layer)) - -#define ID2D1RenderTarget_CreateMesh(This, mesh) \ - ((This)->lpVtbl->CreateMesh(This, mesh)) - -#define ID2D1RenderTarget_DrawLine(This, point0, point1, brush, strokeWidth, strokeStyle) \ - ((This)->lpVtbl->DrawLine(This, point0, point1, brush, strokeWidth, strokeStyle)) - -#define ID2D1RenderTarget_DrawRectangle(This, rect, brush, strokeWidth, strokeStyle) \ - ((This)->lpVtbl->DrawRectangle(This, rect, brush, strokeWidth, strokeStyle)) - -#define ID2D1RenderTarget_FillRectangle(This, rect, brush) \ - ((This)->lpVtbl->FillRectangle(This, rect, brush)) - -#define ID2D1RenderTarget_DrawRoundedRectangle(This, roundedRect, brush, strokeWidth, strokeStyle) \ - ((This)->lpVtbl->DrawRoundedRectangle(This, roundedRect, brush, strokeWidth, strokeStyle)) - -#define ID2D1RenderTarget_FillRoundedRectangle(This, roundedRect, brush) \ - ((This)->lpVtbl->FillRoundedRectangle(This, roundedRect, brush)) - -#define ID2D1RenderTarget_DrawEllipse(This, ellipse, brush, strokeWidth, strokeStyle) \ - ((This)->lpVtbl->DrawEllipse(This, ellipse, brush, strokeWidth, strokeStyle)) - -#define ID2D1RenderTarget_FillEllipse(This, ellipse, brush) \ - ((This)->lpVtbl->FillEllipse(This, ellipse, brush)) - -#define ID2D1RenderTarget_DrawGeometry(This, geometry, brush, strokeWidth, strokeStyle) \ - ((This)->lpVtbl->DrawGeometry(This, geometry, brush, strokeWidth, strokeStyle)) - -#define ID2D1RenderTarget_FillGeometry(This, geometry, brush, opacityBrush) \ - ((This)->lpVtbl->FillGeometry(This, geometry, brush, opacityBrush)) - -#define ID2D1RenderTarget_FillMesh(This, mesh, brush) \ - ((This)->lpVtbl->FillMesh(This, mesh, brush)) - -#define ID2D1RenderTarget_FillOpacityMask(This, opacityMask, brush, content, destinationRectangle, sourceRectangle) \ - ((This)->lpVtbl->FillOpacityMask(This, opacityMask, brush, content, destinationRectangle, sourceRectangle)) - -#define ID2D1RenderTarget_DrawBitmap(This, bitmap, destinationRectangle, opacity, interpolationMode, sourceRectangle) \ - ((This)->lpVtbl->DrawBitmap(This, bitmap, destinationRectangle, opacity, interpolationMode, sourceRectangle)) - -#define ID2D1RenderTarget_DrawText(This, string, stringLength, textFormat, layoutRect, defaultForegroundBrush, options, measuringMode) \ - ((This)->lpVtbl->DrawText(This, string, stringLength, textFormat, layoutRect, defaultForegroundBrush, options, measuringMode)) - -#define ID2D1RenderTarget_DrawTextLayout(This, origin, textLayout, defaultForegroundBrush, options) \ - ((This)->lpVtbl->DrawTextLayout(This, origin, textLayout, defaultForegroundBrush, options)) - -#define ID2D1RenderTarget_DrawGlyphRun(This, baselineOrigin, glyphRun, foregroundBrush, measuringMode) \ - ((This)->lpVtbl->DrawGlyphRun(This, baselineOrigin, glyphRun, foregroundBrush, measuringMode)) - -#define ID2D1RenderTarget_SetTransform(This, transform) \ - ((This)->lpVtbl->SetTransform(This, transform)) - -#define ID2D1RenderTarget_GetTransform(This, transform) \ - ((This)->lpVtbl->GetTransform(This, transform)) - -#define ID2D1RenderTarget_SetAntialiasMode(This, antialiasMode) \ - ((This)->lpVtbl->SetAntialiasMode(This, antialiasMode)) - -#define ID2D1RenderTarget_GetAntialiasMode(This) \ - ((This)->lpVtbl->GetAntialiasMode(This)) - -#define ID2D1RenderTarget_SetTextAntialiasMode(This, textAntialiasMode) \ - ((This)->lpVtbl->SetTextAntialiasMode(This, textAntialiasMode)) - -#define ID2D1RenderTarget_GetTextAntialiasMode(This) \ - ((This)->lpVtbl->GetTextAntialiasMode(This)) - -#define ID2D1RenderTarget_SetTextRenderingParams(This, textRenderingParams) \ - ((This)->lpVtbl->SetTextRenderingParams(This, textRenderingParams)) - -#define ID2D1RenderTarget_GetTextRenderingParams(This, textRenderingParams) \ - ((This)->lpVtbl->GetTextRenderingParams(This, textRenderingParams)) - -#define ID2D1RenderTarget_SetTags(This, tag1, tag2) \ - ((This)->lpVtbl->SetTags(This, tag1, tag2)) - -#define ID2D1RenderTarget_GetTags(This, tag1, tag2) \ - ((This)->lpVtbl->GetTags(This, tag1, tag2)) - -#define ID2D1RenderTarget_PushLayer(This, layerParameters, layer) \ - ((This)->lpVtbl->PushLayer(This, layerParameters, layer)) - -#define ID2D1RenderTarget_PopLayer(This) \ - ((This)->lpVtbl->PopLayer(This)) - -#define ID2D1RenderTarget_Flush(This, tag1, tag2) \ - ((This)->lpVtbl->Flush(This, tag1, tag2)) - -#define ID2D1RenderTarget_SaveDrawingState(This, drawingStateBlock) \ - ((This)->lpVtbl->SaveDrawingState(This, drawingStateBlock)) - -#define ID2D1RenderTarget_RestoreDrawingState(This, drawingStateBlock) \ - ((This)->lpVtbl->RestoreDrawingState(This, drawingStateBlock)) - -#define ID2D1RenderTarget_PushAxisAlignedClip(This, clipRect, antialiasMode) \ - ((This)->lpVtbl->PushAxisAlignedClip(This, clipRect, antialiasMode)) - -#define ID2D1RenderTarget_PopAxisAlignedClip(This) \ - ((This)->lpVtbl->PopAxisAlignedClip(This)) - -#define ID2D1RenderTarget_Clear(This, clearColor) \ - ((This)->lpVtbl->Clear(This, clearColor)) - -#define ID2D1RenderTarget_BeginDraw(This) \ - ((This)->lpVtbl->BeginDraw(This)) - -#define ID2D1RenderTarget_EndDraw(This, tag1, tag2) \ - ((This)->lpVtbl->EndDraw(This, tag1, tag2)) - -#define ID2D1RenderTarget_GetPixelFormat(This) \ - ((This)->lpVtbl->GetPixelFormat(This)) - -#define ID2D1RenderTarget_SetDpi(This, dpiX, dpiY) \ - ((This)->lpVtbl->SetDpi(This, dpiX, dpiY)) - -#define ID2D1RenderTarget_GetDpi(This, dpiX, dpiY) \ - ((This)->lpVtbl->GetDpi(This, dpiX, dpiY)) - -#define ID2D1RenderTarget_GetSize(This) \ - ((This)->lpVtbl->GetSize(This)) - -#define ID2D1RenderTarget_GetPixelSize(This) \ - ((This)->lpVtbl->GetPixelSize(This)) - -#define ID2D1RenderTarget_GetMaximumBitmapSize(This) \ - ((This)->lpVtbl->GetMaximumBitmapSize(This)) - -#define ID2D1RenderTarget_IsSupported(This, renderTargetProperties) \ - ((This)->lpVtbl->IsSupported(This, renderTargetProperties)) - -typedef interface ID2D1BitmapRenderTarget ID2D1BitmapRenderTarget; - -typedef struct ID2D1BitmapRenderTargetVtbl -{ - - ID2D1RenderTargetVtbl Base; - - - STDMETHOD(GetBitmap)( - ID2D1BitmapRenderTarget *This, - __deref_out ID2D1Bitmap **bitmap - ) PURE; -} ID2D1BitmapRenderTargetVtbl; - -interface ID2D1BitmapRenderTarget -{ - CONST struct ID2D1BitmapRenderTargetVtbl *lpVtbl; -}; - - -#define ID2D1BitmapRenderTarget_QueryInterface(This, riid, ppv) \ - ((This)->lpVtbl->Base.Base.Base.QueryInterface((IUnknown *)This, riid, ppv)) - -#define ID2D1BitmapRenderTarget_AddRef(This) \ - ((This)->lpVtbl->Base.Base.Base.AddRef((IUnknown *)This)) - -#define ID2D1BitmapRenderTarget_Release(This) \ - ((This)->lpVtbl->Base.Base.Base.Release((IUnknown *)This)) - -#define ID2D1BitmapRenderTarget_GetFactory(This, factory) \ - ((This)->lpVtbl->Base.Base.GetFactory((ID2D1Resource *)This, factory)) - -#define ID2D1BitmapRenderTarget_CreateBitmap(This, size, srcData, pitch, bitmapProperties, bitmap) \ - ((This)->lpVtbl->Base.CreateBitmap((ID2D1RenderTarget *)This, size, srcData, pitch, bitmapProperties, bitmap)) - -#define ID2D1BitmapRenderTarget_CreateBitmapFromWicBitmap(This, wicBitmapSource, bitmapProperties, bitmap) \ - ((This)->lpVtbl->Base.CreateBitmapFromWicBitmap((ID2D1RenderTarget *)This, wicBitmapSource, bitmapProperties, bitmap)) - -#define ID2D1BitmapRenderTarget_CreateSharedBitmap(This, riid, data, bitmapProperties, bitmap) \ - ((This)->lpVtbl->Base.CreateSharedBitmap((ID2D1RenderTarget *)This, riid, data, bitmapProperties, bitmap)) - -#define ID2D1BitmapRenderTarget_CreateBitmapBrush(This, bitmap, bitmapBrushProperties, brushProperties, bitmapBrush) \ - ((This)->lpVtbl->Base.CreateBitmapBrush((ID2D1RenderTarget *)This, bitmap, bitmapBrushProperties, brushProperties, bitmapBrush)) - -#define ID2D1BitmapRenderTarget_CreateSolidColorBrush(This, color, brushProperties, solidColorBrush) \ - ((This)->lpVtbl->Base.CreateSolidColorBrush((ID2D1RenderTarget *)This, color, brushProperties, solidColorBrush)) - -#define ID2D1BitmapRenderTarget_CreateGradientStopCollection(This, gradientStops, gradientStopsCount, colorInterpolationGamma, extendMode, gradientStopCollection) \ - ((This)->lpVtbl->Base.CreateGradientStopCollection((ID2D1RenderTarget *)This, gradientStops, gradientStopsCount, colorInterpolationGamma, extendMode, gradientStopCollection)) - -#define ID2D1BitmapRenderTarget_CreateLinearGradientBrush(This, linearGradientBrushProperties, brushProperties, gradientStopCollection, linearGradientBrush) \ - ((This)->lpVtbl->Base.CreateLinearGradientBrush((ID2D1RenderTarget *)This, linearGradientBrushProperties, brushProperties, gradientStopCollection, linearGradientBrush)) - -#define ID2D1BitmapRenderTarget_CreateRadialGradientBrush(This, radialGradientBrushProperties, brushProperties, gradientStopCollection, radialGradientBrush) \ - ((This)->lpVtbl->Base.CreateRadialGradientBrush((ID2D1RenderTarget *)This, radialGradientBrushProperties, brushProperties, gradientStopCollection, radialGradientBrush)) - -#define ID2D1BitmapRenderTarget_CreateCompatibleRenderTarget(This, desiredSize, desiredPixelSize, desiredFormat, options, bitmapRenderTarget) \ - ((This)->lpVtbl->Base.CreateCompatibleRenderTarget((ID2D1RenderTarget *)This, desiredSize, desiredPixelSize, desiredFormat, options, bitmapRenderTarget)) - -#define ID2D1BitmapRenderTarget_CreateLayer(This, size, layer) \ - ((This)->lpVtbl->Base.CreateLayer((ID2D1RenderTarget *)This, size, layer)) - -#define ID2D1BitmapRenderTarget_CreateMesh(This, mesh) \ - ((This)->lpVtbl->Base.CreateMesh((ID2D1RenderTarget *)This, mesh)) - -#define ID2D1BitmapRenderTarget_DrawLine(This, point0, point1, brush, strokeWidth, strokeStyle) \ - ((This)->lpVtbl->Base.DrawLine((ID2D1RenderTarget *)This, point0, point1, brush, strokeWidth, strokeStyle)) - -#define ID2D1BitmapRenderTarget_DrawRectangle(This, rect, brush, strokeWidth, strokeStyle) \ - ((This)->lpVtbl->Base.DrawRectangle((ID2D1RenderTarget *)This, rect, brush, strokeWidth, strokeStyle)) - -#define ID2D1BitmapRenderTarget_FillRectangle(This, rect, brush) \ - ((This)->lpVtbl->Base.FillRectangle((ID2D1RenderTarget *)This, rect, brush)) - -#define ID2D1BitmapRenderTarget_DrawRoundedRectangle(This, roundedRect, brush, strokeWidth, strokeStyle) \ - ((This)->lpVtbl->Base.DrawRoundedRectangle((ID2D1RenderTarget *)This, roundedRect, brush, strokeWidth, strokeStyle)) - -#define ID2D1BitmapRenderTarget_FillRoundedRectangle(This, roundedRect, brush) \ - ((This)->lpVtbl->Base.FillRoundedRectangle((ID2D1RenderTarget *)This, roundedRect, brush)) - -#define ID2D1BitmapRenderTarget_DrawEllipse(This, ellipse, brush, strokeWidth, strokeStyle) \ - ((This)->lpVtbl->Base.DrawEllipse((ID2D1RenderTarget *)This, ellipse, brush, strokeWidth, strokeStyle)) - -#define ID2D1BitmapRenderTarget_FillEllipse(This, ellipse, brush) \ - ((This)->lpVtbl->Base.FillEllipse((ID2D1RenderTarget *)This, ellipse, brush)) - -#define ID2D1BitmapRenderTarget_DrawGeometry(This, geometry, brush, strokeWidth, strokeStyle) \ - ((This)->lpVtbl->Base.DrawGeometry((ID2D1RenderTarget *)This, geometry, brush, strokeWidth, strokeStyle)) - -#define ID2D1BitmapRenderTarget_FillGeometry(This, geometry, brush, opacityBrush) \ - ((This)->lpVtbl->Base.FillGeometry((ID2D1RenderTarget *)This, geometry, brush, opacityBrush)) - -#define ID2D1BitmapRenderTarget_FillMesh(This, mesh, brush) \ - ((This)->lpVtbl->Base.FillMesh((ID2D1RenderTarget *)This, mesh, brush)) - -#define ID2D1BitmapRenderTarget_FillOpacityMask(This, opacityMask, brush, content, destinationRectangle, sourceRectangle) \ - ((This)->lpVtbl->Base.FillOpacityMask((ID2D1RenderTarget *)This, opacityMask, brush, content, destinationRectangle, sourceRectangle)) - -#define ID2D1BitmapRenderTarget_DrawBitmap(This, bitmap, destinationRectangle, opacity, interpolationMode, sourceRectangle) \ - ((This)->lpVtbl->Base.DrawBitmap((ID2D1RenderTarget *)This, bitmap, destinationRectangle, opacity, interpolationMode, sourceRectangle)) - -#define ID2D1BitmapRenderTarget_DrawText(This, string, stringLength, textFormat, layoutRect, defaultForegroundBrush, options, measuringMode) \ - ((This)->lpVtbl->Base.DrawText((ID2D1RenderTarget *)This, string, stringLength, textFormat, layoutRect, defaultForegroundBrush, options, measuringMode)) - -#define ID2D1BitmapRenderTarget_DrawTextLayout(This, origin, textLayout, defaultForegroundBrush, options) \ - ((This)->lpVtbl->Base.DrawTextLayout((ID2D1RenderTarget *)This, origin, textLayout, defaultForegroundBrush, options)) - -#define ID2D1BitmapRenderTarget_DrawGlyphRun(This, baselineOrigin, glyphRun, foregroundBrush, measuringMode) \ - ((This)->lpVtbl->Base.DrawGlyphRun((ID2D1RenderTarget *)This, baselineOrigin, glyphRun, foregroundBrush, measuringMode)) - -#define ID2D1BitmapRenderTarget_SetTransform(This, transform) \ - ((This)->lpVtbl->Base.SetTransform((ID2D1RenderTarget *)This, transform)) - -#define ID2D1BitmapRenderTarget_GetTransform(This, transform) \ - ((This)->lpVtbl->Base.GetTransform((ID2D1RenderTarget *)This, transform)) - -#define ID2D1BitmapRenderTarget_SetAntialiasMode(This, antialiasMode) \ - ((This)->lpVtbl->Base.SetAntialiasMode((ID2D1RenderTarget *)This, antialiasMode)) - -#define ID2D1BitmapRenderTarget_GetAntialiasMode(This) \ - ((This)->lpVtbl->Base.GetAntialiasMode((ID2D1RenderTarget *)This)) - -#define ID2D1BitmapRenderTarget_SetTextAntialiasMode(This, textAntialiasMode) \ - ((This)->lpVtbl->Base.SetTextAntialiasMode((ID2D1RenderTarget *)This, textAntialiasMode)) - -#define ID2D1BitmapRenderTarget_GetTextAntialiasMode(This) \ - ((This)->lpVtbl->Base.GetTextAntialiasMode((ID2D1RenderTarget *)This)) - -#define ID2D1BitmapRenderTarget_SetTextRenderingParams(This, textRenderingParams) \ - ((This)->lpVtbl->Base.SetTextRenderingParams((ID2D1RenderTarget *)This, textRenderingParams)) - -#define ID2D1BitmapRenderTarget_GetTextRenderingParams(This, textRenderingParams) \ - ((This)->lpVtbl->Base.GetTextRenderingParams((ID2D1RenderTarget *)This, textRenderingParams)) - -#define ID2D1BitmapRenderTarget_SetTags(This, tag1, tag2) \ - ((This)->lpVtbl->Base.SetTags((ID2D1RenderTarget *)This, tag1, tag2)) - -#define ID2D1BitmapRenderTarget_GetTags(This, tag1, tag2) \ - ((This)->lpVtbl->Base.GetTags((ID2D1RenderTarget *)This, tag1, tag2)) - -#define ID2D1BitmapRenderTarget_PushLayer(This, layerParameters, layer) \ - ((This)->lpVtbl->Base.PushLayer((ID2D1RenderTarget *)This, layerParameters, layer)) - -#define ID2D1BitmapRenderTarget_PopLayer(This) \ - ((This)->lpVtbl->Base.PopLayer((ID2D1RenderTarget *)This)) - -#define ID2D1BitmapRenderTarget_Flush(This, tag1, tag2) \ - ((This)->lpVtbl->Base.Flush((ID2D1RenderTarget *)This, tag1, tag2)) - -#define ID2D1BitmapRenderTarget_SaveDrawingState(This, drawingStateBlock) \ - ((This)->lpVtbl->Base.SaveDrawingState((ID2D1RenderTarget *)This, drawingStateBlock)) - -#define ID2D1BitmapRenderTarget_RestoreDrawingState(This, drawingStateBlock) \ - ((This)->lpVtbl->Base.RestoreDrawingState((ID2D1RenderTarget *)This, drawingStateBlock)) - -#define ID2D1BitmapRenderTarget_PushAxisAlignedClip(This, clipRect, antialiasMode) \ - ((This)->lpVtbl->Base.PushAxisAlignedClip((ID2D1RenderTarget *)This, clipRect, antialiasMode)) - -#define ID2D1BitmapRenderTarget_PopAxisAlignedClip(This) \ - ((This)->lpVtbl->Base.PopAxisAlignedClip((ID2D1RenderTarget *)This)) - -#define ID2D1BitmapRenderTarget_Clear(This, clearColor) \ - ((This)->lpVtbl->Base.Clear((ID2D1RenderTarget *)This, clearColor)) - -#define ID2D1BitmapRenderTarget_BeginDraw(This) \ - ((This)->lpVtbl->Base.BeginDraw((ID2D1RenderTarget *)This)) - -#define ID2D1BitmapRenderTarget_EndDraw(This, tag1, tag2) \ - ((This)->lpVtbl->Base.EndDraw((ID2D1RenderTarget *)This, tag1, tag2)) - -#define ID2D1BitmapRenderTarget_GetPixelFormat(This) \ - ((This)->lpVtbl->Base.GetPixelFormat((ID2D1RenderTarget *)This)) - -#define ID2D1BitmapRenderTarget_SetDpi(This, dpiX, dpiY) \ - ((This)->lpVtbl->Base.SetDpi((ID2D1RenderTarget *)This, dpiX, dpiY)) - -#define ID2D1BitmapRenderTarget_GetDpi(This, dpiX, dpiY) \ - ((This)->lpVtbl->Base.GetDpi((ID2D1RenderTarget *)This, dpiX, dpiY)) - -#define ID2D1BitmapRenderTarget_GetSize(This) \ - ((This)->lpVtbl->Base.GetSize((ID2D1RenderTarget *)This)) - -#define ID2D1BitmapRenderTarget_GetPixelSize(This) \ - ((This)->lpVtbl->Base.GetPixelSize((ID2D1RenderTarget *)This)) - -#define ID2D1BitmapRenderTarget_GetMaximumBitmapSize(This) \ - ((This)->lpVtbl->Base.GetMaximumBitmapSize((ID2D1RenderTarget *)This)) - -#define ID2D1BitmapRenderTarget_IsSupported(This, renderTargetProperties) \ - ((This)->lpVtbl->Base.IsSupported((ID2D1RenderTarget *)This, renderTargetProperties)) - -#define ID2D1BitmapRenderTarget_GetBitmap(This, bitmap) \ - ((This)->lpVtbl->GetBitmap(This, bitmap)) - -typedef interface ID2D1HwndRenderTarget ID2D1HwndRenderTarget; - -typedef struct ID2D1HwndRenderTargetVtbl -{ - - ID2D1RenderTargetVtbl Base; - - - STDMETHOD_(D2D1_WINDOW_STATE, CheckWindowState)( - ID2D1HwndRenderTarget *This - ) PURE; - - STDMETHOD(Resize)( - ID2D1HwndRenderTarget *This, - __in CONST D2D1_SIZE_U *pixelSize - ) PURE; - - STDMETHOD_(HWND, GetHwnd)( - ID2D1HwndRenderTarget *This - ) PURE; -} ID2D1HwndRenderTargetVtbl; - -interface ID2D1HwndRenderTarget -{ - CONST struct ID2D1HwndRenderTargetVtbl *lpVtbl; -}; - - -#define ID2D1HwndRenderTarget_QueryInterface(This, riid, ppv) \ - ((This)->lpVtbl->Base.Base.Base.QueryInterface((IUnknown *)This, riid, ppv)) - -#define ID2D1HwndRenderTarget_AddRef(This) \ - ((This)->lpVtbl->Base.Base.Base.AddRef((IUnknown *)This)) - -#define ID2D1HwndRenderTarget_Release(This) \ - ((This)->lpVtbl->Base.Base.Base.Release((IUnknown *)This)) - -#define ID2D1HwndRenderTarget_GetFactory(This, factory) \ - ((This)->lpVtbl->Base.Base.GetFactory((ID2D1Resource *)This, factory)) - -#define ID2D1HwndRenderTarget_CreateBitmap(This, size, srcData, pitch, bitmapProperties, bitmap) \ - ((This)->lpVtbl->Base.CreateBitmap((ID2D1RenderTarget *)This, size, srcData, pitch, bitmapProperties, bitmap)) - -#define ID2D1HwndRenderTarget_CreateBitmapFromWicBitmap(This, wicBitmapSource, bitmapProperties, bitmap) \ - ((This)->lpVtbl->Base.CreateBitmapFromWicBitmap((ID2D1RenderTarget *)This, wicBitmapSource, bitmapProperties, bitmap)) - -#define ID2D1HwndRenderTarget_CreateSharedBitmap(This, riid, data, bitmapProperties, bitmap) \ - ((This)->lpVtbl->Base.CreateSharedBitmap((ID2D1RenderTarget *)This, riid, data, bitmapProperties, bitmap)) - -#define ID2D1HwndRenderTarget_CreateBitmapBrush(This, bitmap, bitmapBrushProperties, brushProperties, bitmapBrush) \ - ((This)->lpVtbl->Base.CreateBitmapBrush((ID2D1RenderTarget *)This, bitmap, bitmapBrushProperties, brushProperties, bitmapBrush)) - -#define ID2D1HwndRenderTarget_CreateSolidColorBrush(This, color, brushProperties, solidColorBrush) \ - ((This)->lpVtbl->Base.CreateSolidColorBrush((ID2D1RenderTarget *)This, color, brushProperties, solidColorBrush)) - -#define ID2D1HwndRenderTarget_CreateGradientStopCollection(This, gradientStops, gradientStopsCount, colorInterpolationGamma, extendMode, gradientStopCollection) \ - ((This)->lpVtbl->Base.CreateGradientStopCollection((ID2D1RenderTarget *)This, gradientStops, gradientStopsCount, colorInterpolationGamma, extendMode, gradientStopCollection)) - -#define ID2D1HwndRenderTarget_CreateLinearGradientBrush(This, linearGradientBrushProperties, brushProperties, gradientStopCollection, linearGradientBrush) \ - ((This)->lpVtbl->Base.CreateLinearGradientBrush((ID2D1RenderTarget *)This, linearGradientBrushProperties, brushProperties, gradientStopCollection, linearGradientBrush)) - -#define ID2D1HwndRenderTarget_CreateRadialGradientBrush(This, radialGradientBrushProperties, brushProperties, gradientStopCollection, radialGradientBrush) \ - ((This)->lpVtbl->Base.CreateRadialGradientBrush((ID2D1RenderTarget *)This, radialGradientBrushProperties, brushProperties, gradientStopCollection, radialGradientBrush)) - -#define ID2D1HwndRenderTarget_CreateCompatibleRenderTarget(This, desiredSize, desiredPixelSize, desiredFormat, options, bitmapRenderTarget) \ - ((This)->lpVtbl->Base.CreateCompatibleRenderTarget((ID2D1RenderTarget *)This, desiredSize, desiredPixelSize, desiredFormat, options, bitmapRenderTarget)) - -#define ID2D1HwndRenderTarget_CreateLayer(This, size, layer) \ - ((This)->lpVtbl->Base.CreateLayer((ID2D1RenderTarget *)This, size, layer)) - -#define ID2D1HwndRenderTarget_CreateMesh(This, mesh) \ - ((This)->lpVtbl->Base.CreateMesh((ID2D1RenderTarget *)This, mesh)) - -#define ID2D1HwndRenderTarget_DrawLine(This, point0, point1, brush, strokeWidth, strokeStyle) \ - ((This)->lpVtbl->Base.DrawLine((ID2D1RenderTarget *)This, point0, point1, brush, strokeWidth, strokeStyle)) - -#define ID2D1HwndRenderTarget_DrawRectangle(This, rect, brush, strokeWidth, strokeStyle) \ - ((This)->lpVtbl->Base.DrawRectangle((ID2D1RenderTarget *)This, rect, brush, strokeWidth, strokeStyle)) - -#define ID2D1HwndRenderTarget_FillRectangle(This, rect, brush) \ - ((This)->lpVtbl->Base.FillRectangle((ID2D1RenderTarget *)This, rect, brush)) - -#define ID2D1HwndRenderTarget_DrawRoundedRectangle(This, roundedRect, brush, strokeWidth, strokeStyle) \ - ((This)->lpVtbl->Base.DrawRoundedRectangle((ID2D1RenderTarget *)This, roundedRect, brush, strokeWidth, strokeStyle)) - -#define ID2D1HwndRenderTarget_FillRoundedRectangle(This, roundedRect, brush) \ - ((This)->lpVtbl->Base.FillRoundedRectangle((ID2D1RenderTarget *)This, roundedRect, brush)) - -#define ID2D1HwndRenderTarget_DrawEllipse(This, ellipse, brush, strokeWidth, strokeStyle) \ - ((This)->lpVtbl->Base.DrawEllipse((ID2D1RenderTarget *)This, ellipse, brush, strokeWidth, strokeStyle)) - -#define ID2D1HwndRenderTarget_FillEllipse(This, ellipse, brush) \ - ((This)->lpVtbl->Base.FillEllipse((ID2D1RenderTarget *)This, ellipse, brush)) - -#define ID2D1HwndRenderTarget_DrawGeometry(This, geometry, brush, strokeWidth, strokeStyle) \ - ((This)->lpVtbl->Base.DrawGeometry((ID2D1RenderTarget *)This, geometry, brush, strokeWidth, strokeStyle)) - -#define ID2D1HwndRenderTarget_FillGeometry(This, geometry, brush, opacityBrush) \ - ((This)->lpVtbl->Base.FillGeometry((ID2D1RenderTarget *)This, geometry, brush, opacityBrush)) - -#define ID2D1HwndRenderTarget_FillMesh(This, mesh, brush) \ - ((This)->lpVtbl->Base.FillMesh((ID2D1RenderTarget *)This, mesh, brush)) - -#define ID2D1HwndRenderTarget_FillOpacityMask(This, opacityMask, brush, content, destinationRectangle, sourceRectangle) \ - ((This)->lpVtbl->Base.FillOpacityMask((ID2D1RenderTarget *)This, opacityMask, brush, content, destinationRectangle, sourceRectangle)) - -#define ID2D1HwndRenderTarget_DrawBitmap(This, bitmap, destinationRectangle, opacity, interpolationMode, sourceRectangle) \ - ((This)->lpVtbl->Base.DrawBitmap((ID2D1RenderTarget *)This, bitmap, destinationRectangle, opacity, interpolationMode, sourceRectangle)) - -#define ID2D1HwndRenderTarget_DrawText(This, string, stringLength, textFormat, layoutRect, defaultForegroundBrush, options, measuringMode) \ - ((This)->lpVtbl->Base.DrawText((ID2D1RenderTarget *)This, string, stringLength, textFormat, layoutRect, defaultForegroundBrush, options, measuringMode)) - -#define ID2D1HwndRenderTarget_DrawTextLayout(This, origin, textLayout, defaultForegroundBrush, options) \ - ((This)->lpVtbl->Base.DrawTextLayout((ID2D1RenderTarget *)This, origin, textLayout, defaultForegroundBrush, options)) - -#define ID2D1HwndRenderTarget_DrawGlyphRun(This, baselineOrigin, glyphRun, foregroundBrush, measuringMode) \ - ((This)->lpVtbl->Base.DrawGlyphRun((ID2D1RenderTarget *)This, baselineOrigin, glyphRun, foregroundBrush, measuringMode)) - -#define ID2D1HwndRenderTarget_SetTransform(This, transform) \ - ((This)->lpVtbl->Base.SetTransform((ID2D1RenderTarget *)This, transform)) - -#define ID2D1HwndRenderTarget_GetTransform(This, transform) \ - ((This)->lpVtbl->Base.GetTransform((ID2D1RenderTarget *)This, transform)) - -#define ID2D1HwndRenderTarget_SetAntialiasMode(This, antialiasMode) \ - ((This)->lpVtbl->Base.SetAntialiasMode((ID2D1RenderTarget *)This, antialiasMode)) - -#define ID2D1HwndRenderTarget_GetAntialiasMode(This) \ - ((This)->lpVtbl->Base.GetAntialiasMode((ID2D1RenderTarget *)This)) - -#define ID2D1HwndRenderTarget_SetTextAntialiasMode(This, textAntialiasMode) \ - ((This)->lpVtbl->Base.SetTextAntialiasMode((ID2D1RenderTarget *)This, textAntialiasMode)) - -#define ID2D1HwndRenderTarget_GetTextAntialiasMode(This) \ - ((This)->lpVtbl->Base.GetTextAntialiasMode((ID2D1RenderTarget *)This)) - -#define ID2D1HwndRenderTarget_SetTextRenderingParams(This, textRenderingParams) \ - ((This)->lpVtbl->Base.SetTextRenderingParams((ID2D1RenderTarget *)This, textRenderingParams)) - -#define ID2D1HwndRenderTarget_GetTextRenderingParams(This, textRenderingParams) \ - ((This)->lpVtbl->Base.GetTextRenderingParams((ID2D1RenderTarget *)This, textRenderingParams)) - -#define ID2D1HwndRenderTarget_SetTags(This, tag1, tag2) \ - ((This)->lpVtbl->Base.SetTags((ID2D1RenderTarget *)This, tag1, tag2)) - -#define ID2D1HwndRenderTarget_GetTags(This, tag1, tag2) \ - ((This)->lpVtbl->Base.GetTags((ID2D1RenderTarget *)This, tag1, tag2)) - -#define ID2D1HwndRenderTarget_PushLayer(This, layerParameters, layer) \ - ((This)->lpVtbl->Base.PushLayer((ID2D1RenderTarget *)This, layerParameters, layer)) - -#define ID2D1HwndRenderTarget_PopLayer(This) \ - ((This)->lpVtbl->Base.PopLayer((ID2D1RenderTarget *)This)) - -#define ID2D1HwndRenderTarget_Flush(This, tag1, tag2) \ - ((This)->lpVtbl->Base.Flush((ID2D1RenderTarget *)This, tag1, tag2)) - -#define ID2D1HwndRenderTarget_SaveDrawingState(This, drawingStateBlock) \ - ((This)->lpVtbl->Base.SaveDrawingState((ID2D1RenderTarget *)This, drawingStateBlock)) - -#define ID2D1HwndRenderTarget_RestoreDrawingState(This, drawingStateBlock) \ - ((This)->lpVtbl->Base.RestoreDrawingState((ID2D1RenderTarget *)This, drawingStateBlock)) - -#define ID2D1HwndRenderTarget_PushAxisAlignedClip(This, clipRect, antialiasMode) \ - ((This)->lpVtbl->Base.PushAxisAlignedClip((ID2D1RenderTarget *)This, clipRect, antialiasMode)) - -#define ID2D1HwndRenderTarget_PopAxisAlignedClip(This) \ - ((This)->lpVtbl->Base.PopAxisAlignedClip((ID2D1RenderTarget *)This)) - -#define ID2D1HwndRenderTarget_Clear(This, clearColor) \ - ((This)->lpVtbl->Base.Clear((ID2D1RenderTarget *)This, clearColor)) - -#define ID2D1HwndRenderTarget_BeginDraw(This) \ - ((This)->lpVtbl->Base.BeginDraw((ID2D1RenderTarget *)This)) - -#define ID2D1HwndRenderTarget_EndDraw(This, tag1, tag2) \ - ((This)->lpVtbl->Base.EndDraw((ID2D1RenderTarget *)This, tag1, tag2)) - -#define ID2D1HwndRenderTarget_GetPixelFormat(This) \ - ((This)->lpVtbl->Base.GetPixelFormat((ID2D1RenderTarget *)This)) - -#define ID2D1HwndRenderTarget_SetDpi(This, dpiX, dpiY) \ - ((This)->lpVtbl->Base.SetDpi((ID2D1RenderTarget *)This, dpiX, dpiY)) - -#define ID2D1HwndRenderTarget_GetDpi(This, dpiX, dpiY) \ - ((This)->lpVtbl->Base.GetDpi((ID2D1RenderTarget *)This, dpiX, dpiY)) - -#define ID2D1HwndRenderTarget_GetSize(This) \ - ((This)->lpVtbl->Base.GetSize((ID2D1RenderTarget *)This)) - -#define ID2D1HwndRenderTarget_GetPixelSize(This) \ - ((This)->lpVtbl->Base.GetPixelSize((ID2D1RenderTarget *)This)) - -#define ID2D1HwndRenderTarget_GetMaximumBitmapSize(This) \ - ((This)->lpVtbl->Base.GetMaximumBitmapSize((ID2D1RenderTarget *)This)) - -#define ID2D1HwndRenderTarget_IsSupported(This, renderTargetProperties) \ - ((This)->lpVtbl->Base.IsSupported((ID2D1RenderTarget *)This, renderTargetProperties)) - -#define ID2D1HwndRenderTarget_CheckWindowState(This) \ - ((This)->lpVtbl->CheckWindowState(This)) - -#define ID2D1HwndRenderTarget_Resize(This, pixelSize) \ - ((This)->lpVtbl->Resize(This, pixelSize)) - -#define ID2D1HwndRenderTarget_GetHwnd(This) \ - ((This)->lpVtbl->GetHwnd(This)) - -typedef interface ID2D1GdiInteropRenderTarget ID2D1GdiInteropRenderTarget; - -typedef struct ID2D1GdiInteropRenderTargetVtbl -{ - - IUnknownVtbl Base; - - - STDMETHOD(GetDC)( - ID2D1GdiInteropRenderTarget *This, - D2D1_DC_INITIALIZE_MODE mode, - __out HDC *hdc - ) PURE; - - STDMETHOD(ReleaseDC)( - ID2D1GdiInteropRenderTarget *This, - __in_opt CONST RECT *update - ) PURE; -} ID2D1GdiInteropRenderTargetVtbl; - -interface ID2D1GdiInteropRenderTarget -{ - CONST struct ID2D1GdiInteropRenderTargetVtbl *lpVtbl; -}; - - -#define ID2D1GdiInteropRenderTarget_QueryInterface(This, riid, ppv) \ - ((This)->lpVtbl->Base.QueryInterface((IUnknown *)This, riid, ppv)) - -#define ID2D1GdiInteropRenderTarget_AddRef(This) \ - ((This)->lpVtbl->Base.AddRef((IUnknown *)This)) - -#define ID2D1GdiInteropRenderTarget_Release(This) \ - ((This)->lpVtbl->Base.Release((IUnknown *)This)) - -#define ID2D1GdiInteropRenderTarget_GetDC(This, mode, hdc) \ - ((This)->lpVtbl->GetDC(This, mode, hdc)) - -#define ID2D1GdiInteropRenderTarget_ReleaseDC(This, update) \ - ((This)->lpVtbl->ReleaseDC(This, update)) - -typedef interface ID2D1DCRenderTarget ID2D1DCRenderTarget; - -typedef struct ID2D1DCRenderTargetVtbl -{ - - ID2D1RenderTargetVtbl Base; - - - STDMETHOD(BindDC)( - ID2D1DCRenderTarget *This, - __in CONST HDC hDC, - __in CONST RECT *pSubRect - ) PURE; -} ID2D1DCRenderTargetVtbl; - -interface ID2D1DCRenderTarget -{ - CONST struct ID2D1DCRenderTargetVtbl *lpVtbl; -}; - - -#define ID2D1DCRenderTarget_QueryInterface(This, riid, ppv) \ - ((This)->lpVtbl->Base.Base.Base.QueryInterface((IUnknown *)This, riid, ppv)) - -#define ID2D1DCRenderTarget_AddRef(This) \ - ((This)->lpVtbl->Base.Base.Base.AddRef((IUnknown *)This)) - -#define ID2D1DCRenderTarget_Release(This) \ - ((This)->lpVtbl->Base.Base.Base.Release((IUnknown *)This)) - -#define ID2D1DCRenderTarget_GetFactory(This, factory) \ - ((This)->lpVtbl->Base.Base.GetFactory((ID2D1Resource *)This, factory)) - -#define ID2D1DCRenderTarget_CreateBitmap(This, size, srcData, pitch, bitmapProperties, bitmap) \ - ((This)->lpVtbl->Base.CreateBitmap((ID2D1RenderTarget *)This, size, srcData, pitch, bitmapProperties, bitmap)) - -#define ID2D1DCRenderTarget_CreateBitmapFromWicBitmap(This, wicBitmapSource, bitmapProperties, bitmap) \ - ((This)->lpVtbl->Base.CreateBitmapFromWicBitmap((ID2D1RenderTarget *)This, wicBitmapSource, bitmapProperties, bitmap)) - -#define ID2D1DCRenderTarget_CreateSharedBitmap(This, riid, data, bitmapProperties, bitmap) \ - ((This)->lpVtbl->Base.CreateSharedBitmap((ID2D1RenderTarget *)This, riid, data, bitmapProperties, bitmap)) - -#define ID2D1DCRenderTarget_CreateBitmapBrush(This, bitmap, bitmapBrushProperties, brushProperties, bitmapBrush) \ - ((This)->lpVtbl->Base.CreateBitmapBrush((ID2D1RenderTarget *)This, bitmap, bitmapBrushProperties, brushProperties, bitmapBrush)) - -#define ID2D1DCRenderTarget_CreateSolidColorBrush(This, color, brushProperties, solidColorBrush) \ - ((This)->lpVtbl->Base.CreateSolidColorBrush((ID2D1RenderTarget *)This, color, brushProperties, solidColorBrush)) - -#define ID2D1DCRenderTarget_CreateGradientStopCollection(This, gradientStops, gradientStopsCount, colorInterpolationGamma, extendMode, gradientStopCollection) \ - ((This)->lpVtbl->Base.CreateGradientStopCollection((ID2D1RenderTarget *)This, gradientStops, gradientStopsCount, colorInterpolationGamma, extendMode, gradientStopCollection)) - -#define ID2D1DCRenderTarget_CreateLinearGradientBrush(This, linearGradientBrushProperties, brushProperties, gradientStopCollection, linearGradientBrush) \ - ((This)->lpVtbl->Base.CreateLinearGradientBrush((ID2D1RenderTarget *)This, linearGradientBrushProperties, brushProperties, gradientStopCollection, linearGradientBrush)) - -#define ID2D1DCRenderTarget_CreateRadialGradientBrush(This, radialGradientBrushProperties, brushProperties, gradientStopCollection, radialGradientBrush) \ - ((This)->lpVtbl->Base.CreateRadialGradientBrush((ID2D1RenderTarget *)This, radialGradientBrushProperties, brushProperties, gradientStopCollection, radialGradientBrush)) - -#define ID2D1DCRenderTarget_CreateCompatibleRenderTarget(This, desiredSize, desiredPixelSize, desiredFormat, options, bitmapRenderTarget) \ - ((This)->lpVtbl->Base.CreateCompatibleRenderTarget((ID2D1RenderTarget *)This, desiredSize, desiredPixelSize, desiredFormat, options, bitmapRenderTarget)) - -#define ID2D1DCRenderTarget_CreateLayer(This, size, layer) \ - ((This)->lpVtbl->Base.CreateLayer((ID2D1RenderTarget *)This, size, layer)) - -#define ID2D1DCRenderTarget_CreateMesh(This, mesh) \ - ((This)->lpVtbl->Base.CreateMesh((ID2D1RenderTarget *)This, mesh)) - -#define ID2D1DCRenderTarget_DrawLine(This, point0, point1, brush, strokeWidth, strokeStyle) \ - ((This)->lpVtbl->Base.DrawLine((ID2D1RenderTarget *)This, point0, point1, brush, strokeWidth, strokeStyle)) - -#define ID2D1DCRenderTarget_DrawRectangle(This, rect, brush, strokeWidth, strokeStyle) \ - ((This)->lpVtbl->Base.DrawRectangle((ID2D1RenderTarget *)This, rect, brush, strokeWidth, strokeStyle)) - -#define ID2D1DCRenderTarget_FillRectangle(This, rect, brush) \ - ((This)->lpVtbl->Base.FillRectangle((ID2D1RenderTarget *)This, rect, brush)) - -#define ID2D1DCRenderTarget_DrawRoundedRectangle(This, roundedRect, brush, strokeWidth, strokeStyle) \ - ((This)->lpVtbl->Base.DrawRoundedRectangle((ID2D1RenderTarget *)This, roundedRect, brush, strokeWidth, strokeStyle)) - -#define ID2D1DCRenderTarget_FillRoundedRectangle(This, roundedRect, brush) \ - ((This)->lpVtbl->Base.FillRoundedRectangle((ID2D1RenderTarget *)This, roundedRect, brush)) - -#define ID2D1DCRenderTarget_DrawEllipse(This, ellipse, brush, strokeWidth, strokeStyle) \ - ((This)->lpVtbl->Base.DrawEllipse((ID2D1RenderTarget *)This, ellipse, brush, strokeWidth, strokeStyle)) - -#define ID2D1DCRenderTarget_FillEllipse(This, ellipse, brush) \ - ((This)->lpVtbl->Base.FillEllipse((ID2D1RenderTarget *)This, ellipse, brush)) - -#define ID2D1DCRenderTarget_DrawGeometry(This, geometry, brush, strokeWidth, strokeStyle) \ - ((This)->lpVtbl->Base.DrawGeometry((ID2D1RenderTarget *)This, geometry, brush, strokeWidth, strokeStyle)) - -#define ID2D1DCRenderTarget_FillGeometry(This, geometry, brush, opacityBrush) \ - ((This)->lpVtbl->Base.FillGeometry((ID2D1RenderTarget *)This, geometry, brush, opacityBrush)) - -#define ID2D1DCRenderTarget_FillMesh(This, mesh, brush) \ - ((This)->lpVtbl->Base.FillMesh((ID2D1RenderTarget *)This, mesh, brush)) - -#define ID2D1DCRenderTarget_FillOpacityMask(This, opacityMask, brush, content, destinationRectangle, sourceRectangle) \ - ((This)->lpVtbl->Base.FillOpacityMask((ID2D1RenderTarget *)This, opacityMask, brush, content, destinationRectangle, sourceRectangle)) - -#define ID2D1DCRenderTarget_DrawBitmap(This, bitmap, destinationRectangle, opacity, interpolationMode, sourceRectangle) \ - ((This)->lpVtbl->Base.DrawBitmap((ID2D1RenderTarget *)This, bitmap, destinationRectangle, opacity, interpolationMode, sourceRectangle)) - -#define ID2D1DCRenderTarget_DrawText(This, string, stringLength, textFormat, layoutRect, defaultForegroundBrush, options, measuringMode) \ - ((This)->lpVtbl->Base.DrawText((ID2D1RenderTarget *)This, string, stringLength, textFormat, layoutRect, defaultForegroundBrush, options, measuringMode)) - -#define ID2D1DCRenderTarget_DrawTextLayout(This, origin, textLayout, defaultForegroundBrush, options) \ - ((This)->lpVtbl->Base.DrawTextLayout((ID2D1RenderTarget *)This, origin, textLayout, defaultForegroundBrush, options)) - -#define ID2D1DCRenderTarget_DrawGlyphRun(This, baselineOrigin, glyphRun, foregroundBrush, measuringMode) \ - ((This)->lpVtbl->Base.DrawGlyphRun((ID2D1RenderTarget *)This, baselineOrigin, glyphRun, foregroundBrush, measuringMode)) - -#define ID2D1DCRenderTarget_SetTransform(This, transform) \ - ((This)->lpVtbl->Base.SetTransform((ID2D1RenderTarget *)This, transform)) - -#define ID2D1DCRenderTarget_GetTransform(This, transform) \ - ((This)->lpVtbl->Base.GetTransform((ID2D1RenderTarget *)This, transform)) - -#define ID2D1DCRenderTarget_SetAntialiasMode(This, antialiasMode) \ - ((This)->lpVtbl->Base.SetAntialiasMode((ID2D1RenderTarget *)This, antialiasMode)) - -#define ID2D1DCRenderTarget_GetAntialiasMode(This) \ - ((This)->lpVtbl->Base.GetAntialiasMode((ID2D1RenderTarget *)This)) - -#define ID2D1DCRenderTarget_SetTextAntialiasMode(This, textAntialiasMode) \ - ((This)->lpVtbl->Base.SetTextAntialiasMode((ID2D1RenderTarget *)This, textAntialiasMode)) - -#define ID2D1DCRenderTarget_GetTextAntialiasMode(This) \ - ((This)->lpVtbl->Base.GetTextAntialiasMode((ID2D1RenderTarget *)This)) - -#define ID2D1DCRenderTarget_SetTextRenderingParams(This, textRenderingParams) \ - ((This)->lpVtbl->Base.SetTextRenderingParams((ID2D1RenderTarget *)This, textRenderingParams)) - -#define ID2D1DCRenderTarget_GetTextRenderingParams(This, textRenderingParams) \ - ((This)->lpVtbl->Base.GetTextRenderingParams((ID2D1RenderTarget *)This, textRenderingParams)) - -#define ID2D1DCRenderTarget_SetTags(This, tag1, tag2) \ - ((This)->lpVtbl->Base.SetTags((ID2D1RenderTarget *)This, tag1, tag2)) - -#define ID2D1DCRenderTarget_GetTags(This, tag1, tag2) \ - ((This)->lpVtbl->Base.GetTags((ID2D1RenderTarget *)This, tag1, tag2)) - -#define ID2D1DCRenderTarget_PushLayer(This, layerParameters, layer) \ - ((This)->lpVtbl->Base.PushLayer((ID2D1RenderTarget *)This, layerParameters, layer)) - -#define ID2D1DCRenderTarget_PopLayer(This) \ - ((This)->lpVtbl->Base.PopLayer((ID2D1RenderTarget *)This)) - -#define ID2D1DCRenderTarget_Flush(This, tag1, tag2) \ - ((This)->lpVtbl->Base.Flush((ID2D1RenderTarget *)This, tag1, tag2)) - -#define ID2D1DCRenderTarget_SaveDrawingState(This, drawingStateBlock) \ - ((This)->lpVtbl->Base.SaveDrawingState((ID2D1RenderTarget *)This, drawingStateBlock)) - -#define ID2D1DCRenderTarget_RestoreDrawingState(This, drawingStateBlock) \ - ((This)->lpVtbl->Base.RestoreDrawingState((ID2D1RenderTarget *)This, drawingStateBlock)) - -#define ID2D1DCRenderTarget_PushAxisAlignedClip(This, clipRect, antialiasMode) \ - ((This)->lpVtbl->Base.PushAxisAlignedClip((ID2D1RenderTarget *)This, clipRect, antialiasMode)) - -#define ID2D1DCRenderTarget_PopAxisAlignedClip(This) \ - ((This)->lpVtbl->Base.PopAxisAlignedClip((ID2D1RenderTarget *)This)) - -#define ID2D1DCRenderTarget_Clear(This, clearColor) \ - ((This)->lpVtbl->Base.Clear((ID2D1RenderTarget *)This, clearColor)) - -#define ID2D1DCRenderTarget_BeginDraw(This) \ - ((This)->lpVtbl->Base.BeginDraw((ID2D1RenderTarget *)This)) - -#define ID2D1DCRenderTarget_EndDraw(This, tag1, tag2) \ - ((This)->lpVtbl->Base.EndDraw((ID2D1RenderTarget *)This, tag1, tag2)) - -#define ID2D1DCRenderTarget_GetPixelFormat(This) \ - ((This)->lpVtbl->Base.GetPixelFormat((ID2D1RenderTarget *)This)) - -#define ID2D1DCRenderTarget_SetDpi(This, dpiX, dpiY) \ - ((This)->lpVtbl->Base.SetDpi((ID2D1RenderTarget *)This, dpiX, dpiY)) - -#define ID2D1DCRenderTarget_GetDpi(This, dpiX, dpiY) \ - ((This)->lpVtbl->Base.GetDpi((ID2D1RenderTarget *)This, dpiX, dpiY)) - -#define ID2D1DCRenderTarget_GetSize(This) \ - ((This)->lpVtbl->Base.GetSize((ID2D1RenderTarget *)This)) - -#define ID2D1DCRenderTarget_GetPixelSize(This) \ - ((This)->lpVtbl->Base.GetPixelSize((ID2D1RenderTarget *)This)) - -#define ID2D1DCRenderTarget_GetMaximumBitmapSize(This) \ - ((This)->lpVtbl->Base.GetMaximumBitmapSize((ID2D1RenderTarget *)This)) - -#define ID2D1DCRenderTarget_IsSupported(This, renderTargetProperties) \ - ((This)->lpVtbl->Base.IsSupported((ID2D1RenderTarget *)This, renderTargetProperties)) - -#define ID2D1DCRenderTarget_BindDC(This, hDC, pSubRect) \ - ((This)->lpVtbl->BindDC(This, hDC, pSubRect)) - -typedef interface ID2D1Factory ID2D1Factory; - -typedef struct ID2D1FactoryVtbl -{ - - IUnknownVtbl Base; - - - STDMETHOD(ReloadSystemMetrics)( - ID2D1Factory *This - ) PURE; - - STDMETHOD_(void, GetDesktopDpi)( - ID2D1Factory *This, - __out FLOAT *dpiX, - __out FLOAT *dpiY - ) PURE; - - STDMETHOD(CreateRectangleGeometry)( - ID2D1Factory *This, - __in CONST D2D1_RECT_F *rectangle, - __deref_out ID2D1RectangleGeometry **rectangleGeometry - ) PURE; - - STDMETHOD(CreateRoundedRectangleGeometry)( - ID2D1Factory *This, - __in CONST D2D1_ROUNDED_RECT *roundedRectangle, - __deref_out ID2D1RoundedRectangleGeometry **roundedRectangleGeometry - ) PURE; - - STDMETHOD(CreateEllipseGeometry)( - ID2D1Factory *This, - __in CONST D2D1_ELLIPSE *ellipse, - __deref_out ID2D1EllipseGeometry **ellipseGeometry - ) PURE; - - STDMETHOD(CreateGeometryGroup)( - ID2D1Factory *This, - D2D1_FILL_MODE fillMode, - __in_ecount(geometriesCount) ID2D1Geometry **geometries, - UINT geometriesCount, - __deref_out ID2D1GeometryGroup **geometryGroup - ) PURE; - - STDMETHOD(CreateTransformedGeometry)( - ID2D1Factory *This, - __in ID2D1Geometry *sourceGeometry, - __in CONST D2D1_MATRIX_3X2_F *transform, - __deref_out ID2D1TransformedGeometry **transformedGeometry - ) PURE; - - STDMETHOD(CreatePathGeometry)( - ID2D1Factory *This, - __deref_out ID2D1PathGeometry **pathGeometry - ) PURE; - - STDMETHOD(CreateStrokeStyle)( - ID2D1Factory *This, - __in CONST D2D1_STROKE_STYLE_PROPERTIES *strokeStyleProperties, - __in_ecount_opt(dashesCount) CONST FLOAT *dashes, - UINT dashesCount, - __deref_out ID2D1StrokeStyle **strokeStyle - ) PURE; - - STDMETHOD(CreateDrawingStateBlock)( - ID2D1Factory *This, - __in_opt CONST D2D1_DRAWING_STATE_DESCRIPTION *drawingStateDescription, - __in_opt IDWriteRenderingParams *textRenderingParams, - __deref_out ID2D1DrawingStateBlock **drawingStateBlock - ) PURE; - - STDMETHOD(CreateWicBitmapRenderTarget)( - ID2D1Factory *This, - __in IWICBitmap *target, - __in CONST D2D1_RENDER_TARGET_PROPERTIES *renderTargetProperties, - __deref_out ID2D1RenderTarget **renderTarget - ) PURE; - - STDMETHOD(CreateHwndRenderTarget)( - ID2D1Factory *This, - __in CONST D2D1_RENDER_TARGET_PROPERTIES *renderTargetProperties, - __in CONST D2D1_HWND_RENDER_TARGET_PROPERTIES *hwndRenderTargetProperties, - __deref_out ID2D1HwndRenderTarget **hwndRenderTarget - ) PURE; - - STDMETHOD(CreateDxgiSurfaceRenderTarget)( - ID2D1Factory *This, - __in IDXGISurface *dxgiSurface, - __in CONST D2D1_RENDER_TARGET_PROPERTIES *renderTargetProperties, - __deref_out ID2D1RenderTarget **renderTarget - ) PURE; - - STDMETHOD(CreateDCRenderTarget)( - ID2D1Factory *This, - __in CONST D2D1_RENDER_TARGET_PROPERTIES *renderTargetProperties, - __deref_out ID2D1DCRenderTarget **dcRenderTarget - ) PURE; -} ID2D1FactoryVtbl; - -interface ID2D1Factory -{ - CONST struct ID2D1FactoryVtbl *lpVtbl; -}; - - -#define ID2D1Factory_QueryInterface(This, riid, ppv) \ - ((This)->lpVtbl->Base.QueryInterface((IUnknown *)This, riid, ppv)) - -#define ID2D1Factory_AddRef(This) \ - ((This)->lpVtbl->Base.AddRef((IUnknown *)This)) - -#define ID2D1Factory_Release(This) \ - ((This)->lpVtbl->Base.Release((IUnknown *)This)) - -#define ID2D1Factory_ReloadSystemMetrics(This) \ - ((This)->lpVtbl->ReloadSystemMetrics(This)) - -#define ID2D1Factory_GetDesktopDpi(This, dpiX, dpiY) \ - ((This)->lpVtbl->GetDesktopDpi(This, dpiX, dpiY)) - -#define ID2D1Factory_CreateRectangleGeometry(This, rectangle, rectangleGeometry) \ - ((This)->lpVtbl->CreateRectangleGeometry(This, rectangle, rectangleGeometry)) - -#define ID2D1Factory_CreateRoundedRectangleGeometry(This, roundedRectangle, roundedRectangleGeometry) \ - ((This)->lpVtbl->CreateRoundedRectangleGeometry(This, roundedRectangle, roundedRectangleGeometry)) - -#define ID2D1Factory_CreateEllipseGeometry(This, ellipse, ellipseGeometry) \ - ((This)->lpVtbl->CreateEllipseGeometry(This, ellipse, ellipseGeometry)) - -#define ID2D1Factory_CreateGeometryGroup(This, fillMode, geometries, geometriesCount, geometryGroup) \ - ((This)->lpVtbl->CreateGeometryGroup(This, fillMode, geometries, geometriesCount, geometryGroup)) - -#define ID2D1Factory_CreateTransformedGeometry(This, sourceGeometry, transform, transformedGeometry) \ - ((This)->lpVtbl->CreateTransformedGeometry(This, sourceGeometry, transform, transformedGeometry)) - -#define ID2D1Factory_CreatePathGeometry(This, pathGeometry) \ - ((This)->lpVtbl->CreatePathGeometry(This, pathGeometry)) - -#define ID2D1Factory_CreateStrokeStyle(This, strokeStyleProperties, dashes, dashesCount, strokeStyle) \ - ((This)->lpVtbl->CreateStrokeStyle(This, strokeStyleProperties, dashes, dashesCount, strokeStyle)) - -#define ID2D1Factory_CreateDrawingStateBlock(This, drawingStateDescription, textRenderingParams, drawingStateBlock) \ - ((This)->lpVtbl->CreateDrawingStateBlock(This, drawingStateDescription, textRenderingParams, drawingStateBlock)) - -#define ID2D1Factory_CreateWicBitmapRenderTarget(This, target, renderTargetProperties, renderTarget) \ - ((This)->lpVtbl->CreateWicBitmapRenderTarget(This, target, renderTargetProperties, renderTarget)) - -#define ID2D1Factory_CreateHwndRenderTarget(This, renderTargetProperties, hwndRenderTargetProperties, hwndRenderTarget) \ - ((This)->lpVtbl->CreateHwndRenderTarget(This, renderTargetProperties, hwndRenderTargetProperties, hwndRenderTarget)) - -#define ID2D1Factory_CreateDxgiSurfaceRenderTarget(This, dxgiSurface, renderTargetProperties, renderTarget) \ - ((This)->lpVtbl->CreateDxgiSurfaceRenderTarget(This, dxgiSurface, renderTargetProperties, renderTarget)) - -#define ID2D1Factory_CreateDCRenderTarget(This, renderTargetProperties, dcRenderTarget) \ - ((This)->lpVtbl->CreateDCRenderTarget(This, renderTargetProperties, dcRenderTarget)) - - -#endif - - -#ifdef __cplusplus -extern "C" -{ -#endif - - // - // This export cannot be in a namespace because compiler name mangling isn't consistent - // also, this must be 'C' callable. - // - HRESULT WINAPI - D2D1CreateFactory( - __in D2D1_FACTORY_TYPE factoryType, - __in REFIID riid, - __in_opt CONST D2D1_FACTORY_OPTIONS *pFactoryOptions, - __out void **ppIFactory - ); - - - void WINAPI - D2D1MakeRotateMatrix( - __in FLOAT angle, - __in D2D1_POINT_2F center, - __out D2D1_MATRIX_3X2_F *matrix - ); - - void WINAPI - D2D1MakeSkewMatrix( - __in FLOAT angleX, - __in FLOAT angleY, - __in D2D1_POINT_2F center, - __out D2D1_MATRIX_3X2_F *matrix - ); - - BOOL WINAPI - D2D1IsMatrixInvertible( - __in CONST D2D1_MATRIX_3X2_F *matrix - ); - - BOOL WINAPI - D2D1InvertMatrix( - __inout D2D1_MATRIX_3X2_F *matrix - ); - -#ifdef __cplusplus -} -#endif - -#ifndef D2D1FORCEINLINE -#define D2D1FORCEINLINE FORCEINLINE -#endif // #ifndef D2D1FORCEINLINE - - -#include - - -#ifndef D2D_USE_C_DEFINITIONS - -inline -HRESULT -D2D1CreateFactory( - __in D2D1_FACTORY_TYPE factoryType, - __in REFIID riid, - __out void **factory - ) -{ - return - D2D1CreateFactory( - factoryType, - riid, - NULL, - factory); -} - - -template -HRESULT -D2D1CreateFactory( - __in D2D1_FACTORY_TYPE factoryType, - __out Factory **factory - ) -{ - return - D2D1CreateFactory( - factoryType, - __uuidof(Factory), - reinterpret_cast(factory)); -} - -template -HRESULT -D2D1CreateFactory( - __in D2D1_FACTORY_TYPE factoryType, - __in CONST D2D1_FACTORY_OPTIONS &factoryOptions, - __out Factory **ppFactory - ) -{ - return - D2D1CreateFactory( - factoryType, - __uuidof(Factory), - &factoryOptions, - reinterpret_cast(ppFactory)); -} - -#endif // #ifndef D2D_USE_C_DEFINITIONS -#endif // #ifndef _D2D1_H_ diff --git a/SDK/Include/D2D1Helper.h b/SDK/Include/D2D1Helper.h deleted file mode 100644 index 2f54ea2..0000000 --- a/SDK/Include/D2D1Helper.h +++ /dev/null @@ -1,948 +0,0 @@ - -/*=========================================================================*\ - - Copyright (c) Microsoft Corporation. All rights reserved. - - File: D2D1helper.h - - Module Name: D2D - - Description: Helper files over the D2D interfaces and APIs. - -\*=========================================================================*/ -#pragma once - -#ifndef _D2D1_HELPER_H_ -#define _D2D1_HELPER_H_ - -#ifndef _D2D1_H_ -#include -#endif // #ifndef _D2D1_H_ - -#ifndef D2D_USE_C_DEFINITIONS - -namespace D2D1 -{ - // - // Forward declared IdentityMatrix function to allow matrix class to use - // these constructors. - // - D2D1FORCEINLINE - D2D1_MATRIX_3X2_F - IdentityMatrix(); - - // - // The default trait type for objects in D2D is float. - // - template - struct TypeTraits - { - typedef D2D1_POINT_2F Point; - typedef D2D1_SIZE_F Size; - typedef D2D1_RECT_F Rect; - }; - - template<> - struct TypeTraits - { - typedef D2D1_POINT_2U Point; - typedef D2D1_SIZE_U Size; - typedef D2D1_RECT_U Rect; - }; - - static inline - FLOAT FloatMax() - { - #ifdef FLT_MAX - return FLT_MAX; - #else - return 3.402823466e+38F; - #endif - } - - // - // Construction helpers - // - template - D2D1FORCEINLINE - typename TypeTraits::Point - Point2( - Type x, - Type y - ) - { - typename TypeTraits::Point point = { x, y }; - - return point; - } - - D2D1FORCEINLINE - D2D1_POINT_2F - Point2F( - FLOAT x = 0.f, - FLOAT y = 0.f - ) - { - return Point2(x, y); - } - - D2D1FORCEINLINE - D2D1_POINT_2U - Point2U( - UINT32 x = 0, - UINT32 y = 0 - ) - { - return Point2(x, y); - } - - template - D2D1FORCEINLINE - typename TypeTraits::Size - Size( - Type width, - Type height - ) - { - typename TypeTraits::Size size = { width, height }; - - return size; - } - - D2D1FORCEINLINE - D2D1_SIZE_F - SizeF( - FLOAT width = 0.f, - FLOAT height = 0.f - ) - { - return Size(width, height); - } - - D2D1FORCEINLINE - D2D1_SIZE_U - SizeU( - UINT32 width = 0, - UINT32 height = 0 - ) - { - return Size(width, height); - } - - template - D2D1FORCEINLINE - typename TypeTraits::Rect - Rect( - Type left, - Type top, - Type right, - Type bottom - ) - { - typename TypeTraits::Rect rect = { left, top, right, bottom }; - - return rect; - } - - D2D1FORCEINLINE - D2D1_RECT_F - RectF( - FLOAT left = 0.f, - FLOAT top = 0.f, - FLOAT right = 0.f, - FLOAT bottom = 0.f - ) - { - return Rect(left, top, right, bottom); - } - - D2D1FORCEINLINE - D2D1_RECT_U - RectU( - UINT32 left = 0, - UINT32 top = 0, - UINT32 right = 0, - UINT32 bottom = 0 - ) - { - return Rect(left, top, right, bottom); - } - - D2D1FORCEINLINE - D2D1_RECT_F - InfiniteRect() - { - D2D1_RECT_F rect = { -FloatMax(), -FloatMax(), FloatMax(), FloatMax() }; - - return rect; - } - - D2D1FORCEINLINE - D2D1_ARC_SEGMENT - ArcSegment( - __in CONST D2D1_POINT_2F &point, - __in CONST D2D1_SIZE_F &size, - __in FLOAT rotationAngle, - __in D2D1_SWEEP_DIRECTION sweepDirection, - __in D2D1_ARC_SIZE arcSize - ) - { - D2D1_ARC_SEGMENT arcSegment = { point, size, rotationAngle, sweepDirection, arcSize }; - - return arcSegment; - } - - D2D1FORCEINLINE - D2D1_BEZIER_SEGMENT - BezierSegment( - __in CONST D2D1_POINT_2F &point1, - __in CONST D2D1_POINT_2F &point2, - __in CONST D2D1_POINT_2F &point3 - ) - { - D2D1_BEZIER_SEGMENT bezierSegment = { point1, point2, point3 }; - - return bezierSegment; - } - - D2D1FORCEINLINE - D2D1_ELLIPSE - Ellipse( - __in CONST D2D1_POINT_2F ¢er, - FLOAT radiusX, - FLOAT radiusY - ) - { - D2D1_ELLIPSE ellipse; - - ellipse.point = center; - ellipse.radiusX = radiusX; - ellipse.radiusY = radiusY; - - return ellipse; - } - - D2D1FORCEINLINE - D2D1_ROUNDED_RECT - RoundedRect( - __in CONST D2D1_RECT_F &rect, - FLOAT radiusX, - FLOAT radiusY - ) - { - D2D1_ROUNDED_RECT roundedRect; - - roundedRect.rect = rect; - roundedRect.radiusX = radiusX; - roundedRect.radiusY = radiusY; - - return roundedRect; - } - - D2D1FORCEINLINE - D2D1_BRUSH_PROPERTIES - BrushProperties( - __in FLOAT opacity = 1.0, - __in CONST D2D1_MATRIX_3X2_F &transform = D2D1::IdentityMatrix() - ) - { - D2D1_BRUSH_PROPERTIES brushProperties; - - brushProperties.opacity = opacity; - brushProperties.transform = transform; - - return brushProperties; - } - - D2D1FORCEINLINE - D2D1_GRADIENT_STOP - GradientStop( - FLOAT position, - __in CONST D2D1_COLOR_F &color - ) - { - D2D1_GRADIENT_STOP gradientStop = { position, color }; - - return gradientStop; - } - - D2D1FORCEINLINE - D2D1_QUADRATIC_BEZIER_SEGMENT - QuadraticBezierSegment( - __in CONST D2D1_POINT_2F &point1, - __in CONST D2D1_POINT_2F &point2 - ) - { - D2D1_QUADRATIC_BEZIER_SEGMENT quadraticBezier = { point1, point2 }; - - return quadraticBezier; - } - - D2D1FORCEINLINE - D2D1_STROKE_STYLE_PROPERTIES - StrokeStyleProperties( - D2D1_CAP_STYLE startCap = D2D1_CAP_STYLE_FLAT, - D2D1_CAP_STYLE endCap = D2D1_CAP_STYLE_FLAT, - D2D1_CAP_STYLE dashCap = D2D1_CAP_STYLE_FLAT, - D2D1_LINE_JOIN lineJoin = D2D1_LINE_JOIN_MITER, - FLOAT miterLimit = 10.0f, - D2D1_DASH_STYLE dashStyle = D2D1_DASH_STYLE_SOLID, - FLOAT dashOffset = 0.0f - ) - { - D2D1_STROKE_STYLE_PROPERTIES strokeStyleProperties; - - strokeStyleProperties.startCap = startCap; - strokeStyleProperties.endCap = endCap; - strokeStyleProperties.dashCap = dashCap; - strokeStyleProperties.lineJoin = lineJoin; - strokeStyleProperties.miterLimit = miterLimit; - strokeStyleProperties.dashStyle = dashStyle; - strokeStyleProperties.dashOffset = dashOffset; - - return strokeStyleProperties; - } - - D2D1FORCEINLINE - D2D1_BITMAP_BRUSH_PROPERTIES - BitmapBrushProperties( - D2D1_EXTEND_MODE extendModeX = D2D1_EXTEND_MODE_CLAMP, - D2D1_EXTEND_MODE extendModeY = D2D1_EXTEND_MODE_CLAMP, - D2D1_BITMAP_INTERPOLATION_MODE interpolationMode = D2D1_BITMAP_INTERPOLATION_MODE_LINEAR - ) - { - D2D1_BITMAP_BRUSH_PROPERTIES bitmapBrushProperties; - - bitmapBrushProperties.extendModeX = extendModeX; - bitmapBrushProperties.extendModeY = extendModeY; - bitmapBrushProperties.interpolationMode = interpolationMode; - - return bitmapBrushProperties; - } - - D2D1FORCEINLINE - D2D1_LINEAR_GRADIENT_BRUSH_PROPERTIES - LinearGradientBrushProperties( - __in CONST D2D1_POINT_2F &startPoint, - __in CONST D2D1_POINT_2F &endPoint - ) - { - D2D1_LINEAR_GRADIENT_BRUSH_PROPERTIES linearGradientBrushProperties; - - linearGradientBrushProperties.startPoint = startPoint; - linearGradientBrushProperties.endPoint = endPoint; - - return linearGradientBrushProperties; - } - - D2D1FORCEINLINE - D2D1_RADIAL_GRADIENT_BRUSH_PROPERTIES - RadialGradientBrushProperties( - __in CONST D2D1_POINT_2F ¢er, - __in CONST D2D1_POINT_2F &gradientOriginOffset, - FLOAT radiusX, - FLOAT radiusY - ) - { - D2D1_RADIAL_GRADIENT_BRUSH_PROPERTIES radialGradientBrushProperties; - - radialGradientBrushProperties.center = center; - radialGradientBrushProperties.gradientOriginOffset = gradientOriginOffset; - radialGradientBrushProperties.radiusX = radiusX; - radialGradientBrushProperties.radiusY = radiusY; - - return radialGradientBrushProperties; - } - - // - // PixelFormat - // - D2D1FORCEINLINE - D2D1_PIXEL_FORMAT - PixelFormat( - __in DXGI_FORMAT dxgiFormat = DXGI_FORMAT_UNKNOWN, - __in D2D1_ALPHA_MODE alphaMode = D2D1_ALPHA_MODE_UNKNOWN - ) - { - D2D1_PIXEL_FORMAT pixelFormat; - - pixelFormat.format = dxgiFormat; - pixelFormat.alphaMode = alphaMode; - - return pixelFormat; - } - - // - // Bitmaps - // - D2D1FORCEINLINE - D2D1_BITMAP_PROPERTIES - BitmapProperties( - CONST D2D1_PIXEL_FORMAT &pixelFormat = D2D1::PixelFormat(), - FLOAT dpiX = 96.0f, - FLOAT dpiY = 96.0f - ) - { - D2D1_BITMAP_PROPERTIES bitmapProperties; - - bitmapProperties.pixelFormat = pixelFormat; - bitmapProperties.dpiX = dpiX; - bitmapProperties.dpiY = dpiY; - - return bitmapProperties; - } - - // - // Render Targets - // - D2D1FORCEINLINE - D2D1_RENDER_TARGET_PROPERTIES - RenderTargetProperties( - D2D1_RENDER_TARGET_TYPE type = D2D1_RENDER_TARGET_TYPE_DEFAULT, - __in CONST D2D1_PIXEL_FORMAT &pixelFormat = D2D1::PixelFormat(), - FLOAT dpiX = 0.0, - FLOAT dpiY = 0.0, - D2D1_RENDER_TARGET_USAGE usage = D2D1_RENDER_TARGET_USAGE_NONE, - D2D1_FEATURE_LEVEL minLevel = D2D1_FEATURE_LEVEL_DEFAULT - ) - { - D2D1_RENDER_TARGET_PROPERTIES renderTargetProperties; - - renderTargetProperties.type = type; - renderTargetProperties.pixelFormat = pixelFormat; - renderTargetProperties.dpiX = dpiX; - renderTargetProperties.dpiY = dpiY; - renderTargetProperties.usage = usage; - renderTargetProperties.minLevel = minLevel; - - return renderTargetProperties; - } - - D2D1FORCEINLINE - D2D1_HWND_RENDER_TARGET_PROPERTIES - HwndRenderTargetProperties( - __in HWND hwnd, - __in D2D1_SIZE_U pixelSize = D2D1::Size(static_cast(0), static_cast(0)), - __in D2D1_PRESENT_OPTIONS presentOptions = D2D1_PRESENT_OPTIONS_NONE - ) - { - D2D1_HWND_RENDER_TARGET_PROPERTIES hwndRenderTargetProperties; - - hwndRenderTargetProperties.hwnd = hwnd; - hwndRenderTargetProperties.pixelSize = pixelSize; - hwndRenderTargetProperties.presentOptions = presentOptions; - - return hwndRenderTargetProperties; - } - - D2D1FORCEINLINE - D2D1_LAYER_PARAMETERS - LayerParameters( - __in CONST D2D1_RECT_F &contentBounds = D2D1::InfiniteRect(), - __in_opt ID2D1Geometry *geometricMask = NULL, - D2D1_ANTIALIAS_MODE maskAntialiasMode = D2D1_ANTIALIAS_MODE_PER_PRIMITIVE, - D2D1_MATRIX_3X2_F maskTransform = D2D1::IdentityMatrix(), - FLOAT opacity = 1.0, - __in_opt ID2D1Brush *opacityBrush = NULL, - D2D1_LAYER_OPTIONS layerOptions = D2D1_LAYER_OPTIONS_NONE - ) - { - D2D1_LAYER_PARAMETERS layerParameters = { 0 }; - - layerParameters.contentBounds = contentBounds; - layerParameters.geometricMask = geometricMask; - layerParameters.maskAntialiasMode = maskAntialiasMode; - layerParameters.maskTransform = maskTransform; - layerParameters.opacity = opacity; - layerParameters.opacityBrush = opacityBrush; - layerParameters.layerOptions = layerOptions; - - return layerParameters; - } - - D2D1FORCEINLINE - D2D1_DRAWING_STATE_DESCRIPTION - DrawingStateDescription( - D2D1_ANTIALIAS_MODE antialiasMode = D2D1_ANTIALIAS_MODE_PER_PRIMITIVE, - D2D1_TEXT_ANTIALIAS_MODE textAntialiasMode = D2D1_TEXT_ANTIALIAS_MODE_DEFAULT, - D2D1_TAG tag1 = 0, - D2D1_TAG tag2 = 0, - __in const D2D1_MATRIX_3X2_F &transform = D2D1::IdentityMatrix() - ) - { - D2D1_DRAWING_STATE_DESCRIPTION drawingStateDescription; - - drawingStateDescription.antialiasMode = antialiasMode; - drawingStateDescription.textAntialiasMode = textAntialiasMode; - drawingStateDescription.tag1 = tag1; - drawingStateDescription.tag2 = tag2; - drawingStateDescription.transform = transform; - - return drawingStateDescription; - } - - // - // Colors, this enum defines a set of predefined colors. - // - class ColorF : public D2D1_COLOR_F - { - public: - - enum Enum - { - AliceBlue = 0xF0F8FF, - AntiqueWhite = 0xFAEBD7, - Aqua = 0x00FFFF, - Aquamarine = 0x7FFFD4, - Azure = 0xF0FFFF, - Beige = 0xF5F5DC, - Bisque = 0xFFE4C4, - Black = 0x000000, - BlanchedAlmond = 0xFFEBCD, - Blue = 0x0000FF, - BlueViolet = 0x8A2BE2, - Brown = 0xA52A2A, - BurlyWood = 0xDEB887, - CadetBlue = 0x5F9EA0, - Chartreuse = 0x7FFF00, - Chocolate = 0xD2691E, - Coral = 0xFF7F50, - CornflowerBlue = 0x6495ED, - Cornsilk = 0xFFF8DC, - Crimson = 0xDC143C, - Cyan = 0x00FFFF, - DarkBlue = 0x00008B, - DarkCyan = 0x008B8B, - DarkGoldenrod = 0xB8860B, - DarkGray = 0xA9A9A9, - DarkGreen = 0x006400, - DarkKhaki = 0xBDB76B, - DarkMagenta = 0x8B008B, - DarkOliveGreen = 0x556B2F, - DarkOrange = 0xFF8C00, - DarkOrchid = 0x9932CC, - DarkRed = 0x8B0000, - DarkSalmon = 0xE9967A, - DarkSeaGreen = 0x8FBC8F, - DarkSlateBlue = 0x483D8B, - DarkSlateGray = 0x2F4F4F, - DarkTurquoise = 0x00CED1, - DarkViolet = 0x9400D3, - DeepPink = 0xFF1493, - DeepSkyBlue = 0x00BFFF, - DimGray = 0x696969, - DodgerBlue = 0x1E90FF, - Firebrick = 0xB22222, - FloralWhite = 0xFFFAF0, - ForestGreen = 0x228B22, - Fuchsia = 0xFF00FF, - Gainsboro = 0xDCDCDC, - GhostWhite = 0xF8F8FF, - Gold = 0xFFD700, - Goldenrod = 0xDAA520, - Gray = 0x808080, - Green = 0x008000, - GreenYellow = 0xADFF2F, - Honeydew = 0xF0FFF0, - HotPink = 0xFF69B4, - IndianRed = 0xCD5C5C, - Indigo = 0x4B0082, - Ivory = 0xFFFFF0, - Khaki = 0xF0E68C, - Lavender = 0xE6E6FA, - LavenderBlush = 0xFFF0F5, - LawnGreen = 0x7CFC00, - LemonChiffon = 0xFFFACD, - LightBlue = 0xADD8E6, - LightCoral = 0xF08080, - LightCyan = 0xE0FFFF, - LightGoldenrodYellow = 0xFAFAD2, - LightGreen = 0x90EE90, - LightGray = 0xD3D3D3, - LightPink = 0xFFB6C1, - LightSalmon = 0xFFA07A, - LightSeaGreen = 0x20B2AA, - LightSkyBlue = 0x87CEFA, - LightSlateGray = 0x778899, - LightSteelBlue = 0xB0C4DE, - LightYellow = 0xFFFFE0, - Lime = 0x00FF00, - LimeGreen = 0x32CD32, - Linen = 0xFAF0E6, - Magenta = 0xFF00FF, - Maroon = 0x800000, - MediumAquamarine = 0x66CDAA, - MediumBlue = 0x0000CD, - MediumOrchid = 0xBA55D3, - MediumPurple = 0x9370DB, - MediumSeaGreen = 0x3CB371, - MediumSlateBlue = 0x7B68EE, - MediumSpringGreen = 0x00FA9A, - MediumTurquoise = 0x48D1CC, - MediumVioletRed = 0xC71585, - MidnightBlue = 0x191970, - MintCream = 0xF5FFFA, - MistyRose = 0xFFE4E1, - Moccasin = 0xFFE4B5, - NavajoWhite = 0xFFDEAD, - Navy = 0x000080, - OldLace = 0xFDF5E6, - Olive = 0x808000, - OliveDrab = 0x6B8E23, - Orange = 0xFFA500, - OrangeRed = 0xFF4500, - Orchid = 0xDA70D6, - PaleGoldenrod = 0xEEE8AA, - PaleGreen = 0x98FB98, - PaleTurquoise = 0xAFEEEE, - PaleVioletRed = 0xDB7093, - PapayaWhip = 0xFFEFD5, - PeachPuff = 0xFFDAB9, - Peru = 0xCD853F, - Pink = 0xFFC0CB, - Plum = 0xDDA0DD, - PowderBlue = 0xB0E0E6, - Purple = 0x800080, - Red = 0xFF0000, - RosyBrown = 0xBC8F8F, - RoyalBlue = 0x4169E1, - SaddleBrown = 0x8B4513, - Salmon = 0xFA8072, - SandyBrown = 0xF4A460, - SeaGreen = 0x2E8B57, - SeaShell = 0xFFF5EE, - Sienna = 0xA0522D, - Silver = 0xC0C0C0, - SkyBlue = 0x87CEEB, - SlateBlue = 0x6A5ACD, - SlateGray = 0x708090, - Snow = 0xFFFAFA, - SpringGreen = 0x00FF7F, - SteelBlue = 0x4682B4, - Tan = 0xD2B48C, - Teal = 0x008080, - Thistle = 0xD8BFD8, - Tomato = 0xFF6347, - Turquoise = 0x40E0D0, - Violet = 0xEE82EE, - Wheat = 0xF5DEB3, - White = 0xFFFFFF, - WhiteSmoke = 0xF5F5F5, - Yellow = 0xFFFF00, - YellowGreen = 0x9ACD32, - }; - - // - // Construct a color, note that the alpha value from the "rgb" component - // is never used. - // - D2D1FORCEINLINE - ColorF( - UINT32 rgb, - FLOAT a = 1.0 - ) - { - Init(rgb, a); - } - - D2D1FORCEINLINE - ColorF( - Enum knownColor, - FLOAT a = 1.0 - ) - { - Init(knownColor, a); - } - - D2D1FORCEINLINE - ColorF( - FLOAT r, - FLOAT g, - FLOAT b, - FLOAT a = 1.0 - ) - { - this->r = r; - this->g = g; - this->b = b; - this->a = a; - } - - private: - - D2D1FORCEINLINE - void - Init( - UINT32 rgb, - FLOAT a - ) - { - this->r = static_cast((rgb & sc_redMask) >> sc_redShift) / 255.f; - this->g = static_cast((rgb & sc_greenMask) >> sc_greenShift) / 255.f; - this->b = static_cast((rgb & sc_blueMask) >> sc_blueShift) / 255.f; - this->a = a; - } - - static const UINT32 sc_redShift = 16; - static const UINT32 sc_greenShift = 8; - static const UINT32 sc_blueShift = 0; - - static const UINT32 sc_redMask = 0xff << sc_redShift; - static const UINT32 sc_greenMask = 0xff << sc_greenShift; - static const UINT32 sc_blueMask = 0xff << sc_blueShift; - }; - - class Matrix3x2F : public D2D1_MATRIX_3X2_F - { - public: - - D2D1FORCEINLINE - Matrix3x2F( - FLOAT _11, - FLOAT _12, - FLOAT _21, - FLOAT _22, - FLOAT _31, - FLOAT _32 - ) - { - this->_11 = _11; - this->_12 = _12; - this->_21 = _21; - this->_22 = _22; - this->_31 = _31; - this->_32 = _32; - } - - // - // Creates an identity matrix - // - D2D1FORCEINLINE - Matrix3x2F( - ) - { - } - - // - // Named quasi-constructors - // - static D2D1FORCEINLINE - Matrix3x2F - Identity() - { - Matrix3x2F identity; - - identity._11 = 1.f; - identity._12 = 0.f; - identity._21 = 0.f; - identity._22 = 1.f; - identity._31 = 0.f; - identity._32 = 0.f; - - return identity; - } - - static D2D1FORCEINLINE - Matrix3x2F - Translation( - D2D1_SIZE_F size - ) - { - Matrix3x2F translation; - - translation._11 = 1.0; translation._12 = 0.0; - translation._21 = 0.0; translation._22 = 1.0; - translation._31 = size.width; translation._32 = size.height; - - return translation; - } - - static D2D1FORCEINLINE - Matrix3x2F - Translation( - FLOAT x, - FLOAT y - ) - { - return Translation(SizeF(x, y)); - } - - - static D2D1FORCEINLINE - Matrix3x2F - Scale( - D2D1_SIZE_F size, - D2D1_POINT_2F center = D2D1::Point2F() - ) - { - Matrix3x2F scale; - - scale._11 = size.width; scale._12 = 0.0; - scale._21 = 0.0; scale._22 = size.height; - scale._31 = center.x - size.width * center.x; - scale._32 = center.y - size.height * center.y; - - return scale; - } - - static D2D1FORCEINLINE - Matrix3x2F - Scale( - FLOAT x, - FLOAT y, - D2D1_POINT_2F center = D2D1::Point2F() - ) - { - return Scale(SizeF(x, y), center); - } - - static D2D1FORCEINLINE - Matrix3x2F - Rotation( - FLOAT angle, - D2D1_POINT_2F center = D2D1::Point2F() - ) - { - Matrix3x2F rotation; - - D2D1MakeRotateMatrix(angle, center, &rotation); - - return rotation; - } - - static D2D1FORCEINLINE - Matrix3x2F - Skew( - FLOAT angleX, - FLOAT angleY, - D2D1_POINT_2F center = D2D1::Point2F() - ) - { - Matrix3x2F skew; - - D2D1MakeSkewMatrix(angleX, angleY, center, &skew); - - return skew; - } - - // - // Functions for convertion from the base D2D1_MATRIX_3X2_F to this type - // without making a copy - // - static inline const Matrix3x2F* ReinterpretBaseType(const D2D1_MATRIX_3X2_F *pMatrix) - { - return static_cast(pMatrix); - } - - static inline Matrix3x2F* ReinterpretBaseType(D2D1_MATRIX_3X2_F *pMatrix) - { - return static_cast(pMatrix); - } - - inline - FLOAT - Determinant() const - { - return (_11 * _22) - (_12 * _21); - } - - inline - bool - IsInvertible() const - { - return !!D2D1IsMatrixInvertible(this); - } - - inline - bool - Invert() - { - return !!D2D1InvertMatrix(this); - } - - inline - bool - IsIdentity() const - { - return _11 == 1.f && _12 == 0.f - && _21 == 0.f && _22 == 1.f - && _31 == 0.f && _32 == 0.f; - } - - inline - void SetProduct( - const Matrix3x2F &a, - const Matrix3x2F &b - ) - { - _11 = a._11 * b._11 + a._12 * b._21; - _12 = a._11 * b._12 + a._12 * b._22; - _21 = a._21 * b._11 + a._22 * b._21; - _22 = a._21 * b._12 + a._22 * b._22; - _31 = a._31 * b._11 + a._32 * b._21 + b._31; - _32 = a._31 * b._12 + a._32 * b._22 + b._32; - } - - D2D1FORCEINLINE - Matrix3x2F - operator*( - const Matrix3x2F &matrix - ) const - { - Matrix3x2F result; - - result.SetProduct(*this, matrix); - - return result; - } - - D2D1FORCEINLINE - D2D1_POINT_2F - TransformPoint( - D2D1_POINT_2F point - ) const - { - D2D1_POINT_2F result = - { - point.x * _11 + point.y * _21 + _31, - point.x * _12 + point.y * _22 + _32 - }; - - return result; - } - }; - - D2D1FORCEINLINE - D2D1_POINT_2F - operator*( - const D2D1_POINT_2F &point, - const D2D1_MATRIX_3X2_F &matrix - ) - { - return Matrix3x2F::ReinterpretBaseType(&matrix)->TransformPoint(point); - } - - D2D1_MATRIX_3X2_F - IdentityMatrix() - { - return Matrix3x2F::Identity(); - } - -} // namespace D2D1 - -D2D1FORCEINLINE -D2D1_MATRIX_3X2_F -operator*( - const D2D1_MATRIX_3X2_F &matrix1, - const D2D1_MATRIX_3X2_F &matrix2 - ) -{ - return - (*D2D1::Matrix3x2F::ReinterpretBaseType(&matrix1)) * - (*D2D1::Matrix3x2F::ReinterpretBaseType(&matrix2)); -} - -#endif // #ifndef D2D_USE_C_DEFINITIONS - -#endif // #ifndef _D2D1_HELPER_H_ - diff --git a/SDK/Include/D2DBaseTypes.h b/SDK/Include/D2DBaseTypes.h deleted file mode 100644 index c2ff5bb..0000000 --- a/SDK/Include/D2DBaseTypes.h +++ /dev/null @@ -1,145 +0,0 @@ -//--------------------------------------------------------------------------- -// Copyright (c) Microsoft Corporation. All rights reserved. -// -// This file is automatically generated. Please do not edit it directly. -// -// File name: D2DBaseTypes.h -//--------------------------------------------------------------------------- -#pragma once - - -#ifndef _D2DBASETYPES_INCLUDED -#define _D2DBASETYPES_INCLUDED - -#ifndef COM_NO_WINDOWS_H -#include -#endif // #ifndef COM_NO_WINDOWS_H - -#ifndef D3DCOLORVALUE_DEFINED - -//+----------------------------------------------------------------------------- -// -// Struct: -// D3DCOLORVALUE -// -//------------------------------------------------------------------------------ -typedef struct D3DCOLORVALUE -{ - FLOAT r; - FLOAT g; - FLOAT b; - FLOAT a; - -} D3DCOLORVALUE; - -#define D3DCOLORVALUE_DEFINED -#endif - - -//+----------------------------------------------------------------------------- -// -// Struct: -// D2D_POINT_2U -// -//------------------------------------------------------------------------------ -typedef struct D2D_POINT_2U -{ - UINT32 x; - UINT32 y; - -} D2D_POINT_2U; - - -//+----------------------------------------------------------------------------- -// -// Struct: -// D2D_POINT_2F -// -//------------------------------------------------------------------------------ -typedef struct D2D_POINT_2F -{ - FLOAT x; - FLOAT y; - -} D2D_POINT_2F; - - -//+----------------------------------------------------------------------------- -// -// Struct: -// D2D_RECT_F -// -//------------------------------------------------------------------------------ -typedef struct D2D_RECT_F -{ - FLOAT left; - FLOAT top; - FLOAT right; - FLOAT bottom; - -} D2D_RECT_F; - - -//+----------------------------------------------------------------------------- -// -// Struct: -// D2D_RECT_U -// -//------------------------------------------------------------------------------ -typedef struct D2D_RECT_U -{ - UINT32 left; - UINT32 top; - UINT32 right; - UINT32 bottom; - -} D2D_RECT_U; - - -//+----------------------------------------------------------------------------- -// -// Struct: -// D2D_SIZE_F -// -//------------------------------------------------------------------------------ -typedef struct D2D_SIZE_F -{ - FLOAT width; - FLOAT height; - -} D2D_SIZE_F; - - -//+----------------------------------------------------------------------------- -// -// Struct: -// D2D_SIZE_U -// -//------------------------------------------------------------------------------ -typedef struct D2D_SIZE_U -{ - UINT32 width; - UINT32 height; - -} D2D_SIZE_U; - -typedef D3DCOLORVALUE D2D_COLOR_F; - -//+----------------------------------------------------------------------------- -// -// Struct: -// D2D_MATRIX_3X2_F -// -//------------------------------------------------------------------------------ -typedef struct D2D_MATRIX_3X2_F -{ - FLOAT _11; - FLOAT _12; - FLOAT _21; - FLOAT _22; - FLOAT _31; - FLOAT _32; - -} D2D_MATRIX_3X2_F; - -#endif // #ifndef _D2DBASETYPES_INCLUDED diff --git a/SDK/Include/D2Derr.h b/SDK/Include/D2Derr.h deleted file mode 100644 index afbaa36..0000000 --- a/SDK/Include/D2Derr.h +++ /dev/null @@ -1,206 +0,0 @@ -/*=========================================================================*\ - - Copyright (c) Microsoft Corporation. All rights reserved. - -\*=========================================================================*/ - -#pragma once - -/*=========================================================================*\ - D2D Status Codes -\*=========================================================================*/ - -#define FACILITY_D2D 0x899 - -#define MAKE_D2DHR( sev, code )\ - MAKE_HRESULT( sev, FACILITY_D2D, (code) ) - -#define MAKE_D2DHR_ERR( code )\ - MAKE_D2DHR( 1, code ) - - -//+---------------------------------------------------------------------------- -// -// D2D error codes -// -//------------------------------------------------------------------------------ - -// -// Error codes shared with WINCODECS -// - -// -// The pixel format is not supported. -// -#define D2DERR_UNSUPPORTED_PIXEL_FORMAT WINCODEC_ERR_UNSUPPORTEDPIXELFORMAT - -// -// Error codes that were already returned in prior versions and were part of the -// MIL facility. - -// -// Error codes mapped from WIN32 where there isn't already another HRESULT based -// define -// - -// -// The supplied buffer was too small to accomodate the data. -// -#define D2DERR_INSUFFICIENT_BUFFER HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER) - - -// -// D2D specific codes -// - -// -// The object was not in the correct state to process the method. -// -#define D2DERR_WRONG_STATE MAKE_D2DHR_ERR(0x001) - -// -// The object has not yet been initialized. -// -#define D2DERR_NOT_INITIALIZED MAKE_D2DHR_ERR(0x002) - -// -// The requested opertion is not supported. -// -#define D2DERR_UNSUPPORTED_OPERATION MAKE_D2DHR_ERR(0x003) - -// -// The geomery scanner failed to process the data. -// -#define D2DERR_SCANNER_FAILED MAKE_D2DHR_ERR(0x004) - -// -// D2D could not access the screen. -// -#define D2DERR_SCREEN_ACCESS_DENIED MAKE_D2DHR_ERR(0x005) - -// -// A valid display state could not be determined. -// -#define D2DERR_DISPLAY_STATE_INVALID MAKE_D2DHR_ERR(0x006) - -// -// The supplied vector is vero. -// -#define D2DERR_ZERO_VECTOR MAKE_D2DHR_ERR(0x007) - -// -// An internal error (D2D bug) occurred. On checked builds, we would assert. -// -// The application should close this instance of D2D and should consider -// restarting its process. -// -#define D2DERR_INTERNAL_ERROR MAKE_D2DHR_ERR(0x008) - -// -// The display format we need to render is not supported by the -// hardware device. -// -#define D2DERR_DISPLAY_FORMAT_NOT_SUPPORTED MAKE_D2DHR_ERR(0x009) - -// -// A call to this method is invalid. -// -#define D2DERR_INVALID_CALL MAKE_D2DHR_ERR(0x00A) - -// -// No HW rendering device is available for this operation. -// -#define D2DERR_NO_HARDWARE_DEVICE MAKE_D2DHR_ERR(0x00B) - -// -// There has been a presentation error that may be recoverable. The caller -// needs to recreate, rerender the entire frame, and reattempt present. -// -#define D2DERR_RECREATE_TARGET MAKE_D2DHR_ERR(0x00C) - -// -// Shader construction failed because it was too complex. -// -#define D2DERR_TOO_MANY_SHADER_ELEMENTS MAKE_D2DHR_ERR(0x00D) - -// -// Shader compilation failed. -// -#define D2DERR_SHADER_COMPILE_FAILED MAKE_D2DHR_ERR(0x00E) - -// -// Requested DX surface size exceeded maximum texture size. -// -#define D2DERR_MAX_TEXTURE_SIZE_EXCEEDED MAKE_D2DHR_ERR(0x00F) - -// -// The requested D2D version is not supported. -// -#define D2DERR_UNSUPPORTED_VERSION MAKE_D2DHR_ERR(0x010) - -// -// Invalid number. -// -#define D2DERR_BAD_NUMBER MAKE_D2DHR_ERR(0x0011) - -// -// Objects used together must be created from the same factory instance. -// -#define D2DERR_WRONG_FACTORY MAKE_D2DHR_ERR(0x012) - -// -// A layer resource can only be in use once at any point in time. -// -#define D2DERR_LAYER_ALREADY_IN_USE MAKE_D2DHR_ERR(0x013) - -// -// The pop call did not match the corresponding push call -// -#define D2DERR_POP_CALL_DID_NOT_MATCH_PUSH MAKE_D2DHR_ERR(0x014) - -// -// The resource was realized on the wrong render target -// -#define D2DERR_WRONG_RESOURCE_DOMAIN MAKE_D2DHR_ERR(0x015) - -// -// The push and pop calls were unbalanced -// -#define D2DERR_PUSH_POP_UNBALANCED MAKE_D2DHR_ERR(0x016) - -// -// Attempt to copy from a render target while a layer or clip rect is applied -// -#define D2DERR_RENDER_TARGET_HAS_LAYER_OR_CLIPRECT MAKE_D2DHR_ERR(0x017) - -// -// The brush types are incompatible for the call. -// -#define D2DERR_INCOMPATIBLE_BRUSH_TYPES MAKE_D2DHR_ERR(0x018) - -// -// An unknown win32 failure occurred. -// -#define D2DERR_WIN32_ERROR MAKE_D2DHR_ERR(0x019) - -// -// The render target is not compatible with GDI -// -#define D2DERR_TARGET_NOT_GDI_COMPATIBLE MAKE_D2DHR_ERR(0x01A) - -// -// A text client drawing effect object is of the wrong type -// -#define D2DERR_TEXT_EFFECT_IS_WRONG_TYPE MAKE_D2DHR_ERR(0x01B) - -// -// The application is holding a reference to the IDWriteTextRenderer interface -// after the corresponding DrawText or DrawTextLayout call has returned. The -// IDWriteTextRenderer instance will be zombied. -// -#define D2DERR_TEXT_RENDERER_NOT_RELEASED MAKE_D2DHR_ERR(0x01C) - -// -// The requested size is larger than the guaranteed supported texture size. -// -#define D2DERR_EXCEEDS_MAX_BITMAP_SIZE MAKE_D2DHR_ERR(0x01D) diff --git a/SDK/Include/D3D10.h b/SDK/Include/D3D10.h deleted file mode 100644 index 248999f..0000000 --- a/SDK/Include/D3D10.h +++ /dev/null @@ -1,6723 +0,0 @@ -/*------------------------------------------------------------------------------------- - * - * Copyright (c) Microsoft Corporation - * - *-------------------------------------------------------------------------------------*/ - - -/* this ALWAYS GENERATED file contains the definitions for the interfaces */ - - - /* File created by MIDL compiler version 7.00.0555 */ -/* @@MIDL_FILE_HEADING( ) */ - -#pragma warning( disable: 4049 ) /* more than 64k source lines */ - - -/* verify that the version is high enough to compile this file*/ -#ifndef __REQUIRED_RPCNDR_H_VERSION__ -#define __REQUIRED_RPCNDR_H_VERSION__ 475 -#endif - -/* verify that the version is high enough to compile this file*/ -#ifndef __REQUIRED_RPCSAL_H_VERSION__ -#define __REQUIRED_RPCSAL_H_VERSION__ 100 -#endif - -#include "rpc.h" -#include "rpcndr.h" - -#ifndef __RPCNDR_H_VERSION__ -#error this stub requires an updated version of -#endif // __RPCNDR_H_VERSION__ - -#ifndef COM_NO_WINDOWS_H -#include "windows.h" -#include "ole2.h" -#endif /*COM_NO_WINDOWS_H*/ - -#ifndef __d3d10_h__ -#define __d3d10_h__ - -#if defined(_MSC_VER) && (_MSC_VER >= 1020) -#pragma once -#endif - -/* Forward Declarations */ - -#ifndef __ID3D10DeviceChild_FWD_DEFINED__ -#define __ID3D10DeviceChild_FWD_DEFINED__ -typedef interface ID3D10DeviceChild ID3D10DeviceChild; -#endif /* __ID3D10DeviceChild_FWD_DEFINED__ */ - - -#ifndef __ID3D10DepthStencilState_FWD_DEFINED__ -#define __ID3D10DepthStencilState_FWD_DEFINED__ -typedef interface ID3D10DepthStencilState ID3D10DepthStencilState; -#endif /* __ID3D10DepthStencilState_FWD_DEFINED__ */ - - -#ifndef __ID3D10BlendState_FWD_DEFINED__ -#define __ID3D10BlendState_FWD_DEFINED__ -typedef interface ID3D10BlendState ID3D10BlendState; -#endif /* __ID3D10BlendState_FWD_DEFINED__ */ - - -#ifndef __ID3D10RasterizerState_FWD_DEFINED__ -#define __ID3D10RasterizerState_FWD_DEFINED__ -typedef interface ID3D10RasterizerState ID3D10RasterizerState; -#endif /* __ID3D10RasterizerState_FWD_DEFINED__ */ - - -#ifndef __ID3D10Resource_FWD_DEFINED__ -#define __ID3D10Resource_FWD_DEFINED__ -typedef interface ID3D10Resource ID3D10Resource; -#endif /* __ID3D10Resource_FWD_DEFINED__ */ - - -#ifndef __ID3D10Buffer_FWD_DEFINED__ -#define __ID3D10Buffer_FWD_DEFINED__ -typedef interface ID3D10Buffer ID3D10Buffer; -#endif /* __ID3D10Buffer_FWD_DEFINED__ */ - - -#ifndef __ID3D10Texture1D_FWD_DEFINED__ -#define __ID3D10Texture1D_FWD_DEFINED__ -typedef interface ID3D10Texture1D ID3D10Texture1D; -#endif /* __ID3D10Texture1D_FWD_DEFINED__ */ - - -#ifndef __ID3D10Texture2D_FWD_DEFINED__ -#define __ID3D10Texture2D_FWD_DEFINED__ -typedef interface ID3D10Texture2D ID3D10Texture2D; -#endif /* __ID3D10Texture2D_FWD_DEFINED__ */ - - -#ifndef __ID3D10Texture3D_FWD_DEFINED__ -#define __ID3D10Texture3D_FWD_DEFINED__ -typedef interface ID3D10Texture3D ID3D10Texture3D; -#endif /* __ID3D10Texture3D_FWD_DEFINED__ */ - - -#ifndef __ID3D10View_FWD_DEFINED__ -#define __ID3D10View_FWD_DEFINED__ -typedef interface ID3D10View ID3D10View; -#endif /* __ID3D10View_FWD_DEFINED__ */ - - -#ifndef __ID3D10ShaderResourceView_FWD_DEFINED__ -#define __ID3D10ShaderResourceView_FWD_DEFINED__ -typedef interface ID3D10ShaderResourceView ID3D10ShaderResourceView; -#endif /* __ID3D10ShaderResourceView_FWD_DEFINED__ */ - - -#ifndef __ID3D10RenderTargetView_FWD_DEFINED__ -#define __ID3D10RenderTargetView_FWD_DEFINED__ -typedef interface ID3D10RenderTargetView ID3D10RenderTargetView; -#endif /* __ID3D10RenderTargetView_FWD_DEFINED__ */ - - -#ifndef __ID3D10DepthStencilView_FWD_DEFINED__ -#define __ID3D10DepthStencilView_FWD_DEFINED__ -typedef interface ID3D10DepthStencilView ID3D10DepthStencilView; -#endif /* __ID3D10DepthStencilView_FWD_DEFINED__ */ - - -#ifndef __ID3D10VertexShader_FWD_DEFINED__ -#define __ID3D10VertexShader_FWD_DEFINED__ -typedef interface ID3D10VertexShader ID3D10VertexShader; -#endif /* __ID3D10VertexShader_FWD_DEFINED__ */ - - -#ifndef __ID3D10GeometryShader_FWD_DEFINED__ -#define __ID3D10GeometryShader_FWD_DEFINED__ -typedef interface ID3D10GeometryShader ID3D10GeometryShader; -#endif /* __ID3D10GeometryShader_FWD_DEFINED__ */ - - -#ifndef __ID3D10PixelShader_FWD_DEFINED__ -#define __ID3D10PixelShader_FWD_DEFINED__ -typedef interface ID3D10PixelShader ID3D10PixelShader; -#endif /* __ID3D10PixelShader_FWD_DEFINED__ */ - - -#ifndef __ID3D10InputLayout_FWD_DEFINED__ -#define __ID3D10InputLayout_FWD_DEFINED__ -typedef interface ID3D10InputLayout ID3D10InputLayout; -#endif /* __ID3D10InputLayout_FWD_DEFINED__ */ - - -#ifndef __ID3D10SamplerState_FWD_DEFINED__ -#define __ID3D10SamplerState_FWD_DEFINED__ -typedef interface ID3D10SamplerState ID3D10SamplerState; -#endif /* __ID3D10SamplerState_FWD_DEFINED__ */ - - -#ifndef __ID3D10Asynchronous_FWD_DEFINED__ -#define __ID3D10Asynchronous_FWD_DEFINED__ -typedef interface ID3D10Asynchronous ID3D10Asynchronous; -#endif /* __ID3D10Asynchronous_FWD_DEFINED__ */ - - -#ifndef __ID3D10Query_FWD_DEFINED__ -#define __ID3D10Query_FWD_DEFINED__ -typedef interface ID3D10Query ID3D10Query; -#endif /* __ID3D10Query_FWD_DEFINED__ */ - - -#ifndef __ID3D10Predicate_FWD_DEFINED__ -#define __ID3D10Predicate_FWD_DEFINED__ -typedef interface ID3D10Predicate ID3D10Predicate; -#endif /* __ID3D10Predicate_FWD_DEFINED__ */ - - -#ifndef __ID3D10Counter_FWD_DEFINED__ -#define __ID3D10Counter_FWD_DEFINED__ -typedef interface ID3D10Counter ID3D10Counter; -#endif /* __ID3D10Counter_FWD_DEFINED__ */ - - -#ifndef __ID3D10Device_FWD_DEFINED__ -#define __ID3D10Device_FWD_DEFINED__ -typedef interface ID3D10Device ID3D10Device; -#endif /* __ID3D10Device_FWD_DEFINED__ */ - - -#ifndef __ID3D10Multithread_FWD_DEFINED__ -#define __ID3D10Multithread_FWD_DEFINED__ -typedef interface ID3D10Multithread ID3D10Multithread; -#endif /* __ID3D10Multithread_FWD_DEFINED__ */ - - -/* header files for imported files */ -#include "oaidl.h" -#include "ocidl.h" -#include "dxgi.h" -#include "d3dcommon.h" - -#ifdef __cplusplus -extern "C"{ -#endif - - -/* interface __MIDL_itf_d3d10_0000_0000 */ -/* [local] */ - -#ifndef _D3D10_CONSTANTS -#define _D3D10_CONSTANTS -#define D3D10_16BIT_INDEX_STRIP_CUT_VALUE ( 0xffff ) - -#define D3D10_32BIT_INDEX_STRIP_CUT_VALUE ( 0xffffffff ) - -#define D3D10_8BIT_INDEX_STRIP_CUT_VALUE ( 0xff ) - -#define D3D10_ARRAY_AXIS_ADDRESS_RANGE_BIT_COUNT ( 9 ) - -#define D3D10_CLIP_OR_CULL_DISTANCE_COUNT ( 8 ) - -#define D3D10_CLIP_OR_CULL_DISTANCE_ELEMENT_COUNT ( 2 ) - -#define D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT ( 14 ) - -#define D3D10_COMMONSHADER_CONSTANT_BUFFER_COMPONENTS ( 4 ) - -#define D3D10_COMMONSHADER_CONSTANT_BUFFER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D10_COMMONSHADER_CONSTANT_BUFFER_HW_SLOT_COUNT ( 15 ) - -#define D3D10_COMMONSHADER_CONSTANT_BUFFER_REGISTER_COMPONENTS ( 4 ) - -#define D3D10_COMMONSHADER_CONSTANT_BUFFER_REGISTER_COUNT ( 15 ) - -#define D3D10_COMMONSHADER_CONSTANT_BUFFER_REGISTER_READS_PER_INST ( 1 ) - -#define D3D10_COMMONSHADER_CONSTANT_BUFFER_REGISTER_READ_PORTS ( 1 ) - -#define D3D10_COMMONSHADER_FLOWCONTROL_NESTING_LIMIT ( 64 ) - -#define D3D10_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_COMPONENTS ( 4 ) - -#define D3D10_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_COUNT ( 1 ) - -#define D3D10_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_READS_PER_INST ( 1 ) - -#define D3D10_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_READ_PORTS ( 1 ) - -#define D3D10_COMMONSHADER_IMMEDIATE_VALUE_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D10_COMMONSHADER_INPUT_RESOURCE_REGISTER_COMPONENTS ( 1 ) - -#define D3D10_COMMONSHADER_INPUT_RESOURCE_REGISTER_COUNT ( 128 ) - -#define D3D10_COMMONSHADER_INPUT_RESOURCE_REGISTER_READS_PER_INST ( 1 ) - -#define D3D10_COMMONSHADER_INPUT_RESOURCE_REGISTER_READ_PORTS ( 1 ) - -#define D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT ( 128 ) - -#define D3D10_COMMONSHADER_SAMPLER_REGISTER_COMPONENTS ( 1 ) - -#define D3D10_COMMONSHADER_SAMPLER_REGISTER_COUNT ( 16 ) - -#define D3D10_COMMONSHADER_SAMPLER_REGISTER_READS_PER_INST ( 1 ) - -#define D3D10_COMMONSHADER_SAMPLER_REGISTER_READ_PORTS ( 1 ) - -#define D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT ( 16 ) - -#define D3D10_COMMONSHADER_SUBROUTINE_NESTING_LIMIT ( 32 ) - -#define D3D10_COMMONSHADER_TEMP_REGISTER_COMPONENTS ( 4 ) - -#define D3D10_COMMONSHADER_TEMP_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D10_COMMONSHADER_TEMP_REGISTER_COUNT ( 4096 ) - -#define D3D10_COMMONSHADER_TEMP_REGISTER_READS_PER_INST ( 3 ) - -#define D3D10_COMMONSHADER_TEMP_REGISTER_READ_PORTS ( 3 ) - -#define D3D10_COMMONSHADER_TEXCOORD_RANGE_REDUCTION_MAX ( 10 ) - -#define D3D10_COMMONSHADER_TEXCOORD_RANGE_REDUCTION_MIN ( -10 ) - -#define D3D10_COMMONSHADER_TEXEL_OFFSET_MAX_NEGATIVE ( -8 ) - -#define D3D10_COMMONSHADER_TEXEL_OFFSET_MAX_POSITIVE ( 7 ) - -#define D3D10_DEFAULT_BLEND_FACTOR_ALPHA ( 1.0f ) -#define D3D10_DEFAULT_BLEND_FACTOR_BLUE ( 1.0f ) -#define D3D10_DEFAULT_BLEND_FACTOR_GREEN ( 1.0f ) -#define D3D10_DEFAULT_BLEND_FACTOR_RED ( 1.0f ) -#define D3D10_DEFAULT_BORDER_COLOR_COMPONENT ( 0.0f ) -#define D3D10_DEFAULT_DEPTH_BIAS ( 0 ) - -#define D3D10_DEFAULT_DEPTH_BIAS_CLAMP ( 0.0f ) -#define D3D10_DEFAULT_MAX_ANISOTROPY ( 16.0f ) -#define D3D10_DEFAULT_MIP_LOD_BIAS ( 0.0f ) -#define D3D10_DEFAULT_RENDER_TARGET_ARRAY_INDEX ( 0 ) - -#define D3D10_DEFAULT_SAMPLE_MASK ( 0xffffffff ) - -#define D3D10_DEFAULT_SCISSOR_ENDX ( 0 ) - -#define D3D10_DEFAULT_SCISSOR_ENDY ( 0 ) - -#define D3D10_DEFAULT_SCISSOR_STARTX ( 0 ) - -#define D3D10_DEFAULT_SCISSOR_STARTY ( 0 ) - -#define D3D10_DEFAULT_SLOPE_SCALED_DEPTH_BIAS ( 0.0f ) -#define D3D10_DEFAULT_STENCIL_READ_MASK ( 0xff ) - -#define D3D10_DEFAULT_STENCIL_REFERENCE ( 0 ) - -#define D3D10_DEFAULT_STENCIL_WRITE_MASK ( 0xff ) - -#define D3D10_DEFAULT_VIEWPORT_AND_SCISSORRECT_INDEX ( 0 ) - -#define D3D10_DEFAULT_VIEWPORT_HEIGHT ( 0 ) - -#define D3D10_DEFAULT_VIEWPORT_MAX_DEPTH ( 0.0f ) -#define D3D10_DEFAULT_VIEWPORT_MIN_DEPTH ( 0.0f ) -#define D3D10_DEFAULT_VIEWPORT_TOPLEFTX ( 0 ) - -#define D3D10_DEFAULT_VIEWPORT_TOPLEFTY ( 0 ) - -#define D3D10_DEFAULT_VIEWPORT_WIDTH ( 0 ) - -#define D3D10_FLOAT16_FUSED_TOLERANCE_IN_ULP ( 0.6 ) -#define D3D10_FLOAT32_MAX ( 3.402823466e+38f ) -#define D3D10_FLOAT32_TO_INTEGER_TOLERANCE_IN_ULP ( 0.6f ) -#define D3D10_FLOAT_TO_SRGB_EXPONENT_DENOMINATOR ( 2.4f ) -#define D3D10_FLOAT_TO_SRGB_EXPONENT_NUMERATOR ( 1.0f ) -#define D3D10_FLOAT_TO_SRGB_OFFSET ( 0.055f ) -#define D3D10_FLOAT_TO_SRGB_SCALE_1 ( 12.92f ) -#define D3D10_FLOAT_TO_SRGB_SCALE_2 ( 1.055f ) -#define D3D10_FLOAT_TO_SRGB_THRESHOLD ( 0.0031308f ) -#define D3D10_FTOI_INSTRUCTION_MAX_INPUT ( 2147483647.999f ) -#define D3D10_FTOI_INSTRUCTION_MIN_INPUT ( -2147483648.999f ) -#define D3D10_FTOU_INSTRUCTION_MAX_INPUT ( 4294967295.999f ) -#define D3D10_FTOU_INSTRUCTION_MIN_INPUT ( 0.0f ) -#define D3D10_GS_INPUT_PRIM_CONST_REGISTER_COMPONENTS ( 1 ) - -#define D3D10_GS_INPUT_PRIM_CONST_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D10_GS_INPUT_PRIM_CONST_REGISTER_COUNT ( 1 ) - -#define D3D10_GS_INPUT_PRIM_CONST_REGISTER_READS_PER_INST ( 2 ) - -#define D3D10_GS_INPUT_PRIM_CONST_REGISTER_READ_PORTS ( 1 ) - -#define D3D10_GS_INPUT_REGISTER_COMPONENTS ( 4 ) - -#define D3D10_GS_INPUT_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D10_GS_INPUT_REGISTER_COUNT ( 16 ) - -#define D3D10_GS_INPUT_REGISTER_READS_PER_INST ( 2 ) - -#define D3D10_GS_INPUT_REGISTER_READ_PORTS ( 1 ) - -#define D3D10_GS_INPUT_REGISTER_VERTICES ( 6 ) - -#define D3D10_GS_OUTPUT_ELEMENTS ( 32 ) - -#define D3D10_GS_OUTPUT_REGISTER_COMPONENTS ( 4 ) - -#define D3D10_GS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D10_GS_OUTPUT_REGISTER_COUNT ( 32 ) - -#define D3D10_IA_DEFAULT_INDEX_BUFFER_OFFSET_IN_BYTES ( 0 ) - -#define D3D10_IA_DEFAULT_PRIMITIVE_TOPOLOGY ( 0 ) - -#define D3D10_IA_DEFAULT_VERTEX_BUFFER_OFFSET_IN_BYTES ( 0 ) - -#define D3D10_IA_INDEX_INPUT_RESOURCE_SLOT_COUNT ( 1 ) - -#define D3D10_IA_INSTANCE_ID_BIT_COUNT ( 32 ) - -#define D3D10_IA_INTEGER_ARITHMETIC_BIT_COUNT ( 32 ) - -#define D3D10_IA_PRIMITIVE_ID_BIT_COUNT ( 32 ) - -#define D3D10_IA_VERTEX_ID_BIT_COUNT ( 32 ) - -#define D3D10_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT ( 16 ) - -#define D3D10_IA_VERTEX_INPUT_STRUCTURE_ELEMENTS_COMPONENTS ( 64 ) - -#define D3D10_IA_VERTEX_INPUT_STRUCTURE_ELEMENT_COUNT ( 16 ) - -#define D3D10_INTEGER_DIVIDE_BY_ZERO_QUOTIENT ( 0xffffffff ) - -#define D3D10_INTEGER_DIVIDE_BY_ZERO_REMAINDER ( 0xffffffff ) - -#define D3D10_LINEAR_GAMMA ( 1.0f ) -#define D3D10_MAX_BORDER_COLOR_COMPONENT ( 1.0f ) -#define D3D10_MAX_DEPTH ( 1.0f ) -#define D3D10_MAX_MAXANISOTROPY ( 16 ) - -#define D3D10_MAX_MULTISAMPLE_SAMPLE_COUNT ( 32 ) - -#define D3D10_MAX_POSITION_VALUE ( 3.402823466e+34f ) -#define D3D10_MAX_TEXTURE_DIMENSION_2_TO_EXP ( 17 ) - -#define D3D10_MIN_BORDER_COLOR_COMPONENT ( 0.0f ) -#define D3D10_MIN_DEPTH ( 0.0f ) -#define D3D10_MIN_MAXANISOTROPY ( 0 ) - -#define D3D10_MIP_LOD_BIAS_MAX ( 15.99f ) -#define D3D10_MIP_LOD_BIAS_MIN ( -16.0f ) -#define D3D10_MIP_LOD_FRACTIONAL_BIT_COUNT ( 6 ) - -#define D3D10_MIP_LOD_RANGE_BIT_COUNT ( 8 ) - -#define D3D10_MULTISAMPLE_ANTIALIAS_LINE_WIDTH ( 1.4f ) -#define D3D10_NONSAMPLE_FETCH_OUT_OF_RANGE_ACCESS_RESULT ( 0 ) - -#define D3D10_PIXEL_ADDRESS_RANGE_BIT_COUNT ( 13 ) - -#define D3D10_PRE_SCISSOR_PIXEL_ADDRESS_RANGE_BIT_COUNT ( 15 ) - -#define D3D10_PS_FRONTFACING_DEFAULT_VALUE ( 0xffffffff ) - -#define D3D10_PS_FRONTFACING_FALSE_VALUE ( 0 ) - -#define D3D10_PS_FRONTFACING_TRUE_VALUE ( 0xffffffff ) - -#define D3D10_PS_INPUT_REGISTER_COMPONENTS ( 4 ) - -#define D3D10_PS_INPUT_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D10_PS_INPUT_REGISTER_COUNT ( 32 ) - -#define D3D10_PS_INPUT_REGISTER_READS_PER_INST ( 2 ) - -#define D3D10_PS_INPUT_REGISTER_READ_PORTS ( 1 ) - -#define D3D10_PS_LEGACY_PIXEL_CENTER_FRACTIONAL_COMPONENT ( 0.0f ) -#define D3D10_PS_OUTPUT_DEPTH_REGISTER_COMPONENTS ( 1 ) - -#define D3D10_PS_OUTPUT_DEPTH_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D10_PS_OUTPUT_DEPTH_REGISTER_COUNT ( 1 ) - -#define D3D10_PS_OUTPUT_REGISTER_COMPONENTS ( 4 ) - -#define D3D10_PS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D10_PS_OUTPUT_REGISTER_COUNT ( 8 ) - -#define D3D10_PS_PIXEL_CENTER_FRACTIONAL_COMPONENT ( 0.5f ) -#define D3D10_REQ_BLEND_OBJECT_COUNT_PER_CONTEXT ( 4096 ) - -#define D3D10_REQ_BUFFER_RESOURCE_TEXEL_COUNT_2_TO_EXP ( 27 ) - -#define D3D10_REQ_CONSTANT_BUFFER_ELEMENT_COUNT ( 4096 ) - -#define D3D10_REQ_DEPTH_STENCIL_OBJECT_COUNT_PER_CONTEXT ( 4096 ) - -#define D3D10_REQ_DRAWINDEXED_INDEX_COUNT_2_TO_EXP ( 32 ) - -#define D3D10_REQ_DRAW_VERTEX_COUNT_2_TO_EXP ( 32 ) - -#define D3D10_REQ_FILTERING_HW_ADDRESSABLE_RESOURCE_DIMENSION ( 8192 ) - -#define D3D10_REQ_GS_INVOCATION_32BIT_OUTPUT_COMPONENT_LIMIT ( 1024 ) - -#define D3D10_REQ_IMMEDIATE_CONSTANT_BUFFER_ELEMENT_COUNT ( 4096 ) - -#define D3D10_REQ_MAXANISOTROPY ( 16 ) - -#define D3D10_REQ_MIP_LEVELS ( 14 ) - -#define D3D10_REQ_MULTI_ELEMENT_STRUCTURE_SIZE_IN_BYTES ( 2048 ) - -#define D3D10_REQ_RASTERIZER_OBJECT_COUNT_PER_CONTEXT ( 4096 ) - -#define D3D10_REQ_RENDER_TO_BUFFER_WINDOW_WIDTH ( 8192 ) - -#define D3D10_REQ_RESOURCE_SIZE_IN_MEGABYTES ( 128 ) - -#define D3D10_REQ_RESOURCE_VIEW_COUNT_PER_CONTEXT_2_TO_EXP ( 20 ) - -#define D3D10_REQ_SAMPLER_OBJECT_COUNT_PER_CONTEXT ( 4096 ) - -#define D3D10_REQ_TEXTURE1D_ARRAY_AXIS_DIMENSION ( 512 ) - -#define D3D10_REQ_TEXTURE1D_U_DIMENSION ( 8192 ) - -#define D3D10_REQ_TEXTURE2D_ARRAY_AXIS_DIMENSION ( 512 ) - -#define D3D10_REQ_TEXTURE2D_U_OR_V_DIMENSION ( 8192 ) - -#define D3D10_REQ_TEXTURE3D_U_V_OR_W_DIMENSION ( 2048 ) - -#define D3D10_REQ_TEXTURECUBE_DIMENSION ( 8192 ) - -#define D3D10_RESINFO_INSTRUCTION_MISSING_COMPONENT_RETVAL ( 0 ) - -#define D3D10_SHADER_MAJOR_VERSION ( 4 ) - -#define D3D10_SHADER_MINOR_VERSION ( 0 ) - -#define D3D10_SHIFT_INSTRUCTION_PAD_VALUE ( 0 ) - -#define D3D10_SHIFT_INSTRUCTION_SHIFT_VALUE_BIT_COUNT ( 5 ) - -#define D3D10_SIMULTANEOUS_RENDER_TARGET_COUNT ( 8 ) - -#define D3D10_SO_BUFFER_MAX_STRIDE_IN_BYTES ( 2048 ) - -#define D3D10_SO_BUFFER_MAX_WRITE_WINDOW_IN_BYTES ( 256 ) - -#define D3D10_SO_BUFFER_SLOT_COUNT ( 4 ) - -#define D3D10_SO_DDI_REGISTER_INDEX_DENOTING_GAP ( 0xffffffff ) - -#define D3D10_SO_MULTIPLE_BUFFER_ELEMENTS_PER_BUFFER ( 1 ) - -#define D3D10_SO_SINGLE_BUFFER_COMPONENT_LIMIT ( 64 ) - -#define D3D10_SRGB_GAMMA ( 2.2f ) -#define D3D10_SRGB_TO_FLOAT_DENOMINATOR_1 ( 12.92f ) -#define D3D10_SRGB_TO_FLOAT_DENOMINATOR_2 ( 1.055f ) -#define D3D10_SRGB_TO_FLOAT_EXPONENT ( 2.4f ) -#define D3D10_SRGB_TO_FLOAT_OFFSET ( 0.055f ) -#define D3D10_SRGB_TO_FLOAT_THRESHOLD ( 0.04045f ) -#define D3D10_SRGB_TO_FLOAT_TOLERANCE_IN_ULP ( 0.5f ) -#define D3D10_STANDARD_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D10_STANDARD_COMPONENT_BIT_COUNT_DOUBLED ( 64 ) - -#define D3D10_STANDARD_MAXIMUM_ELEMENT_ALIGNMENT_BYTE_MULTIPLE ( 4 ) - -#define D3D10_STANDARD_PIXEL_COMPONENT_COUNT ( 128 ) - -#define D3D10_STANDARD_PIXEL_ELEMENT_COUNT ( 32 ) - -#define D3D10_STANDARD_VECTOR_SIZE ( 4 ) - -#define D3D10_STANDARD_VERTEX_ELEMENT_COUNT ( 16 ) - -#define D3D10_STANDARD_VERTEX_TOTAL_COMPONENT_COUNT ( 64 ) - -#define D3D10_SUBPIXEL_FRACTIONAL_BIT_COUNT ( 8 ) - -#define D3D10_SUBTEXEL_FRACTIONAL_BIT_COUNT ( 6 ) - -#define D3D10_TEXEL_ADDRESS_RANGE_BIT_COUNT ( 18 ) - -#define D3D10_UNBOUND_MEMORY_ACCESS_RESULT ( 0 ) - -#define D3D10_VIEWPORT_AND_SCISSORRECT_MAX_INDEX ( 15 ) - -#define D3D10_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE ( 16 ) - -#define D3D10_VIEWPORT_BOUNDS_MAX ( 16383 ) - -#define D3D10_VIEWPORT_BOUNDS_MIN ( -16384 ) - -#define D3D10_VS_INPUT_REGISTER_COMPONENTS ( 4 ) - -#define D3D10_VS_INPUT_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D10_VS_INPUT_REGISTER_COUNT ( 16 ) - -#define D3D10_VS_INPUT_REGISTER_READS_PER_INST ( 2 ) - -#define D3D10_VS_INPUT_REGISTER_READ_PORTS ( 1 ) - -#define D3D10_VS_OUTPUT_REGISTER_COMPONENTS ( 4 ) - -#define D3D10_VS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D10_VS_OUTPUT_REGISTER_COUNT ( 16 ) - -#define D3D10_WHQL_CONTEXT_COUNT_FOR_RESOURCE_LIMIT ( 10 ) - -#define D3D10_WHQL_DRAWINDEXED_INDEX_COUNT_2_TO_EXP ( 25 ) - -#define D3D10_WHQL_DRAW_VERTEX_COUNT_2_TO_EXP ( 25 ) - -#define D3D_MAJOR_VERSION ( 10 ) - -#define D3D_MINOR_VERSION ( 0 ) - -#define D3D_SPEC_DATE_DAY ( 8 ) - -#define D3D_SPEC_DATE_MONTH ( 8 ) - -#define D3D_SPEC_DATE_YEAR ( 2006 ) - -#define D3D_SPEC_VERSION ( 1.050005 ) -#endif -#if !defined( __d3d10_1_h__ ) && !(D3D10_HEADER_MINOR_VERSION >= 1) -#define D3D10_1_IA_VERTEX_INPUT_STRUCTURE_ELEMENT_COUNT D3D10_IA_VERTEX_INPUT_STRUCTURE_ELEMENT_COUNT -#define D3D10_1_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT D3D10_IA_VERTEX_INPUT_STRUCTURE_ELEMENT_COUNT -#endif -#define _FACD3D10 ( 0x879 ) - -#define _FACD3D10DEBUG ( ( _FACD3D10 + 1 ) ) - -#define MAKE_D3D10_HRESULT( code ) MAKE_HRESULT( 1, _FACD3D10, code ) -#define MAKE_D3D10_STATUS( code ) MAKE_HRESULT( 0, _FACD3D10, code ) -#define D3D10_ERROR_TOO_MANY_UNIQUE_STATE_OBJECTS MAKE_D3D10_HRESULT(1) -#define D3D10_ERROR_FILE_NOT_FOUND MAKE_D3D10_HRESULT(2) -#if __SAL_H_FULL_VER < 140050727 -#undef __in_range -#undef __in_xcount_opt -#define __in_range(x, y) -#define __in_xcount_opt(x) -#endif -typedef -enum D3D10_INPUT_CLASSIFICATION - { D3D10_INPUT_PER_VERTEX_DATA = 0, - D3D10_INPUT_PER_INSTANCE_DATA = 1 - } D3D10_INPUT_CLASSIFICATION; - -#define D3D10_APPEND_ALIGNED_ELEMENT ( 0xffffffff ) - -typedef struct D3D10_INPUT_ELEMENT_DESC - { - LPCSTR SemanticName; - UINT SemanticIndex; - DXGI_FORMAT Format; - UINT InputSlot; - UINT AlignedByteOffset; - D3D10_INPUT_CLASSIFICATION InputSlotClass; - UINT InstanceDataStepRate; - } D3D10_INPUT_ELEMENT_DESC; - -typedef -enum D3D10_FILL_MODE - { D3D10_FILL_WIREFRAME = 2, - D3D10_FILL_SOLID = 3 - } D3D10_FILL_MODE; - -typedef D3D_PRIMITIVE_TOPOLOGY D3D10_PRIMITIVE_TOPOLOGY; - -typedef D3D_PRIMITIVE D3D10_PRIMITIVE; - -typedef -enum D3D10_CULL_MODE - { D3D10_CULL_NONE = 1, - D3D10_CULL_FRONT = 2, - D3D10_CULL_BACK = 3 - } D3D10_CULL_MODE; - -typedef struct D3D10_SO_DECLARATION_ENTRY - { - LPCSTR SemanticName; - UINT SemanticIndex; - BYTE StartComponent; - BYTE ComponentCount; - BYTE OutputSlot; - } D3D10_SO_DECLARATION_ENTRY; - -typedef struct D3D10_VIEWPORT - { - INT TopLeftX; - INT TopLeftY; - UINT Width; - UINT Height; - FLOAT MinDepth; - FLOAT MaxDepth; - } D3D10_VIEWPORT; - -typedef -enum D3D10_RESOURCE_DIMENSION - { D3D10_RESOURCE_DIMENSION_UNKNOWN = 0, - D3D10_RESOURCE_DIMENSION_BUFFER = 1, - D3D10_RESOURCE_DIMENSION_TEXTURE1D = 2, - D3D10_RESOURCE_DIMENSION_TEXTURE2D = 3, - D3D10_RESOURCE_DIMENSION_TEXTURE3D = 4 - } D3D10_RESOURCE_DIMENSION; - -typedef D3D_SRV_DIMENSION D3D10_SRV_DIMENSION; - -typedef -enum D3D10_DSV_DIMENSION - { D3D10_DSV_DIMENSION_UNKNOWN = 0, - D3D10_DSV_DIMENSION_TEXTURE1D = 1, - D3D10_DSV_DIMENSION_TEXTURE1DARRAY = 2, - D3D10_DSV_DIMENSION_TEXTURE2D = 3, - D3D10_DSV_DIMENSION_TEXTURE2DARRAY = 4, - D3D10_DSV_DIMENSION_TEXTURE2DMS = 5, - D3D10_DSV_DIMENSION_TEXTURE2DMSARRAY = 6 - } D3D10_DSV_DIMENSION; - -typedef -enum D3D10_RTV_DIMENSION - { D3D10_RTV_DIMENSION_UNKNOWN = 0, - D3D10_RTV_DIMENSION_BUFFER = 1, - D3D10_RTV_DIMENSION_TEXTURE1D = 2, - D3D10_RTV_DIMENSION_TEXTURE1DARRAY = 3, - D3D10_RTV_DIMENSION_TEXTURE2D = 4, - D3D10_RTV_DIMENSION_TEXTURE2DARRAY = 5, - D3D10_RTV_DIMENSION_TEXTURE2DMS = 6, - D3D10_RTV_DIMENSION_TEXTURE2DMSARRAY = 7, - D3D10_RTV_DIMENSION_TEXTURE3D = 8 - } D3D10_RTV_DIMENSION; - -typedef -enum D3D10_USAGE - { D3D10_USAGE_DEFAULT = 0, - D3D10_USAGE_IMMUTABLE = 1, - D3D10_USAGE_DYNAMIC = 2, - D3D10_USAGE_STAGING = 3 - } D3D10_USAGE; - -typedef -enum D3D10_BIND_FLAG - { D3D10_BIND_VERTEX_BUFFER = 0x1L, - D3D10_BIND_INDEX_BUFFER = 0x2L, - D3D10_BIND_CONSTANT_BUFFER = 0x4L, - D3D10_BIND_SHADER_RESOURCE = 0x8L, - D3D10_BIND_STREAM_OUTPUT = 0x10L, - D3D10_BIND_RENDER_TARGET = 0x20L, - D3D10_BIND_DEPTH_STENCIL = 0x40L - } D3D10_BIND_FLAG; - -typedef -enum D3D10_CPU_ACCESS_FLAG - { D3D10_CPU_ACCESS_WRITE = 0x10000L, - D3D10_CPU_ACCESS_READ = 0x20000L - } D3D10_CPU_ACCESS_FLAG; - -typedef -enum D3D10_RESOURCE_MISC_FLAG - { D3D10_RESOURCE_MISC_GENERATE_MIPS = 0x1L, - D3D10_RESOURCE_MISC_SHARED = 0x2L, - D3D10_RESOURCE_MISC_TEXTURECUBE = 0x4L, - D3D10_RESOURCE_MISC_SHARED_KEYEDMUTEX = 0x10L, - D3D10_RESOURCE_MISC_GDI_COMPATIBLE = 0x20L - } D3D10_RESOURCE_MISC_FLAG; - -typedef -enum D3D10_MAP - { D3D10_MAP_READ = 1, - D3D10_MAP_WRITE = 2, - D3D10_MAP_READ_WRITE = 3, - D3D10_MAP_WRITE_DISCARD = 4, - D3D10_MAP_WRITE_NO_OVERWRITE = 5 - } D3D10_MAP; - -typedef -enum D3D10_MAP_FLAG - { D3D10_MAP_FLAG_DO_NOT_WAIT = 0x100000L - } D3D10_MAP_FLAG; - -typedef -enum D3D10_RAISE_FLAG - { D3D10_RAISE_FLAG_DRIVER_INTERNAL_ERROR = 0x1L - } D3D10_RAISE_FLAG; - -typedef -enum D3D10_CLEAR_FLAG - { D3D10_CLEAR_DEPTH = 0x1L, - D3D10_CLEAR_STENCIL = 0x2L - } D3D10_CLEAR_FLAG; - -typedef RECT D3D10_RECT; - -typedef struct D3D10_BOX - { - UINT left; - UINT top; - UINT front; - UINT right; - UINT bottom; - UINT back; - } D3D10_BOX; - - - - -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0000_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0000_v0_0_s_ifspec; - -#ifndef __ID3D10DeviceChild_INTERFACE_DEFINED__ -#define __ID3D10DeviceChild_INTERFACE_DEFINED__ - -/* interface ID3D10DeviceChild */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10DeviceChild; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("9B7E4C00-342C-4106-A19F-4F2704F689F0") - ID3D10DeviceChild : public IUnknown - { - public: - virtual void STDMETHODCALLTYPE GetDevice( - /* [annotation] */ - __out ID3D10Device **ppDevice) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetPrivateData( - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData) = 0; - - virtual HRESULT STDMETHODCALLTYPE SetPrivateData( - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData) = 0; - - virtual HRESULT STDMETHODCALLTYPE SetPrivateDataInterface( - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D10DeviceChildVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10DeviceChild * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10DeviceChild * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10DeviceChild * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D10DeviceChild * This, - /* [annotation] */ - __out ID3D10Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D10DeviceChild * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D10DeviceChild * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D10DeviceChild * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - END_INTERFACE - } ID3D10DeviceChildVtbl; - - interface ID3D10DeviceChild - { - CONST_VTBL struct ID3D10DeviceChildVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10DeviceChild_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10DeviceChild_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10DeviceChild_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10DeviceChild_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D10DeviceChild_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D10DeviceChild_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D10DeviceChild_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10DeviceChild_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d10_0000_0001 */ -/* [local] */ - -typedef -enum D3D10_COMPARISON_FUNC - { D3D10_COMPARISON_NEVER = 1, - D3D10_COMPARISON_LESS = 2, - D3D10_COMPARISON_EQUAL = 3, - D3D10_COMPARISON_LESS_EQUAL = 4, - D3D10_COMPARISON_GREATER = 5, - D3D10_COMPARISON_NOT_EQUAL = 6, - D3D10_COMPARISON_GREATER_EQUAL = 7, - D3D10_COMPARISON_ALWAYS = 8 - } D3D10_COMPARISON_FUNC; - -typedef -enum D3D10_DEPTH_WRITE_MASK - { D3D10_DEPTH_WRITE_MASK_ZERO = 0, - D3D10_DEPTH_WRITE_MASK_ALL = 1 - } D3D10_DEPTH_WRITE_MASK; - -typedef -enum D3D10_STENCIL_OP - { D3D10_STENCIL_OP_KEEP = 1, - D3D10_STENCIL_OP_ZERO = 2, - D3D10_STENCIL_OP_REPLACE = 3, - D3D10_STENCIL_OP_INCR_SAT = 4, - D3D10_STENCIL_OP_DECR_SAT = 5, - D3D10_STENCIL_OP_INVERT = 6, - D3D10_STENCIL_OP_INCR = 7, - D3D10_STENCIL_OP_DECR = 8 - } D3D10_STENCIL_OP; - -typedef struct D3D10_DEPTH_STENCILOP_DESC - { - D3D10_STENCIL_OP StencilFailOp; - D3D10_STENCIL_OP StencilDepthFailOp; - D3D10_STENCIL_OP StencilPassOp; - D3D10_COMPARISON_FUNC StencilFunc; - } D3D10_DEPTH_STENCILOP_DESC; - -typedef struct D3D10_DEPTH_STENCIL_DESC - { - BOOL DepthEnable; - D3D10_DEPTH_WRITE_MASK DepthWriteMask; - D3D10_COMPARISON_FUNC DepthFunc; - BOOL StencilEnable; - UINT8 StencilReadMask; - UINT8 StencilWriteMask; - D3D10_DEPTH_STENCILOP_DESC FrontFace; - D3D10_DEPTH_STENCILOP_DESC BackFace; - } D3D10_DEPTH_STENCIL_DESC; - - - -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0001_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0001_v0_0_s_ifspec; - -#ifndef __ID3D10DepthStencilState_INTERFACE_DEFINED__ -#define __ID3D10DepthStencilState_INTERFACE_DEFINED__ - -/* interface ID3D10DepthStencilState */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10DepthStencilState; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("2B4B1CC8-A4AD-41f8-8322-CA86FC3EC675") - ID3D10DepthStencilState : public ID3D10DeviceChild - { - public: - virtual void STDMETHODCALLTYPE GetDesc( - /* [annotation] */ - __out D3D10_DEPTH_STENCIL_DESC *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D10DepthStencilStateVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10DepthStencilState * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10DepthStencilState * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10DepthStencilState * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D10DepthStencilState * This, - /* [annotation] */ - __out ID3D10Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D10DepthStencilState * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D10DepthStencilState * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D10DepthStencilState * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D10DepthStencilState * This, - /* [annotation] */ - __out D3D10_DEPTH_STENCIL_DESC *pDesc); - - END_INTERFACE - } ID3D10DepthStencilStateVtbl; - - interface ID3D10DepthStencilState - { - CONST_VTBL struct ID3D10DepthStencilStateVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10DepthStencilState_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10DepthStencilState_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10DepthStencilState_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10DepthStencilState_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D10DepthStencilState_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D10DepthStencilState_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D10DepthStencilState_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D10DepthStencilState_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10DepthStencilState_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d10_0000_0002 */ -/* [local] */ - -typedef -enum D3D10_BLEND - { D3D10_BLEND_ZERO = 1, - D3D10_BLEND_ONE = 2, - D3D10_BLEND_SRC_COLOR = 3, - D3D10_BLEND_INV_SRC_COLOR = 4, - D3D10_BLEND_SRC_ALPHA = 5, - D3D10_BLEND_INV_SRC_ALPHA = 6, - D3D10_BLEND_DEST_ALPHA = 7, - D3D10_BLEND_INV_DEST_ALPHA = 8, - D3D10_BLEND_DEST_COLOR = 9, - D3D10_BLEND_INV_DEST_COLOR = 10, - D3D10_BLEND_SRC_ALPHA_SAT = 11, - D3D10_BLEND_BLEND_FACTOR = 14, - D3D10_BLEND_INV_BLEND_FACTOR = 15, - D3D10_BLEND_SRC1_COLOR = 16, - D3D10_BLEND_INV_SRC1_COLOR = 17, - D3D10_BLEND_SRC1_ALPHA = 18, - D3D10_BLEND_INV_SRC1_ALPHA = 19 - } D3D10_BLEND; - -typedef -enum D3D10_BLEND_OP - { D3D10_BLEND_OP_ADD = 1, - D3D10_BLEND_OP_SUBTRACT = 2, - D3D10_BLEND_OP_REV_SUBTRACT = 3, - D3D10_BLEND_OP_MIN = 4, - D3D10_BLEND_OP_MAX = 5 - } D3D10_BLEND_OP; - -typedef -enum D3D10_COLOR_WRITE_ENABLE - { D3D10_COLOR_WRITE_ENABLE_RED = 1, - D3D10_COLOR_WRITE_ENABLE_GREEN = 2, - D3D10_COLOR_WRITE_ENABLE_BLUE = 4, - D3D10_COLOR_WRITE_ENABLE_ALPHA = 8, - D3D10_COLOR_WRITE_ENABLE_ALL = ( ( ( D3D10_COLOR_WRITE_ENABLE_RED | D3D10_COLOR_WRITE_ENABLE_GREEN ) | D3D10_COLOR_WRITE_ENABLE_BLUE ) | D3D10_COLOR_WRITE_ENABLE_ALPHA ) - } D3D10_COLOR_WRITE_ENABLE; - -typedef struct D3D10_BLEND_DESC - { - BOOL AlphaToCoverageEnable; - BOOL BlendEnable[ 8 ]; - D3D10_BLEND SrcBlend; - D3D10_BLEND DestBlend; - D3D10_BLEND_OP BlendOp; - D3D10_BLEND SrcBlendAlpha; - D3D10_BLEND DestBlendAlpha; - D3D10_BLEND_OP BlendOpAlpha; - UINT8 RenderTargetWriteMask[ 8 ]; - } D3D10_BLEND_DESC; - - - -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0002_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0002_v0_0_s_ifspec; - -#ifndef __ID3D10BlendState_INTERFACE_DEFINED__ -#define __ID3D10BlendState_INTERFACE_DEFINED__ - -/* interface ID3D10BlendState */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10BlendState; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("EDAD8D19-8A35-4d6d-8566-2EA276CDE161") - ID3D10BlendState : public ID3D10DeviceChild - { - public: - virtual void STDMETHODCALLTYPE GetDesc( - /* [annotation] */ - __out D3D10_BLEND_DESC *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D10BlendStateVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10BlendState * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10BlendState * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10BlendState * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D10BlendState * This, - /* [annotation] */ - __out ID3D10Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D10BlendState * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D10BlendState * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D10BlendState * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D10BlendState * This, - /* [annotation] */ - __out D3D10_BLEND_DESC *pDesc); - - END_INTERFACE - } ID3D10BlendStateVtbl; - - interface ID3D10BlendState - { - CONST_VTBL struct ID3D10BlendStateVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10BlendState_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10BlendState_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10BlendState_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10BlendState_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D10BlendState_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D10BlendState_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D10BlendState_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D10BlendState_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10BlendState_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d10_0000_0003 */ -/* [local] */ - -typedef struct D3D10_RASTERIZER_DESC - { - D3D10_FILL_MODE FillMode; - D3D10_CULL_MODE CullMode; - BOOL FrontCounterClockwise; - INT DepthBias; - FLOAT DepthBiasClamp; - FLOAT SlopeScaledDepthBias; - BOOL DepthClipEnable; - BOOL ScissorEnable; - BOOL MultisampleEnable; - BOOL AntialiasedLineEnable; - } D3D10_RASTERIZER_DESC; - - - -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0003_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0003_v0_0_s_ifspec; - -#ifndef __ID3D10RasterizerState_INTERFACE_DEFINED__ -#define __ID3D10RasterizerState_INTERFACE_DEFINED__ - -/* interface ID3D10RasterizerState */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10RasterizerState; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("A2A07292-89AF-4345-BE2E-C53D9FBB6E9F") - ID3D10RasterizerState : public ID3D10DeviceChild - { - public: - virtual void STDMETHODCALLTYPE GetDesc( - /* [annotation] */ - __out D3D10_RASTERIZER_DESC *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D10RasterizerStateVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10RasterizerState * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10RasterizerState * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10RasterizerState * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D10RasterizerState * This, - /* [annotation] */ - __out ID3D10Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D10RasterizerState * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D10RasterizerState * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D10RasterizerState * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D10RasterizerState * This, - /* [annotation] */ - __out D3D10_RASTERIZER_DESC *pDesc); - - END_INTERFACE - } ID3D10RasterizerStateVtbl; - - interface ID3D10RasterizerState - { - CONST_VTBL struct ID3D10RasterizerStateVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10RasterizerState_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10RasterizerState_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10RasterizerState_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10RasterizerState_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D10RasterizerState_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D10RasterizerState_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D10RasterizerState_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D10RasterizerState_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10RasterizerState_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d10_0000_0004 */ -/* [local] */ - -#if !defined( D3D10_NO_HELPERS ) && defined( __cplusplus ) -inline UINT D3D10CalcSubresource( UINT MipSlice, UINT ArraySlice, UINT MipLevels ) -{ return MipSlice + ArraySlice * MipLevels; } -#endif -typedef struct D3D10_SUBRESOURCE_DATA - { - const void *pSysMem; - UINT SysMemPitch; - UINT SysMemSlicePitch; - } D3D10_SUBRESOURCE_DATA; - - - -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0004_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0004_v0_0_s_ifspec; - -#ifndef __ID3D10Resource_INTERFACE_DEFINED__ -#define __ID3D10Resource_INTERFACE_DEFINED__ - -/* interface ID3D10Resource */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10Resource; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("9B7E4C01-342C-4106-A19F-4F2704F689F0") - ID3D10Resource : public ID3D10DeviceChild - { - public: - virtual void STDMETHODCALLTYPE GetType( - /* [annotation] */ - __out D3D10_RESOURCE_DIMENSION *rType) = 0; - - virtual void STDMETHODCALLTYPE SetEvictionPriority( - /* [annotation] */ - __in UINT EvictionPriority) = 0; - - virtual UINT STDMETHODCALLTYPE GetEvictionPriority( void) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D10ResourceVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10Resource * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10Resource * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10Resource * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D10Resource * This, - /* [annotation] */ - __out ID3D10Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D10Resource * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D10Resource * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D10Resource * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetType )( - ID3D10Resource * This, - /* [annotation] */ - __out D3D10_RESOURCE_DIMENSION *rType); - - void ( STDMETHODCALLTYPE *SetEvictionPriority )( - ID3D10Resource * This, - /* [annotation] */ - __in UINT EvictionPriority); - - UINT ( STDMETHODCALLTYPE *GetEvictionPriority )( - ID3D10Resource * This); - - END_INTERFACE - } ID3D10ResourceVtbl; - - interface ID3D10Resource - { - CONST_VTBL struct ID3D10ResourceVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10Resource_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10Resource_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10Resource_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10Resource_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D10Resource_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D10Resource_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D10Resource_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D10Resource_GetType(This,rType) \ - ( (This)->lpVtbl -> GetType(This,rType) ) - -#define ID3D10Resource_SetEvictionPriority(This,EvictionPriority) \ - ( (This)->lpVtbl -> SetEvictionPriority(This,EvictionPriority) ) - -#define ID3D10Resource_GetEvictionPriority(This) \ - ( (This)->lpVtbl -> GetEvictionPriority(This) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10Resource_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d10_0000_0005 */ -/* [local] */ - -typedef struct D3D10_BUFFER_DESC - { - UINT ByteWidth; - D3D10_USAGE Usage; - UINT BindFlags; - UINT CPUAccessFlags; - UINT MiscFlags; - } D3D10_BUFFER_DESC; - -#if !defined( D3D10_NO_HELPERS ) && defined( __cplusplus ) -struct CD3D10_BUFFER_DESC : public D3D10_BUFFER_DESC -{ - CD3D10_BUFFER_DESC() - {} - explicit CD3D10_BUFFER_DESC( const D3D10_BUFFER_DESC& o ) : - D3D10_BUFFER_DESC( o ) - {} - explicit CD3D10_BUFFER_DESC( - UINT byteWidth, - UINT bindFlags, - D3D10_USAGE usage = D3D10_USAGE_DEFAULT, - UINT cpuaccessFlags = 0, - UINT miscFlags = 0 ) - { - ByteWidth = byteWidth; - Usage = usage; - BindFlags = bindFlags; - CPUAccessFlags = cpuaccessFlags ; - MiscFlags = miscFlags; - } - ~CD3D10_BUFFER_DESC() {} - operator const D3D10_BUFFER_DESC&() const { return *this; } -}; -#endif - - -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0005_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0005_v0_0_s_ifspec; - -#ifndef __ID3D10Buffer_INTERFACE_DEFINED__ -#define __ID3D10Buffer_INTERFACE_DEFINED__ - -/* interface ID3D10Buffer */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10Buffer; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("9B7E4C02-342C-4106-A19F-4F2704F689F0") - ID3D10Buffer : public ID3D10Resource - { - public: - virtual HRESULT STDMETHODCALLTYPE Map( - /* [annotation] */ - __in D3D10_MAP MapType, - /* [annotation] */ - __in UINT MapFlags, - /* [annotation] */ - __out void **ppData) = 0; - - virtual void STDMETHODCALLTYPE Unmap( void) = 0; - - virtual void STDMETHODCALLTYPE GetDesc( - /* [annotation] */ - __out D3D10_BUFFER_DESC *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D10BufferVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10Buffer * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10Buffer * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10Buffer * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D10Buffer * This, - /* [annotation] */ - __out ID3D10Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D10Buffer * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D10Buffer * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D10Buffer * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetType )( - ID3D10Buffer * This, - /* [annotation] */ - __out D3D10_RESOURCE_DIMENSION *rType); - - void ( STDMETHODCALLTYPE *SetEvictionPriority )( - ID3D10Buffer * This, - /* [annotation] */ - __in UINT EvictionPriority); - - UINT ( STDMETHODCALLTYPE *GetEvictionPriority )( - ID3D10Buffer * This); - - HRESULT ( STDMETHODCALLTYPE *Map )( - ID3D10Buffer * This, - /* [annotation] */ - __in D3D10_MAP MapType, - /* [annotation] */ - __in UINT MapFlags, - /* [annotation] */ - __out void **ppData); - - void ( STDMETHODCALLTYPE *Unmap )( - ID3D10Buffer * This); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D10Buffer * This, - /* [annotation] */ - __out D3D10_BUFFER_DESC *pDesc); - - END_INTERFACE - } ID3D10BufferVtbl; - - interface ID3D10Buffer - { - CONST_VTBL struct ID3D10BufferVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10Buffer_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10Buffer_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10Buffer_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10Buffer_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D10Buffer_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D10Buffer_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D10Buffer_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D10Buffer_GetType(This,rType) \ - ( (This)->lpVtbl -> GetType(This,rType) ) - -#define ID3D10Buffer_SetEvictionPriority(This,EvictionPriority) \ - ( (This)->lpVtbl -> SetEvictionPriority(This,EvictionPriority) ) - -#define ID3D10Buffer_GetEvictionPriority(This) \ - ( (This)->lpVtbl -> GetEvictionPriority(This) ) - - -#define ID3D10Buffer_Map(This,MapType,MapFlags,ppData) \ - ( (This)->lpVtbl -> Map(This,MapType,MapFlags,ppData) ) - -#define ID3D10Buffer_Unmap(This) \ - ( (This)->lpVtbl -> Unmap(This) ) - -#define ID3D10Buffer_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10Buffer_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d10_0000_0006 */ -/* [local] */ - -typedef struct D3D10_TEXTURE1D_DESC - { - UINT Width; - UINT MipLevels; - UINT ArraySize; - DXGI_FORMAT Format; - D3D10_USAGE Usage; - UINT BindFlags; - UINT CPUAccessFlags; - UINT MiscFlags; - } D3D10_TEXTURE1D_DESC; - -#if !defined( D3D10_NO_HELPERS ) && defined( __cplusplus ) -struct CD3D10_TEXTURE1D_DESC : public D3D10_TEXTURE1D_DESC -{ - CD3D10_TEXTURE1D_DESC() - {} - explicit CD3D10_TEXTURE1D_DESC( const D3D10_TEXTURE1D_DESC& o ) : - D3D10_TEXTURE1D_DESC( o ) - {} - explicit CD3D10_TEXTURE1D_DESC( - DXGI_FORMAT format, - UINT width, - UINT arraySize = 1, - UINT mipLevels = 0, - UINT bindFlags = D3D10_BIND_SHADER_RESOURCE, - D3D10_USAGE usage = D3D10_USAGE_DEFAULT, - UINT cpuaccessFlags= 0, - UINT miscFlags = 0 ) - { - Width = width; - MipLevels = mipLevels; - ArraySize = arraySize; - Format = format; - Usage = usage; - BindFlags = bindFlags; - CPUAccessFlags = cpuaccessFlags; - MiscFlags = miscFlags; - } - ~CD3D10_TEXTURE1D_DESC() {} - operator const D3D10_TEXTURE1D_DESC&() const { return *this; } -}; -#endif - - -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0006_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0006_v0_0_s_ifspec; - -#ifndef __ID3D10Texture1D_INTERFACE_DEFINED__ -#define __ID3D10Texture1D_INTERFACE_DEFINED__ - -/* interface ID3D10Texture1D */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10Texture1D; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("9B7E4C03-342C-4106-A19F-4F2704F689F0") - ID3D10Texture1D : public ID3D10Resource - { - public: - virtual HRESULT STDMETHODCALLTYPE Map( - /* [annotation] */ - __in UINT Subresource, - /* [annotation] */ - __in D3D10_MAP MapType, - /* [annotation] */ - __in UINT MapFlags, - /* [annotation] */ - __out void **ppData) = 0; - - virtual void STDMETHODCALLTYPE Unmap( - /* [annotation] */ - __in UINT Subresource) = 0; - - virtual void STDMETHODCALLTYPE GetDesc( - /* [annotation] */ - __out D3D10_TEXTURE1D_DESC *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D10Texture1DVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10Texture1D * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10Texture1D * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10Texture1D * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D10Texture1D * This, - /* [annotation] */ - __out ID3D10Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D10Texture1D * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D10Texture1D * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D10Texture1D * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetType )( - ID3D10Texture1D * This, - /* [annotation] */ - __out D3D10_RESOURCE_DIMENSION *rType); - - void ( STDMETHODCALLTYPE *SetEvictionPriority )( - ID3D10Texture1D * This, - /* [annotation] */ - __in UINT EvictionPriority); - - UINT ( STDMETHODCALLTYPE *GetEvictionPriority )( - ID3D10Texture1D * This); - - HRESULT ( STDMETHODCALLTYPE *Map )( - ID3D10Texture1D * This, - /* [annotation] */ - __in UINT Subresource, - /* [annotation] */ - __in D3D10_MAP MapType, - /* [annotation] */ - __in UINT MapFlags, - /* [annotation] */ - __out void **ppData); - - void ( STDMETHODCALLTYPE *Unmap )( - ID3D10Texture1D * This, - /* [annotation] */ - __in UINT Subresource); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D10Texture1D * This, - /* [annotation] */ - __out D3D10_TEXTURE1D_DESC *pDesc); - - END_INTERFACE - } ID3D10Texture1DVtbl; - - interface ID3D10Texture1D - { - CONST_VTBL struct ID3D10Texture1DVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10Texture1D_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10Texture1D_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10Texture1D_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10Texture1D_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D10Texture1D_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D10Texture1D_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D10Texture1D_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D10Texture1D_GetType(This,rType) \ - ( (This)->lpVtbl -> GetType(This,rType) ) - -#define ID3D10Texture1D_SetEvictionPriority(This,EvictionPriority) \ - ( (This)->lpVtbl -> SetEvictionPriority(This,EvictionPriority) ) - -#define ID3D10Texture1D_GetEvictionPriority(This) \ - ( (This)->lpVtbl -> GetEvictionPriority(This) ) - - -#define ID3D10Texture1D_Map(This,Subresource,MapType,MapFlags,ppData) \ - ( (This)->lpVtbl -> Map(This,Subresource,MapType,MapFlags,ppData) ) - -#define ID3D10Texture1D_Unmap(This,Subresource) \ - ( (This)->lpVtbl -> Unmap(This,Subresource) ) - -#define ID3D10Texture1D_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10Texture1D_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d10_0000_0007 */ -/* [local] */ - -typedef struct D3D10_TEXTURE2D_DESC - { - UINT Width; - UINT Height; - UINT MipLevels; - UINT ArraySize; - DXGI_FORMAT Format; - DXGI_SAMPLE_DESC SampleDesc; - D3D10_USAGE Usage; - UINT BindFlags; - UINT CPUAccessFlags; - UINT MiscFlags; - } D3D10_TEXTURE2D_DESC; - -#if !defined( D3D10_NO_HELPERS ) && defined( __cplusplus ) -struct CD3D10_TEXTURE2D_DESC : public D3D10_TEXTURE2D_DESC -{ - CD3D10_TEXTURE2D_DESC() - {} - explicit CD3D10_TEXTURE2D_DESC( const D3D10_TEXTURE2D_DESC& o ) : - D3D10_TEXTURE2D_DESC( o ) - {} - explicit CD3D10_TEXTURE2D_DESC( - DXGI_FORMAT format, - UINT width, - UINT height, - UINT arraySize = 1, - UINT mipLevels = 0, - UINT bindFlags = D3D10_BIND_SHADER_RESOURCE, - D3D10_USAGE usage = D3D10_USAGE_DEFAULT, - UINT cpuaccessFlags = 0, - UINT sampleCount = 1, - UINT sampleQuality = 0, - UINT miscFlags = 0 ) - { - Width = width; - Height = height; - MipLevels = mipLevels; - ArraySize = arraySize; - Format = format; - SampleDesc.Count = sampleCount; - SampleDesc.Quality = sampleQuality; - Usage = usage; - BindFlags = bindFlags; - CPUAccessFlags = cpuaccessFlags; - MiscFlags = miscFlags; - } - ~CD3D10_TEXTURE2D_DESC() {} - operator const D3D10_TEXTURE2D_DESC&() const { return *this; } -}; -#endif -typedef struct D3D10_MAPPED_TEXTURE2D - { - void *pData; - UINT RowPitch; - } D3D10_MAPPED_TEXTURE2D; - - - -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0007_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0007_v0_0_s_ifspec; - -#ifndef __ID3D10Texture2D_INTERFACE_DEFINED__ -#define __ID3D10Texture2D_INTERFACE_DEFINED__ - -/* interface ID3D10Texture2D */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10Texture2D; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("9B7E4C04-342C-4106-A19F-4F2704F689F0") - ID3D10Texture2D : public ID3D10Resource - { - public: - virtual HRESULT STDMETHODCALLTYPE Map( - /* [annotation] */ - __in UINT Subresource, - /* [annotation] */ - __in D3D10_MAP MapType, - /* [annotation] */ - __in UINT MapFlags, - /* [annotation] */ - __out D3D10_MAPPED_TEXTURE2D *pMappedTex2D) = 0; - - virtual void STDMETHODCALLTYPE Unmap( - /* [annotation] */ - __in UINT Subresource) = 0; - - virtual void STDMETHODCALLTYPE GetDesc( - /* [annotation] */ - __out D3D10_TEXTURE2D_DESC *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D10Texture2DVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10Texture2D * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10Texture2D * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10Texture2D * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D10Texture2D * This, - /* [annotation] */ - __out ID3D10Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D10Texture2D * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D10Texture2D * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D10Texture2D * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetType )( - ID3D10Texture2D * This, - /* [annotation] */ - __out D3D10_RESOURCE_DIMENSION *rType); - - void ( STDMETHODCALLTYPE *SetEvictionPriority )( - ID3D10Texture2D * This, - /* [annotation] */ - __in UINT EvictionPriority); - - UINT ( STDMETHODCALLTYPE *GetEvictionPriority )( - ID3D10Texture2D * This); - - HRESULT ( STDMETHODCALLTYPE *Map )( - ID3D10Texture2D * This, - /* [annotation] */ - __in UINT Subresource, - /* [annotation] */ - __in D3D10_MAP MapType, - /* [annotation] */ - __in UINT MapFlags, - /* [annotation] */ - __out D3D10_MAPPED_TEXTURE2D *pMappedTex2D); - - void ( STDMETHODCALLTYPE *Unmap )( - ID3D10Texture2D * This, - /* [annotation] */ - __in UINT Subresource); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D10Texture2D * This, - /* [annotation] */ - __out D3D10_TEXTURE2D_DESC *pDesc); - - END_INTERFACE - } ID3D10Texture2DVtbl; - - interface ID3D10Texture2D - { - CONST_VTBL struct ID3D10Texture2DVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10Texture2D_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10Texture2D_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10Texture2D_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10Texture2D_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D10Texture2D_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D10Texture2D_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D10Texture2D_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D10Texture2D_GetType(This,rType) \ - ( (This)->lpVtbl -> GetType(This,rType) ) - -#define ID3D10Texture2D_SetEvictionPriority(This,EvictionPriority) \ - ( (This)->lpVtbl -> SetEvictionPriority(This,EvictionPriority) ) - -#define ID3D10Texture2D_GetEvictionPriority(This) \ - ( (This)->lpVtbl -> GetEvictionPriority(This) ) - - -#define ID3D10Texture2D_Map(This,Subresource,MapType,MapFlags,pMappedTex2D) \ - ( (This)->lpVtbl -> Map(This,Subresource,MapType,MapFlags,pMappedTex2D) ) - -#define ID3D10Texture2D_Unmap(This,Subresource) \ - ( (This)->lpVtbl -> Unmap(This,Subresource) ) - -#define ID3D10Texture2D_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10Texture2D_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d10_0000_0008 */ -/* [local] */ - -typedef struct D3D10_TEXTURE3D_DESC - { - UINT Width; - UINT Height; - UINT Depth; - UINT MipLevels; - DXGI_FORMAT Format; - D3D10_USAGE Usage; - UINT BindFlags; - UINT CPUAccessFlags; - UINT MiscFlags; - } D3D10_TEXTURE3D_DESC; - -#if !defined( D3D10_NO_HELPERS ) && defined( __cplusplus ) -struct CD3D10_TEXTURE3D_DESC : public D3D10_TEXTURE3D_DESC -{ - CD3D10_TEXTURE3D_DESC() - {} - explicit CD3D10_TEXTURE3D_DESC( const D3D10_TEXTURE3D_DESC& o ) : - D3D10_TEXTURE3D_DESC( o ) - {} - explicit CD3D10_TEXTURE3D_DESC( - DXGI_FORMAT format, - UINT width, - UINT height, - UINT depth, - UINT mipLevels = 0, - UINT bindFlags = D3D10_BIND_SHADER_RESOURCE, - D3D10_USAGE usage = D3D10_USAGE_DEFAULT, - UINT cpuaccessFlags = 0, - UINT miscFlags = 0 ) - { - Width = width; - Height = height; - Depth = depth; - MipLevels = mipLevels; - Format = format; - Usage = usage; - BindFlags = bindFlags; - CPUAccessFlags = cpuaccessFlags; - MiscFlags = miscFlags; - } - ~CD3D10_TEXTURE3D_DESC() {} - operator const D3D10_TEXTURE3D_DESC&() const { return *this; } -}; -#endif -typedef struct D3D10_MAPPED_TEXTURE3D - { - void *pData; - UINT RowPitch; - UINT DepthPitch; - } D3D10_MAPPED_TEXTURE3D; - - - -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0008_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0008_v0_0_s_ifspec; - -#ifndef __ID3D10Texture3D_INTERFACE_DEFINED__ -#define __ID3D10Texture3D_INTERFACE_DEFINED__ - -/* interface ID3D10Texture3D */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10Texture3D; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("9B7E4C05-342C-4106-A19F-4F2704F689F0") - ID3D10Texture3D : public ID3D10Resource - { - public: - virtual HRESULT STDMETHODCALLTYPE Map( - /* [annotation] */ - __in UINT Subresource, - /* [annotation] */ - __in D3D10_MAP MapType, - /* [annotation] */ - __in UINT MapFlags, - /* [annotation] */ - __out D3D10_MAPPED_TEXTURE3D *pMappedTex3D) = 0; - - virtual void STDMETHODCALLTYPE Unmap( - /* [annotation] */ - __in UINT Subresource) = 0; - - virtual void STDMETHODCALLTYPE GetDesc( - /* [annotation] */ - __out D3D10_TEXTURE3D_DESC *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D10Texture3DVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10Texture3D * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10Texture3D * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10Texture3D * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D10Texture3D * This, - /* [annotation] */ - __out ID3D10Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D10Texture3D * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D10Texture3D * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D10Texture3D * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetType )( - ID3D10Texture3D * This, - /* [annotation] */ - __out D3D10_RESOURCE_DIMENSION *rType); - - void ( STDMETHODCALLTYPE *SetEvictionPriority )( - ID3D10Texture3D * This, - /* [annotation] */ - __in UINT EvictionPriority); - - UINT ( STDMETHODCALLTYPE *GetEvictionPriority )( - ID3D10Texture3D * This); - - HRESULT ( STDMETHODCALLTYPE *Map )( - ID3D10Texture3D * This, - /* [annotation] */ - __in UINT Subresource, - /* [annotation] */ - __in D3D10_MAP MapType, - /* [annotation] */ - __in UINT MapFlags, - /* [annotation] */ - __out D3D10_MAPPED_TEXTURE3D *pMappedTex3D); - - void ( STDMETHODCALLTYPE *Unmap )( - ID3D10Texture3D * This, - /* [annotation] */ - __in UINT Subresource); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D10Texture3D * This, - /* [annotation] */ - __out D3D10_TEXTURE3D_DESC *pDesc); - - END_INTERFACE - } ID3D10Texture3DVtbl; - - interface ID3D10Texture3D - { - CONST_VTBL struct ID3D10Texture3DVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10Texture3D_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10Texture3D_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10Texture3D_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10Texture3D_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D10Texture3D_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D10Texture3D_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D10Texture3D_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D10Texture3D_GetType(This,rType) \ - ( (This)->lpVtbl -> GetType(This,rType) ) - -#define ID3D10Texture3D_SetEvictionPriority(This,EvictionPriority) \ - ( (This)->lpVtbl -> SetEvictionPriority(This,EvictionPriority) ) - -#define ID3D10Texture3D_GetEvictionPriority(This) \ - ( (This)->lpVtbl -> GetEvictionPriority(This) ) - - -#define ID3D10Texture3D_Map(This,Subresource,MapType,MapFlags,pMappedTex3D) \ - ( (This)->lpVtbl -> Map(This,Subresource,MapType,MapFlags,pMappedTex3D) ) - -#define ID3D10Texture3D_Unmap(This,Subresource) \ - ( (This)->lpVtbl -> Unmap(This,Subresource) ) - -#define ID3D10Texture3D_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10Texture3D_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d10_0000_0009 */ -/* [local] */ - -typedef -enum D3D10_TEXTURECUBE_FACE - { D3D10_TEXTURECUBE_FACE_POSITIVE_X = 0, - D3D10_TEXTURECUBE_FACE_NEGATIVE_X = 1, - D3D10_TEXTURECUBE_FACE_POSITIVE_Y = 2, - D3D10_TEXTURECUBE_FACE_NEGATIVE_Y = 3, - D3D10_TEXTURECUBE_FACE_POSITIVE_Z = 4, - D3D10_TEXTURECUBE_FACE_NEGATIVE_Z = 5 - } D3D10_TEXTURECUBE_FACE; - - - -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0009_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0009_v0_0_s_ifspec; - -#ifndef __ID3D10View_INTERFACE_DEFINED__ -#define __ID3D10View_INTERFACE_DEFINED__ - -/* interface ID3D10View */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10View; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("C902B03F-60A7-49BA-9936-2A3AB37A7E33") - ID3D10View : public ID3D10DeviceChild - { - public: - virtual void STDMETHODCALLTYPE GetResource( - /* [annotation] */ - __out ID3D10Resource **ppResource) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D10ViewVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10View * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10View * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10View * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D10View * This, - /* [annotation] */ - __out ID3D10Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D10View * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D10View * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D10View * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetResource )( - ID3D10View * This, - /* [annotation] */ - __out ID3D10Resource **ppResource); - - END_INTERFACE - } ID3D10ViewVtbl; - - interface ID3D10View - { - CONST_VTBL struct ID3D10ViewVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10View_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10View_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10View_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10View_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D10View_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D10View_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D10View_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D10View_GetResource(This,ppResource) \ - ( (This)->lpVtbl -> GetResource(This,ppResource) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10View_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d10_0000_0010 */ -/* [local] */ - -typedef struct D3D10_BUFFER_SRV - { - union - { - UINT FirstElement; - UINT ElementOffset; - } ; - union - { - UINT NumElements; - UINT ElementWidth; - } ; - } D3D10_BUFFER_SRV; - -typedef struct D3D10_TEX1D_SRV - { - UINT MostDetailedMip; - UINT MipLevels; - } D3D10_TEX1D_SRV; - -typedef struct D3D10_TEX1D_ARRAY_SRV - { - UINT MostDetailedMip; - UINT MipLevels; - UINT FirstArraySlice; - UINT ArraySize; - } D3D10_TEX1D_ARRAY_SRV; - -typedef struct D3D10_TEX2D_SRV - { - UINT MostDetailedMip; - UINT MipLevels; - } D3D10_TEX2D_SRV; - -typedef struct D3D10_TEX2D_ARRAY_SRV - { - UINT MostDetailedMip; - UINT MipLevels; - UINT FirstArraySlice; - UINT ArraySize; - } D3D10_TEX2D_ARRAY_SRV; - -typedef struct D3D10_TEX3D_SRV - { - UINT MostDetailedMip; - UINT MipLevels; - } D3D10_TEX3D_SRV; - -typedef struct D3D10_TEXCUBE_SRV - { - UINT MostDetailedMip; - UINT MipLevels; - } D3D10_TEXCUBE_SRV; - -typedef struct D3D10_TEX2DMS_SRV - { - UINT UnusedField_NothingToDefine; - } D3D10_TEX2DMS_SRV; - -typedef struct D3D10_TEX2DMS_ARRAY_SRV - { - UINT FirstArraySlice; - UINT ArraySize; - } D3D10_TEX2DMS_ARRAY_SRV; - -typedef struct D3D10_SHADER_RESOURCE_VIEW_DESC - { - DXGI_FORMAT Format; - D3D10_SRV_DIMENSION ViewDimension; - union - { - D3D10_BUFFER_SRV Buffer; - D3D10_TEX1D_SRV Texture1D; - D3D10_TEX1D_ARRAY_SRV Texture1DArray; - D3D10_TEX2D_SRV Texture2D; - D3D10_TEX2D_ARRAY_SRV Texture2DArray; - D3D10_TEX2DMS_SRV Texture2DMS; - D3D10_TEX2DMS_ARRAY_SRV Texture2DMSArray; - D3D10_TEX3D_SRV Texture3D; - D3D10_TEXCUBE_SRV TextureCube; - } ; - } D3D10_SHADER_RESOURCE_VIEW_DESC; - - - -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0010_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0010_v0_0_s_ifspec; - -#ifndef __ID3D10ShaderResourceView_INTERFACE_DEFINED__ -#define __ID3D10ShaderResourceView_INTERFACE_DEFINED__ - -/* interface ID3D10ShaderResourceView */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10ShaderResourceView; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("9B7E4C07-342C-4106-A19F-4F2704F689F0") - ID3D10ShaderResourceView : public ID3D10View - { - public: - virtual void STDMETHODCALLTYPE GetDesc( - /* [annotation] */ - __out D3D10_SHADER_RESOURCE_VIEW_DESC *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D10ShaderResourceViewVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10ShaderResourceView * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10ShaderResourceView * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10ShaderResourceView * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D10ShaderResourceView * This, - /* [annotation] */ - __out ID3D10Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D10ShaderResourceView * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D10ShaderResourceView * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D10ShaderResourceView * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetResource )( - ID3D10ShaderResourceView * This, - /* [annotation] */ - __out ID3D10Resource **ppResource); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D10ShaderResourceView * This, - /* [annotation] */ - __out D3D10_SHADER_RESOURCE_VIEW_DESC *pDesc); - - END_INTERFACE - } ID3D10ShaderResourceViewVtbl; - - interface ID3D10ShaderResourceView - { - CONST_VTBL struct ID3D10ShaderResourceViewVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10ShaderResourceView_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10ShaderResourceView_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10ShaderResourceView_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10ShaderResourceView_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D10ShaderResourceView_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D10ShaderResourceView_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D10ShaderResourceView_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D10ShaderResourceView_GetResource(This,ppResource) \ - ( (This)->lpVtbl -> GetResource(This,ppResource) ) - - -#define ID3D10ShaderResourceView_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10ShaderResourceView_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d10_0000_0011 */ -/* [local] */ - -typedef struct D3D10_BUFFER_RTV - { - union - { - UINT FirstElement; - UINT ElementOffset; - } ; - union - { - UINT NumElements; - UINT ElementWidth; - } ; - } D3D10_BUFFER_RTV; - -typedef struct D3D10_TEX1D_RTV - { - UINT MipSlice; - } D3D10_TEX1D_RTV; - -typedef struct D3D10_TEX1D_ARRAY_RTV - { - UINT MipSlice; - UINT FirstArraySlice; - UINT ArraySize; - } D3D10_TEX1D_ARRAY_RTV; - -typedef struct D3D10_TEX2D_RTV - { - UINT MipSlice; - } D3D10_TEX2D_RTV; - -typedef struct D3D10_TEX2DMS_RTV - { - UINT UnusedField_NothingToDefine; - } D3D10_TEX2DMS_RTV; - -typedef struct D3D10_TEX2D_ARRAY_RTV - { - UINT MipSlice; - UINT FirstArraySlice; - UINT ArraySize; - } D3D10_TEX2D_ARRAY_RTV; - -typedef struct D3D10_TEX2DMS_ARRAY_RTV - { - UINT FirstArraySlice; - UINT ArraySize; - } D3D10_TEX2DMS_ARRAY_RTV; - -typedef struct D3D10_TEX3D_RTV - { - UINT MipSlice; - UINT FirstWSlice; - UINT WSize; - } D3D10_TEX3D_RTV; - -typedef struct D3D10_RENDER_TARGET_VIEW_DESC - { - DXGI_FORMAT Format; - D3D10_RTV_DIMENSION ViewDimension; - union - { - D3D10_BUFFER_RTV Buffer; - D3D10_TEX1D_RTV Texture1D; - D3D10_TEX1D_ARRAY_RTV Texture1DArray; - D3D10_TEX2D_RTV Texture2D; - D3D10_TEX2D_ARRAY_RTV Texture2DArray; - D3D10_TEX2DMS_RTV Texture2DMS; - D3D10_TEX2DMS_ARRAY_RTV Texture2DMSArray; - D3D10_TEX3D_RTV Texture3D; - } ; - } D3D10_RENDER_TARGET_VIEW_DESC; - - - -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0011_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0011_v0_0_s_ifspec; - -#ifndef __ID3D10RenderTargetView_INTERFACE_DEFINED__ -#define __ID3D10RenderTargetView_INTERFACE_DEFINED__ - -/* interface ID3D10RenderTargetView */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10RenderTargetView; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("9B7E4C08-342C-4106-A19F-4F2704F689F0") - ID3D10RenderTargetView : public ID3D10View - { - public: - virtual void STDMETHODCALLTYPE GetDesc( - /* [annotation] */ - __out D3D10_RENDER_TARGET_VIEW_DESC *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D10RenderTargetViewVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10RenderTargetView * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10RenderTargetView * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10RenderTargetView * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D10RenderTargetView * This, - /* [annotation] */ - __out ID3D10Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D10RenderTargetView * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D10RenderTargetView * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D10RenderTargetView * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetResource )( - ID3D10RenderTargetView * This, - /* [annotation] */ - __out ID3D10Resource **ppResource); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D10RenderTargetView * This, - /* [annotation] */ - __out D3D10_RENDER_TARGET_VIEW_DESC *pDesc); - - END_INTERFACE - } ID3D10RenderTargetViewVtbl; - - interface ID3D10RenderTargetView - { - CONST_VTBL struct ID3D10RenderTargetViewVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10RenderTargetView_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10RenderTargetView_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10RenderTargetView_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10RenderTargetView_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D10RenderTargetView_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D10RenderTargetView_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D10RenderTargetView_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D10RenderTargetView_GetResource(This,ppResource) \ - ( (This)->lpVtbl -> GetResource(This,ppResource) ) - - -#define ID3D10RenderTargetView_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10RenderTargetView_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d10_0000_0012 */ -/* [local] */ - -typedef struct D3D10_TEX1D_DSV - { - UINT MipSlice; - } D3D10_TEX1D_DSV; - -typedef struct D3D10_TEX1D_ARRAY_DSV - { - UINT MipSlice; - UINT FirstArraySlice; - UINT ArraySize; - } D3D10_TEX1D_ARRAY_DSV; - -typedef struct D3D10_TEX2D_DSV - { - UINT MipSlice; - } D3D10_TEX2D_DSV; - -typedef struct D3D10_TEX2D_ARRAY_DSV - { - UINT MipSlice; - UINT FirstArraySlice; - UINT ArraySize; - } D3D10_TEX2D_ARRAY_DSV; - -typedef struct D3D10_TEX2DMS_DSV - { - UINT UnusedField_NothingToDefine; - } D3D10_TEX2DMS_DSV; - -typedef struct D3D10_TEX2DMS_ARRAY_DSV - { - UINT FirstArraySlice; - UINT ArraySize; - } D3D10_TEX2DMS_ARRAY_DSV; - -typedef struct D3D10_DEPTH_STENCIL_VIEW_DESC - { - DXGI_FORMAT Format; - D3D10_DSV_DIMENSION ViewDimension; - union - { - D3D10_TEX1D_DSV Texture1D; - D3D10_TEX1D_ARRAY_DSV Texture1DArray; - D3D10_TEX2D_DSV Texture2D; - D3D10_TEX2D_ARRAY_DSV Texture2DArray; - D3D10_TEX2DMS_DSV Texture2DMS; - D3D10_TEX2DMS_ARRAY_DSV Texture2DMSArray; - } ; - } D3D10_DEPTH_STENCIL_VIEW_DESC; - - - -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0012_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0012_v0_0_s_ifspec; - -#ifndef __ID3D10DepthStencilView_INTERFACE_DEFINED__ -#define __ID3D10DepthStencilView_INTERFACE_DEFINED__ - -/* interface ID3D10DepthStencilView */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10DepthStencilView; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("9B7E4C09-342C-4106-A19F-4F2704F689F0") - ID3D10DepthStencilView : public ID3D10View - { - public: - virtual void STDMETHODCALLTYPE GetDesc( - /* [annotation] */ - __out D3D10_DEPTH_STENCIL_VIEW_DESC *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D10DepthStencilViewVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10DepthStencilView * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10DepthStencilView * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10DepthStencilView * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D10DepthStencilView * This, - /* [annotation] */ - __out ID3D10Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D10DepthStencilView * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D10DepthStencilView * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D10DepthStencilView * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetResource )( - ID3D10DepthStencilView * This, - /* [annotation] */ - __out ID3D10Resource **ppResource); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D10DepthStencilView * This, - /* [annotation] */ - __out D3D10_DEPTH_STENCIL_VIEW_DESC *pDesc); - - END_INTERFACE - } ID3D10DepthStencilViewVtbl; - - interface ID3D10DepthStencilView - { - CONST_VTBL struct ID3D10DepthStencilViewVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10DepthStencilView_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10DepthStencilView_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10DepthStencilView_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10DepthStencilView_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D10DepthStencilView_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D10DepthStencilView_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D10DepthStencilView_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D10DepthStencilView_GetResource(This,ppResource) \ - ( (This)->lpVtbl -> GetResource(This,ppResource) ) - - -#define ID3D10DepthStencilView_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10DepthStencilView_INTERFACE_DEFINED__ */ - - -#ifndef __ID3D10VertexShader_INTERFACE_DEFINED__ -#define __ID3D10VertexShader_INTERFACE_DEFINED__ - -/* interface ID3D10VertexShader */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10VertexShader; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("9B7E4C0A-342C-4106-A19F-4F2704F689F0") - ID3D10VertexShader : public ID3D10DeviceChild - { - public: - }; - -#else /* C style interface */ - - typedef struct ID3D10VertexShaderVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10VertexShader * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10VertexShader * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10VertexShader * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D10VertexShader * This, - /* [annotation] */ - __out ID3D10Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D10VertexShader * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D10VertexShader * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D10VertexShader * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - END_INTERFACE - } ID3D10VertexShaderVtbl; - - interface ID3D10VertexShader - { - CONST_VTBL struct ID3D10VertexShaderVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10VertexShader_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10VertexShader_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10VertexShader_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10VertexShader_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D10VertexShader_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D10VertexShader_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D10VertexShader_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10VertexShader_INTERFACE_DEFINED__ */ - - -#ifndef __ID3D10GeometryShader_INTERFACE_DEFINED__ -#define __ID3D10GeometryShader_INTERFACE_DEFINED__ - -/* interface ID3D10GeometryShader */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10GeometryShader; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("6316BE88-54CD-4040-AB44-20461BC81F68") - ID3D10GeometryShader : public ID3D10DeviceChild - { - public: - }; - -#else /* C style interface */ - - typedef struct ID3D10GeometryShaderVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10GeometryShader * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10GeometryShader * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10GeometryShader * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D10GeometryShader * This, - /* [annotation] */ - __out ID3D10Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D10GeometryShader * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D10GeometryShader * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D10GeometryShader * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - END_INTERFACE - } ID3D10GeometryShaderVtbl; - - interface ID3D10GeometryShader - { - CONST_VTBL struct ID3D10GeometryShaderVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10GeometryShader_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10GeometryShader_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10GeometryShader_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10GeometryShader_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D10GeometryShader_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D10GeometryShader_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D10GeometryShader_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10GeometryShader_INTERFACE_DEFINED__ */ - - -#ifndef __ID3D10PixelShader_INTERFACE_DEFINED__ -#define __ID3D10PixelShader_INTERFACE_DEFINED__ - -/* interface ID3D10PixelShader */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10PixelShader; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("4968B601-9D00-4cde-8346-8E7F675819B6") - ID3D10PixelShader : public ID3D10DeviceChild - { - public: - }; - -#else /* C style interface */ - - typedef struct ID3D10PixelShaderVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10PixelShader * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10PixelShader * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10PixelShader * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D10PixelShader * This, - /* [annotation] */ - __out ID3D10Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D10PixelShader * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D10PixelShader * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D10PixelShader * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - END_INTERFACE - } ID3D10PixelShaderVtbl; - - interface ID3D10PixelShader - { - CONST_VTBL struct ID3D10PixelShaderVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10PixelShader_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10PixelShader_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10PixelShader_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10PixelShader_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D10PixelShader_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D10PixelShader_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D10PixelShader_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10PixelShader_INTERFACE_DEFINED__ */ - - -#ifndef __ID3D10InputLayout_INTERFACE_DEFINED__ -#define __ID3D10InputLayout_INTERFACE_DEFINED__ - -/* interface ID3D10InputLayout */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10InputLayout; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("9B7E4C0B-342C-4106-A19F-4F2704F689F0") - ID3D10InputLayout : public ID3D10DeviceChild - { - public: - }; - -#else /* C style interface */ - - typedef struct ID3D10InputLayoutVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10InputLayout * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10InputLayout * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10InputLayout * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D10InputLayout * This, - /* [annotation] */ - __out ID3D10Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D10InputLayout * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D10InputLayout * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D10InputLayout * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - END_INTERFACE - } ID3D10InputLayoutVtbl; - - interface ID3D10InputLayout - { - CONST_VTBL struct ID3D10InputLayoutVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10InputLayout_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10InputLayout_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10InputLayout_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10InputLayout_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D10InputLayout_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D10InputLayout_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D10InputLayout_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10InputLayout_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d10_0000_0017 */ -/* [local] */ - -typedef -enum D3D10_FILTER - { D3D10_FILTER_MIN_MAG_MIP_POINT = 0, - D3D10_FILTER_MIN_MAG_POINT_MIP_LINEAR = 0x1, - D3D10_FILTER_MIN_POINT_MAG_LINEAR_MIP_POINT = 0x4, - D3D10_FILTER_MIN_POINT_MAG_MIP_LINEAR = 0x5, - D3D10_FILTER_MIN_LINEAR_MAG_MIP_POINT = 0x10, - D3D10_FILTER_MIN_LINEAR_MAG_POINT_MIP_LINEAR = 0x11, - D3D10_FILTER_MIN_MAG_LINEAR_MIP_POINT = 0x14, - D3D10_FILTER_MIN_MAG_MIP_LINEAR = 0x15, - D3D10_FILTER_ANISOTROPIC = 0x55, - D3D10_FILTER_COMPARISON_MIN_MAG_MIP_POINT = 0x80, - D3D10_FILTER_COMPARISON_MIN_MAG_POINT_MIP_LINEAR = 0x81, - D3D10_FILTER_COMPARISON_MIN_POINT_MAG_LINEAR_MIP_POINT = 0x84, - D3D10_FILTER_COMPARISON_MIN_POINT_MAG_MIP_LINEAR = 0x85, - D3D10_FILTER_COMPARISON_MIN_LINEAR_MAG_MIP_POINT = 0x90, - D3D10_FILTER_COMPARISON_MIN_LINEAR_MAG_POINT_MIP_LINEAR = 0x91, - D3D10_FILTER_COMPARISON_MIN_MAG_LINEAR_MIP_POINT = 0x94, - D3D10_FILTER_COMPARISON_MIN_MAG_MIP_LINEAR = 0x95, - D3D10_FILTER_COMPARISON_ANISOTROPIC = 0xd5, - D3D10_FILTER_TEXT_1BIT = 0x80000000 - } D3D10_FILTER; - -typedef -enum D3D10_FILTER_TYPE - { D3D10_FILTER_TYPE_POINT = 0, - D3D10_FILTER_TYPE_LINEAR = 1 - } D3D10_FILTER_TYPE; - -#define D3D10_FILTER_TYPE_MASK ( 0x3 ) - -#define D3D10_MIN_FILTER_SHIFT ( 4 ) - -#define D3D10_MAG_FILTER_SHIFT ( 2 ) - -#define D3D10_MIP_FILTER_SHIFT ( 0 ) - -#define D3D10_COMPARISON_FILTERING_BIT ( 0x80 ) - -#define D3D10_ANISOTROPIC_FILTERING_BIT ( 0x40 ) - -#define D3D10_TEXT_1BIT_BIT ( 0x80000000 ) - -#define D3D10_ENCODE_BASIC_FILTER( min, mag, mip, bComparison ) \ - ( ( D3D10_FILTER ) ( \ - ( ( bComparison ) ? D3D10_COMPARISON_FILTERING_BIT : 0 ) | \ - ( ( ( min ) & D3D10_FILTER_TYPE_MASK ) << D3D10_MIN_FILTER_SHIFT ) | \ - ( ( ( mag ) & D3D10_FILTER_TYPE_MASK ) << D3D10_MAG_FILTER_SHIFT ) | \ - ( ( ( mip ) & D3D10_FILTER_TYPE_MASK ) << D3D10_MIP_FILTER_SHIFT ) ) ) -#define D3D10_ENCODE_ANISOTROPIC_FILTER( bComparison ) \ - ( ( D3D10_FILTER ) ( \ - D3D10_ANISOTROPIC_FILTERING_BIT | \ - D3D10_ENCODE_BASIC_FILTER( D3D10_FILTER_TYPE_LINEAR, \ - D3D10_FILTER_TYPE_LINEAR, \ - D3D10_FILTER_TYPE_LINEAR, \ - bComparison ) ) ) -#define D3D10_DECODE_MIN_FILTER( d3d10Filter ) \ - ( ( D3D10_FILTER_TYPE ) \ - ( ( ( d3d10Filter ) >> D3D10_MIN_FILTER_SHIFT ) & D3D10_FILTER_TYPE_MASK ) ) -#define D3D10_DECODE_MAG_FILTER( d3d10Filter ) \ - ( ( D3D10_FILTER_TYPE ) \ - ( ( ( d3d10Filter ) >> D3D10_MAG_FILTER_SHIFT ) & D3D10_FILTER_TYPE_MASK ) ) -#define D3D10_DECODE_MIP_FILTER( d3d10Filter ) \ - ( ( D3D10_FILTER_TYPE ) \ - ( ( ( d3d10Filter ) >> D3D10_MIP_FILTER_SHIFT ) & D3D10_FILTER_TYPE_MASK ) ) -#define D3D10_DECODE_IS_COMPARISON_FILTER( d3d10Filter ) \ - ( ( d3d10Filter ) & D3D10_COMPARISON_FILTERING_BIT ) -#define D3D10_DECODE_IS_ANISOTROPIC_FILTER( d3d10Filter ) \ - ( ( ( d3d10Filter ) & D3D10_ANISOTROPIC_FILTERING_BIT ) && \ - ( D3D10_FILTER_TYPE_LINEAR == D3D10_DECODE_MIN_FILTER( d3d10Filter ) ) && \ - ( D3D10_FILTER_TYPE_LINEAR == D3D10_DECODE_MAG_FILTER( d3d10Filter ) ) && \ - ( D3D10_FILTER_TYPE_LINEAR == D3D10_DECODE_MIP_FILTER( d3d10Filter ) ) ) -#define D3D10_DECODE_IS_TEXT_1BIT_FILTER( d3d10Filter ) \ - ( ( d3d10Filter ) == D3D10_TEXT_1BIT_BIT ) -typedef -enum D3D10_TEXTURE_ADDRESS_MODE - { D3D10_TEXTURE_ADDRESS_WRAP = 1, - D3D10_TEXTURE_ADDRESS_MIRROR = 2, - D3D10_TEXTURE_ADDRESS_CLAMP = 3, - D3D10_TEXTURE_ADDRESS_BORDER = 4, - D3D10_TEXTURE_ADDRESS_MIRROR_ONCE = 5 - } D3D10_TEXTURE_ADDRESS_MODE; - -typedef struct D3D10_SAMPLER_DESC - { - D3D10_FILTER Filter; - D3D10_TEXTURE_ADDRESS_MODE AddressU; - D3D10_TEXTURE_ADDRESS_MODE AddressV; - D3D10_TEXTURE_ADDRESS_MODE AddressW; - FLOAT MipLODBias; - UINT MaxAnisotropy; - D3D10_COMPARISON_FUNC ComparisonFunc; - FLOAT BorderColor[ 4 ]; - FLOAT MinLOD; - FLOAT MaxLOD; - } D3D10_SAMPLER_DESC; - - - -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0017_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0017_v0_0_s_ifspec; - -#ifndef __ID3D10SamplerState_INTERFACE_DEFINED__ -#define __ID3D10SamplerState_INTERFACE_DEFINED__ - -/* interface ID3D10SamplerState */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10SamplerState; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("9B7E4C0C-342C-4106-A19F-4F2704F689F0") - ID3D10SamplerState : public ID3D10DeviceChild - { - public: - virtual void STDMETHODCALLTYPE GetDesc( - /* [annotation] */ - __out D3D10_SAMPLER_DESC *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D10SamplerStateVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10SamplerState * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10SamplerState * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10SamplerState * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D10SamplerState * This, - /* [annotation] */ - __out ID3D10Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D10SamplerState * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D10SamplerState * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D10SamplerState * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D10SamplerState * This, - /* [annotation] */ - __out D3D10_SAMPLER_DESC *pDesc); - - END_INTERFACE - } ID3D10SamplerStateVtbl; - - interface ID3D10SamplerState - { - CONST_VTBL struct ID3D10SamplerStateVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10SamplerState_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10SamplerState_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10SamplerState_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10SamplerState_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D10SamplerState_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D10SamplerState_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D10SamplerState_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D10SamplerState_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10SamplerState_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d10_0000_0018 */ -/* [local] */ - -typedef -enum D3D10_FORMAT_SUPPORT - { D3D10_FORMAT_SUPPORT_BUFFER = 0x1, - D3D10_FORMAT_SUPPORT_IA_VERTEX_BUFFER = 0x2, - D3D10_FORMAT_SUPPORT_IA_INDEX_BUFFER = 0x4, - D3D10_FORMAT_SUPPORT_SO_BUFFER = 0x8, - D3D10_FORMAT_SUPPORT_TEXTURE1D = 0x10, - D3D10_FORMAT_SUPPORT_TEXTURE2D = 0x20, - D3D10_FORMAT_SUPPORT_TEXTURE3D = 0x40, - D3D10_FORMAT_SUPPORT_TEXTURECUBE = 0x80, - D3D10_FORMAT_SUPPORT_SHADER_LOAD = 0x100, - D3D10_FORMAT_SUPPORT_SHADER_SAMPLE = 0x200, - D3D10_FORMAT_SUPPORT_SHADER_SAMPLE_COMPARISON = 0x400, - D3D10_FORMAT_SUPPORT_SHADER_SAMPLE_MONO_TEXT = 0x800, - D3D10_FORMAT_SUPPORT_MIP = 0x1000, - D3D10_FORMAT_SUPPORT_MIP_AUTOGEN = 0x2000, - D3D10_FORMAT_SUPPORT_RENDER_TARGET = 0x4000, - D3D10_FORMAT_SUPPORT_BLENDABLE = 0x8000, - D3D10_FORMAT_SUPPORT_DEPTH_STENCIL = 0x10000, - D3D10_FORMAT_SUPPORT_CPU_LOCKABLE = 0x20000, - D3D10_FORMAT_SUPPORT_MULTISAMPLE_RESOLVE = 0x40000, - D3D10_FORMAT_SUPPORT_DISPLAY = 0x80000, - D3D10_FORMAT_SUPPORT_CAST_WITHIN_BIT_LAYOUT = 0x100000, - D3D10_FORMAT_SUPPORT_MULTISAMPLE_RENDERTARGET = 0x200000, - D3D10_FORMAT_SUPPORT_MULTISAMPLE_LOAD = 0x400000, - D3D10_FORMAT_SUPPORT_SHADER_GATHER = 0x800000, - D3D10_FORMAT_SUPPORT_BACK_BUFFER_CAST = 0x1000000 - } D3D10_FORMAT_SUPPORT; - - - -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0018_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0018_v0_0_s_ifspec; - -#ifndef __ID3D10Asynchronous_INTERFACE_DEFINED__ -#define __ID3D10Asynchronous_INTERFACE_DEFINED__ - -/* interface ID3D10Asynchronous */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10Asynchronous; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("9B7E4C0D-342C-4106-A19F-4F2704F689F0") - ID3D10Asynchronous : public ID3D10DeviceChild - { - public: - virtual void STDMETHODCALLTYPE Begin( void) = 0; - - virtual void STDMETHODCALLTYPE End( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetData( - /* [annotation] */ - __out_bcount_opt(DataSize) void *pData, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in UINT GetDataFlags) = 0; - - virtual UINT STDMETHODCALLTYPE GetDataSize( void) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D10AsynchronousVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10Asynchronous * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10Asynchronous * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10Asynchronous * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D10Asynchronous * This, - /* [annotation] */ - __out ID3D10Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D10Asynchronous * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D10Asynchronous * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D10Asynchronous * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *Begin )( - ID3D10Asynchronous * This); - - void ( STDMETHODCALLTYPE *End )( - ID3D10Asynchronous * This); - - HRESULT ( STDMETHODCALLTYPE *GetData )( - ID3D10Asynchronous * This, - /* [annotation] */ - __out_bcount_opt(DataSize) void *pData, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in UINT GetDataFlags); - - UINT ( STDMETHODCALLTYPE *GetDataSize )( - ID3D10Asynchronous * This); - - END_INTERFACE - } ID3D10AsynchronousVtbl; - - interface ID3D10Asynchronous - { - CONST_VTBL struct ID3D10AsynchronousVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10Asynchronous_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10Asynchronous_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10Asynchronous_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10Asynchronous_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D10Asynchronous_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D10Asynchronous_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D10Asynchronous_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D10Asynchronous_Begin(This) \ - ( (This)->lpVtbl -> Begin(This) ) - -#define ID3D10Asynchronous_End(This) \ - ( (This)->lpVtbl -> End(This) ) - -#define ID3D10Asynchronous_GetData(This,pData,DataSize,GetDataFlags) \ - ( (This)->lpVtbl -> GetData(This,pData,DataSize,GetDataFlags) ) - -#define ID3D10Asynchronous_GetDataSize(This) \ - ( (This)->lpVtbl -> GetDataSize(This) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10Asynchronous_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d10_0000_0019 */ -/* [local] */ - -typedef -enum D3D10_ASYNC_GETDATA_FLAG - { D3D10_ASYNC_GETDATA_DONOTFLUSH = 0x1 - } D3D10_ASYNC_GETDATA_FLAG; - -typedef -enum D3D10_QUERY - { D3D10_QUERY_EVENT = 0, - D3D10_QUERY_OCCLUSION = ( D3D10_QUERY_EVENT + 1 ) , - D3D10_QUERY_TIMESTAMP = ( D3D10_QUERY_OCCLUSION + 1 ) , - D3D10_QUERY_TIMESTAMP_DISJOINT = ( D3D10_QUERY_TIMESTAMP + 1 ) , - D3D10_QUERY_PIPELINE_STATISTICS = ( D3D10_QUERY_TIMESTAMP_DISJOINT + 1 ) , - D3D10_QUERY_OCCLUSION_PREDICATE = ( D3D10_QUERY_PIPELINE_STATISTICS + 1 ) , - D3D10_QUERY_SO_STATISTICS = ( D3D10_QUERY_OCCLUSION_PREDICATE + 1 ) , - D3D10_QUERY_SO_OVERFLOW_PREDICATE = ( D3D10_QUERY_SO_STATISTICS + 1 ) - } D3D10_QUERY; - -typedef -enum D3D10_QUERY_MISC_FLAG - { D3D10_QUERY_MISC_PREDICATEHINT = 0x1 - } D3D10_QUERY_MISC_FLAG; - -typedef struct D3D10_QUERY_DESC - { - D3D10_QUERY Query; - UINT MiscFlags; - } D3D10_QUERY_DESC; - - - -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0019_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0019_v0_0_s_ifspec; - -#ifndef __ID3D10Query_INTERFACE_DEFINED__ -#define __ID3D10Query_INTERFACE_DEFINED__ - -/* interface ID3D10Query */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10Query; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("9B7E4C0E-342C-4106-A19F-4F2704F689F0") - ID3D10Query : public ID3D10Asynchronous - { - public: - virtual void STDMETHODCALLTYPE GetDesc( - /* [annotation] */ - __out D3D10_QUERY_DESC *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D10QueryVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10Query * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10Query * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10Query * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D10Query * This, - /* [annotation] */ - __out ID3D10Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D10Query * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D10Query * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D10Query * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *Begin )( - ID3D10Query * This); - - void ( STDMETHODCALLTYPE *End )( - ID3D10Query * This); - - HRESULT ( STDMETHODCALLTYPE *GetData )( - ID3D10Query * This, - /* [annotation] */ - __out_bcount_opt(DataSize) void *pData, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in UINT GetDataFlags); - - UINT ( STDMETHODCALLTYPE *GetDataSize )( - ID3D10Query * This); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D10Query * This, - /* [annotation] */ - __out D3D10_QUERY_DESC *pDesc); - - END_INTERFACE - } ID3D10QueryVtbl; - - interface ID3D10Query - { - CONST_VTBL struct ID3D10QueryVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10Query_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10Query_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10Query_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10Query_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D10Query_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D10Query_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D10Query_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D10Query_Begin(This) \ - ( (This)->lpVtbl -> Begin(This) ) - -#define ID3D10Query_End(This) \ - ( (This)->lpVtbl -> End(This) ) - -#define ID3D10Query_GetData(This,pData,DataSize,GetDataFlags) \ - ( (This)->lpVtbl -> GetData(This,pData,DataSize,GetDataFlags) ) - -#define ID3D10Query_GetDataSize(This) \ - ( (This)->lpVtbl -> GetDataSize(This) ) - - -#define ID3D10Query_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10Query_INTERFACE_DEFINED__ */ - - -#ifndef __ID3D10Predicate_INTERFACE_DEFINED__ -#define __ID3D10Predicate_INTERFACE_DEFINED__ - -/* interface ID3D10Predicate */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10Predicate; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("9B7E4C10-342C-4106-A19F-4F2704F689F0") - ID3D10Predicate : public ID3D10Query - { - public: - }; - -#else /* C style interface */ - - typedef struct ID3D10PredicateVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10Predicate * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10Predicate * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10Predicate * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D10Predicate * This, - /* [annotation] */ - __out ID3D10Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D10Predicate * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D10Predicate * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D10Predicate * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *Begin )( - ID3D10Predicate * This); - - void ( STDMETHODCALLTYPE *End )( - ID3D10Predicate * This); - - HRESULT ( STDMETHODCALLTYPE *GetData )( - ID3D10Predicate * This, - /* [annotation] */ - __out_bcount_opt(DataSize) void *pData, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in UINT GetDataFlags); - - UINT ( STDMETHODCALLTYPE *GetDataSize )( - ID3D10Predicate * This); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D10Predicate * This, - /* [annotation] */ - __out D3D10_QUERY_DESC *pDesc); - - END_INTERFACE - } ID3D10PredicateVtbl; - - interface ID3D10Predicate - { - CONST_VTBL struct ID3D10PredicateVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10Predicate_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10Predicate_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10Predicate_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10Predicate_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D10Predicate_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D10Predicate_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D10Predicate_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D10Predicate_Begin(This) \ - ( (This)->lpVtbl -> Begin(This) ) - -#define ID3D10Predicate_End(This) \ - ( (This)->lpVtbl -> End(This) ) - -#define ID3D10Predicate_GetData(This,pData,DataSize,GetDataFlags) \ - ( (This)->lpVtbl -> GetData(This,pData,DataSize,GetDataFlags) ) - -#define ID3D10Predicate_GetDataSize(This) \ - ( (This)->lpVtbl -> GetDataSize(This) ) - - -#define ID3D10Predicate_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10Predicate_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d10_0000_0021 */ -/* [local] */ - -typedef struct D3D10_QUERY_DATA_TIMESTAMP_DISJOINT - { - UINT64 Frequency; - BOOL Disjoint; - } D3D10_QUERY_DATA_TIMESTAMP_DISJOINT; - -typedef struct D3D10_QUERY_DATA_PIPELINE_STATISTICS - { - UINT64 IAVertices; - UINT64 IAPrimitives; - UINT64 VSInvocations; - UINT64 GSInvocations; - UINT64 GSPrimitives; - UINT64 CInvocations; - UINT64 CPrimitives; - UINT64 PSInvocations; - } D3D10_QUERY_DATA_PIPELINE_STATISTICS; - -typedef struct D3D10_QUERY_DATA_SO_STATISTICS - { - UINT64 NumPrimitivesWritten; - UINT64 PrimitivesStorageNeeded; - } D3D10_QUERY_DATA_SO_STATISTICS; - -typedef -enum D3D10_COUNTER - { D3D10_COUNTER_GPU_IDLE = 0, - D3D10_COUNTER_VERTEX_PROCESSING = ( D3D10_COUNTER_GPU_IDLE + 1 ) , - D3D10_COUNTER_GEOMETRY_PROCESSING = ( D3D10_COUNTER_VERTEX_PROCESSING + 1 ) , - D3D10_COUNTER_PIXEL_PROCESSING = ( D3D10_COUNTER_GEOMETRY_PROCESSING + 1 ) , - D3D10_COUNTER_OTHER_GPU_PROCESSING = ( D3D10_COUNTER_PIXEL_PROCESSING + 1 ) , - D3D10_COUNTER_HOST_ADAPTER_BANDWIDTH_UTILIZATION = ( D3D10_COUNTER_OTHER_GPU_PROCESSING + 1 ) , - D3D10_COUNTER_LOCAL_VIDMEM_BANDWIDTH_UTILIZATION = ( D3D10_COUNTER_HOST_ADAPTER_BANDWIDTH_UTILIZATION + 1 ) , - D3D10_COUNTER_VERTEX_THROUGHPUT_UTILIZATION = ( D3D10_COUNTER_LOCAL_VIDMEM_BANDWIDTH_UTILIZATION + 1 ) , - D3D10_COUNTER_TRIANGLE_SETUP_THROUGHPUT_UTILIZATION = ( D3D10_COUNTER_VERTEX_THROUGHPUT_UTILIZATION + 1 ) , - D3D10_COUNTER_FILLRATE_THROUGHPUT_UTILIZATION = ( D3D10_COUNTER_TRIANGLE_SETUP_THROUGHPUT_UTILIZATION + 1 ) , - D3D10_COUNTER_VS_MEMORY_LIMITED = ( D3D10_COUNTER_FILLRATE_THROUGHPUT_UTILIZATION + 1 ) , - D3D10_COUNTER_VS_COMPUTATION_LIMITED = ( D3D10_COUNTER_VS_MEMORY_LIMITED + 1 ) , - D3D10_COUNTER_GS_MEMORY_LIMITED = ( D3D10_COUNTER_VS_COMPUTATION_LIMITED + 1 ) , - D3D10_COUNTER_GS_COMPUTATION_LIMITED = ( D3D10_COUNTER_GS_MEMORY_LIMITED + 1 ) , - D3D10_COUNTER_PS_MEMORY_LIMITED = ( D3D10_COUNTER_GS_COMPUTATION_LIMITED + 1 ) , - D3D10_COUNTER_PS_COMPUTATION_LIMITED = ( D3D10_COUNTER_PS_MEMORY_LIMITED + 1 ) , - D3D10_COUNTER_POST_TRANSFORM_CACHE_HIT_RATE = ( D3D10_COUNTER_PS_COMPUTATION_LIMITED + 1 ) , - D3D10_COUNTER_TEXTURE_CACHE_HIT_RATE = ( D3D10_COUNTER_POST_TRANSFORM_CACHE_HIT_RATE + 1 ) , - D3D10_COUNTER_DEVICE_DEPENDENT_0 = 0x40000000 - } D3D10_COUNTER; - -typedef -enum D3D10_COUNTER_TYPE - { D3D10_COUNTER_TYPE_FLOAT32 = 0, - D3D10_COUNTER_TYPE_UINT16 = ( D3D10_COUNTER_TYPE_FLOAT32 + 1 ) , - D3D10_COUNTER_TYPE_UINT32 = ( D3D10_COUNTER_TYPE_UINT16 + 1 ) , - D3D10_COUNTER_TYPE_UINT64 = ( D3D10_COUNTER_TYPE_UINT32 + 1 ) - } D3D10_COUNTER_TYPE; - -typedef struct D3D10_COUNTER_DESC - { - D3D10_COUNTER Counter; - UINT MiscFlags; - } D3D10_COUNTER_DESC; - -typedef struct D3D10_COUNTER_INFO - { - D3D10_COUNTER LastDeviceDependentCounter; - UINT NumSimultaneousCounters; - UINT8 NumDetectableParallelUnits; - } D3D10_COUNTER_INFO; - - - -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0021_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0021_v0_0_s_ifspec; - -#ifndef __ID3D10Counter_INTERFACE_DEFINED__ -#define __ID3D10Counter_INTERFACE_DEFINED__ - -/* interface ID3D10Counter */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10Counter; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("9B7E4C11-342C-4106-A19F-4F2704F689F0") - ID3D10Counter : public ID3D10Asynchronous - { - public: - virtual void STDMETHODCALLTYPE GetDesc( - /* [annotation] */ - __out D3D10_COUNTER_DESC *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D10CounterVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10Counter * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10Counter * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10Counter * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D10Counter * This, - /* [annotation] */ - __out ID3D10Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D10Counter * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D10Counter * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D10Counter * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *Begin )( - ID3D10Counter * This); - - void ( STDMETHODCALLTYPE *End )( - ID3D10Counter * This); - - HRESULT ( STDMETHODCALLTYPE *GetData )( - ID3D10Counter * This, - /* [annotation] */ - __out_bcount_opt(DataSize) void *pData, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in UINT GetDataFlags); - - UINT ( STDMETHODCALLTYPE *GetDataSize )( - ID3D10Counter * This); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D10Counter * This, - /* [annotation] */ - __out D3D10_COUNTER_DESC *pDesc); - - END_INTERFACE - } ID3D10CounterVtbl; - - interface ID3D10Counter - { - CONST_VTBL struct ID3D10CounterVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10Counter_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10Counter_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10Counter_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10Counter_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D10Counter_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D10Counter_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D10Counter_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D10Counter_Begin(This) \ - ( (This)->lpVtbl -> Begin(This) ) - -#define ID3D10Counter_End(This) \ - ( (This)->lpVtbl -> End(This) ) - -#define ID3D10Counter_GetData(This,pData,DataSize,GetDataFlags) \ - ( (This)->lpVtbl -> GetData(This,pData,DataSize,GetDataFlags) ) - -#define ID3D10Counter_GetDataSize(This) \ - ( (This)->lpVtbl -> GetDataSize(This) ) - - -#define ID3D10Counter_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10Counter_INTERFACE_DEFINED__ */ - - -#ifndef __ID3D10Device_INTERFACE_DEFINED__ -#define __ID3D10Device_INTERFACE_DEFINED__ - -/* interface ID3D10Device */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10Device; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("9B7E4C0F-342C-4106-A19F-4F2704F689F0") - ID3D10Device : public IUnknown - { - public: - virtual void STDMETHODCALLTYPE VSSetConstantBuffers( - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) ID3D10Buffer *const *ppConstantBuffers) = 0; - - virtual void STDMETHODCALLTYPE PSSetShaderResources( - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __in_ecount(NumViews) ID3D10ShaderResourceView *const *ppShaderResourceViews) = 0; - - virtual void STDMETHODCALLTYPE PSSetShader( - /* [annotation] */ - __in_opt ID3D10PixelShader *pPixelShader) = 0; - - virtual void STDMETHODCALLTYPE PSSetSamplers( - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __in_ecount(NumSamplers) ID3D10SamplerState *const *ppSamplers) = 0; - - virtual void STDMETHODCALLTYPE VSSetShader( - /* [annotation] */ - __in_opt ID3D10VertexShader *pVertexShader) = 0; - - virtual void STDMETHODCALLTYPE DrawIndexed( - /* [annotation] */ - __in UINT IndexCount, - /* [annotation] */ - __in UINT StartIndexLocation, - /* [annotation] */ - __in INT BaseVertexLocation) = 0; - - virtual void STDMETHODCALLTYPE Draw( - /* [annotation] */ - __in UINT VertexCount, - /* [annotation] */ - __in UINT StartVertexLocation) = 0; - - virtual void STDMETHODCALLTYPE PSSetConstantBuffers( - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) ID3D10Buffer *const *ppConstantBuffers) = 0; - - virtual void STDMETHODCALLTYPE IASetInputLayout( - /* [annotation] */ - __in_opt ID3D10InputLayout *pInputLayout) = 0; - - virtual void STDMETHODCALLTYPE IASetVertexBuffers( - /* [annotation] */ - __in_range( 0, D3D10_1_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_1_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) ID3D10Buffer *const *ppVertexBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) const UINT *pStrides, - /* [annotation] */ - __in_ecount(NumBuffers) const UINT *pOffsets) = 0; - - virtual void STDMETHODCALLTYPE IASetIndexBuffer( - /* [annotation] */ - __in_opt ID3D10Buffer *pIndexBuffer, - /* [annotation] */ - __in DXGI_FORMAT Format, - /* [annotation] */ - __in UINT Offset) = 0; - - virtual void STDMETHODCALLTYPE DrawIndexedInstanced( - /* [annotation] */ - __in UINT IndexCountPerInstance, - /* [annotation] */ - __in UINT InstanceCount, - /* [annotation] */ - __in UINT StartIndexLocation, - /* [annotation] */ - __in INT BaseVertexLocation, - /* [annotation] */ - __in UINT StartInstanceLocation) = 0; - - virtual void STDMETHODCALLTYPE DrawInstanced( - /* [annotation] */ - __in UINT VertexCountPerInstance, - /* [annotation] */ - __in UINT InstanceCount, - /* [annotation] */ - __in UINT StartVertexLocation, - /* [annotation] */ - __in UINT StartInstanceLocation) = 0; - - virtual void STDMETHODCALLTYPE GSSetConstantBuffers( - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) ID3D10Buffer *const *ppConstantBuffers) = 0; - - virtual void STDMETHODCALLTYPE GSSetShader( - /* [annotation] */ - __in_opt ID3D10GeometryShader *pShader) = 0; - - virtual void STDMETHODCALLTYPE IASetPrimitiveTopology( - /* [annotation] */ - __in D3D10_PRIMITIVE_TOPOLOGY Topology) = 0; - - virtual void STDMETHODCALLTYPE VSSetShaderResources( - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __in_ecount(NumViews) ID3D10ShaderResourceView *const *ppShaderResourceViews) = 0; - - virtual void STDMETHODCALLTYPE VSSetSamplers( - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __in_ecount(NumSamplers) ID3D10SamplerState *const *ppSamplers) = 0; - - virtual void STDMETHODCALLTYPE SetPredication( - /* [annotation] */ - __in_opt ID3D10Predicate *pPredicate, - /* [annotation] */ - __in BOOL PredicateValue) = 0; - - virtual void STDMETHODCALLTYPE GSSetShaderResources( - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __in_ecount(NumViews) ID3D10ShaderResourceView *const *ppShaderResourceViews) = 0; - - virtual void STDMETHODCALLTYPE GSSetSamplers( - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __in_ecount(NumSamplers) ID3D10SamplerState *const *ppSamplers) = 0; - - virtual void STDMETHODCALLTYPE OMSetRenderTargets( - /* [annotation] */ - __in_range( 0, D3D10_SIMULTANEOUS_RENDER_TARGET_COUNT ) UINT NumViews, - /* [annotation] */ - __in_ecount_opt(NumViews) ID3D10RenderTargetView *const *ppRenderTargetViews, - /* [annotation] */ - __in_opt ID3D10DepthStencilView *pDepthStencilView) = 0; - - virtual void STDMETHODCALLTYPE OMSetBlendState( - /* [annotation] */ - __in_opt ID3D10BlendState *pBlendState, - /* [annotation] */ - __in const FLOAT BlendFactor[ 4 ], - /* [annotation] */ - __in UINT SampleMask) = 0; - - virtual void STDMETHODCALLTYPE OMSetDepthStencilState( - /* [annotation] */ - __in_opt ID3D10DepthStencilState *pDepthStencilState, - /* [annotation] */ - __in UINT StencilRef) = 0; - - virtual void STDMETHODCALLTYPE SOSetTargets( - /* [annotation] */ - __in_range( 0, D3D10_SO_BUFFER_SLOT_COUNT) UINT NumBuffers, - /* [annotation] */ - __in_ecount_opt(NumBuffers) ID3D10Buffer *const *ppSOTargets, - /* [annotation] */ - __in_ecount_opt(NumBuffers) const UINT *pOffsets) = 0; - - virtual void STDMETHODCALLTYPE DrawAuto( void) = 0; - - virtual void STDMETHODCALLTYPE RSSetState( - /* [annotation] */ - __in_opt ID3D10RasterizerState *pRasterizerState) = 0; - - virtual void STDMETHODCALLTYPE RSSetViewports( - /* [annotation] */ - __in_range(0, D3D10_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE) UINT NumViewports, - /* [annotation] */ - __in_ecount_opt(NumViewports) const D3D10_VIEWPORT *pViewports) = 0; - - virtual void STDMETHODCALLTYPE RSSetScissorRects( - /* [annotation] */ - __in_range(0, D3D10_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE) UINT NumRects, - /* [annotation] */ - __in_ecount_opt(NumRects) const D3D10_RECT *pRects) = 0; - - virtual void STDMETHODCALLTYPE CopySubresourceRegion( - /* [annotation] */ - __in ID3D10Resource *pDstResource, - /* [annotation] */ - __in UINT DstSubresource, - /* [annotation] */ - __in UINT DstX, - /* [annotation] */ - __in UINT DstY, - /* [annotation] */ - __in UINT DstZ, - /* [annotation] */ - __in ID3D10Resource *pSrcResource, - /* [annotation] */ - __in UINT SrcSubresource, - /* [annotation] */ - __in_opt const D3D10_BOX *pSrcBox) = 0; - - virtual void STDMETHODCALLTYPE CopyResource( - /* [annotation] */ - __in ID3D10Resource *pDstResource, - /* [annotation] */ - __in ID3D10Resource *pSrcResource) = 0; - - virtual void STDMETHODCALLTYPE UpdateSubresource( - /* [annotation] */ - __in ID3D10Resource *pDstResource, - /* [annotation] */ - __in UINT DstSubresource, - /* [annotation] */ - __in_opt const D3D10_BOX *pDstBox, - /* [annotation] */ - __in const void *pSrcData, - /* [annotation] */ - __in UINT SrcRowPitch, - /* [annotation] */ - __in UINT SrcDepthPitch) = 0; - - virtual void STDMETHODCALLTYPE ClearRenderTargetView( - /* [annotation] */ - __in ID3D10RenderTargetView *pRenderTargetView, - /* [annotation] */ - __in const FLOAT ColorRGBA[ 4 ]) = 0; - - virtual void STDMETHODCALLTYPE ClearDepthStencilView( - /* [annotation] */ - __in ID3D10DepthStencilView *pDepthStencilView, - /* [annotation] */ - __in UINT ClearFlags, - /* [annotation] */ - __in FLOAT Depth, - /* [annotation] */ - __in UINT8 Stencil) = 0; - - virtual void STDMETHODCALLTYPE GenerateMips( - /* [annotation] */ - __in ID3D10ShaderResourceView *pShaderResourceView) = 0; - - virtual void STDMETHODCALLTYPE ResolveSubresource( - /* [annotation] */ - __in ID3D10Resource *pDstResource, - /* [annotation] */ - __in UINT DstSubresource, - /* [annotation] */ - __in ID3D10Resource *pSrcResource, - /* [annotation] */ - __in UINT SrcSubresource, - /* [annotation] */ - __in DXGI_FORMAT Format) = 0; - - virtual void STDMETHODCALLTYPE VSGetConstantBuffers( - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __out_ecount(NumBuffers) ID3D10Buffer **ppConstantBuffers) = 0; - - virtual void STDMETHODCALLTYPE PSGetShaderResources( - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __out_ecount(NumViews) ID3D10ShaderResourceView **ppShaderResourceViews) = 0; - - virtual void STDMETHODCALLTYPE PSGetShader( - /* [annotation] */ - __out ID3D10PixelShader **ppPixelShader) = 0; - - virtual void STDMETHODCALLTYPE PSGetSamplers( - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __out_ecount(NumSamplers) ID3D10SamplerState **ppSamplers) = 0; - - virtual void STDMETHODCALLTYPE VSGetShader( - /* [annotation] */ - __out ID3D10VertexShader **ppVertexShader) = 0; - - virtual void STDMETHODCALLTYPE PSGetConstantBuffers( - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __out_ecount(NumBuffers) ID3D10Buffer **ppConstantBuffers) = 0; - - virtual void STDMETHODCALLTYPE IAGetInputLayout( - /* [annotation] */ - __out ID3D10InputLayout **ppInputLayout) = 0; - - virtual void STDMETHODCALLTYPE IAGetVertexBuffers( - /* [annotation] */ - __in_range( 0, D3D10_1_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_1_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __out_ecount_opt(NumBuffers) ID3D10Buffer **ppVertexBuffers, - /* [annotation] */ - __out_ecount_opt(NumBuffers) UINT *pStrides, - /* [annotation] */ - __out_ecount_opt(NumBuffers) UINT *pOffsets) = 0; - - virtual void STDMETHODCALLTYPE IAGetIndexBuffer( - /* [annotation] */ - __out_opt ID3D10Buffer **pIndexBuffer, - /* [annotation] */ - __out_opt DXGI_FORMAT *Format, - /* [annotation] */ - __out_opt UINT *Offset) = 0; - - virtual void STDMETHODCALLTYPE GSGetConstantBuffers( - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __out_ecount(NumBuffers) ID3D10Buffer **ppConstantBuffers) = 0; - - virtual void STDMETHODCALLTYPE GSGetShader( - /* [annotation] */ - __out ID3D10GeometryShader **ppGeometryShader) = 0; - - virtual void STDMETHODCALLTYPE IAGetPrimitiveTopology( - /* [annotation] */ - __out D3D10_PRIMITIVE_TOPOLOGY *pTopology) = 0; - - virtual void STDMETHODCALLTYPE VSGetShaderResources( - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __out_ecount(NumViews) ID3D10ShaderResourceView **ppShaderResourceViews) = 0; - - virtual void STDMETHODCALLTYPE VSGetSamplers( - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __out_ecount(NumSamplers) ID3D10SamplerState **ppSamplers) = 0; - - virtual void STDMETHODCALLTYPE GetPredication( - /* [annotation] */ - __out_opt ID3D10Predicate **ppPredicate, - /* [annotation] */ - __out_opt BOOL *pPredicateValue) = 0; - - virtual void STDMETHODCALLTYPE GSGetShaderResources( - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __out_ecount(NumViews) ID3D10ShaderResourceView **ppShaderResourceViews) = 0; - - virtual void STDMETHODCALLTYPE GSGetSamplers( - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __out_ecount(NumSamplers) ID3D10SamplerState **ppSamplers) = 0; - - virtual void STDMETHODCALLTYPE OMGetRenderTargets( - /* [annotation] */ - __in_range( 0, D3D10_SIMULTANEOUS_RENDER_TARGET_COUNT ) UINT NumViews, - /* [annotation] */ - __out_ecount_opt(NumViews) ID3D10RenderTargetView **ppRenderTargetViews, - /* [annotation] */ - __out_opt ID3D10DepthStencilView **ppDepthStencilView) = 0; - - virtual void STDMETHODCALLTYPE OMGetBlendState( - /* [annotation] */ - __out_opt ID3D10BlendState **ppBlendState, - /* [annotation] */ - __out_opt FLOAT BlendFactor[ 4 ], - /* [annotation] */ - __out_opt UINT *pSampleMask) = 0; - - virtual void STDMETHODCALLTYPE OMGetDepthStencilState( - /* [annotation] */ - __out_opt ID3D10DepthStencilState **ppDepthStencilState, - /* [annotation] */ - __out_opt UINT *pStencilRef) = 0; - - virtual void STDMETHODCALLTYPE SOGetTargets( - /* [annotation] */ - __in_range( 0, D3D10_SO_BUFFER_SLOT_COUNT ) UINT NumBuffers, - /* [annotation] */ - __out_ecount_opt(NumBuffers) ID3D10Buffer **ppSOTargets, - /* [annotation] */ - __out_ecount_opt(NumBuffers) UINT *pOffsets) = 0; - - virtual void STDMETHODCALLTYPE RSGetState( - /* [annotation] */ - __out ID3D10RasterizerState **ppRasterizerState) = 0; - - virtual void STDMETHODCALLTYPE RSGetViewports( - /* [annotation] */ - __inout /*_range(0, D3D10_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE )*/ UINT *NumViewports, - /* [annotation] */ - __out_ecount_opt(*NumViewports) D3D10_VIEWPORT *pViewports) = 0; - - virtual void STDMETHODCALLTYPE RSGetScissorRects( - /* [annotation] */ - __inout /*_range(0, D3D10_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE )*/ UINT *NumRects, - /* [annotation] */ - __out_ecount_opt(*NumRects) D3D10_RECT *pRects) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetDeviceRemovedReason( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE SetExceptionMode( - UINT RaiseFlags) = 0; - - virtual UINT STDMETHODCALLTYPE GetExceptionMode( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetPrivateData( - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData) = 0; - - virtual HRESULT STDMETHODCALLTYPE SetPrivateData( - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData) = 0; - - virtual HRESULT STDMETHODCALLTYPE SetPrivateDataInterface( - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData) = 0; - - virtual void STDMETHODCALLTYPE ClearState( void) = 0; - - virtual void STDMETHODCALLTYPE Flush( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateBuffer( - /* [annotation] */ - __in const D3D10_BUFFER_DESC *pDesc, - /* [annotation] */ - __in_opt const D3D10_SUBRESOURCE_DATA *pInitialData, - /* [annotation] */ - __out_opt ID3D10Buffer **ppBuffer) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateTexture1D( - /* [annotation] */ - __in const D3D10_TEXTURE1D_DESC *pDesc, - /* [annotation] */ - __in_xcount_opt(pDesc->MipLevels * pDesc->ArraySize) const D3D10_SUBRESOURCE_DATA *pInitialData, - /* [annotation] */ - __out ID3D10Texture1D **ppTexture1D) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateTexture2D( - /* [annotation] */ - __in const D3D10_TEXTURE2D_DESC *pDesc, - /* [annotation] */ - __in_xcount_opt(pDesc->MipLevels * pDesc->ArraySize) const D3D10_SUBRESOURCE_DATA *pInitialData, - /* [annotation] */ - __out ID3D10Texture2D **ppTexture2D) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateTexture3D( - /* [annotation] */ - __in const D3D10_TEXTURE3D_DESC *pDesc, - /* [annotation] */ - __in_xcount_opt(pDesc->MipLevels) const D3D10_SUBRESOURCE_DATA *pInitialData, - /* [annotation] */ - __out ID3D10Texture3D **ppTexture3D) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateShaderResourceView( - /* [annotation] */ - __in ID3D10Resource *pResource, - /* [annotation] */ - __in_opt const D3D10_SHADER_RESOURCE_VIEW_DESC *pDesc, - /* [annotation] */ - __out_opt ID3D10ShaderResourceView **ppSRView) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateRenderTargetView( - /* [annotation] */ - __in ID3D10Resource *pResource, - /* [annotation] */ - __in_opt const D3D10_RENDER_TARGET_VIEW_DESC *pDesc, - /* [annotation] */ - __out_opt ID3D10RenderTargetView **ppRTView) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateDepthStencilView( - /* [annotation] */ - __in ID3D10Resource *pResource, - /* [annotation] */ - __in_opt const D3D10_DEPTH_STENCIL_VIEW_DESC *pDesc, - /* [annotation] */ - __out_opt ID3D10DepthStencilView **ppDepthStencilView) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateInputLayout( - /* [annotation] */ - __in_ecount(NumElements) const D3D10_INPUT_ELEMENT_DESC *pInputElementDescs, - /* [annotation] */ - __in_range( 0, D3D10_1_IA_VERTEX_INPUT_STRUCTURE_ELEMENT_COUNT ) UINT NumElements, - /* [annotation] */ - __in const void *pShaderBytecodeWithInputSignature, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __out_opt ID3D10InputLayout **ppInputLayout) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateVertexShader( - /* [annotation] */ - __in const void *pShaderBytecode, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __out_opt ID3D10VertexShader **ppVertexShader) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateGeometryShader( - /* [annotation] */ - __in const void *pShaderBytecode, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __out_opt ID3D10GeometryShader **ppGeometryShader) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateGeometryShaderWithStreamOutput( - /* [annotation] */ - __in const void *pShaderBytecode, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __in_ecount_opt(NumEntries) const D3D10_SO_DECLARATION_ENTRY *pSODeclaration, - /* [annotation] */ - __in_range( 0, D3D10_SO_SINGLE_BUFFER_COMPONENT_LIMIT ) UINT NumEntries, - /* [annotation] */ - __in UINT OutputStreamStride, - /* [annotation] */ - __out_opt ID3D10GeometryShader **ppGeometryShader) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreatePixelShader( - /* [annotation] */ - __in const void *pShaderBytecode, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __out_opt ID3D10PixelShader **ppPixelShader) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateBlendState( - /* [annotation] */ - __in const D3D10_BLEND_DESC *pBlendStateDesc, - /* [annotation] */ - __out_opt ID3D10BlendState **ppBlendState) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateDepthStencilState( - /* [annotation] */ - __in const D3D10_DEPTH_STENCIL_DESC *pDepthStencilDesc, - /* [annotation] */ - __out_opt ID3D10DepthStencilState **ppDepthStencilState) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateRasterizerState( - /* [annotation] */ - __in const D3D10_RASTERIZER_DESC *pRasterizerDesc, - /* [annotation] */ - __out_opt ID3D10RasterizerState **ppRasterizerState) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateSamplerState( - /* [annotation] */ - __in const D3D10_SAMPLER_DESC *pSamplerDesc, - /* [annotation] */ - __out_opt ID3D10SamplerState **ppSamplerState) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateQuery( - /* [annotation] */ - __in const D3D10_QUERY_DESC *pQueryDesc, - /* [annotation] */ - __out_opt ID3D10Query **ppQuery) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreatePredicate( - /* [annotation] */ - __in const D3D10_QUERY_DESC *pPredicateDesc, - /* [annotation] */ - __out_opt ID3D10Predicate **ppPredicate) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateCounter( - /* [annotation] */ - __in const D3D10_COUNTER_DESC *pCounterDesc, - /* [annotation] */ - __out_opt ID3D10Counter **ppCounter) = 0; - - virtual HRESULT STDMETHODCALLTYPE CheckFormatSupport( - /* [annotation] */ - __in DXGI_FORMAT Format, - /* [annotation] */ - __out UINT *pFormatSupport) = 0; - - virtual HRESULT STDMETHODCALLTYPE CheckMultisampleQualityLevels( - /* [annotation] */ - __in DXGI_FORMAT Format, - /* [annotation] */ - __in UINT SampleCount, - /* [annotation] */ - __out UINT *pNumQualityLevels) = 0; - - virtual void STDMETHODCALLTYPE CheckCounterInfo( - /* [annotation] */ - __out D3D10_COUNTER_INFO *pCounterInfo) = 0; - - virtual HRESULT STDMETHODCALLTYPE CheckCounter( - /* [annotation] */ - __in const D3D10_COUNTER_DESC *pDesc, - /* [annotation] */ - __out D3D10_COUNTER_TYPE *pType, - /* [annotation] */ - __out UINT *pActiveCounters, - /* [annotation] */ - __out_ecount_opt(*pNameLength) LPSTR szName, - /* [annotation] */ - __inout_opt UINT *pNameLength, - /* [annotation] */ - __out_ecount_opt(*pUnitsLength) LPSTR szUnits, - /* [annotation] */ - __inout_opt UINT *pUnitsLength, - /* [annotation] */ - __out_ecount_opt(*pDescriptionLength) LPSTR szDescription, - /* [annotation] */ - __inout_opt UINT *pDescriptionLength) = 0; - - virtual UINT STDMETHODCALLTYPE GetCreationFlags( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE OpenSharedResource( - /* [annotation] */ - __in HANDLE hResource, - /* [annotation] */ - __in REFIID ReturnedInterface, - /* [annotation] */ - __out_opt void **ppResource) = 0; - - virtual void STDMETHODCALLTYPE SetTextFilterSize( - /* [annotation] */ - __in UINT Width, - /* [annotation] */ - __in UINT Height) = 0; - - virtual void STDMETHODCALLTYPE GetTextFilterSize( - /* [annotation] */ - __out_opt UINT *pWidth, - /* [annotation] */ - __out_opt UINT *pHeight) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D10DeviceVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10Device * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10Device * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10Device * This); - - void ( STDMETHODCALLTYPE *VSSetConstantBuffers )( - ID3D10Device * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) ID3D10Buffer *const *ppConstantBuffers); - - void ( STDMETHODCALLTYPE *PSSetShaderResources )( - ID3D10Device * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __in_ecount(NumViews) ID3D10ShaderResourceView *const *ppShaderResourceViews); - - void ( STDMETHODCALLTYPE *PSSetShader )( - ID3D10Device * This, - /* [annotation] */ - __in_opt ID3D10PixelShader *pPixelShader); - - void ( STDMETHODCALLTYPE *PSSetSamplers )( - ID3D10Device * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __in_ecount(NumSamplers) ID3D10SamplerState *const *ppSamplers); - - void ( STDMETHODCALLTYPE *VSSetShader )( - ID3D10Device * This, - /* [annotation] */ - __in_opt ID3D10VertexShader *pVertexShader); - - void ( STDMETHODCALLTYPE *DrawIndexed )( - ID3D10Device * This, - /* [annotation] */ - __in UINT IndexCount, - /* [annotation] */ - __in UINT StartIndexLocation, - /* [annotation] */ - __in INT BaseVertexLocation); - - void ( STDMETHODCALLTYPE *Draw )( - ID3D10Device * This, - /* [annotation] */ - __in UINT VertexCount, - /* [annotation] */ - __in UINT StartVertexLocation); - - void ( STDMETHODCALLTYPE *PSSetConstantBuffers )( - ID3D10Device * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) ID3D10Buffer *const *ppConstantBuffers); - - void ( STDMETHODCALLTYPE *IASetInputLayout )( - ID3D10Device * This, - /* [annotation] */ - __in_opt ID3D10InputLayout *pInputLayout); - - void ( STDMETHODCALLTYPE *IASetVertexBuffers )( - ID3D10Device * This, - /* [annotation] */ - __in_range( 0, D3D10_1_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_1_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) ID3D10Buffer *const *ppVertexBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) const UINT *pStrides, - /* [annotation] */ - __in_ecount(NumBuffers) const UINT *pOffsets); - - void ( STDMETHODCALLTYPE *IASetIndexBuffer )( - ID3D10Device * This, - /* [annotation] */ - __in_opt ID3D10Buffer *pIndexBuffer, - /* [annotation] */ - __in DXGI_FORMAT Format, - /* [annotation] */ - __in UINT Offset); - - void ( STDMETHODCALLTYPE *DrawIndexedInstanced )( - ID3D10Device * This, - /* [annotation] */ - __in UINT IndexCountPerInstance, - /* [annotation] */ - __in UINT InstanceCount, - /* [annotation] */ - __in UINT StartIndexLocation, - /* [annotation] */ - __in INT BaseVertexLocation, - /* [annotation] */ - __in UINT StartInstanceLocation); - - void ( STDMETHODCALLTYPE *DrawInstanced )( - ID3D10Device * This, - /* [annotation] */ - __in UINT VertexCountPerInstance, - /* [annotation] */ - __in UINT InstanceCount, - /* [annotation] */ - __in UINT StartVertexLocation, - /* [annotation] */ - __in UINT StartInstanceLocation); - - void ( STDMETHODCALLTYPE *GSSetConstantBuffers )( - ID3D10Device * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) ID3D10Buffer *const *ppConstantBuffers); - - void ( STDMETHODCALLTYPE *GSSetShader )( - ID3D10Device * This, - /* [annotation] */ - __in_opt ID3D10GeometryShader *pShader); - - void ( STDMETHODCALLTYPE *IASetPrimitiveTopology )( - ID3D10Device * This, - /* [annotation] */ - __in D3D10_PRIMITIVE_TOPOLOGY Topology); - - void ( STDMETHODCALLTYPE *VSSetShaderResources )( - ID3D10Device * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __in_ecount(NumViews) ID3D10ShaderResourceView *const *ppShaderResourceViews); - - void ( STDMETHODCALLTYPE *VSSetSamplers )( - ID3D10Device * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __in_ecount(NumSamplers) ID3D10SamplerState *const *ppSamplers); - - void ( STDMETHODCALLTYPE *SetPredication )( - ID3D10Device * This, - /* [annotation] */ - __in_opt ID3D10Predicate *pPredicate, - /* [annotation] */ - __in BOOL PredicateValue); - - void ( STDMETHODCALLTYPE *GSSetShaderResources )( - ID3D10Device * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __in_ecount(NumViews) ID3D10ShaderResourceView *const *ppShaderResourceViews); - - void ( STDMETHODCALLTYPE *GSSetSamplers )( - ID3D10Device * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __in_ecount(NumSamplers) ID3D10SamplerState *const *ppSamplers); - - void ( STDMETHODCALLTYPE *OMSetRenderTargets )( - ID3D10Device * This, - /* [annotation] */ - __in_range( 0, D3D10_SIMULTANEOUS_RENDER_TARGET_COUNT ) UINT NumViews, - /* [annotation] */ - __in_ecount_opt(NumViews) ID3D10RenderTargetView *const *ppRenderTargetViews, - /* [annotation] */ - __in_opt ID3D10DepthStencilView *pDepthStencilView); - - void ( STDMETHODCALLTYPE *OMSetBlendState )( - ID3D10Device * This, - /* [annotation] */ - __in_opt ID3D10BlendState *pBlendState, - /* [annotation] */ - __in const FLOAT BlendFactor[ 4 ], - /* [annotation] */ - __in UINT SampleMask); - - void ( STDMETHODCALLTYPE *OMSetDepthStencilState )( - ID3D10Device * This, - /* [annotation] */ - __in_opt ID3D10DepthStencilState *pDepthStencilState, - /* [annotation] */ - __in UINT StencilRef); - - void ( STDMETHODCALLTYPE *SOSetTargets )( - ID3D10Device * This, - /* [annotation] */ - __in_range( 0, D3D10_SO_BUFFER_SLOT_COUNT) UINT NumBuffers, - /* [annotation] */ - __in_ecount_opt(NumBuffers) ID3D10Buffer *const *ppSOTargets, - /* [annotation] */ - __in_ecount_opt(NumBuffers) const UINT *pOffsets); - - void ( STDMETHODCALLTYPE *DrawAuto )( - ID3D10Device * This); - - void ( STDMETHODCALLTYPE *RSSetState )( - ID3D10Device * This, - /* [annotation] */ - __in_opt ID3D10RasterizerState *pRasterizerState); - - void ( STDMETHODCALLTYPE *RSSetViewports )( - ID3D10Device * This, - /* [annotation] */ - __in_range(0, D3D10_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE) UINT NumViewports, - /* [annotation] */ - __in_ecount_opt(NumViewports) const D3D10_VIEWPORT *pViewports); - - void ( STDMETHODCALLTYPE *RSSetScissorRects )( - ID3D10Device * This, - /* [annotation] */ - __in_range(0, D3D10_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE) UINT NumRects, - /* [annotation] */ - __in_ecount_opt(NumRects) const D3D10_RECT *pRects); - - void ( STDMETHODCALLTYPE *CopySubresourceRegion )( - ID3D10Device * This, - /* [annotation] */ - __in ID3D10Resource *pDstResource, - /* [annotation] */ - __in UINT DstSubresource, - /* [annotation] */ - __in UINT DstX, - /* [annotation] */ - __in UINT DstY, - /* [annotation] */ - __in UINT DstZ, - /* [annotation] */ - __in ID3D10Resource *pSrcResource, - /* [annotation] */ - __in UINT SrcSubresource, - /* [annotation] */ - __in_opt const D3D10_BOX *pSrcBox); - - void ( STDMETHODCALLTYPE *CopyResource )( - ID3D10Device * This, - /* [annotation] */ - __in ID3D10Resource *pDstResource, - /* [annotation] */ - __in ID3D10Resource *pSrcResource); - - void ( STDMETHODCALLTYPE *UpdateSubresource )( - ID3D10Device * This, - /* [annotation] */ - __in ID3D10Resource *pDstResource, - /* [annotation] */ - __in UINT DstSubresource, - /* [annotation] */ - __in_opt const D3D10_BOX *pDstBox, - /* [annotation] */ - __in const void *pSrcData, - /* [annotation] */ - __in UINT SrcRowPitch, - /* [annotation] */ - __in UINT SrcDepthPitch); - - void ( STDMETHODCALLTYPE *ClearRenderTargetView )( - ID3D10Device * This, - /* [annotation] */ - __in ID3D10RenderTargetView *pRenderTargetView, - /* [annotation] */ - __in const FLOAT ColorRGBA[ 4 ]); - - void ( STDMETHODCALLTYPE *ClearDepthStencilView )( - ID3D10Device * This, - /* [annotation] */ - __in ID3D10DepthStencilView *pDepthStencilView, - /* [annotation] */ - __in UINT ClearFlags, - /* [annotation] */ - __in FLOAT Depth, - /* [annotation] */ - __in UINT8 Stencil); - - void ( STDMETHODCALLTYPE *GenerateMips )( - ID3D10Device * This, - /* [annotation] */ - __in ID3D10ShaderResourceView *pShaderResourceView); - - void ( STDMETHODCALLTYPE *ResolveSubresource )( - ID3D10Device * This, - /* [annotation] */ - __in ID3D10Resource *pDstResource, - /* [annotation] */ - __in UINT DstSubresource, - /* [annotation] */ - __in ID3D10Resource *pSrcResource, - /* [annotation] */ - __in UINT SrcSubresource, - /* [annotation] */ - __in DXGI_FORMAT Format); - - void ( STDMETHODCALLTYPE *VSGetConstantBuffers )( - ID3D10Device * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __out_ecount(NumBuffers) ID3D10Buffer **ppConstantBuffers); - - void ( STDMETHODCALLTYPE *PSGetShaderResources )( - ID3D10Device * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __out_ecount(NumViews) ID3D10ShaderResourceView **ppShaderResourceViews); - - void ( STDMETHODCALLTYPE *PSGetShader )( - ID3D10Device * This, - /* [annotation] */ - __out ID3D10PixelShader **ppPixelShader); - - void ( STDMETHODCALLTYPE *PSGetSamplers )( - ID3D10Device * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __out_ecount(NumSamplers) ID3D10SamplerState **ppSamplers); - - void ( STDMETHODCALLTYPE *VSGetShader )( - ID3D10Device * This, - /* [annotation] */ - __out ID3D10VertexShader **ppVertexShader); - - void ( STDMETHODCALLTYPE *PSGetConstantBuffers )( - ID3D10Device * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __out_ecount(NumBuffers) ID3D10Buffer **ppConstantBuffers); - - void ( STDMETHODCALLTYPE *IAGetInputLayout )( - ID3D10Device * This, - /* [annotation] */ - __out ID3D10InputLayout **ppInputLayout); - - void ( STDMETHODCALLTYPE *IAGetVertexBuffers )( - ID3D10Device * This, - /* [annotation] */ - __in_range( 0, D3D10_1_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_1_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __out_ecount_opt(NumBuffers) ID3D10Buffer **ppVertexBuffers, - /* [annotation] */ - __out_ecount_opt(NumBuffers) UINT *pStrides, - /* [annotation] */ - __out_ecount_opt(NumBuffers) UINT *pOffsets); - - void ( STDMETHODCALLTYPE *IAGetIndexBuffer )( - ID3D10Device * This, - /* [annotation] */ - __out_opt ID3D10Buffer **pIndexBuffer, - /* [annotation] */ - __out_opt DXGI_FORMAT *Format, - /* [annotation] */ - __out_opt UINT *Offset); - - void ( STDMETHODCALLTYPE *GSGetConstantBuffers )( - ID3D10Device * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __out_ecount(NumBuffers) ID3D10Buffer **ppConstantBuffers); - - void ( STDMETHODCALLTYPE *GSGetShader )( - ID3D10Device * This, - /* [annotation] */ - __out ID3D10GeometryShader **ppGeometryShader); - - void ( STDMETHODCALLTYPE *IAGetPrimitiveTopology )( - ID3D10Device * This, - /* [annotation] */ - __out D3D10_PRIMITIVE_TOPOLOGY *pTopology); - - void ( STDMETHODCALLTYPE *VSGetShaderResources )( - ID3D10Device * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __out_ecount(NumViews) ID3D10ShaderResourceView **ppShaderResourceViews); - - void ( STDMETHODCALLTYPE *VSGetSamplers )( - ID3D10Device * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __out_ecount(NumSamplers) ID3D10SamplerState **ppSamplers); - - void ( STDMETHODCALLTYPE *GetPredication )( - ID3D10Device * This, - /* [annotation] */ - __out_opt ID3D10Predicate **ppPredicate, - /* [annotation] */ - __out_opt BOOL *pPredicateValue); - - void ( STDMETHODCALLTYPE *GSGetShaderResources )( - ID3D10Device * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __out_ecount(NumViews) ID3D10ShaderResourceView **ppShaderResourceViews); - - void ( STDMETHODCALLTYPE *GSGetSamplers )( - ID3D10Device * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __out_ecount(NumSamplers) ID3D10SamplerState **ppSamplers); - - void ( STDMETHODCALLTYPE *OMGetRenderTargets )( - ID3D10Device * This, - /* [annotation] */ - __in_range( 0, D3D10_SIMULTANEOUS_RENDER_TARGET_COUNT ) UINT NumViews, - /* [annotation] */ - __out_ecount_opt(NumViews) ID3D10RenderTargetView **ppRenderTargetViews, - /* [annotation] */ - __out_opt ID3D10DepthStencilView **ppDepthStencilView); - - void ( STDMETHODCALLTYPE *OMGetBlendState )( - ID3D10Device * This, - /* [annotation] */ - __out_opt ID3D10BlendState **ppBlendState, - /* [annotation] */ - __out_opt FLOAT BlendFactor[ 4 ], - /* [annotation] */ - __out_opt UINT *pSampleMask); - - void ( STDMETHODCALLTYPE *OMGetDepthStencilState )( - ID3D10Device * This, - /* [annotation] */ - __out_opt ID3D10DepthStencilState **ppDepthStencilState, - /* [annotation] */ - __out_opt UINT *pStencilRef); - - void ( STDMETHODCALLTYPE *SOGetTargets )( - ID3D10Device * This, - /* [annotation] */ - __in_range( 0, D3D10_SO_BUFFER_SLOT_COUNT ) UINT NumBuffers, - /* [annotation] */ - __out_ecount_opt(NumBuffers) ID3D10Buffer **ppSOTargets, - /* [annotation] */ - __out_ecount_opt(NumBuffers) UINT *pOffsets); - - void ( STDMETHODCALLTYPE *RSGetState )( - ID3D10Device * This, - /* [annotation] */ - __out ID3D10RasterizerState **ppRasterizerState); - - void ( STDMETHODCALLTYPE *RSGetViewports )( - ID3D10Device * This, - /* [annotation] */ - __inout /*_range(0, D3D10_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE )*/ UINT *NumViewports, - /* [annotation] */ - __out_ecount_opt(*NumViewports) D3D10_VIEWPORT *pViewports); - - void ( STDMETHODCALLTYPE *RSGetScissorRects )( - ID3D10Device * This, - /* [annotation] */ - __inout /*_range(0, D3D10_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE )*/ UINT *NumRects, - /* [annotation] */ - __out_ecount_opt(*NumRects) D3D10_RECT *pRects); - - HRESULT ( STDMETHODCALLTYPE *GetDeviceRemovedReason )( - ID3D10Device * This); - - HRESULT ( STDMETHODCALLTYPE *SetExceptionMode )( - ID3D10Device * This, - UINT RaiseFlags); - - UINT ( STDMETHODCALLTYPE *GetExceptionMode )( - ID3D10Device * This); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D10Device * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D10Device * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D10Device * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *ClearState )( - ID3D10Device * This); - - void ( STDMETHODCALLTYPE *Flush )( - ID3D10Device * This); - - HRESULT ( STDMETHODCALLTYPE *CreateBuffer )( - ID3D10Device * This, - /* [annotation] */ - __in const D3D10_BUFFER_DESC *pDesc, - /* [annotation] */ - __in_opt const D3D10_SUBRESOURCE_DATA *pInitialData, - /* [annotation] */ - __out_opt ID3D10Buffer **ppBuffer); - - HRESULT ( STDMETHODCALLTYPE *CreateTexture1D )( - ID3D10Device * This, - /* [annotation] */ - __in const D3D10_TEXTURE1D_DESC *pDesc, - /* [annotation] */ - __in_xcount_opt(pDesc->MipLevels * pDesc->ArraySize) const D3D10_SUBRESOURCE_DATA *pInitialData, - /* [annotation] */ - __out ID3D10Texture1D **ppTexture1D); - - HRESULT ( STDMETHODCALLTYPE *CreateTexture2D )( - ID3D10Device * This, - /* [annotation] */ - __in const D3D10_TEXTURE2D_DESC *pDesc, - /* [annotation] */ - __in_xcount_opt(pDesc->MipLevels * pDesc->ArraySize) const D3D10_SUBRESOURCE_DATA *pInitialData, - /* [annotation] */ - __out ID3D10Texture2D **ppTexture2D); - - HRESULT ( STDMETHODCALLTYPE *CreateTexture3D )( - ID3D10Device * This, - /* [annotation] */ - __in const D3D10_TEXTURE3D_DESC *pDesc, - /* [annotation] */ - __in_xcount_opt(pDesc->MipLevels) const D3D10_SUBRESOURCE_DATA *pInitialData, - /* [annotation] */ - __out ID3D10Texture3D **ppTexture3D); - - HRESULT ( STDMETHODCALLTYPE *CreateShaderResourceView )( - ID3D10Device * This, - /* [annotation] */ - __in ID3D10Resource *pResource, - /* [annotation] */ - __in_opt const D3D10_SHADER_RESOURCE_VIEW_DESC *pDesc, - /* [annotation] */ - __out_opt ID3D10ShaderResourceView **ppSRView); - - HRESULT ( STDMETHODCALLTYPE *CreateRenderTargetView )( - ID3D10Device * This, - /* [annotation] */ - __in ID3D10Resource *pResource, - /* [annotation] */ - __in_opt const D3D10_RENDER_TARGET_VIEW_DESC *pDesc, - /* [annotation] */ - __out_opt ID3D10RenderTargetView **ppRTView); - - HRESULT ( STDMETHODCALLTYPE *CreateDepthStencilView )( - ID3D10Device * This, - /* [annotation] */ - __in ID3D10Resource *pResource, - /* [annotation] */ - __in_opt const D3D10_DEPTH_STENCIL_VIEW_DESC *pDesc, - /* [annotation] */ - __out_opt ID3D10DepthStencilView **ppDepthStencilView); - - HRESULT ( STDMETHODCALLTYPE *CreateInputLayout )( - ID3D10Device * This, - /* [annotation] */ - __in_ecount(NumElements) const D3D10_INPUT_ELEMENT_DESC *pInputElementDescs, - /* [annotation] */ - __in_range( 0, D3D10_1_IA_VERTEX_INPUT_STRUCTURE_ELEMENT_COUNT ) UINT NumElements, - /* [annotation] */ - __in const void *pShaderBytecodeWithInputSignature, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __out_opt ID3D10InputLayout **ppInputLayout); - - HRESULT ( STDMETHODCALLTYPE *CreateVertexShader )( - ID3D10Device * This, - /* [annotation] */ - __in const void *pShaderBytecode, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __out_opt ID3D10VertexShader **ppVertexShader); - - HRESULT ( STDMETHODCALLTYPE *CreateGeometryShader )( - ID3D10Device * This, - /* [annotation] */ - __in const void *pShaderBytecode, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __out_opt ID3D10GeometryShader **ppGeometryShader); - - HRESULT ( STDMETHODCALLTYPE *CreateGeometryShaderWithStreamOutput )( - ID3D10Device * This, - /* [annotation] */ - __in const void *pShaderBytecode, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __in_ecount_opt(NumEntries) const D3D10_SO_DECLARATION_ENTRY *pSODeclaration, - /* [annotation] */ - __in_range( 0, D3D10_SO_SINGLE_BUFFER_COMPONENT_LIMIT ) UINT NumEntries, - /* [annotation] */ - __in UINT OutputStreamStride, - /* [annotation] */ - __out_opt ID3D10GeometryShader **ppGeometryShader); - - HRESULT ( STDMETHODCALLTYPE *CreatePixelShader )( - ID3D10Device * This, - /* [annotation] */ - __in const void *pShaderBytecode, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __out_opt ID3D10PixelShader **ppPixelShader); - - HRESULT ( STDMETHODCALLTYPE *CreateBlendState )( - ID3D10Device * This, - /* [annotation] */ - __in const D3D10_BLEND_DESC *pBlendStateDesc, - /* [annotation] */ - __out_opt ID3D10BlendState **ppBlendState); - - HRESULT ( STDMETHODCALLTYPE *CreateDepthStencilState )( - ID3D10Device * This, - /* [annotation] */ - __in const D3D10_DEPTH_STENCIL_DESC *pDepthStencilDesc, - /* [annotation] */ - __out_opt ID3D10DepthStencilState **ppDepthStencilState); - - HRESULT ( STDMETHODCALLTYPE *CreateRasterizerState )( - ID3D10Device * This, - /* [annotation] */ - __in const D3D10_RASTERIZER_DESC *pRasterizerDesc, - /* [annotation] */ - __out_opt ID3D10RasterizerState **ppRasterizerState); - - HRESULT ( STDMETHODCALLTYPE *CreateSamplerState )( - ID3D10Device * This, - /* [annotation] */ - __in const D3D10_SAMPLER_DESC *pSamplerDesc, - /* [annotation] */ - __out_opt ID3D10SamplerState **ppSamplerState); - - HRESULT ( STDMETHODCALLTYPE *CreateQuery )( - ID3D10Device * This, - /* [annotation] */ - __in const D3D10_QUERY_DESC *pQueryDesc, - /* [annotation] */ - __out_opt ID3D10Query **ppQuery); - - HRESULT ( STDMETHODCALLTYPE *CreatePredicate )( - ID3D10Device * This, - /* [annotation] */ - __in const D3D10_QUERY_DESC *pPredicateDesc, - /* [annotation] */ - __out_opt ID3D10Predicate **ppPredicate); - - HRESULT ( STDMETHODCALLTYPE *CreateCounter )( - ID3D10Device * This, - /* [annotation] */ - __in const D3D10_COUNTER_DESC *pCounterDesc, - /* [annotation] */ - __out_opt ID3D10Counter **ppCounter); - - HRESULT ( STDMETHODCALLTYPE *CheckFormatSupport )( - ID3D10Device * This, - /* [annotation] */ - __in DXGI_FORMAT Format, - /* [annotation] */ - __out UINT *pFormatSupport); - - HRESULT ( STDMETHODCALLTYPE *CheckMultisampleQualityLevels )( - ID3D10Device * This, - /* [annotation] */ - __in DXGI_FORMAT Format, - /* [annotation] */ - __in UINT SampleCount, - /* [annotation] */ - __out UINT *pNumQualityLevels); - - void ( STDMETHODCALLTYPE *CheckCounterInfo )( - ID3D10Device * This, - /* [annotation] */ - __out D3D10_COUNTER_INFO *pCounterInfo); - - HRESULT ( STDMETHODCALLTYPE *CheckCounter )( - ID3D10Device * This, - /* [annotation] */ - __in const D3D10_COUNTER_DESC *pDesc, - /* [annotation] */ - __out D3D10_COUNTER_TYPE *pType, - /* [annotation] */ - __out UINT *pActiveCounters, - /* [annotation] */ - __out_ecount_opt(*pNameLength) LPSTR szName, - /* [annotation] */ - __inout_opt UINT *pNameLength, - /* [annotation] */ - __out_ecount_opt(*pUnitsLength) LPSTR szUnits, - /* [annotation] */ - __inout_opt UINT *pUnitsLength, - /* [annotation] */ - __out_ecount_opt(*pDescriptionLength) LPSTR szDescription, - /* [annotation] */ - __inout_opt UINT *pDescriptionLength); - - UINT ( STDMETHODCALLTYPE *GetCreationFlags )( - ID3D10Device * This); - - HRESULT ( STDMETHODCALLTYPE *OpenSharedResource )( - ID3D10Device * This, - /* [annotation] */ - __in HANDLE hResource, - /* [annotation] */ - __in REFIID ReturnedInterface, - /* [annotation] */ - __out_opt void **ppResource); - - void ( STDMETHODCALLTYPE *SetTextFilterSize )( - ID3D10Device * This, - /* [annotation] */ - __in UINT Width, - /* [annotation] */ - __in UINT Height); - - void ( STDMETHODCALLTYPE *GetTextFilterSize )( - ID3D10Device * This, - /* [annotation] */ - __out_opt UINT *pWidth, - /* [annotation] */ - __out_opt UINT *pHeight); - - END_INTERFACE - } ID3D10DeviceVtbl; - - interface ID3D10Device - { - CONST_VTBL struct ID3D10DeviceVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10Device_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10Device_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10Device_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10Device_VSSetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) \ - ( (This)->lpVtbl -> VSSetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) ) - -#define ID3D10Device_PSSetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) \ - ( (This)->lpVtbl -> PSSetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) ) - -#define ID3D10Device_PSSetShader(This,pPixelShader) \ - ( (This)->lpVtbl -> PSSetShader(This,pPixelShader) ) - -#define ID3D10Device_PSSetSamplers(This,StartSlot,NumSamplers,ppSamplers) \ - ( (This)->lpVtbl -> PSSetSamplers(This,StartSlot,NumSamplers,ppSamplers) ) - -#define ID3D10Device_VSSetShader(This,pVertexShader) \ - ( (This)->lpVtbl -> VSSetShader(This,pVertexShader) ) - -#define ID3D10Device_DrawIndexed(This,IndexCount,StartIndexLocation,BaseVertexLocation) \ - ( (This)->lpVtbl -> DrawIndexed(This,IndexCount,StartIndexLocation,BaseVertexLocation) ) - -#define ID3D10Device_Draw(This,VertexCount,StartVertexLocation) \ - ( (This)->lpVtbl -> Draw(This,VertexCount,StartVertexLocation) ) - -#define ID3D10Device_PSSetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) \ - ( (This)->lpVtbl -> PSSetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) ) - -#define ID3D10Device_IASetInputLayout(This,pInputLayout) \ - ( (This)->lpVtbl -> IASetInputLayout(This,pInputLayout) ) - -#define ID3D10Device_IASetVertexBuffers(This,StartSlot,NumBuffers,ppVertexBuffers,pStrides,pOffsets) \ - ( (This)->lpVtbl -> IASetVertexBuffers(This,StartSlot,NumBuffers,ppVertexBuffers,pStrides,pOffsets) ) - -#define ID3D10Device_IASetIndexBuffer(This,pIndexBuffer,Format,Offset) \ - ( (This)->lpVtbl -> IASetIndexBuffer(This,pIndexBuffer,Format,Offset) ) - -#define ID3D10Device_DrawIndexedInstanced(This,IndexCountPerInstance,InstanceCount,StartIndexLocation,BaseVertexLocation,StartInstanceLocation) \ - ( (This)->lpVtbl -> DrawIndexedInstanced(This,IndexCountPerInstance,InstanceCount,StartIndexLocation,BaseVertexLocation,StartInstanceLocation) ) - -#define ID3D10Device_DrawInstanced(This,VertexCountPerInstance,InstanceCount,StartVertexLocation,StartInstanceLocation) \ - ( (This)->lpVtbl -> DrawInstanced(This,VertexCountPerInstance,InstanceCount,StartVertexLocation,StartInstanceLocation) ) - -#define ID3D10Device_GSSetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) \ - ( (This)->lpVtbl -> GSSetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) ) - -#define ID3D10Device_GSSetShader(This,pShader) \ - ( (This)->lpVtbl -> GSSetShader(This,pShader) ) - -#define ID3D10Device_IASetPrimitiveTopology(This,Topology) \ - ( (This)->lpVtbl -> IASetPrimitiveTopology(This,Topology) ) - -#define ID3D10Device_VSSetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) \ - ( (This)->lpVtbl -> VSSetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) ) - -#define ID3D10Device_VSSetSamplers(This,StartSlot,NumSamplers,ppSamplers) \ - ( (This)->lpVtbl -> VSSetSamplers(This,StartSlot,NumSamplers,ppSamplers) ) - -#define ID3D10Device_SetPredication(This,pPredicate,PredicateValue) \ - ( (This)->lpVtbl -> SetPredication(This,pPredicate,PredicateValue) ) - -#define ID3D10Device_GSSetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) \ - ( (This)->lpVtbl -> GSSetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) ) - -#define ID3D10Device_GSSetSamplers(This,StartSlot,NumSamplers,ppSamplers) \ - ( (This)->lpVtbl -> GSSetSamplers(This,StartSlot,NumSamplers,ppSamplers) ) - -#define ID3D10Device_OMSetRenderTargets(This,NumViews,ppRenderTargetViews,pDepthStencilView) \ - ( (This)->lpVtbl -> OMSetRenderTargets(This,NumViews,ppRenderTargetViews,pDepthStencilView) ) - -#define ID3D10Device_OMSetBlendState(This,pBlendState,BlendFactor,SampleMask) \ - ( (This)->lpVtbl -> OMSetBlendState(This,pBlendState,BlendFactor,SampleMask) ) - -#define ID3D10Device_OMSetDepthStencilState(This,pDepthStencilState,StencilRef) \ - ( (This)->lpVtbl -> OMSetDepthStencilState(This,pDepthStencilState,StencilRef) ) - -#define ID3D10Device_SOSetTargets(This,NumBuffers,ppSOTargets,pOffsets) \ - ( (This)->lpVtbl -> SOSetTargets(This,NumBuffers,ppSOTargets,pOffsets) ) - -#define ID3D10Device_DrawAuto(This) \ - ( (This)->lpVtbl -> DrawAuto(This) ) - -#define ID3D10Device_RSSetState(This,pRasterizerState) \ - ( (This)->lpVtbl -> RSSetState(This,pRasterizerState) ) - -#define ID3D10Device_RSSetViewports(This,NumViewports,pViewports) \ - ( (This)->lpVtbl -> RSSetViewports(This,NumViewports,pViewports) ) - -#define ID3D10Device_RSSetScissorRects(This,NumRects,pRects) \ - ( (This)->lpVtbl -> RSSetScissorRects(This,NumRects,pRects) ) - -#define ID3D10Device_CopySubresourceRegion(This,pDstResource,DstSubresource,DstX,DstY,DstZ,pSrcResource,SrcSubresource,pSrcBox) \ - ( (This)->lpVtbl -> CopySubresourceRegion(This,pDstResource,DstSubresource,DstX,DstY,DstZ,pSrcResource,SrcSubresource,pSrcBox) ) - -#define ID3D10Device_CopyResource(This,pDstResource,pSrcResource) \ - ( (This)->lpVtbl -> CopyResource(This,pDstResource,pSrcResource) ) - -#define ID3D10Device_UpdateSubresource(This,pDstResource,DstSubresource,pDstBox,pSrcData,SrcRowPitch,SrcDepthPitch) \ - ( (This)->lpVtbl -> UpdateSubresource(This,pDstResource,DstSubresource,pDstBox,pSrcData,SrcRowPitch,SrcDepthPitch) ) - -#define ID3D10Device_ClearRenderTargetView(This,pRenderTargetView,ColorRGBA) \ - ( (This)->lpVtbl -> ClearRenderTargetView(This,pRenderTargetView,ColorRGBA) ) - -#define ID3D10Device_ClearDepthStencilView(This,pDepthStencilView,ClearFlags,Depth,Stencil) \ - ( (This)->lpVtbl -> ClearDepthStencilView(This,pDepthStencilView,ClearFlags,Depth,Stencil) ) - -#define ID3D10Device_GenerateMips(This,pShaderResourceView) \ - ( (This)->lpVtbl -> GenerateMips(This,pShaderResourceView) ) - -#define ID3D10Device_ResolveSubresource(This,pDstResource,DstSubresource,pSrcResource,SrcSubresource,Format) \ - ( (This)->lpVtbl -> ResolveSubresource(This,pDstResource,DstSubresource,pSrcResource,SrcSubresource,Format) ) - -#define ID3D10Device_VSGetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) \ - ( (This)->lpVtbl -> VSGetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) ) - -#define ID3D10Device_PSGetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) \ - ( (This)->lpVtbl -> PSGetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) ) - -#define ID3D10Device_PSGetShader(This,ppPixelShader) \ - ( (This)->lpVtbl -> PSGetShader(This,ppPixelShader) ) - -#define ID3D10Device_PSGetSamplers(This,StartSlot,NumSamplers,ppSamplers) \ - ( (This)->lpVtbl -> PSGetSamplers(This,StartSlot,NumSamplers,ppSamplers) ) - -#define ID3D10Device_VSGetShader(This,ppVertexShader) \ - ( (This)->lpVtbl -> VSGetShader(This,ppVertexShader) ) - -#define ID3D10Device_PSGetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) \ - ( (This)->lpVtbl -> PSGetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) ) - -#define ID3D10Device_IAGetInputLayout(This,ppInputLayout) \ - ( (This)->lpVtbl -> IAGetInputLayout(This,ppInputLayout) ) - -#define ID3D10Device_IAGetVertexBuffers(This,StartSlot,NumBuffers,ppVertexBuffers,pStrides,pOffsets) \ - ( (This)->lpVtbl -> IAGetVertexBuffers(This,StartSlot,NumBuffers,ppVertexBuffers,pStrides,pOffsets) ) - -#define ID3D10Device_IAGetIndexBuffer(This,pIndexBuffer,Format,Offset) \ - ( (This)->lpVtbl -> IAGetIndexBuffer(This,pIndexBuffer,Format,Offset) ) - -#define ID3D10Device_GSGetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) \ - ( (This)->lpVtbl -> GSGetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) ) - -#define ID3D10Device_GSGetShader(This,ppGeometryShader) \ - ( (This)->lpVtbl -> GSGetShader(This,ppGeometryShader) ) - -#define ID3D10Device_IAGetPrimitiveTopology(This,pTopology) \ - ( (This)->lpVtbl -> IAGetPrimitiveTopology(This,pTopology) ) - -#define ID3D10Device_VSGetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) \ - ( (This)->lpVtbl -> VSGetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) ) - -#define ID3D10Device_VSGetSamplers(This,StartSlot,NumSamplers,ppSamplers) \ - ( (This)->lpVtbl -> VSGetSamplers(This,StartSlot,NumSamplers,ppSamplers) ) - -#define ID3D10Device_GetPredication(This,ppPredicate,pPredicateValue) \ - ( (This)->lpVtbl -> GetPredication(This,ppPredicate,pPredicateValue) ) - -#define ID3D10Device_GSGetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) \ - ( (This)->lpVtbl -> GSGetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) ) - -#define ID3D10Device_GSGetSamplers(This,StartSlot,NumSamplers,ppSamplers) \ - ( (This)->lpVtbl -> GSGetSamplers(This,StartSlot,NumSamplers,ppSamplers) ) - -#define ID3D10Device_OMGetRenderTargets(This,NumViews,ppRenderTargetViews,ppDepthStencilView) \ - ( (This)->lpVtbl -> OMGetRenderTargets(This,NumViews,ppRenderTargetViews,ppDepthStencilView) ) - -#define ID3D10Device_OMGetBlendState(This,ppBlendState,BlendFactor,pSampleMask) \ - ( (This)->lpVtbl -> OMGetBlendState(This,ppBlendState,BlendFactor,pSampleMask) ) - -#define ID3D10Device_OMGetDepthStencilState(This,ppDepthStencilState,pStencilRef) \ - ( (This)->lpVtbl -> OMGetDepthStencilState(This,ppDepthStencilState,pStencilRef) ) - -#define ID3D10Device_SOGetTargets(This,NumBuffers,ppSOTargets,pOffsets) \ - ( (This)->lpVtbl -> SOGetTargets(This,NumBuffers,ppSOTargets,pOffsets) ) - -#define ID3D10Device_RSGetState(This,ppRasterizerState) \ - ( (This)->lpVtbl -> RSGetState(This,ppRasterizerState) ) - -#define ID3D10Device_RSGetViewports(This,NumViewports,pViewports) \ - ( (This)->lpVtbl -> RSGetViewports(This,NumViewports,pViewports) ) - -#define ID3D10Device_RSGetScissorRects(This,NumRects,pRects) \ - ( (This)->lpVtbl -> RSGetScissorRects(This,NumRects,pRects) ) - -#define ID3D10Device_GetDeviceRemovedReason(This) \ - ( (This)->lpVtbl -> GetDeviceRemovedReason(This) ) - -#define ID3D10Device_SetExceptionMode(This,RaiseFlags) \ - ( (This)->lpVtbl -> SetExceptionMode(This,RaiseFlags) ) - -#define ID3D10Device_GetExceptionMode(This) \ - ( (This)->lpVtbl -> GetExceptionMode(This) ) - -#define ID3D10Device_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D10Device_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D10Device_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - -#define ID3D10Device_ClearState(This) \ - ( (This)->lpVtbl -> ClearState(This) ) - -#define ID3D10Device_Flush(This) \ - ( (This)->lpVtbl -> Flush(This) ) - -#define ID3D10Device_CreateBuffer(This,pDesc,pInitialData,ppBuffer) \ - ( (This)->lpVtbl -> CreateBuffer(This,pDesc,pInitialData,ppBuffer) ) - -#define ID3D10Device_CreateTexture1D(This,pDesc,pInitialData,ppTexture1D) \ - ( (This)->lpVtbl -> CreateTexture1D(This,pDesc,pInitialData,ppTexture1D) ) - -#define ID3D10Device_CreateTexture2D(This,pDesc,pInitialData,ppTexture2D) \ - ( (This)->lpVtbl -> CreateTexture2D(This,pDesc,pInitialData,ppTexture2D) ) - -#define ID3D10Device_CreateTexture3D(This,pDesc,pInitialData,ppTexture3D) \ - ( (This)->lpVtbl -> CreateTexture3D(This,pDesc,pInitialData,ppTexture3D) ) - -#define ID3D10Device_CreateShaderResourceView(This,pResource,pDesc,ppSRView) \ - ( (This)->lpVtbl -> CreateShaderResourceView(This,pResource,pDesc,ppSRView) ) - -#define ID3D10Device_CreateRenderTargetView(This,pResource,pDesc,ppRTView) \ - ( (This)->lpVtbl -> CreateRenderTargetView(This,pResource,pDesc,ppRTView) ) - -#define ID3D10Device_CreateDepthStencilView(This,pResource,pDesc,ppDepthStencilView) \ - ( (This)->lpVtbl -> CreateDepthStencilView(This,pResource,pDesc,ppDepthStencilView) ) - -#define ID3D10Device_CreateInputLayout(This,pInputElementDescs,NumElements,pShaderBytecodeWithInputSignature,BytecodeLength,ppInputLayout) \ - ( (This)->lpVtbl -> CreateInputLayout(This,pInputElementDescs,NumElements,pShaderBytecodeWithInputSignature,BytecodeLength,ppInputLayout) ) - -#define ID3D10Device_CreateVertexShader(This,pShaderBytecode,BytecodeLength,ppVertexShader) \ - ( (This)->lpVtbl -> CreateVertexShader(This,pShaderBytecode,BytecodeLength,ppVertexShader) ) - -#define ID3D10Device_CreateGeometryShader(This,pShaderBytecode,BytecodeLength,ppGeometryShader) \ - ( (This)->lpVtbl -> CreateGeometryShader(This,pShaderBytecode,BytecodeLength,ppGeometryShader) ) - -#define ID3D10Device_CreateGeometryShaderWithStreamOutput(This,pShaderBytecode,BytecodeLength,pSODeclaration,NumEntries,OutputStreamStride,ppGeometryShader) \ - ( (This)->lpVtbl -> CreateGeometryShaderWithStreamOutput(This,pShaderBytecode,BytecodeLength,pSODeclaration,NumEntries,OutputStreamStride,ppGeometryShader) ) - -#define ID3D10Device_CreatePixelShader(This,pShaderBytecode,BytecodeLength,ppPixelShader) \ - ( (This)->lpVtbl -> CreatePixelShader(This,pShaderBytecode,BytecodeLength,ppPixelShader) ) - -#define ID3D10Device_CreateBlendState(This,pBlendStateDesc,ppBlendState) \ - ( (This)->lpVtbl -> CreateBlendState(This,pBlendStateDesc,ppBlendState) ) - -#define ID3D10Device_CreateDepthStencilState(This,pDepthStencilDesc,ppDepthStencilState) \ - ( (This)->lpVtbl -> CreateDepthStencilState(This,pDepthStencilDesc,ppDepthStencilState) ) - -#define ID3D10Device_CreateRasterizerState(This,pRasterizerDesc,ppRasterizerState) \ - ( (This)->lpVtbl -> CreateRasterizerState(This,pRasterizerDesc,ppRasterizerState) ) - -#define ID3D10Device_CreateSamplerState(This,pSamplerDesc,ppSamplerState) \ - ( (This)->lpVtbl -> CreateSamplerState(This,pSamplerDesc,ppSamplerState) ) - -#define ID3D10Device_CreateQuery(This,pQueryDesc,ppQuery) \ - ( (This)->lpVtbl -> CreateQuery(This,pQueryDesc,ppQuery) ) - -#define ID3D10Device_CreatePredicate(This,pPredicateDesc,ppPredicate) \ - ( (This)->lpVtbl -> CreatePredicate(This,pPredicateDesc,ppPredicate) ) - -#define ID3D10Device_CreateCounter(This,pCounterDesc,ppCounter) \ - ( (This)->lpVtbl -> CreateCounter(This,pCounterDesc,ppCounter) ) - -#define ID3D10Device_CheckFormatSupport(This,Format,pFormatSupport) \ - ( (This)->lpVtbl -> CheckFormatSupport(This,Format,pFormatSupport) ) - -#define ID3D10Device_CheckMultisampleQualityLevels(This,Format,SampleCount,pNumQualityLevels) \ - ( (This)->lpVtbl -> CheckMultisampleQualityLevels(This,Format,SampleCount,pNumQualityLevels) ) - -#define ID3D10Device_CheckCounterInfo(This,pCounterInfo) \ - ( (This)->lpVtbl -> CheckCounterInfo(This,pCounterInfo) ) - -#define ID3D10Device_CheckCounter(This,pDesc,pType,pActiveCounters,szName,pNameLength,szUnits,pUnitsLength,szDescription,pDescriptionLength) \ - ( (This)->lpVtbl -> CheckCounter(This,pDesc,pType,pActiveCounters,szName,pNameLength,szUnits,pUnitsLength,szDescription,pDescriptionLength) ) - -#define ID3D10Device_GetCreationFlags(This) \ - ( (This)->lpVtbl -> GetCreationFlags(This) ) - -#define ID3D10Device_OpenSharedResource(This,hResource,ReturnedInterface,ppResource) \ - ( (This)->lpVtbl -> OpenSharedResource(This,hResource,ReturnedInterface,ppResource) ) - -#define ID3D10Device_SetTextFilterSize(This,Width,Height) \ - ( (This)->lpVtbl -> SetTextFilterSize(This,Width,Height) ) - -#define ID3D10Device_GetTextFilterSize(This,pWidth,pHeight) \ - ( (This)->lpVtbl -> GetTextFilterSize(This,pWidth,pHeight) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10Device_INTERFACE_DEFINED__ */ - - -#ifndef __ID3D10Multithread_INTERFACE_DEFINED__ -#define __ID3D10Multithread_INTERFACE_DEFINED__ - -/* interface ID3D10Multithread */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10Multithread; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("9B7E4E00-342C-4106-A19F-4F2704F689F0") - ID3D10Multithread : public IUnknown - { - public: - virtual void STDMETHODCALLTYPE Enter( void) = 0; - - virtual void STDMETHODCALLTYPE Leave( void) = 0; - - virtual BOOL STDMETHODCALLTYPE SetMultithreadProtected( - /* [annotation] */ - __in BOOL bMTProtect) = 0; - - virtual BOOL STDMETHODCALLTYPE GetMultithreadProtected( void) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D10MultithreadVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10Multithread * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10Multithread * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10Multithread * This); - - void ( STDMETHODCALLTYPE *Enter )( - ID3D10Multithread * This); - - void ( STDMETHODCALLTYPE *Leave )( - ID3D10Multithread * This); - - BOOL ( STDMETHODCALLTYPE *SetMultithreadProtected )( - ID3D10Multithread * This, - /* [annotation] */ - __in BOOL bMTProtect); - - BOOL ( STDMETHODCALLTYPE *GetMultithreadProtected )( - ID3D10Multithread * This); - - END_INTERFACE - } ID3D10MultithreadVtbl; - - interface ID3D10Multithread - { - CONST_VTBL struct ID3D10MultithreadVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10Multithread_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10Multithread_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10Multithread_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10Multithread_Enter(This) \ - ( (This)->lpVtbl -> Enter(This) ) - -#define ID3D10Multithread_Leave(This) \ - ( (This)->lpVtbl -> Leave(This) ) - -#define ID3D10Multithread_SetMultithreadProtected(This,bMTProtect) \ - ( (This)->lpVtbl -> SetMultithreadProtected(This,bMTProtect) ) - -#define ID3D10Multithread_GetMultithreadProtected(This) \ - ( (This)->lpVtbl -> GetMultithreadProtected(This) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10Multithread_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d10_0000_0024 */ -/* [local] */ - -typedef -enum D3D10_CREATE_DEVICE_FLAG - { D3D10_CREATE_DEVICE_SINGLETHREADED = 0x1, - D3D10_CREATE_DEVICE_DEBUG = 0x2, - D3D10_CREATE_DEVICE_SWITCH_TO_REF = 0x4, - D3D10_CREATE_DEVICE_PREVENT_INTERNAL_THREADING_OPTIMIZATIONS = 0x8, - D3D10_CREATE_DEVICE_ALLOW_NULL_FROM_MAP = 0x10, - D3D10_CREATE_DEVICE_BGRA_SUPPORT = 0x20, - D3D10_CREATE_DEVICE_STRICT_VALIDATION = 0x200 - } D3D10_CREATE_DEVICE_FLAG; - - -#define D3D10_SDK_VERSION ( 29 ) - -#if !defined( D3D10_IGNORE_SDK_LAYERS ) -#include "d3d10sdklayers.h" -#endif -#include "d3d10misc.h" -#include "d3d10shader.h" -#include "d3d10effect.h" -DEFINE_GUID(IID_ID3D10DeviceChild,0x9B7E4C00,0x342C,0x4106,0xA1,0x9F,0x4F,0x27,0x04,0xF6,0x89,0xF0); -DEFINE_GUID(IID_ID3D10DepthStencilState,0x2B4B1CC8,0xA4AD,0x41f8,0x83,0x22,0xCA,0x86,0xFC,0x3E,0xC6,0x75); -DEFINE_GUID(IID_ID3D10BlendState,0xEDAD8D19,0x8A35,0x4d6d,0x85,0x66,0x2E,0xA2,0x76,0xCD,0xE1,0x61); -DEFINE_GUID(IID_ID3D10RasterizerState,0xA2A07292,0x89AF,0x4345,0xBE,0x2E,0xC5,0x3D,0x9F,0xBB,0x6E,0x9F); -DEFINE_GUID(IID_ID3D10Resource,0x9B7E4C01,0x342C,0x4106,0xA1,0x9F,0x4F,0x27,0x04,0xF6,0x89,0xF0); -DEFINE_GUID(IID_ID3D10Buffer,0x9B7E4C02,0x342C,0x4106,0xA1,0x9F,0x4F,0x27,0x04,0xF6,0x89,0xF0); -DEFINE_GUID(IID_ID3D10Texture1D,0x9B7E4C03,0x342C,0x4106,0xA1,0x9F,0x4F,0x27,0x04,0xF6,0x89,0xF0); -DEFINE_GUID(IID_ID3D10Texture2D,0x9B7E4C04,0x342C,0x4106,0xA1,0x9F,0x4F,0x27,0x04,0xF6,0x89,0xF0); -DEFINE_GUID(IID_ID3D10Texture3D,0x9B7E4C05,0x342C,0x4106,0xA1,0x9F,0x4F,0x27,0x04,0xF6,0x89,0xF0); -DEFINE_GUID(IID_ID3D10View,0xC902B03F,0x60A7,0x49BA,0x99,0x36,0x2A,0x3A,0xB3,0x7A,0x7E,0x33); -DEFINE_GUID(IID_ID3D10ShaderResourceView,0x9B7E4C07,0x342C,0x4106,0xA1,0x9F,0x4F,0x27,0x04,0xF6,0x89,0xF0); -DEFINE_GUID(IID_ID3D10RenderTargetView,0x9B7E4C08,0x342C,0x4106,0xA1,0x9F,0x4F,0x27,0x04,0xF6,0x89,0xF0); -DEFINE_GUID(IID_ID3D10DepthStencilView,0x9B7E4C09,0x342C,0x4106,0xA1,0x9F,0x4F,0x27,0x04,0xF6,0x89,0xF0); -DEFINE_GUID(IID_ID3D10VertexShader,0x9B7E4C0A,0x342C,0x4106,0xA1,0x9F,0x4F,0x27,0x04,0xF6,0x89,0xF0); -DEFINE_GUID(IID_ID3D10GeometryShader,0x6316BE88,0x54CD,0x4040,0xAB,0x44,0x20,0x46,0x1B,0xC8,0x1F,0x68); -DEFINE_GUID(IID_ID3D10PixelShader,0x4968B601,0x9D00,0x4cde,0x83,0x46,0x8E,0x7F,0x67,0x58,0x19,0xB6); -DEFINE_GUID(IID_ID3D10InputLayout,0x9B7E4C0B,0x342C,0x4106,0xA1,0x9F,0x4F,0x27,0x04,0xF6,0x89,0xF0); -DEFINE_GUID(IID_ID3D10SamplerState,0x9B7E4C0C,0x342C,0x4106,0xA1,0x9F,0x4F,0x27,0x04,0xF6,0x89,0xF0); -DEFINE_GUID(IID_ID3D10Asynchronous,0x9B7E4C0D,0x342C,0x4106,0xA1,0x9F,0x4F,0x27,0x04,0xF6,0x89,0xF0); -DEFINE_GUID(IID_ID3D10Query,0x9B7E4C0E,0x342C,0x4106,0xA1,0x9F,0x4F,0x27,0x04,0xF6,0x89,0xF0); -DEFINE_GUID(IID_ID3D10Predicate,0x9B7E4C10,0x342C,0x4106,0xA1,0x9F,0x4F,0x27,0x04,0xF6,0x89,0xF0); -DEFINE_GUID(IID_ID3D10Counter,0x9B7E4C11,0x342C,0x4106,0xA1,0x9F,0x4F,0x27,0x04,0xF6,0x89,0xF0); -DEFINE_GUID(IID_ID3D10Device,0x9B7E4C0F,0x342C,0x4106,0xA1,0x9F,0x4F,0x27,0x04,0xF6,0x89,0xF0); -DEFINE_GUID(IID_ID3D10Multithread,0x9B7E4E00,0x342C,0x4106,0xA1,0x9F,0x4F,0x27,0x04,0xF6,0x89,0xF0); - - -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0024_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d10_0000_0024_v0_0_s_ifspec; - -/* Additional Prototypes for ALL interfaces */ - -/* end of Additional Prototypes */ - -#ifdef __cplusplus -} -#endif - -#endif - - diff --git a/SDK/Include/D3D10_1.h b/SDK/Include/D3D10_1.h deleted file mode 100644 index 17a8ec5..0000000 --- a/SDK/Include/D3D10_1.h +++ /dev/null @@ -1,1775 +0,0 @@ - - -/* this ALWAYS GENERATED file contains the definitions for the interfaces */ - - - /* File created by MIDL compiler version 7.00.0555 */ -/* @@MIDL_FILE_HEADING( ) */ - -#pragma warning( disable: 4049 ) /* more than 64k source lines */ - - -/* verify that the version is high enough to compile this file*/ -#ifndef __REQUIRED_RPCNDR_H_VERSION__ -#define __REQUIRED_RPCNDR_H_VERSION__ 475 -#endif - -/* verify that the version is high enough to compile this file*/ -#ifndef __REQUIRED_RPCSAL_H_VERSION__ -#define __REQUIRED_RPCSAL_H_VERSION__ 100 -#endif - -#include "rpc.h" -#include "rpcndr.h" - -#ifndef __RPCNDR_H_VERSION__ -#error this stub requires an updated version of -#endif // __RPCNDR_H_VERSION__ - -#ifndef COM_NO_WINDOWS_H -#include "windows.h" -#include "ole2.h" -#endif /*COM_NO_WINDOWS_H*/ - -#ifndef __d3d10_1_h__ -#define __d3d10_1_h__ - -#if defined(_MSC_VER) && (_MSC_VER >= 1020) -#pragma once -#endif - -/* Forward Declarations */ - -#ifndef __ID3D10BlendState1_FWD_DEFINED__ -#define __ID3D10BlendState1_FWD_DEFINED__ -typedef interface ID3D10BlendState1 ID3D10BlendState1; -#endif /* __ID3D10BlendState1_FWD_DEFINED__ */ - - -#ifndef __ID3D10ShaderResourceView1_FWD_DEFINED__ -#define __ID3D10ShaderResourceView1_FWD_DEFINED__ -typedef interface ID3D10ShaderResourceView1 ID3D10ShaderResourceView1; -#endif /* __ID3D10ShaderResourceView1_FWD_DEFINED__ */ - - -#ifndef __ID3D10Device1_FWD_DEFINED__ -#define __ID3D10Device1_FWD_DEFINED__ -typedef interface ID3D10Device1 ID3D10Device1; -#endif /* __ID3D10Device1_FWD_DEFINED__ */ - - -/* header files for imported files */ -#include "oaidl.h" -#include "ocidl.h" - -#ifdef __cplusplus -extern "C"{ -#endif - - -/* interface __MIDL_itf_d3d10_1_0000_0000 */ -/* [local] */ - -#if defined( __d3d10_h__ ) && !defined( D3D10_ARBITRARY_HEADER_ORDERING ) -#error d3d10.h is included before d3d10_1.h, and it will confuse tools that honor SAL annotations. \ -If possibly targeting d3d10.1, include d3d10_1.h instead of d3d10.h, or ensure d3d10_1.h is included before d3d10.h -#endif -#ifndef _D3D10_1_CONSTANTS -#define _D3D10_1_CONSTANTS -#define D3D10_1_DEFAULT_SAMPLE_MASK ( 0xffffffff ) - -#define D3D10_1_FLOAT16_FUSED_TOLERANCE_IN_ULP ( 0.6 ) -#define D3D10_1_FLOAT32_TO_INTEGER_TOLERANCE_IN_ULP ( 0.6f ) -#define D3D10_1_GS_INPUT_REGISTER_COUNT ( 32 ) - -#define D3D10_1_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT ( 32 ) - -#define D3D10_1_IA_VERTEX_INPUT_STRUCTURE_ELEMENTS_COMPONENTS ( 128 ) - -#define D3D10_1_IA_VERTEX_INPUT_STRUCTURE_ELEMENT_COUNT ( 32 ) - -#define D3D10_1_PS_OUTPUT_MASK_REGISTER_COMPONENTS ( 1 ) - -#define D3D10_1_PS_OUTPUT_MASK_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D10_1_PS_OUTPUT_MASK_REGISTER_COUNT ( 1 ) - -#define D3D10_1_SHADER_MAJOR_VERSION ( 4 ) - -#define D3D10_1_SHADER_MINOR_VERSION ( 1 ) - -#define D3D10_1_SO_BUFFER_MAX_STRIDE_IN_BYTES ( 2048 ) - -#define D3D10_1_SO_BUFFER_MAX_WRITE_WINDOW_IN_BYTES ( 256 ) - -#define D3D10_1_SO_BUFFER_SLOT_COUNT ( 4 ) - -#define D3D10_1_SO_MULTIPLE_BUFFER_ELEMENTS_PER_BUFFER ( 1 ) - -#define D3D10_1_SO_SINGLE_BUFFER_COMPONENT_LIMIT ( 64 ) - -#define D3D10_1_STANDARD_VERTEX_ELEMENT_COUNT ( 32 ) - -#define D3D10_1_SUBPIXEL_FRACTIONAL_BIT_COUNT ( 8 ) - -#define D3D10_1_VS_INPUT_REGISTER_COUNT ( 32 ) - -#define D3D10_1_VS_OUTPUT_REGISTER_COUNT ( 32 ) - -#endif -#include "d3d10.h" // - -typedef -enum D3D10_FEATURE_LEVEL1 - { D3D10_FEATURE_LEVEL_10_0 = 0xa000, - D3D10_FEATURE_LEVEL_10_1 = 0xa100, - D3D10_FEATURE_LEVEL_9_1 = 0x9100, - D3D10_FEATURE_LEVEL_9_2 = 0x9200, - D3D10_FEATURE_LEVEL_9_3 = 0x9300 - } D3D10_FEATURE_LEVEL1; - -typedef struct D3D10_RENDER_TARGET_BLEND_DESC1 - { - BOOL BlendEnable; - D3D10_BLEND SrcBlend; - D3D10_BLEND DestBlend; - D3D10_BLEND_OP BlendOp; - D3D10_BLEND SrcBlendAlpha; - D3D10_BLEND DestBlendAlpha; - D3D10_BLEND_OP BlendOpAlpha; - UINT8 RenderTargetWriteMask; - } D3D10_RENDER_TARGET_BLEND_DESC1; - -typedef struct D3D10_BLEND_DESC1 - { - BOOL AlphaToCoverageEnable; - BOOL IndependentBlendEnable; - D3D10_RENDER_TARGET_BLEND_DESC1 RenderTarget[ 8 ]; - } D3D10_BLEND_DESC1; - - - -extern RPC_IF_HANDLE __MIDL_itf_d3d10_1_0000_0000_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d10_1_0000_0000_v0_0_s_ifspec; - -#ifndef __ID3D10BlendState1_INTERFACE_DEFINED__ -#define __ID3D10BlendState1_INTERFACE_DEFINED__ - -/* interface ID3D10BlendState1 */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10BlendState1; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("EDAD8D99-8A35-4d6d-8566-2EA276CDE161") - ID3D10BlendState1 : public ID3D10BlendState - { - public: - virtual void STDMETHODCALLTYPE GetDesc1( - /* [annotation] */ - __out D3D10_BLEND_DESC1 *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D10BlendState1Vtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10BlendState1 * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10BlendState1 * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10BlendState1 * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D10BlendState1 * This, - /* [annotation] */ - __out ID3D10Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D10BlendState1 * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D10BlendState1 * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D10BlendState1 * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D10BlendState1 * This, - /* [annotation] */ - __out D3D10_BLEND_DESC *pDesc); - - void ( STDMETHODCALLTYPE *GetDesc1 )( - ID3D10BlendState1 * This, - /* [annotation] */ - __out D3D10_BLEND_DESC1 *pDesc); - - END_INTERFACE - } ID3D10BlendState1Vtbl; - - interface ID3D10BlendState1 - { - CONST_VTBL struct ID3D10BlendState1Vtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10BlendState1_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10BlendState1_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10BlendState1_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10BlendState1_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D10BlendState1_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D10BlendState1_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D10BlendState1_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D10BlendState1_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - - -#define ID3D10BlendState1_GetDesc1(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc1(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10BlendState1_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d10_1_0000_0001 */ -/* [local] */ - -typedef struct D3D10_TEXCUBE_ARRAY_SRV1 - { - UINT MostDetailedMip; - UINT MipLevels; - UINT First2DArrayFace; - UINT NumCubes; - } D3D10_TEXCUBE_ARRAY_SRV1; - -typedef D3D_SRV_DIMENSION D3D10_SRV_DIMENSION1; - -typedef struct D3D10_SHADER_RESOURCE_VIEW_DESC1 - { - DXGI_FORMAT Format; - D3D10_SRV_DIMENSION1 ViewDimension; - union - { - D3D10_BUFFER_SRV Buffer; - D3D10_TEX1D_SRV Texture1D; - D3D10_TEX1D_ARRAY_SRV Texture1DArray; - D3D10_TEX2D_SRV Texture2D; - D3D10_TEX2D_ARRAY_SRV Texture2DArray; - D3D10_TEX2DMS_SRV Texture2DMS; - D3D10_TEX2DMS_ARRAY_SRV Texture2DMSArray; - D3D10_TEX3D_SRV Texture3D; - D3D10_TEXCUBE_SRV TextureCube; - D3D10_TEXCUBE_ARRAY_SRV1 TextureCubeArray; - } ; - } D3D10_SHADER_RESOURCE_VIEW_DESC1; - - - -extern RPC_IF_HANDLE __MIDL_itf_d3d10_1_0000_0001_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d10_1_0000_0001_v0_0_s_ifspec; - -#ifndef __ID3D10ShaderResourceView1_INTERFACE_DEFINED__ -#define __ID3D10ShaderResourceView1_INTERFACE_DEFINED__ - -/* interface ID3D10ShaderResourceView1 */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10ShaderResourceView1; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("9B7E4C87-342C-4106-A19F-4F2704F689F0") - ID3D10ShaderResourceView1 : public ID3D10ShaderResourceView - { - public: - virtual void STDMETHODCALLTYPE GetDesc1( - /* [annotation] */ - __out D3D10_SHADER_RESOURCE_VIEW_DESC1 *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D10ShaderResourceView1Vtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10ShaderResourceView1 * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10ShaderResourceView1 * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10ShaderResourceView1 * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D10ShaderResourceView1 * This, - /* [annotation] */ - __out ID3D10Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D10ShaderResourceView1 * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D10ShaderResourceView1 * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D10ShaderResourceView1 * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetResource )( - ID3D10ShaderResourceView1 * This, - /* [annotation] */ - __out ID3D10Resource **ppResource); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D10ShaderResourceView1 * This, - /* [annotation] */ - __out D3D10_SHADER_RESOURCE_VIEW_DESC *pDesc); - - void ( STDMETHODCALLTYPE *GetDesc1 )( - ID3D10ShaderResourceView1 * This, - /* [annotation] */ - __out D3D10_SHADER_RESOURCE_VIEW_DESC1 *pDesc); - - END_INTERFACE - } ID3D10ShaderResourceView1Vtbl; - - interface ID3D10ShaderResourceView1 - { - CONST_VTBL struct ID3D10ShaderResourceView1Vtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10ShaderResourceView1_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10ShaderResourceView1_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10ShaderResourceView1_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10ShaderResourceView1_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D10ShaderResourceView1_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D10ShaderResourceView1_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D10ShaderResourceView1_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D10ShaderResourceView1_GetResource(This,ppResource) \ - ( (This)->lpVtbl -> GetResource(This,ppResource) ) - - -#define ID3D10ShaderResourceView1_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - - -#define ID3D10ShaderResourceView1_GetDesc1(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc1(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10ShaderResourceView1_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d10_1_0000_0002 */ -/* [local] */ - -typedef -enum D3D10_STANDARD_MULTISAMPLE_QUALITY_LEVELS - { D3D10_STANDARD_MULTISAMPLE_PATTERN = 0xffffffff, - D3D10_CENTER_MULTISAMPLE_PATTERN = 0xfffffffe - } D3D10_STANDARD_MULTISAMPLE_QUALITY_LEVELS; - - - -extern RPC_IF_HANDLE __MIDL_itf_d3d10_1_0000_0002_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d10_1_0000_0002_v0_0_s_ifspec; - -#ifndef __ID3D10Device1_INTERFACE_DEFINED__ -#define __ID3D10Device1_INTERFACE_DEFINED__ - -/* interface ID3D10Device1 */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10Device1; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("9B7E4C8F-342C-4106-A19F-4F2704F689F0") - ID3D10Device1 : public ID3D10Device - { - public: - virtual HRESULT STDMETHODCALLTYPE CreateShaderResourceView1( - /* [annotation] */ - __in ID3D10Resource *pResource, - /* [annotation] */ - __in_opt const D3D10_SHADER_RESOURCE_VIEW_DESC1 *pDesc, - /* [annotation] */ - __out_opt ID3D10ShaderResourceView1 **ppSRView) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateBlendState1( - /* [annotation] */ - __in const D3D10_BLEND_DESC1 *pBlendStateDesc, - /* [annotation] */ - __out_opt ID3D10BlendState1 **ppBlendState) = 0; - - virtual D3D10_FEATURE_LEVEL1 STDMETHODCALLTYPE GetFeatureLevel( void) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D10Device1Vtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10Device1 * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10Device1 * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10Device1 * This); - - void ( STDMETHODCALLTYPE *VSSetConstantBuffers )( - ID3D10Device1 * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) ID3D10Buffer *const *ppConstantBuffers); - - void ( STDMETHODCALLTYPE *PSSetShaderResources )( - ID3D10Device1 * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __in_ecount(NumViews) ID3D10ShaderResourceView *const *ppShaderResourceViews); - - void ( STDMETHODCALLTYPE *PSSetShader )( - ID3D10Device1 * This, - /* [annotation] */ - __in_opt ID3D10PixelShader *pPixelShader); - - void ( STDMETHODCALLTYPE *PSSetSamplers )( - ID3D10Device1 * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __in_ecount(NumSamplers) ID3D10SamplerState *const *ppSamplers); - - void ( STDMETHODCALLTYPE *VSSetShader )( - ID3D10Device1 * This, - /* [annotation] */ - __in_opt ID3D10VertexShader *pVertexShader); - - void ( STDMETHODCALLTYPE *DrawIndexed )( - ID3D10Device1 * This, - /* [annotation] */ - __in UINT IndexCount, - /* [annotation] */ - __in UINT StartIndexLocation, - /* [annotation] */ - __in INT BaseVertexLocation); - - void ( STDMETHODCALLTYPE *Draw )( - ID3D10Device1 * This, - /* [annotation] */ - __in UINT VertexCount, - /* [annotation] */ - __in UINT StartVertexLocation); - - void ( STDMETHODCALLTYPE *PSSetConstantBuffers )( - ID3D10Device1 * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) ID3D10Buffer *const *ppConstantBuffers); - - void ( STDMETHODCALLTYPE *IASetInputLayout )( - ID3D10Device1 * This, - /* [annotation] */ - __in_opt ID3D10InputLayout *pInputLayout); - - void ( STDMETHODCALLTYPE *IASetVertexBuffers )( - ID3D10Device1 * This, - /* [annotation] */ - __in_range( 0, D3D10_1_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_1_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) ID3D10Buffer *const *ppVertexBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) const UINT *pStrides, - /* [annotation] */ - __in_ecount(NumBuffers) const UINT *pOffsets); - - void ( STDMETHODCALLTYPE *IASetIndexBuffer )( - ID3D10Device1 * This, - /* [annotation] */ - __in_opt ID3D10Buffer *pIndexBuffer, - /* [annotation] */ - __in DXGI_FORMAT Format, - /* [annotation] */ - __in UINT Offset); - - void ( STDMETHODCALLTYPE *DrawIndexedInstanced )( - ID3D10Device1 * This, - /* [annotation] */ - __in UINT IndexCountPerInstance, - /* [annotation] */ - __in UINT InstanceCount, - /* [annotation] */ - __in UINT StartIndexLocation, - /* [annotation] */ - __in INT BaseVertexLocation, - /* [annotation] */ - __in UINT StartInstanceLocation); - - void ( STDMETHODCALLTYPE *DrawInstanced )( - ID3D10Device1 * This, - /* [annotation] */ - __in UINT VertexCountPerInstance, - /* [annotation] */ - __in UINT InstanceCount, - /* [annotation] */ - __in UINT StartVertexLocation, - /* [annotation] */ - __in UINT StartInstanceLocation); - - void ( STDMETHODCALLTYPE *GSSetConstantBuffers )( - ID3D10Device1 * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) ID3D10Buffer *const *ppConstantBuffers); - - void ( STDMETHODCALLTYPE *GSSetShader )( - ID3D10Device1 * This, - /* [annotation] */ - __in_opt ID3D10GeometryShader *pShader); - - void ( STDMETHODCALLTYPE *IASetPrimitiveTopology )( - ID3D10Device1 * This, - /* [annotation] */ - __in D3D10_PRIMITIVE_TOPOLOGY Topology); - - void ( STDMETHODCALLTYPE *VSSetShaderResources )( - ID3D10Device1 * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __in_ecount(NumViews) ID3D10ShaderResourceView *const *ppShaderResourceViews); - - void ( STDMETHODCALLTYPE *VSSetSamplers )( - ID3D10Device1 * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __in_ecount(NumSamplers) ID3D10SamplerState *const *ppSamplers); - - void ( STDMETHODCALLTYPE *SetPredication )( - ID3D10Device1 * This, - /* [annotation] */ - __in_opt ID3D10Predicate *pPredicate, - /* [annotation] */ - __in BOOL PredicateValue); - - void ( STDMETHODCALLTYPE *GSSetShaderResources )( - ID3D10Device1 * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __in_ecount(NumViews) ID3D10ShaderResourceView *const *ppShaderResourceViews); - - void ( STDMETHODCALLTYPE *GSSetSamplers )( - ID3D10Device1 * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __in_ecount(NumSamplers) ID3D10SamplerState *const *ppSamplers); - - void ( STDMETHODCALLTYPE *OMSetRenderTargets )( - ID3D10Device1 * This, - /* [annotation] */ - __in_range( 0, D3D10_SIMULTANEOUS_RENDER_TARGET_COUNT ) UINT NumViews, - /* [annotation] */ - __in_ecount_opt(NumViews) ID3D10RenderTargetView *const *ppRenderTargetViews, - /* [annotation] */ - __in_opt ID3D10DepthStencilView *pDepthStencilView); - - void ( STDMETHODCALLTYPE *OMSetBlendState )( - ID3D10Device1 * This, - /* [annotation] */ - __in_opt ID3D10BlendState *pBlendState, - /* [annotation] */ - __in const FLOAT BlendFactor[ 4 ], - /* [annotation] */ - __in UINT SampleMask); - - void ( STDMETHODCALLTYPE *OMSetDepthStencilState )( - ID3D10Device1 * This, - /* [annotation] */ - __in_opt ID3D10DepthStencilState *pDepthStencilState, - /* [annotation] */ - __in UINT StencilRef); - - void ( STDMETHODCALLTYPE *SOSetTargets )( - ID3D10Device1 * This, - /* [annotation] */ - __in_range( 0, D3D10_SO_BUFFER_SLOT_COUNT) UINT NumBuffers, - /* [annotation] */ - __in_ecount_opt(NumBuffers) ID3D10Buffer *const *ppSOTargets, - /* [annotation] */ - __in_ecount_opt(NumBuffers) const UINT *pOffsets); - - void ( STDMETHODCALLTYPE *DrawAuto )( - ID3D10Device1 * This); - - void ( STDMETHODCALLTYPE *RSSetState )( - ID3D10Device1 * This, - /* [annotation] */ - __in_opt ID3D10RasterizerState *pRasterizerState); - - void ( STDMETHODCALLTYPE *RSSetViewports )( - ID3D10Device1 * This, - /* [annotation] */ - __in_range(0, D3D10_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE) UINT NumViewports, - /* [annotation] */ - __in_ecount_opt(NumViewports) const D3D10_VIEWPORT *pViewports); - - void ( STDMETHODCALLTYPE *RSSetScissorRects )( - ID3D10Device1 * This, - /* [annotation] */ - __in_range(0, D3D10_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE) UINT NumRects, - /* [annotation] */ - __in_ecount_opt(NumRects) const D3D10_RECT *pRects); - - void ( STDMETHODCALLTYPE *CopySubresourceRegion )( - ID3D10Device1 * This, - /* [annotation] */ - __in ID3D10Resource *pDstResource, - /* [annotation] */ - __in UINT DstSubresource, - /* [annotation] */ - __in UINT DstX, - /* [annotation] */ - __in UINT DstY, - /* [annotation] */ - __in UINT DstZ, - /* [annotation] */ - __in ID3D10Resource *pSrcResource, - /* [annotation] */ - __in UINT SrcSubresource, - /* [annotation] */ - __in_opt const D3D10_BOX *pSrcBox); - - void ( STDMETHODCALLTYPE *CopyResource )( - ID3D10Device1 * This, - /* [annotation] */ - __in ID3D10Resource *pDstResource, - /* [annotation] */ - __in ID3D10Resource *pSrcResource); - - void ( STDMETHODCALLTYPE *UpdateSubresource )( - ID3D10Device1 * This, - /* [annotation] */ - __in ID3D10Resource *pDstResource, - /* [annotation] */ - __in UINT DstSubresource, - /* [annotation] */ - __in_opt const D3D10_BOX *pDstBox, - /* [annotation] */ - __in const void *pSrcData, - /* [annotation] */ - __in UINT SrcRowPitch, - /* [annotation] */ - __in UINT SrcDepthPitch); - - void ( STDMETHODCALLTYPE *ClearRenderTargetView )( - ID3D10Device1 * This, - /* [annotation] */ - __in ID3D10RenderTargetView *pRenderTargetView, - /* [annotation] */ - __in const FLOAT ColorRGBA[ 4 ]); - - void ( STDMETHODCALLTYPE *ClearDepthStencilView )( - ID3D10Device1 * This, - /* [annotation] */ - __in ID3D10DepthStencilView *pDepthStencilView, - /* [annotation] */ - __in UINT ClearFlags, - /* [annotation] */ - __in FLOAT Depth, - /* [annotation] */ - __in UINT8 Stencil); - - void ( STDMETHODCALLTYPE *GenerateMips )( - ID3D10Device1 * This, - /* [annotation] */ - __in ID3D10ShaderResourceView *pShaderResourceView); - - void ( STDMETHODCALLTYPE *ResolveSubresource )( - ID3D10Device1 * This, - /* [annotation] */ - __in ID3D10Resource *pDstResource, - /* [annotation] */ - __in UINT DstSubresource, - /* [annotation] */ - __in ID3D10Resource *pSrcResource, - /* [annotation] */ - __in UINT SrcSubresource, - /* [annotation] */ - __in DXGI_FORMAT Format); - - void ( STDMETHODCALLTYPE *VSGetConstantBuffers )( - ID3D10Device1 * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __out_ecount(NumBuffers) ID3D10Buffer **ppConstantBuffers); - - void ( STDMETHODCALLTYPE *PSGetShaderResources )( - ID3D10Device1 * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __out_ecount(NumViews) ID3D10ShaderResourceView **ppShaderResourceViews); - - void ( STDMETHODCALLTYPE *PSGetShader )( - ID3D10Device1 * This, - /* [annotation] */ - __out ID3D10PixelShader **ppPixelShader); - - void ( STDMETHODCALLTYPE *PSGetSamplers )( - ID3D10Device1 * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __out_ecount(NumSamplers) ID3D10SamplerState **ppSamplers); - - void ( STDMETHODCALLTYPE *VSGetShader )( - ID3D10Device1 * This, - /* [annotation] */ - __out ID3D10VertexShader **ppVertexShader); - - void ( STDMETHODCALLTYPE *PSGetConstantBuffers )( - ID3D10Device1 * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __out_ecount(NumBuffers) ID3D10Buffer **ppConstantBuffers); - - void ( STDMETHODCALLTYPE *IAGetInputLayout )( - ID3D10Device1 * This, - /* [annotation] */ - __out ID3D10InputLayout **ppInputLayout); - - void ( STDMETHODCALLTYPE *IAGetVertexBuffers )( - ID3D10Device1 * This, - /* [annotation] */ - __in_range( 0, D3D10_1_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_1_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __out_ecount_opt(NumBuffers) ID3D10Buffer **ppVertexBuffers, - /* [annotation] */ - __out_ecount_opt(NumBuffers) UINT *pStrides, - /* [annotation] */ - __out_ecount_opt(NumBuffers) UINT *pOffsets); - - void ( STDMETHODCALLTYPE *IAGetIndexBuffer )( - ID3D10Device1 * This, - /* [annotation] */ - __out_opt ID3D10Buffer **pIndexBuffer, - /* [annotation] */ - __out_opt DXGI_FORMAT *Format, - /* [annotation] */ - __out_opt UINT *Offset); - - void ( STDMETHODCALLTYPE *GSGetConstantBuffers )( - ID3D10Device1 * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __out_ecount(NumBuffers) ID3D10Buffer **ppConstantBuffers); - - void ( STDMETHODCALLTYPE *GSGetShader )( - ID3D10Device1 * This, - /* [annotation] */ - __out ID3D10GeometryShader **ppGeometryShader); - - void ( STDMETHODCALLTYPE *IAGetPrimitiveTopology )( - ID3D10Device1 * This, - /* [annotation] */ - __out D3D10_PRIMITIVE_TOPOLOGY *pTopology); - - void ( STDMETHODCALLTYPE *VSGetShaderResources )( - ID3D10Device1 * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __out_ecount(NumViews) ID3D10ShaderResourceView **ppShaderResourceViews); - - void ( STDMETHODCALLTYPE *VSGetSamplers )( - ID3D10Device1 * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __out_ecount(NumSamplers) ID3D10SamplerState **ppSamplers); - - void ( STDMETHODCALLTYPE *GetPredication )( - ID3D10Device1 * This, - /* [annotation] */ - __out_opt ID3D10Predicate **ppPredicate, - /* [annotation] */ - __out_opt BOOL *pPredicateValue); - - void ( STDMETHODCALLTYPE *GSGetShaderResources )( - ID3D10Device1 * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __out_ecount(NumViews) ID3D10ShaderResourceView **ppShaderResourceViews); - - void ( STDMETHODCALLTYPE *GSGetSamplers )( - ID3D10Device1 * This, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __out_ecount(NumSamplers) ID3D10SamplerState **ppSamplers); - - void ( STDMETHODCALLTYPE *OMGetRenderTargets )( - ID3D10Device1 * This, - /* [annotation] */ - __in_range( 0, D3D10_SIMULTANEOUS_RENDER_TARGET_COUNT ) UINT NumViews, - /* [annotation] */ - __out_ecount_opt(NumViews) ID3D10RenderTargetView **ppRenderTargetViews, - /* [annotation] */ - __out_opt ID3D10DepthStencilView **ppDepthStencilView); - - void ( STDMETHODCALLTYPE *OMGetBlendState )( - ID3D10Device1 * This, - /* [annotation] */ - __out_opt ID3D10BlendState **ppBlendState, - /* [annotation] */ - __out_opt FLOAT BlendFactor[ 4 ], - /* [annotation] */ - __out_opt UINT *pSampleMask); - - void ( STDMETHODCALLTYPE *OMGetDepthStencilState )( - ID3D10Device1 * This, - /* [annotation] */ - __out_opt ID3D10DepthStencilState **ppDepthStencilState, - /* [annotation] */ - __out_opt UINT *pStencilRef); - - void ( STDMETHODCALLTYPE *SOGetTargets )( - ID3D10Device1 * This, - /* [annotation] */ - __in_range( 0, D3D10_SO_BUFFER_SLOT_COUNT ) UINT NumBuffers, - /* [annotation] */ - __out_ecount_opt(NumBuffers) ID3D10Buffer **ppSOTargets, - /* [annotation] */ - __out_ecount_opt(NumBuffers) UINT *pOffsets); - - void ( STDMETHODCALLTYPE *RSGetState )( - ID3D10Device1 * This, - /* [annotation] */ - __out ID3D10RasterizerState **ppRasterizerState); - - void ( STDMETHODCALLTYPE *RSGetViewports )( - ID3D10Device1 * This, - /* [annotation] */ - __inout /*_range(0, D3D10_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE )*/ UINT *NumViewports, - /* [annotation] */ - __out_ecount_opt(*NumViewports) D3D10_VIEWPORT *pViewports); - - void ( STDMETHODCALLTYPE *RSGetScissorRects )( - ID3D10Device1 * This, - /* [annotation] */ - __inout /*_range(0, D3D10_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE )*/ UINT *NumRects, - /* [annotation] */ - __out_ecount_opt(*NumRects) D3D10_RECT *pRects); - - HRESULT ( STDMETHODCALLTYPE *GetDeviceRemovedReason )( - ID3D10Device1 * This); - - HRESULT ( STDMETHODCALLTYPE *SetExceptionMode )( - ID3D10Device1 * This, - UINT RaiseFlags); - - UINT ( STDMETHODCALLTYPE *GetExceptionMode )( - ID3D10Device1 * This); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D10Device1 * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D10Device1 * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D10Device1 * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *ClearState )( - ID3D10Device1 * This); - - void ( STDMETHODCALLTYPE *Flush )( - ID3D10Device1 * This); - - HRESULT ( STDMETHODCALLTYPE *CreateBuffer )( - ID3D10Device1 * This, - /* [annotation] */ - __in const D3D10_BUFFER_DESC *pDesc, - /* [annotation] */ - __in_opt const D3D10_SUBRESOURCE_DATA *pInitialData, - /* [annotation] */ - __out_opt ID3D10Buffer **ppBuffer); - - HRESULT ( STDMETHODCALLTYPE *CreateTexture1D )( - ID3D10Device1 * This, - /* [annotation] */ - __in const D3D10_TEXTURE1D_DESC *pDesc, - /* [annotation] */ - __in_xcount_opt(pDesc->MipLevels * pDesc->ArraySize) const D3D10_SUBRESOURCE_DATA *pInitialData, - /* [annotation] */ - __out ID3D10Texture1D **ppTexture1D); - - HRESULT ( STDMETHODCALLTYPE *CreateTexture2D )( - ID3D10Device1 * This, - /* [annotation] */ - __in const D3D10_TEXTURE2D_DESC *pDesc, - /* [annotation] */ - __in_xcount_opt(pDesc->MipLevels * pDesc->ArraySize) const D3D10_SUBRESOURCE_DATA *pInitialData, - /* [annotation] */ - __out ID3D10Texture2D **ppTexture2D); - - HRESULT ( STDMETHODCALLTYPE *CreateTexture3D )( - ID3D10Device1 * This, - /* [annotation] */ - __in const D3D10_TEXTURE3D_DESC *pDesc, - /* [annotation] */ - __in_xcount_opt(pDesc->MipLevels) const D3D10_SUBRESOURCE_DATA *pInitialData, - /* [annotation] */ - __out ID3D10Texture3D **ppTexture3D); - - HRESULT ( STDMETHODCALLTYPE *CreateShaderResourceView )( - ID3D10Device1 * This, - /* [annotation] */ - __in ID3D10Resource *pResource, - /* [annotation] */ - __in_opt const D3D10_SHADER_RESOURCE_VIEW_DESC *pDesc, - /* [annotation] */ - __out_opt ID3D10ShaderResourceView **ppSRView); - - HRESULT ( STDMETHODCALLTYPE *CreateRenderTargetView )( - ID3D10Device1 * This, - /* [annotation] */ - __in ID3D10Resource *pResource, - /* [annotation] */ - __in_opt const D3D10_RENDER_TARGET_VIEW_DESC *pDesc, - /* [annotation] */ - __out_opt ID3D10RenderTargetView **ppRTView); - - HRESULT ( STDMETHODCALLTYPE *CreateDepthStencilView )( - ID3D10Device1 * This, - /* [annotation] */ - __in ID3D10Resource *pResource, - /* [annotation] */ - __in_opt const D3D10_DEPTH_STENCIL_VIEW_DESC *pDesc, - /* [annotation] */ - __out_opt ID3D10DepthStencilView **ppDepthStencilView); - - HRESULT ( STDMETHODCALLTYPE *CreateInputLayout )( - ID3D10Device1 * This, - /* [annotation] */ - __in_ecount(NumElements) const D3D10_INPUT_ELEMENT_DESC *pInputElementDescs, - /* [annotation] */ - __in_range( 0, D3D10_1_IA_VERTEX_INPUT_STRUCTURE_ELEMENT_COUNT ) UINT NumElements, - /* [annotation] */ - __in const void *pShaderBytecodeWithInputSignature, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __out_opt ID3D10InputLayout **ppInputLayout); - - HRESULT ( STDMETHODCALLTYPE *CreateVertexShader )( - ID3D10Device1 * This, - /* [annotation] */ - __in const void *pShaderBytecode, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __out_opt ID3D10VertexShader **ppVertexShader); - - HRESULT ( STDMETHODCALLTYPE *CreateGeometryShader )( - ID3D10Device1 * This, - /* [annotation] */ - __in const void *pShaderBytecode, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __out_opt ID3D10GeometryShader **ppGeometryShader); - - HRESULT ( STDMETHODCALLTYPE *CreateGeometryShaderWithStreamOutput )( - ID3D10Device1 * This, - /* [annotation] */ - __in const void *pShaderBytecode, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __in_ecount_opt(NumEntries) const D3D10_SO_DECLARATION_ENTRY *pSODeclaration, - /* [annotation] */ - __in_range( 0, D3D10_SO_SINGLE_BUFFER_COMPONENT_LIMIT ) UINT NumEntries, - /* [annotation] */ - __in UINT OutputStreamStride, - /* [annotation] */ - __out_opt ID3D10GeometryShader **ppGeometryShader); - - HRESULT ( STDMETHODCALLTYPE *CreatePixelShader )( - ID3D10Device1 * This, - /* [annotation] */ - __in const void *pShaderBytecode, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __out_opt ID3D10PixelShader **ppPixelShader); - - HRESULT ( STDMETHODCALLTYPE *CreateBlendState )( - ID3D10Device1 * This, - /* [annotation] */ - __in const D3D10_BLEND_DESC *pBlendStateDesc, - /* [annotation] */ - __out_opt ID3D10BlendState **ppBlendState); - - HRESULT ( STDMETHODCALLTYPE *CreateDepthStencilState )( - ID3D10Device1 * This, - /* [annotation] */ - __in const D3D10_DEPTH_STENCIL_DESC *pDepthStencilDesc, - /* [annotation] */ - __out_opt ID3D10DepthStencilState **ppDepthStencilState); - - HRESULT ( STDMETHODCALLTYPE *CreateRasterizerState )( - ID3D10Device1 * This, - /* [annotation] */ - __in const D3D10_RASTERIZER_DESC *pRasterizerDesc, - /* [annotation] */ - __out_opt ID3D10RasterizerState **ppRasterizerState); - - HRESULT ( STDMETHODCALLTYPE *CreateSamplerState )( - ID3D10Device1 * This, - /* [annotation] */ - __in const D3D10_SAMPLER_DESC *pSamplerDesc, - /* [annotation] */ - __out_opt ID3D10SamplerState **ppSamplerState); - - HRESULT ( STDMETHODCALLTYPE *CreateQuery )( - ID3D10Device1 * This, - /* [annotation] */ - __in const D3D10_QUERY_DESC *pQueryDesc, - /* [annotation] */ - __out_opt ID3D10Query **ppQuery); - - HRESULT ( STDMETHODCALLTYPE *CreatePredicate )( - ID3D10Device1 * This, - /* [annotation] */ - __in const D3D10_QUERY_DESC *pPredicateDesc, - /* [annotation] */ - __out_opt ID3D10Predicate **ppPredicate); - - HRESULT ( STDMETHODCALLTYPE *CreateCounter )( - ID3D10Device1 * This, - /* [annotation] */ - __in const D3D10_COUNTER_DESC *pCounterDesc, - /* [annotation] */ - __out_opt ID3D10Counter **ppCounter); - - HRESULT ( STDMETHODCALLTYPE *CheckFormatSupport )( - ID3D10Device1 * This, - /* [annotation] */ - __in DXGI_FORMAT Format, - /* [annotation] */ - __out UINT *pFormatSupport); - - HRESULT ( STDMETHODCALLTYPE *CheckMultisampleQualityLevels )( - ID3D10Device1 * This, - /* [annotation] */ - __in DXGI_FORMAT Format, - /* [annotation] */ - __in UINT SampleCount, - /* [annotation] */ - __out UINT *pNumQualityLevels); - - void ( STDMETHODCALLTYPE *CheckCounterInfo )( - ID3D10Device1 * This, - /* [annotation] */ - __out D3D10_COUNTER_INFO *pCounterInfo); - - HRESULT ( STDMETHODCALLTYPE *CheckCounter )( - ID3D10Device1 * This, - /* [annotation] */ - __in const D3D10_COUNTER_DESC *pDesc, - /* [annotation] */ - __out D3D10_COUNTER_TYPE *pType, - /* [annotation] */ - __out UINT *pActiveCounters, - /* [annotation] */ - __out_ecount_opt(*pNameLength) LPSTR szName, - /* [annotation] */ - __inout_opt UINT *pNameLength, - /* [annotation] */ - __out_ecount_opt(*pUnitsLength) LPSTR szUnits, - /* [annotation] */ - __inout_opt UINT *pUnitsLength, - /* [annotation] */ - __out_ecount_opt(*pDescriptionLength) LPSTR szDescription, - /* [annotation] */ - __inout_opt UINT *pDescriptionLength); - - UINT ( STDMETHODCALLTYPE *GetCreationFlags )( - ID3D10Device1 * This); - - HRESULT ( STDMETHODCALLTYPE *OpenSharedResource )( - ID3D10Device1 * This, - /* [annotation] */ - __in HANDLE hResource, - /* [annotation] */ - __in REFIID ReturnedInterface, - /* [annotation] */ - __out_opt void **ppResource); - - void ( STDMETHODCALLTYPE *SetTextFilterSize )( - ID3D10Device1 * This, - /* [annotation] */ - __in UINT Width, - /* [annotation] */ - __in UINT Height); - - void ( STDMETHODCALLTYPE *GetTextFilterSize )( - ID3D10Device1 * This, - /* [annotation] */ - __out_opt UINT *pWidth, - /* [annotation] */ - __out_opt UINT *pHeight); - - HRESULT ( STDMETHODCALLTYPE *CreateShaderResourceView1 )( - ID3D10Device1 * This, - /* [annotation] */ - __in ID3D10Resource *pResource, - /* [annotation] */ - __in_opt const D3D10_SHADER_RESOURCE_VIEW_DESC1 *pDesc, - /* [annotation] */ - __out_opt ID3D10ShaderResourceView1 **ppSRView); - - HRESULT ( STDMETHODCALLTYPE *CreateBlendState1 )( - ID3D10Device1 * This, - /* [annotation] */ - __in const D3D10_BLEND_DESC1 *pBlendStateDesc, - /* [annotation] */ - __out_opt ID3D10BlendState1 **ppBlendState); - - D3D10_FEATURE_LEVEL1 ( STDMETHODCALLTYPE *GetFeatureLevel )( - ID3D10Device1 * This); - - END_INTERFACE - } ID3D10Device1Vtbl; - - interface ID3D10Device1 - { - CONST_VTBL struct ID3D10Device1Vtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10Device1_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10Device1_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10Device1_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10Device1_VSSetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) \ - ( (This)->lpVtbl -> VSSetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) ) - -#define ID3D10Device1_PSSetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) \ - ( (This)->lpVtbl -> PSSetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) ) - -#define ID3D10Device1_PSSetShader(This,pPixelShader) \ - ( (This)->lpVtbl -> PSSetShader(This,pPixelShader) ) - -#define ID3D10Device1_PSSetSamplers(This,StartSlot,NumSamplers,ppSamplers) \ - ( (This)->lpVtbl -> PSSetSamplers(This,StartSlot,NumSamplers,ppSamplers) ) - -#define ID3D10Device1_VSSetShader(This,pVertexShader) \ - ( (This)->lpVtbl -> VSSetShader(This,pVertexShader) ) - -#define ID3D10Device1_DrawIndexed(This,IndexCount,StartIndexLocation,BaseVertexLocation) \ - ( (This)->lpVtbl -> DrawIndexed(This,IndexCount,StartIndexLocation,BaseVertexLocation) ) - -#define ID3D10Device1_Draw(This,VertexCount,StartVertexLocation) \ - ( (This)->lpVtbl -> Draw(This,VertexCount,StartVertexLocation) ) - -#define ID3D10Device1_PSSetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) \ - ( (This)->lpVtbl -> PSSetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) ) - -#define ID3D10Device1_IASetInputLayout(This,pInputLayout) \ - ( (This)->lpVtbl -> IASetInputLayout(This,pInputLayout) ) - -#define ID3D10Device1_IASetVertexBuffers(This,StartSlot,NumBuffers,ppVertexBuffers,pStrides,pOffsets) \ - ( (This)->lpVtbl -> IASetVertexBuffers(This,StartSlot,NumBuffers,ppVertexBuffers,pStrides,pOffsets) ) - -#define ID3D10Device1_IASetIndexBuffer(This,pIndexBuffer,Format,Offset) \ - ( (This)->lpVtbl -> IASetIndexBuffer(This,pIndexBuffer,Format,Offset) ) - -#define ID3D10Device1_DrawIndexedInstanced(This,IndexCountPerInstance,InstanceCount,StartIndexLocation,BaseVertexLocation,StartInstanceLocation) \ - ( (This)->lpVtbl -> DrawIndexedInstanced(This,IndexCountPerInstance,InstanceCount,StartIndexLocation,BaseVertexLocation,StartInstanceLocation) ) - -#define ID3D10Device1_DrawInstanced(This,VertexCountPerInstance,InstanceCount,StartVertexLocation,StartInstanceLocation) \ - ( (This)->lpVtbl -> DrawInstanced(This,VertexCountPerInstance,InstanceCount,StartVertexLocation,StartInstanceLocation) ) - -#define ID3D10Device1_GSSetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) \ - ( (This)->lpVtbl -> GSSetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) ) - -#define ID3D10Device1_GSSetShader(This,pShader) \ - ( (This)->lpVtbl -> GSSetShader(This,pShader) ) - -#define ID3D10Device1_IASetPrimitiveTopology(This,Topology) \ - ( (This)->lpVtbl -> IASetPrimitiveTopology(This,Topology) ) - -#define ID3D10Device1_VSSetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) \ - ( (This)->lpVtbl -> VSSetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) ) - -#define ID3D10Device1_VSSetSamplers(This,StartSlot,NumSamplers,ppSamplers) \ - ( (This)->lpVtbl -> VSSetSamplers(This,StartSlot,NumSamplers,ppSamplers) ) - -#define ID3D10Device1_SetPredication(This,pPredicate,PredicateValue) \ - ( (This)->lpVtbl -> SetPredication(This,pPredicate,PredicateValue) ) - -#define ID3D10Device1_GSSetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) \ - ( (This)->lpVtbl -> GSSetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) ) - -#define ID3D10Device1_GSSetSamplers(This,StartSlot,NumSamplers,ppSamplers) \ - ( (This)->lpVtbl -> GSSetSamplers(This,StartSlot,NumSamplers,ppSamplers) ) - -#define ID3D10Device1_OMSetRenderTargets(This,NumViews,ppRenderTargetViews,pDepthStencilView) \ - ( (This)->lpVtbl -> OMSetRenderTargets(This,NumViews,ppRenderTargetViews,pDepthStencilView) ) - -#define ID3D10Device1_OMSetBlendState(This,pBlendState,BlendFactor,SampleMask) \ - ( (This)->lpVtbl -> OMSetBlendState(This,pBlendState,BlendFactor,SampleMask) ) - -#define ID3D10Device1_OMSetDepthStencilState(This,pDepthStencilState,StencilRef) \ - ( (This)->lpVtbl -> OMSetDepthStencilState(This,pDepthStencilState,StencilRef) ) - -#define ID3D10Device1_SOSetTargets(This,NumBuffers,ppSOTargets,pOffsets) \ - ( (This)->lpVtbl -> SOSetTargets(This,NumBuffers,ppSOTargets,pOffsets) ) - -#define ID3D10Device1_DrawAuto(This) \ - ( (This)->lpVtbl -> DrawAuto(This) ) - -#define ID3D10Device1_RSSetState(This,pRasterizerState) \ - ( (This)->lpVtbl -> RSSetState(This,pRasterizerState) ) - -#define ID3D10Device1_RSSetViewports(This,NumViewports,pViewports) \ - ( (This)->lpVtbl -> RSSetViewports(This,NumViewports,pViewports) ) - -#define ID3D10Device1_RSSetScissorRects(This,NumRects,pRects) \ - ( (This)->lpVtbl -> RSSetScissorRects(This,NumRects,pRects) ) - -#define ID3D10Device1_CopySubresourceRegion(This,pDstResource,DstSubresource,DstX,DstY,DstZ,pSrcResource,SrcSubresource,pSrcBox) \ - ( (This)->lpVtbl -> CopySubresourceRegion(This,pDstResource,DstSubresource,DstX,DstY,DstZ,pSrcResource,SrcSubresource,pSrcBox) ) - -#define ID3D10Device1_CopyResource(This,pDstResource,pSrcResource) \ - ( (This)->lpVtbl -> CopyResource(This,pDstResource,pSrcResource) ) - -#define ID3D10Device1_UpdateSubresource(This,pDstResource,DstSubresource,pDstBox,pSrcData,SrcRowPitch,SrcDepthPitch) \ - ( (This)->lpVtbl -> UpdateSubresource(This,pDstResource,DstSubresource,pDstBox,pSrcData,SrcRowPitch,SrcDepthPitch) ) - -#define ID3D10Device1_ClearRenderTargetView(This,pRenderTargetView,ColorRGBA) \ - ( (This)->lpVtbl -> ClearRenderTargetView(This,pRenderTargetView,ColorRGBA) ) - -#define ID3D10Device1_ClearDepthStencilView(This,pDepthStencilView,ClearFlags,Depth,Stencil) \ - ( (This)->lpVtbl -> ClearDepthStencilView(This,pDepthStencilView,ClearFlags,Depth,Stencil) ) - -#define ID3D10Device1_GenerateMips(This,pShaderResourceView) \ - ( (This)->lpVtbl -> GenerateMips(This,pShaderResourceView) ) - -#define ID3D10Device1_ResolveSubresource(This,pDstResource,DstSubresource,pSrcResource,SrcSubresource,Format) \ - ( (This)->lpVtbl -> ResolveSubresource(This,pDstResource,DstSubresource,pSrcResource,SrcSubresource,Format) ) - -#define ID3D10Device1_VSGetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) \ - ( (This)->lpVtbl -> VSGetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) ) - -#define ID3D10Device1_PSGetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) \ - ( (This)->lpVtbl -> PSGetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) ) - -#define ID3D10Device1_PSGetShader(This,ppPixelShader) \ - ( (This)->lpVtbl -> PSGetShader(This,ppPixelShader) ) - -#define ID3D10Device1_PSGetSamplers(This,StartSlot,NumSamplers,ppSamplers) \ - ( (This)->lpVtbl -> PSGetSamplers(This,StartSlot,NumSamplers,ppSamplers) ) - -#define ID3D10Device1_VSGetShader(This,ppVertexShader) \ - ( (This)->lpVtbl -> VSGetShader(This,ppVertexShader) ) - -#define ID3D10Device1_PSGetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) \ - ( (This)->lpVtbl -> PSGetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) ) - -#define ID3D10Device1_IAGetInputLayout(This,ppInputLayout) \ - ( (This)->lpVtbl -> IAGetInputLayout(This,ppInputLayout) ) - -#define ID3D10Device1_IAGetVertexBuffers(This,StartSlot,NumBuffers,ppVertexBuffers,pStrides,pOffsets) \ - ( (This)->lpVtbl -> IAGetVertexBuffers(This,StartSlot,NumBuffers,ppVertexBuffers,pStrides,pOffsets) ) - -#define ID3D10Device1_IAGetIndexBuffer(This,pIndexBuffer,Format,Offset) \ - ( (This)->lpVtbl -> IAGetIndexBuffer(This,pIndexBuffer,Format,Offset) ) - -#define ID3D10Device1_GSGetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) \ - ( (This)->lpVtbl -> GSGetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) ) - -#define ID3D10Device1_GSGetShader(This,ppGeometryShader) \ - ( (This)->lpVtbl -> GSGetShader(This,ppGeometryShader) ) - -#define ID3D10Device1_IAGetPrimitiveTopology(This,pTopology) \ - ( (This)->lpVtbl -> IAGetPrimitiveTopology(This,pTopology) ) - -#define ID3D10Device1_VSGetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) \ - ( (This)->lpVtbl -> VSGetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) ) - -#define ID3D10Device1_VSGetSamplers(This,StartSlot,NumSamplers,ppSamplers) \ - ( (This)->lpVtbl -> VSGetSamplers(This,StartSlot,NumSamplers,ppSamplers) ) - -#define ID3D10Device1_GetPredication(This,ppPredicate,pPredicateValue) \ - ( (This)->lpVtbl -> GetPredication(This,ppPredicate,pPredicateValue) ) - -#define ID3D10Device1_GSGetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) \ - ( (This)->lpVtbl -> GSGetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) ) - -#define ID3D10Device1_GSGetSamplers(This,StartSlot,NumSamplers,ppSamplers) \ - ( (This)->lpVtbl -> GSGetSamplers(This,StartSlot,NumSamplers,ppSamplers) ) - -#define ID3D10Device1_OMGetRenderTargets(This,NumViews,ppRenderTargetViews,ppDepthStencilView) \ - ( (This)->lpVtbl -> OMGetRenderTargets(This,NumViews,ppRenderTargetViews,ppDepthStencilView) ) - -#define ID3D10Device1_OMGetBlendState(This,ppBlendState,BlendFactor,pSampleMask) \ - ( (This)->lpVtbl -> OMGetBlendState(This,ppBlendState,BlendFactor,pSampleMask) ) - -#define ID3D10Device1_OMGetDepthStencilState(This,ppDepthStencilState,pStencilRef) \ - ( (This)->lpVtbl -> OMGetDepthStencilState(This,ppDepthStencilState,pStencilRef) ) - -#define ID3D10Device1_SOGetTargets(This,NumBuffers,ppSOTargets,pOffsets) \ - ( (This)->lpVtbl -> SOGetTargets(This,NumBuffers,ppSOTargets,pOffsets) ) - -#define ID3D10Device1_RSGetState(This,ppRasterizerState) \ - ( (This)->lpVtbl -> RSGetState(This,ppRasterizerState) ) - -#define ID3D10Device1_RSGetViewports(This,NumViewports,pViewports) \ - ( (This)->lpVtbl -> RSGetViewports(This,NumViewports,pViewports) ) - -#define ID3D10Device1_RSGetScissorRects(This,NumRects,pRects) \ - ( (This)->lpVtbl -> RSGetScissorRects(This,NumRects,pRects) ) - -#define ID3D10Device1_GetDeviceRemovedReason(This) \ - ( (This)->lpVtbl -> GetDeviceRemovedReason(This) ) - -#define ID3D10Device1_SetExceptionMode(This,RaiseFlags) \ - ( (This)->lpVtbl -> SetExceptionMode(This,RaiseFlags) ) - -#define ID3D10Device1_GetExceptionMode(This) \ - ( (This)->lpVtbl -> GetExceptionMode(This) ) - -#define ID3D10Device1_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D10Device1_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D10Device1_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - -#define ID3D10Device1_ClearState(This) \ - ( (This)->lpVtbl -> ClearState(This) ) - -#define ID3D10Device1_Flush(This) \ - ( (This)->lpVtbl -> Flush(This) ) - -#define ID3D10Device1_CreateBuffer(This,pDesc,pInitialData,ppBuffer) \ - ( (This)->lpVtbl -> CreateBuffer(This,pDesc,pInitialData,ppBuffer) ) - -#define ID3D10Device1_CreateTexture1D(This,pDesc,pInitialData,ppTexture1D) \ - ( (This)->lpVtbl -> CreateTexture1D(This,pDesc,pInitialData,ppTexture1D) ) - -#define ID3D10Device1_CreateTexture2D(This,pDesc,pInitialData,ppTexture2D) \ - ( (This)->lpVtbl -> CreateTexture2D(This,pDesc,pInitialData,ppTexture2D) ) - -#define ID3D10Device1_CreateTexture3D(This,pDesc,pInitialData,ppTexture3D) \ - ( (This)->lpVtbl -> CreateTexture3D(This,pDesc,pInitialData,ppTexture3D) ) - -#define ID3D10Device1_CreateShaderResourceView(This,pResource,pDesc,ppSRView) \ - ( (This)->lpVtbl -> CreateShaderResourceView(This,pResource,pDesc,ppSRView) ) - -#define ID3D10Device1_CreateRenderTargetView(This,pResource,pDesc,ppRTView) \ - ( (This)->lpVtbl -> CreateRenderTargetView(This,pResource,pDesc,ppRTView) ) - -#define ID3D10Device1_CreateDepthStencilView(This,pResource,pDesc,ppDepthStencilView) \ - ( (This)->lpVtbl -> CreateDepthStencilView(This,pResource,pDesc,ppDepthStencilView) ) - -#define ID3D10Device1_CreateInputLayout(This,pInputElementDescs,NumElements,pShaderBytecodeWithInputSignature,BytecodeLength,ppInputLayout) \ - ( (This)->lpVtbl -> CreateInputLayout(This,pInputElementDescs,NumElements,pShaderBytecodeWithInputSignature,BytecodeLength,ppInputLayout) ) - -#define ID3D10Device1_CreateVertexShader(This,pShaderBytecode,BytecodeLength,ppVertexShader) \ - ( (This)->lpVtbl -> CreateVertexShader(This,pShaderBytecode,BytecodeLength,ppVertexShader) ) - -#define ID3D10Device1_CreateGeometryShader(This,pShaderBytecode,BytecodeLength,ppGeometryShader) \ - ( (This)->lpVtbl -> CreateGeometryShader(This,pShaderBytecode,BytecodeLength,ppGeometryShader) ) - -#define ID3D10Device1_CreateGeometryShaderWithStreamOutput(This,pShaderBytecode,BytecodeLength,pSODeclaration,NumEntries,OutputStreamStride,ppGeometryShader) \ - ( (This)->lpVtbl -> CreateGeometryShaderWithStreamOutput(This,pShaderBytecode,BytecodeLength,pSODeclaration,NumEntries,OutputStreamStride,ppGeometryShader) ) - -#define ID3D10Device1_CreatePixelShader(This,pShaderBytecode,BytecodeLength,ppPixelShader) \ - ( (This)->lpVtbl -> CreatePixelShader(This,pShaderBytecode,BytecodeLength,ppPixelShader) ) - -#define ID3D10Device1_CreateBlendState(This,pBlendStateDesc,ppBlendState) \ - ( (This)->lpVtbl -> CreateBlendState(This,pBlendStateDesc,ppBlendState) ) - -#define ID3D10Device1_CreateDepthStencilState(This,pDepthStencilDesc,ppDepthStencilState) \ - ( (This)->lpVtbl -> CreateDepthStencilState(This,pDepthStencilDesc,ppDepthStencilState) ) - -#define ID3D10Device1_CreateRasterizerState(This,pRasterizerDesc,ppRasterizerState) \ - ( (This)->lpVtbl -> CreateRasterizerState(This,pRasterizerDesc,ppRasterizerState) ) - -#define ID3D10Device1_CreateSamplerState(This,pSamplerDesc,ppSamplerState) \ - ( (This)->lpVtbl -> CreateSamplerState(This,pSamplerDesc,ppSamplerState) ) - -#define ID3D10Device1_CreateQuery(This,pQueryDesc,ppQuery) \ - ( (This)->lpVtbl -> CreateQuery(This,pQueryDesc,ppQuery) ) - -#define ID3D10Device1_CreatePredicate(This,pPredicateDesc,ppPredicate) \ - ( (This)->lpVtbl -> CreatePredicate(This,pPredicateDesc,ppPredicate) ) - -#define ID3D10Device1_CreateCounter(This,pCounterDesc,ppCounter) \ - ( (This)->lpVtbl -> CreateCounter(This,pCounterDesc,ppCounter) ) - -#define ID3D10Device1_CheckFormatSupport(This,Format,pFormatSupport) \ - ( (This)->lpVtbl -> CheckFormatSupport(This,Format,pFormatSupport) ) - -#define ID3D10Device1_CheckMultisampleQualityLevels(This,Format,SampleCount,pNumQualityLevels) \ - ( (This)->lpVtbl -> CheckMultisampleQualityLevels(This,Format,SampleCount,pNumQualityLevels) ) - -#define ID3D10Device1_CheckCounterInfo(This,pCounterInfo) \ - ( (This)->lpVtbl -> CheckCounterInfo(This,pCounterInfo) ) - -#define ID3D10Device1_CheckCounter(This,pDesc,pType,pActiveCounters,szName,pNameLength,szUnits,pUnitsLength,szDescription,pDescriptionLength) \ - ( (This)->lpVtbl -> CheckCounter(This,pDesc,pType,pActiveCounters,szName,pNameLength,szUnits,pUnitsLength,szDescription,pDescriptionLength) ) - -#define ID3D10Device1_GetCreationFlags(This) \ - ( (This)->lpVtbl -> GetCreationFlags(This) ) - -#define ID3D10Device1_OpenSharedResource(This,hResource,ReturnedInterface,ppResource) \ - ( (This)->lpVtbl -> OpenSharedResource(This,hResource,ReturnedInterface,ppResource) ) - -#define ID3D10Device1_SetTextFilterSize(This,Width,Height) \ - ( (This)->lpVtbl -> SetTextFilterSize(This,Width,Height) ) - -#define ID3D10Device1_GetTextFilterSize(This,pWidth,pHeight) \ - ( (This)->lpVtbl -> GetTextFilterSize(This,pWidth,pHeight) ) - - -#define ID3D10Device1_CreateShaderResourceView1(This,pResource,pDesc,ppSRView) \ - ( (This)->lpVtbl -> CreateShaderResourceView1(This,pResource,pDesc,ppSRView) ) - -#define ID3D10Device1_CreateBlendState1(This,pBlendStateDesc,ppBlendState) \ - ( (This)->lpVtbl -> CreateBlendState1(This,pBlendStateDesc,ppBlendState) ) - -#define ID3D10Device1_GetFeatureLevel(This) \ - ( (This)->lpVtbl -> GetFeatureLevel(This) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10Device1_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d10_1_0000_0003 */ -/* [local] */ - -#define D3D10_1_SDK_VERSION ( ( 0 + 0x20 ) ) - -#include "d3d10_1shader.h" - -/////////////////////////////////////////////////////////////////////////// -// D3D10CreateDevice1 -// ------------------ -// -// pAdapter -// If NULL, D3D10CreateDevice1 will choose the primary adapter and -// create a new instance from a temporarily created IDXGIFactory. -// If non-NULL, D3D10CreateDevice1 will register the appropriate -// device, if necessary (via IDXGIAdapter::RegisterDrver), before -// creating the device. -// DriverType -// Specifies the driver type to be created: hardware, reference or -// null. -// Software -// HMODULE of a DLL implementing a software rasterizer. Must be NULL for -// non-Software driver types. -// Flags -// Any of those documented for D3D10CreateDeviceAndSwapChain1. -// HardwareLevel -// Any of those documented for D3D10CreateDeviceAndSwapChain1. -// SDKVersion -// SDK version. Use the D3D10_1_SDK_VERSION macro. -// ppDevice -// Pointer to returned interface. -// -// Return Values -// Any of those documented for -// CreateDXGIFactory -// IDXGIFactory::EnumAdapters -// IDXGIAdapter::RegisterDriver -// D3D10CreateDevice1 -// -/////////////////////////////////////////////////////////////////////////// -typedef HRESULT (WINAPI* PFN_D3D10_CREATE_DEVICE1)(IDXGIAdapter *, - D3D10_DRIVER_TYPE, HMODULE, UINT, D3D10_FEATURE_LEVEL1, UINT, ID3D10Device1**); - -HRESULT WINAPI D3D10CreateDevice1( - IDXGIAdapter *pAdapter, - D3D10_DRIVER_TYPE DriverType, - HMODULE Software, - UINT Flags, - D3D10_FEATURE_LEVEL1 HardwareLevel, - UINT SDKVersion, - ID3D10Device1 **ppDevice); - -/////////////////////////////////////////////////////////////////////////// -// D3D10CreateDeviceAndSwapChain1 -// ------------------------------ -// -// ppAdapter -// If NULL, D3D10CreateDevice1 will choose the primary adapter and -// create a new instance from a temporarily created IDXGIFactory. -// If non-NULL, D3D10CreateDevice1 will register the appropriate -// device, if necessary (via IDXGIAdapter::RegisterDrver), before -// creating the device. -// DriverType -// Specifies the driver type to be created: hardware, reference or -// null. -// Software -// HMODULE of a DLL implementing a software rasterizer. Must be NULL for -// non-Software driver types. -// Flags -// Any of those documented for D3D10CreateDevice1. -// HardwareLevel -// Any of: -// D3D10_CREATE_LEVEL_10_0 -// D3D10_CREATE_LEVEL_10_1 -// SDKVersion -// SDK version. Use the D3D10_1_SDK_VERSION macro. -// pSwapChainDesc -// Swap chain description, may be NULL. -// ppSwapChain -// Pointer to returned interface. May be NULL. -// ppDevice -// Pointer to returned interface. -// -// Return Values -// Any of those documented for -// CreateDXGIFactory -// IDXGIFactory::EnumAdapters -// IDXGIAdapter::RegisterDriver -// D3D10CreateDevice1 -// IDXGIFactory::CreateSwapChain -// -/////////////////////////////////////////////////////////////////////////// -typedef HRESULT (WINAPI* PFN_D3D10_CREATE_DEVICE_AND_SWAP_CHAIN1)(IDXGIAdapter *, - D3D10_DRIVER_TYPE, HMODULE, UINT, D3D10_FEATURE_LEVEL1, UINT, DXGI_SWAP_CHAIN_DESC *, IDXGISwapChain **, ID3D10Device1 **); - -HRESULT WINAPI D3D10CreateDeviceAndSwapChain1( - IDXGIAdapter *pAdapter, - D3D10_DRIVER_TYPE DriverType, - HMODULE Software, - UINT Flags, - D3D10_FEATURE_LEVEL1 HardwareLevel, - UINT SDKVersion, - DXGI_SWAP_CHAIN_DESC *pSwapChainDesc, - IDXGISwapChain **ppSwapChain, - ID3D10Device1 **ppDevice); -DEFINE_GUID(IID_ID3D10BlendState1,0xEDAD8D99,0x8A35,0x4d6d,0x85,0x66,0x2E,0xA2,0x76,0xCD,0xE1,0x61); -DEFINE_GUID(IID_ID3D10ShaderResourceView1,0x9B7E4C87,0x342C,0x4106,0xA1,0x9F,0x4F,0x27,0x04,0xF6,0x89,0xF0); -DEFINE_GUID(IID_ID3D10Device1,0x9B7E4C8F,0x342C,0x4106,0xA1,0x9F,0x4F,0x27,0x04,0xF6,0x89,0xF0); - - -extern RPC_IF_HANDLE __MIDL_itf_d3d10_1_0000_0003_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d10_1_0000_0003_v0_0_s_ifspec; - -/* Additional Prototypes for ALL interfaces */ - -/* end of Additional Prototypes */ - -#ifdef __cplusplus -} -#endif - -#endif - - diff --git a/SDK/Include/D3D10_1shader.h b/SDK/Include/D3D10_1shader.h deleted file mode 100644 index 2726f8f..0000000 --- a/SDK/Include/D3D10_1shader.h +++ /dev/null @@ -1,301 +0,0 @@ -////////////////////////////////////////////////////////////////////////////// -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// -// File: D3D10_1Shader.h -// Content: D3D10.1 Shader Types and APIs -// -////////////////////////////////////////////////////////////////////////////// - -#ifndef __D3D10_1SHADER_H__ -#define __D3D10_1SHADER_H__ - -#include "d3d10shader.h" - -//---------------------------------------------------------------------------- -// Shader debugging structures -//---------------------------------------------------------------------------- - -typedef enum _D3D10_SHADER_DEBUG_REGTYPE -{ - D3D10_SHADER_DEBUG_REG_INPUT, - D3D10_SHADER_DEBUG_REG_OUTPUT, - D3D10_SHADER_DEBUG_REG_CBUFFER, - D3D10_SHADER_DEBUG_REG_TBUFFER, - D3D10_SHADER_DEBUG_REG_TEMP, - D3D10_SHADER_DEBUG_REG_TEMPARRAY, - D3D10_SHADER_DEBUG_REG_TEXTURE, - D3D10_SHADER_DEBUG_REG_SAMPLER, - D3D10_SHADER_DEBUG_REG_IMMEDIATECBUFFER, - D3D10_SHADER_DEBUG_REG_LITERAL, - D3D10_SHADER_DEBUG_REG_UNUSED, - D3D11_SHADER_DEBUG_REG_INTERFACE_POINTERS, - D3D11_SHADER_DEBUG_REG_UAV, - D3D10_SHADER_DEBUG_REG_FORCE_DWORD = 0x7fffffff, -} D3D10_SHADER_DEBUG_REGTYPE; - -typedef enum _D3D10_SHADER_DEBUG_SCOPETYPE -{ - D3D10_SHADER_DEBUG_SCOPE_GLOBAL, - D3D10_SHADER_DEBUG_SCOPE_BLOCK, - D3D10_SHADER_DEBUG_SCOPE_FORLOOP, - D3D10_SHADER_DEBUG_SCOPE_STRUCT, - D3D10_SHADER_DEBUG_SCOPE_FUNC_PARAMS, - D3D10_SHADER_DEBUG_SCOPE_STATEBLOCK, - D3D10_SHADER_DEBUG_SCOPE_NAMESPACE, - D3D10_SHADER_DEBUG_SCOPE_ANNOTATION, - D3D10_SHADER_DEBUG_SCOPE_FORCE_DWORD = 0x7fffffff, -} D3D10_SHADER_DEBUG_SCOPETYPE; - -typedef enum _D3D10_SHADER_DEBUG_VARTYPE -{ - D3D10_SHADER_DEBUG_VAR_VARIABLE, - D3D10_SHADER_DEBUG_VAR_FUNCTION, - D3D10_SHADER_DEBUG_VAR_FORCE_DWORD = 0x7fffffff, -} D3D10_SHADER_DEBUG_VARTYPE; - -///////////////////////////////////////////////////////////////////// -// These are the serialized structures that get written to the file -///////////////////////////////////////////////////////////////////// - -typedef struct _D3D10_SHADER_DEBUG_TOKEN_INFO -{ - UINT File; // offset into file list - UINT Line; // line # - UINT Column; // column # - - UINT TokenLength; - UINT TokenId; // offset to LPCSTR of length TokenLength in string datastore -} D3D10_SHADER_DEBUG_TOKEN_INFO; - -// Variable list -typedef struct _D3D10_SHADER_DEBUG_VAR_INFO -{ - // Index into token list for declaring identifier - UINT TokenId; - D3D10_SHADER_VARIABLE_TYPE Type; - // register and component for this variable, only valid/necessary for arrays - UINT Register; - UINT Component; - // gives the original variable that declared this variable - UINT ScopeVar; - // this variable's offset in its ScopeVar - UINT ScopeVarOffset; -} D3D10_SHADER_DEBUG_VAR_INFO; - -typedef struct _D3D10_SHADER_DEBUG_INPUT_INFO -{ - // index into array of variables of variable to initialize - UINT Var; - // input, cbuffer, tbuffer - D3D10_SHADER_DEBUG_REGTYPE InitialRegisterSet; - // set to cbuffer or tbuffer slot, geometry shader input primitive #, - // identifying register for indexable temp, or -1 - UINT InitialBank; - // -1 if temp, otherwise gives register in register set - UINT InitialRegister; - // -1 if temp, otherwise gives component - UINT InitialComponent; - // initial value if literal - UINT InitialValue; -} D3D10_SHADER_DEBUG_INPUT_INFO; - -typedef struct _D3D10_SHADER_DEBUG_SCOPEVAR_INFO -{ - // Index into variable token - UINT TokenId; - - D3D10_SHADER_DEBUG_VARTYPE VarType; // variable or function (different namespaces) - D3D10_SHADER_VARIABLE_CLASS Class; - UINT Rows; // number of rows (matrices) - UINT Columns; // number of columns (vectors and matrices) - - // In an array of structures, one struct member scope is provided, and - // you'll have to add the array stride times the index to the variable - // index you find, then find that variable in this structure's list of - // variables. - - // gives a scope to look up struct members. -1 if not a struct - UINT StructMemberScope; - - // number of array indices - UINT uArrayIndices; // a[3][2][1] has 3 indices - // maximum array index for each index - // offset to UINT[uArrayIndices] in UINT datastore - UINT ArrayElements; // a[3][2][1] has {3, 2, 1} - // how many variables each array index moves - // offset to UINT[uArrayIndices] in UINT datastore - UINT ArrayStrides; // a[3][2][1] has {2, 1, 1} - - UINT uVariables; - // index of the first variable, later variables are offsets from this one - UINT uFirstVariable; -} D3D10_SHADER_DEBUG_SCOPEVAR_INFO; - -// scope data, this maps variable names to debug variables (useful for the watch window) -typedef struct _D3D10_SHADER_DEBUG_SCOPE_INFO -{ - D3D10_SHADER_DEBUG_SCOPETYPE ScopeType; - UINT Name; // offset to name of scope in strings list - UINT uNameLen; // length of name string - UINT uVariables; - UINT VariableData; // Offset to UINT[uVariables] indexing the Scope Variable list -} D3D10_SHADER_DEBUG_SCOPE_INFO; - -// instruction outputs -typedef struct _D3D10_SHADER_DEBUG_OUTPUTVAR -{ - // index variable being written to, if -1 it's not going to a variable - UINT Var; - // range data that the compiler expects to be true - UINT uValueMin, uValueMax; - INT iValueMin, iValueMax; - FLOAT fValueMin, fValueMax; - - BOOL bNaNPossible, bInfPossible; -} D3D10_SHADER_DEBUG_OUTPUTVAR; - -typedef struct _D3D10_SHADER_DEBUG_OUTPUTREG_INFO -{ - // Only temp, indexable temp, and output are valid here - D3D10_SHADER_DEBUG_REGTYPE OutputRegisterSet; - // -1 means no output - UINT OutputReg; - // if a temp array, identifier for which one - UINT TempArrayReg; - // -1 means masked out - UINT OutputComponents[4]; - D3D10_SHADER_DEBUG_OUTPUTVAR OutputVars[4]; - // when indexing the output, get the value of this register, then add - // that to uOutputReg. If uIndexReg is -1, then there is no index. - // find the variable whose register is the sum (by looking in the ScopeVar) - // and component matches, then set it. This should only happen for indexable - // temps and outputs. - UINT IndexReg; - UINT IndexComp; -} D3D10_SHADER_DEBUG_OUTPUTREG_INFO; - -// per instruction data -typedef struct _D3D10_SHADER_DEBUG_INST_INFO -{ - UINT Id; // Which instruction this is in the bytecode - UINT Opcode; // instruction type - - // 0, 1, or 2 - UINT uOutputs; - - // up to two outputs per instruction - D3D10_SHADER_DEBUG_OUTPUTREG_INFO pOutputs[2]; - - // index into the list of tokens for this instruction's token - UINT TokenId; - - // how many function calls deep this instruction is - UINT NestingLevel; - - // list of scopes from outer-most to inner-most - // Number of scopes - UINT Scopes; - UINT ScopeInfo; // Offset to UINT[uScopes] specifying indices of the ScopeInfo Array - - // list of variables accessed by this instruction - // Number of variables - UINT AccessedVars; - UINT AccessedVarsInfo; // Offset to UINT[AccessedVars] specifying indices of the ScopeVariableInfo Array -} D3D10_SHADER_DEBUG_INST_INFO; - -typedef struct _D3D10_SHADER_DEBUG_FILE_INFO -{ - UINT FileName; // Offset to LPCSTR for file name - UINT FileNameLen; // Length of file name - UINT FileData; // Offset to LPCSTR of length FileLen - UINT FileLen; // Length of file -} D3D10_SHADER_DEBUG_FILE_INFO; - -typedef struct _D3D10_SHADER_DEBUG_INFO -{ - UINT Size; // sizeof(D3D10_SHADER_DEBUG_INFO) - UINT Creator; // Offset to LPCSTR for compiler version - UINT EntrypointName; // Offset to LPCSTR for Entry point name - UINT ShaderTarget; // Offset to LPCSTR for shader target - UINT CompileFlags; // flags used to compile - UINT Files; // number of included files - UINT FileInfo; // Offset to D3D10_SHADER_DEBUG_FILE_INFO[Files] - UINT Instructions; // number of instructions - UINT InstructionInfo; // Offset to D3D10_SHADER_DEBUG_INST_INFO[Instructions] - UINT Variables; // number of variables - UINT VariableInfo; // Offset to D3D10_SHADER_DEBUG_VAR_INFO[Variables] - UINT InputVariables; // number of variables to initialize before running - UINT InputVariableInfo; // Offset to D3D10_SHADER_DEBUG_INPUT_INFO[InputVariables] - UINT Tokens; // number of tokens to initialize - UINT TokenInfo; // Offset to D3D10_SHADER_DEBUG_TOKEN_INFO[Tokens] - UINT Scopes; // number of scopes - UINT ScopeInfo; // Offset to D3D10_SHADER_DEBUG_SCOPE_INFO[Scopes] - UINT ScopeVariables; // number of variables declared - UINT ScopeVariableInfo; // Offset to D3D10_SHADER_DEBUG_SCOPEVAR_INFO[Scopes] - UINT UintOffset; // Offset to the UINT datastore, all UINT offsets are from this offset - UINT StringOffset; // Offset to the string datastore, all string offsets are from this offset -} D3D10_SHADER_DEBUG_INFO; - -//---------------------------------------------------------------------------- -// ID3D10ShaderReflection1: -//---------------------------------------------------------------------------- - -// -// Interface definitions -// - -typedef interface ID3D10ShaderReflection1 ID3D10ShaderReflection1; -typedef interface ID3D10ShaderReflection1 *LPD3D10SHADERREFLECTION1; - -// {C3457783-A846-47CE-9520-CEA6F66E7447} -DEFINE_GUID(IID_ID3D10ShaderReflection1, -0xc3457783, 0xa846, 0x47ce, 0x95, 0x20, 0xce, 0xa6, 0xf6, 0x6e, 0x74, 0x47); - -#undef INTERFACE -#define INTERFACE ID3D10ShaderReflection1 - -DECLARE_INTERFACE_(ID3D10ShaderReflection1, IUnknown) -{ - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - STDMETHOD(GetDesc)(THIS_ D3D10_SHADER_DESC *pDesc) PURE; - - STDMETHOD_(ID3D10ShaderReflectionConstantBuffer*, GetConstantBufferByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10ShaderReflectionConstantBuffer*, GetConstantBufferByName)(THIS_ LPCSTR Name) PURE; - - STDMETHOD(GetResourceBindingDesc)(THIS_ UINT ResourceIndex, D3D10_SHADER_INPUT_BIND_DESC *pDesc) PURE; - - STDMETHOD(GetInputParameterDesc)(THIS_ UINT ParameterIndex, D3D10_SIGNATURE_PARAMETER_DESC *pDesc) PURE; - STDMETHOD(GetOutputParameterDesc)(THIS_ UINT ParameterIndex, D3D10_SIGNATURE_PARAMETER_DESC *pDesc) PURE; - - STDMETHOD_(ID3D10ShaderReflectionVariable*, GetVariableByName)(THIS_ LPCSTR Name) PURE; - - STDMETHOD(GetResourceBindingDescByName)(THIS_ LPCSTR Name, D3D10_SHADER_INPUT_BIND_DESC *pDesc) PURE; - - STDMETHOD(GetMovInstructionCount)(THIS_ UINT* pCount) PURE; - STDMETHOD(GetMovcInstructionCount)(THIS_ UINT* pCount) PURE; - STDMETHOD(GetConversionInstructionCount)(THIS_ UINT* pCount) PURE; - STDMETHOD(GetBitwiseInstructionCount)(THIS_ UINT* pCount) PURE; - - STDMETHOD(GetGSInputPrimitive)(THIS_ D3D10_PRIMITIVE* pPrim) PURE; - STDMETHOD(IsLevel9Shader)(THIS_ BOOL* pbLevel9Shader) PURE; - STDMETHOD(IsSampleFrequencyShader)(THIS_ BOOL* pbSampleFrequency) PURE; -}; - -////////////////////////////////////////////////////////////////////////////// -// APIs ////////////////////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - -#ifdef __cplusplus -} -#endif //__cplusplus - -#endif //__D3D10_1SHADER_H__ - diff --git a/SDK/Include/D3D10effect.h b/SDK/Include/D3D10effect.h deleted file mode 100644 index 7387854..0000000 --- a/SDK/Include/D3D10effect.h +++ /dev/null @@ -1,1455 +0,0 @@ - -////////////////////////////////////////////////////////////////////////////// -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// -// File: D3D10Effect.h -// Content: D3D10 Stateblock/Effect Types & APIs -// -////////////////////////////////////////////////////////////////////////////// - -#ifndef __D3D10EFFECT_H__ -#define __D3D10EFFECT_H__ - -#include "d3d10.h" - -////////////////////////////////////////////////////////////////////////////// -// File contents: -// -// 1) Stateblock enums, structs, interfaces, flat APIs -// 2) Effect enums, structs, interfaces, flat APIs -////////////////////////////////////////////////////////////////////////////// - -//---------------------------------------------------------------------------- -// D3D10_DEVICE_STATE_TYPES: -// -// Used in ID3D10StateBlockMask function calls -// -//---------------------------------------------------------------------------- - -typedef enum _D3D10_DEVICE_STATE_TYPES -{ - - D3D10_DST_SO_BUFFERS=1, // Single-value state (atomical gets/sets) - D3D10_DST_OM_RENDER_TARGETS, // Single-value state (atomical gets/sets) - D3D10_DST_OM_DEPTH_STENCIL_STATE, // Single-value state - D3D10_DST_OM_BLEND_STATE, // Single-value state - - D3D10_DST_VS, // Single-value state - D3D10_DST_VS_SAMPLERS, // Count: D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - D3D10_DST_VS_SHADER_RESOURCES, // Count: D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - D3D10_DST_VS_CONSTANT_BUFFERS, // Count: - - D3D10_DST_GS, // Single-value state - D3D10_DST_GS_SAMPLERS, // Count: D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - D3D10_DST_GS_SHADER_RESOURCES, // Count: D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - D3D10_DST_GS_CONSTANT_BUFFERS, // Count: D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - - D3D10_DST_PS, // Single-value state - D3D10_DST_PS_SAMPLERS, // Count: D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - D3D10_DST_PS_SHADER_RESOURCES, // Count: D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - D3D10_DST_PS_CONSTANT_BUFFERS, // Count: D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - - D3D10_DST_IA_VERTEX_BUFFERS, // Count: D3D10_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT - D3D10_DST_IA_INDEX_BUFFER, // Single-value state - D3D10_DST_IA_INPUT_LAYOUT, // Single-value state - D3D10_DST_IA_PRIMITIVE_TOPOLOGY, // Single-value state - - D3D10_DST_RS_VIEWPORTS, // Single-value state (atomical gets/sets) - D3D10_DST_RS_SCISSOR_RECTS, // Single-value state (atomical gets/sets) - D3D10_DST_RS_RASTERIZER_STATE, // Single-value state - - D3D10_DST_PREDICATION, // Single-value state -} D3D10_DEVICE_STATE_TYPES; - -//---------------------------------------------------------------------------- -// D3D10_DEVICE_STATE_TYPES: -// -// Used in ID3D10StateBlockMask function calls -// -//---------------------------------------------------------------------------- - -#ifndef D3D10_BYTES_FROM_BITS -#define D3D10_BYTES_FROM_BITS(x) (((x) + 7) / 8) -#endif // D3D10_BYTES_FROM_BITS - -typedef struct _D3D10_STATE_BLOCK_MASK -{ - BYTE VS; - BYTE VSSamplers[D3D10_BYTES_FROM_BITS(D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT)]; - BYTE VSShaderResources[D3D10_BYTES_FROM_BITS(D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT)]; - BYTE VSConstantBuffers[D3D10_BYTES_FROM_BITS(D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT)]; - - BYTE GS; - BYTE GSSamplers[D3D10_BYTES_FROM_BITS(D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT)]; - BYTE GSShaderResources[D3D10_BYTES_FROM_BITS(D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT)]; - BYTE GSConstantBuffers[D3D10_BYTES_FROM_BITS(D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT)]; - - BYTE PS; - BYTE PSSamplers[D3D10_BYTES_FROM_BITS(D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT)]; - BYTE PSShaderResources[D3D10_BYTES_FROM_BITS(D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT)]; - BYTE PSConstantBuffers[D3D10_BYTES_FROM_BITS(D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT)]; - - BYTE IAVertexBuffers[D3D10_BYTES_FROM_BITS(D3D10_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT)]; - BYTE IAIndexBuffer; - BYTE IAInputLayout; - BYTE IAPrimitiveTopology; - - BYTE OMRenderTargets; - BYTE OMDepthStencilState; - BYTE OMBlendState; - - BYTE RSViewports; - BYTE RSScissorRects; - BYTE RSRasterizerState; - - BYTE SOBuffers; - - BYTE Predication; -} D3D10_STATE_BLOCK_MASK; - -////////////////////////////////////////////////////////////////////////////// -// ID3D10StateBlock ////////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -typedef interface ID3D10StateBlock ID3D10StateBlock; -typedef interface ID3D10StateBlock *LPD3D10STATEBLOCK; - -// {0803425A-57F5-4dd6-9465-A87570834A08} -DEFINE_GUID(IID_ID3D10StateBlock, -0x803425a, 0x57f5, 0x4dd6, 0x94, 0x65, 0xa8, 0x75, 0x70, 0x83, 0x4a, 0x8); - -#undef INTERFACE -#define INTERFACE ID3D10StateBlock - -DECLARE_INTERFACE_(ID3D10StateBlock, IUnknown) -{ - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - STDMETHOD(Capture)(THIS) PURE; - STDMETHOD(Apply)(THIS) PURE; - STDMETHOD(ReleaseAllDeviceObjects)(THIS) PURE; - STDMETHOD(GetDevice)(THIS_ ID3D10Device **ppDevice) PURE; -}; - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - -//---------------------------------------------------------------------------- -// D3D10_STATE_BLOCK_MASK and manipulation functions -// ------------------------------------------------- -// -// These functions exist to facilitate working with the D3D10_STATE_BLOCK_MASK -// structure. -// -// D3D10_STATE_BLOCK_MASK *pResult or *pMask -// The state block mask to operate on -// -// D3D10_STATE_BLOCK_MASK *pA, *pB -// The source state block masks for the binary union/intersect/difference -// operations. -// -// D3D10_DEVICE_STATE_TYPES StateType -// The specific state type to enable/disable/query -// -// UINT RangeStart, RangeLength, Entry -// The specific bit or range of bits for a given state type to operate on. -// Consult the comments for D3D10_DEVICE_STATE_TYPES and -// D3D10_STATE_BLOCK_MASK for information on the valid bit ranges for -// each state. -// -//---------------------------------------------------------------------------- - -HRESULT WINAPI D3D10StateBlockMaskUnion(D3D10_STATE_BLOCK_MASK *pA, D3D10_STATE_BLOCK_MASK *pB, D3D10_STATE_BLOCK_MASK *pResult); -HRESULT WINAPI D3D10StateBlockMaskIntersect(D3D10_STATE_BLOCK_MASK *pA, D3D10_STATE_BLOCK_MASK *pB, D3D10_STATE_BLOCK_MASK *pResult); -HRESULT WINAPI D3D10StateBlockMaskDifference(D3D10_STATE_BLOCK_MASK *pA, D3D10_STATE_BLOCK_MASK *pB, D3D10_STATE_BLOCK_MASK *pResult); -HRESULT WINAPI D3D10StateBlockMaskEnableCapture(D3D10_STATE_BLOCK_MASK *pMask, D3D10_DEVICE_STATE_TYPES StateType, UINT RangeStart, UINT RangeLength); -HRESULT WINAPI D3D10StateBlockMaskDisableCapture(D3D10_STATE_BLOCK_MASK *pMask, D3D10_DEVICE_STATE_TYPES StateType, UINT RangeStart, UINT RangeLength); -HRESULT WINAPI D3D10StateBlockMaskEnableAll(D3D10_STATE_BLOCK_MASK *pMask); -HRESULT WINAPI D3D10StateBlockMaskDisableAll(D3D10_STATE_BLOCK_MASK *pMask); -BOOL WINAPI D3D10StateBlockMaskGetSetting(D3D10_STATE_BLOCK_MASK *pMask, D3D10_DEVICE_STATE_TYPES StateType, UINT Entry); - -//---------------------------------------------------------------------------- -// D3D10CreateStateBlock -// --------------------- -// -// Creates a state block object based on the mask settings specified -// in a D3D10_STATE_BLOCK_MASK structure. -// -// ID3D10Device *pDevice -// The device interface to associate with this state block -// -// D3D10_STATE_BLOCK_MASK *pStateBlockMask -// A bit mask whose settings are used to generate a state block -// object. -// -// ID3D10StateBlock **ppStateBlock -// The resulting state block object. This object will save/restore -// only those pieces of state that were set in the state block -// bit mask -//---------------------------------------------------------------------------- - -HRESULT WINAPI D3D10CreateStateBlock(ID3D10Device *pDevice, D3D10_STATE_BLOCK_MASK *pStateBlockMask, ID3D10StateBlock **ppStateBlock); - -#ifdef __cplusplus -} -#endif //__cplusplus - -//---------------------------------------------------------------------------- -// D3D10_COMPILE & D3D10_EFFECT flags: -// ------------------------------------- -// -// These flags are passed in when creating an effect, and affect -// either compilation behavior or runtime effect behavior -// -// D3D10_EFFECT_COMPILE_CHILD_EFFECT -// Compile this .fx file to a child effect. Child effects have no initializers -// for any shared values as these are initialied in the master effect (pool). -// -// D3D10_EFFECT_COMPILE_ALLOW_SLOW_OPS -// By default, performance mode is enabled. Performance mode disallows -// mutable state objects by preventing non-literal expressions from appearing in -// state object definitions. Specifying this flag will disable the mode and allow -// for mutable state objects. -// -// D3D10_EFFECT_SINGLE_THREADED -// Do not attempt to synchronize with other threads loading effects into the -// same pool. -// -//---------------------------------------------------------------------------- - -#define D3D10_EFFECT_COMPILE_CHILD_EFFECT (1 << 0) -#define D3D10_EFFECT_COMPILE_ALLOW_SLOW_OPS (1 << 1) -#define D3D10_EFFECT_SINGLE_THREADED (1 << 3) - - -//---------------------------------------------------------------------------- -// D3D10_EFFECT_VARIABLE flags: -// ---------------------------- -// -// These flags describe an effect variable (global or annotation), -// and are returned in D3D10_EFFECT_VARIABLE_DESC::Flags. -// -// D3D10_EFFECT_VARIABLE_POOLED -// Indicates that the this variable or constant buffer resides -// in an effect pool. If this flag is not set, then the variable resides -// in a standalone effect (if ID3D10Effect::GetPool returns NULL) -// or a child effect (if ID3D10Effect::GetPool returns non-NULL) -// -// D3D10_EFFECT_VARIABLE_ANNOTATION -// Indicates that this is an annotation on a technique, pass, or global -// variable. Otherwise, this is a global variable. Annotations cannot -// be shared. -// -// D3D10_EFFECT_VARIABLE_EXPLICIT_BIND_POINT -// Indicates that the variable has been explicitly bound using the -// register keyword. -//---------------------------------------------------------------------------- - -#define D3D10_EFFECT_VARIABLE_POOLED (1 << 0) -#define D3D10_EFFECT_VARIABLE_ANNOTATION (1 << 1) -#define D3D10_EFFECT_VARIABLE_EXPLICIT_BIND_POINT (1 << 2) - -////////////////////////////////////////////////////////////////////////////// -// ID3D10EffectType ////////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -//---------------------------------------------------------------------------- -// D3D10_EFFECT_TYPE_DESC: -// -// Retrieved by ID3D10EffectType::GetDesc() -//---------------------------------------------------------------------------- - -typedef struct _D3D10_EFFECT_TYPE_DESC -{ - LPCSTR TypeName; // Name of the type - // (e.g. "float4" or "MyStruct") - - D3D10_SHADER_VARIABLE_CLASS Class; // (e.g. scalar, vector, object, etc.) - D3D10_SHADER_VARIABLE_TYPE Type; // (e.g. float, texture, vertexshader, etc.) - - UINT Elements; // Number of elements in this type - // (0 if not an array) - UINT Members; // Number of members - // (0 if not a structure) - UINT Rows; // Number of rows in this type - // (0 if not a numeric primitive) - UINT Columns; // Number of columns in this type - // (0 if not a numeric primitive) - - UINT PackedSize; // Number of bytes required to represent - // this data type, when tightly packed - UINT UnpackedSize; // Number of bytes occupied by this data - // type, when laid out in a constant buffer - UINT Stride; // Number of bytes to seek between elements, - // when laid out in a constant buffer -} D3D10_EFFECT_TYPE_DESC; - -typedef interface ID3D10EffectType ID3D10EffectType; -typedef interface ID3D10EffectType *LPD3D10EFFECTTYPE; - -// {4E9E1DDC-CD9D-4772-A837-00180B9B88FD} -DEFINE_GUID(IID_ID3D10EffectType, -0x4e9e1ddc, 0xcd9d, 0x4772, 0xa8, 0x37, 0x0, 0x18, 0xb, 0x9b, 0x88, 0xfd); - -#undef INTERFACE -#define INTERFACE ID3D10EffectType - -DECLARE_INTERFACE(ID3D10EffectType) -{ - STDMETHOD_(BOOL, IsValid)(THIS) PURE; - STDMETHOD(GetDesc)(THIS_ D3D10_EFFECT_TYPE_DESC *pDesc) PURE; - STDMETHOD_(ID3D10EffectType*, GetMemberTypeByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectType*, GetMemberTypeByName)(THIS_ LPCSTR Name) PURE; - STDMETHOD_(ID3D10EffectType*, GetMemberTypeBySemantic)(THIS_ LPCSTR Semantic) PURE; - STDMETHOD_(LPCSTR, GetMemberName)(THIS_ UINT Index) PURE; - STDMETHOD_(LPCSTR, GetMemberSemantic)(THIS_ UINT Index) PURE; -}; - -////////////////////////////////////////////////////////////////////////////// -// ID3D10EffectVariable ////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -//---------------------------------------------------------------------------- -// D3D10_EFFECT_VARIABLE_DESC: -// -// Retrieved by ID3D10EffectVariable::GetDesc() -//---------------------------------------------------------------------------- - -typedef struct _D3D10_EFFECT_VARIABLE_DESC -{ - LPCSTR Name; // Name of this variable, annotation, - // or structure member - LPCSTR Semantic; // Semantic string of this variable - // or structure member (NULL for - // annotations or if not present) - - UINT Flags; // D3D10_EFFECT_VARIABLE_* flags - UINT Annotations; // Number of annotations on this variable - // (always 0 for annotations) - - UINT BufferOffset; // Offset into containing cbuffer or tbuffer - // (always 0 for annotations or variables - // not in constant buffers) - - UINT ExplicitBindPoint; // Used if the variable has been explicitly bound - // using the register keyword. Check Flags for - // D3D10_EFFECT_VARIABLE_EXPLICIT_BIND_POINT; -} D3D10_EFFECT_VARIABLE_DESC; - -typedef interface ID3D10EffectVariable ID3D10EffectVariable; -typedef interface ID3D10EffectVariable *LPD3D10EFFECTVARIABLE; - -// {AE897105-00E6-45bf-BB8E-281DD6DB8E1B} -DEFINE_GUID(IID_ID3D10EffectVariable, -0xae897105, 0xe6, 0x45bf, 0xbb, 0x8e, 0x28, 0x1d, 0xd6, 0xdb, 0x8e, 0x1b); - -#undef INTERFACE -#define INTERFACE ID3D10EffectVariable - -// Forward defines -typedef interface ID3D10EffectScalarVariable ID3D10EffectScalarVariable; -typedef interface ID3D10EffectVectorVariable ID3D10EffectVectorVariable; -typedef interface ID3D10EffectMatrixVariable ID3D10EffectMatrixVariable; -typedef interface ID3D10EffectStringVariable ID3D10EffectStringVariable; -typedef interface ID3D10EffectShaderResourceVariable ID3D10EffectShaderResourceVariable; -typedef interface ID3D10EffectRenderTargetViewVariable ID3D10EffectRenderTargetViewVariable; -typedef interface ID3D10EffectDepthStencilViewVariable ID3D10EffectDepthStencilViewVariable; -typedef interface ID3D10EffectConstantBuffer ID3D10EffectConstantBuffer; -typedef interface ID3D10EffectShaderVariable ID3D10EffectShaderVariable; -typedef interface ID3D10EffectBlendVariable ID3D10EffectBlendVariable; -typedef interface ID3D10EffectDepthStencilVariable ID3D10EffectDepthStencilVariable; -typedef interface ID3D10EffectRasterizerVariable ID3D10EffectRasterizerVariable; -typedef interface ID3D10EffectSamplerVariable ID3D10EffectSamplerVariable; - -DECLARE_INTERFACE(ID3D10EffectVariable) -{ - STDMETHOD_(BOOL, IsValid)(THIS) PURE; - STDMETHOD_(ID3D10EffectType*, GetType)(THIS) PURE; - STDMETHOD(GetDesc)(THIS_ D3D10_EFFECT_VARIABLE_DESC *pDesc) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByName)(THIS_ LPCSTR Name) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetMemberByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetMemberByName)(THIS_ LPCSTR Name) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetMemberBySemantic)(THIS_ LPCSTR Semantic) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetElement)(THIS_ UINT Index) PURE; - - STDMETHOD_(ID3D10EffectConstantBuffer*, GetParentConstantBuffer)(THIS) PURE; - - STDMETHOD_(ID3D10EffectScalarVariable*, AsScalar)(THIS) PURE; - STDMETHOD_(ID3D10EffectVectorVariable*, AsVector)(THIS) PURE; - STDMETHOD_(ID3D10EffectMatrixVariable*, AsMatrix)(THIS) PURE; - STDMETHOD_(ID3D10EffectStringVariable*, AsString)(THIS) PURE; - STDMETHOD_(ID3D10EffectShaderResourceVariable*, AsShaderResource)(THIS) PURE; - STDMETHOD_(ID3D10EffectRenderTargetViewVariable*, AsRenderTargetView)(THIS) PURE; - STDMETHOD_(ID3D10EffectDepthStencilViewVariable*, AsDepthStencilView)(THIS) PURE; - STDMETHOD_(ID3D10EffectConstantBuffer*, AsConstantBuffer)(THIS) PURE; - STDMETHOD_(ID3D10EffectShaderVariable*, AsShader)(THIS) PURE; - STDMETHOD_(ID3D10EffectBlendVariable*, AsBlend)(THIS) PURE; - STDMETHOD_(ID3D10EffectDepthStencilVariable*, AsDepthStencil)(THIS) PURE; - STDMETHOD_(ID3D10EffectRasterizerVariable*, AsRasterizer)(THIS) PURE; - STDMETHOD_(ID3D10EffectSamplerVariable*, AsSampler)(THIS) PURE; - - STDMETHOD(SetRawValue)(THIS_ void *pData, UINT Offset, UINT Count) PURE; - STDMETHOD(GetRawValue)(THIS_ void *pData, UINT Offset, UINT Count) PURE; -}; - -////////////////////////////////////////////////////////////////////////////// -// ID3D10EffectScalarVariable //////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -typedef interface ID3D10EffectScalarVariable ID3D10EffectScalarVariable; -typedef interface ID3D10EffectScalarVariable *LPD3D10EFFECTSCALARVARIABLE; - -// {00E48F7B-D2C8-49e8-A86C-022DEE53431F} -DEFINE_GUID(IID_ID3D10EffectScalarVariable, -0xe48f7b, 0xd2c8, 0x49e8, 0xa8, 0x6c, 0x2, 0x2d, 0xee, 0x53, 0x43, 0x1f); - -#undef INTERFACE -#define INTERFACE ID3D10EffectScalarVariable - -DECLARE_INTERFACE_(ID3D10EffectScalarVariable, ID3D10EffectVariable) -{ - STDMETHOD_(BOOL, IsValid)(THIS) PURE; - STDMETHOD_(ID3D10EffectType*, GetType)(THIS) PURE; - STDMETHOD(GetDesc)(THIS_ D3D10_EFFECT_VARIABLE_DESC *pDesc) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByName)(THIS_ LPCSTR Name) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetMemberByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetMemberByName)(THIS_ LPCSTR Name) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetMemberBySemantic)(THIS_ LPCSTR Semantic) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetElement)(THIS_ UINT Index) PURE; - - STDMETHOD_(ID3D10EffectConstantBuffer*, GetParentConstantBuffer)(THIS) PURE; - - STDMETHOD_(ID3D10EffectScalarVariable*, AsScalar)(THIS) PURE; - STDMETHOD_(ID3D10EffectVectorVariable*, AsVector)(THIS) PURE; - STDMETHOD_(ID3D10EffectMatrixVariable*, AsMatrix)(THIS) PURE; - STDMETHOD_(ID3D10EffectStringVariable*, AsString)(THIS) PURE; - STDMETHOD_(ID3D10EffectShaderResourceVariable*, AsShaderResource)(THIS) PURE; - STDMETHOD_(ID3D10EffectRenderTargetViewVariable*, AsRenderTargetView)(THIS) PURE; - STDMETHOD_(ID3D10EffectDepthStencilViewVariable*, AsDepthStencilView)(THIS) PURE; - STDMETHOD_(ID3D10EffectConstantBuffer*, AsConstantBuffer)(THIS) PURE; - STDMETHOD_(ID3D10EffectShaderVariable*, AsShader)(THIS) PURE; - STDMETHOD_(ID3D10EffectBlendVariable*, AsBlend)(THIS) PURE; - STDMETHOD_(ID3D10EffectDepthStencilVariable*, AsDepthStencil)(THIS) PURE; - STDMETHOD_(ID3D10EffectRasterizerVariable*, AsRasterizer)(THIS) PURE; - STDMETHOD_(ID3D10EffectSamplerVariable*, AsSampler)(THIS) PURE; - - STDMETHOD(SetRawValue)(THIS_ void *pData, UINT ByteOffset, UINT ByteCount) PURE; - STDMETHOD(GetRawValue)(THIS_ void *pData, UINT ByteOffset, UINT ByteCount) PURE; - - STDMETHOD(SetFloat)(THIS_ float Value) PURE; - STDMETHOD(GetFloat)(THIS_ float *pValue) PURE; - - STDMETHOD(SetFloatArray)(THIS_ float *pData, UINT Offset, UINT Count) PURE; - STDMETHOD(GetFloatArray)(THIS_ float *pData, UINT Offset, UINT Count) PURE; - - STDMETHOD(SetInt)(THIS_ int Value) PURE; - STDMETHOD(GetInt)(THIS_ int *pValue) PURE; - - STDMETHOD(SetIntArray)(THIS_ int *pData, UINT Offset, UINT Count) PURE; - STDMETHOD(GetIntArray)(THIS_ int *pData, UINT Offset, UINT Count) PURE; - - STDMETHOD(SetBool)(THIS_ BOOL Value) PURE; - STDMETHOD(GetBool)(THIS_ BOOL *pValue) PURE; - - STDMETHOD(SetBoolArray)(THIS_ BOOL *pData, UINT Offset, UINT Count) PURE; - STDMETHOD(GetBoolArray)(THIS_ BOOL *pData, UINT Offset, UINT Count) PURE; -}; - -////////////////////////////////////////////////////////////////////////////// -// ID3D10EffectVectorVariable //////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -typedef interface ID3D10EffectVectorVariable ID3D10EffectVectorVariable; -typedef interface ID3D10EffectVectorVariable *LPD3D10EFFECTVECTORVARIABLE; - -// {62B98C44-1F82-4c67-BCD0-72CF8F217E81} -DEFINE_GUID(IID_ID3D10EffectVectorVariable, -0x62b98c44, 0x1f82, 0x4c67, 0xbc, 0xd0, 0x72, 0xcf, 0x8f, 0x21, 0x7e, 0x81); - -#undef INTERFACE -#define INTERFACE ID3D10EffectVectorVariable - -DECLARE_INTERFACE_(ID3D10EffectVectorVariable, ID3D10EffectVariable) -{ - STDMETHOD_(BOOL, IsValid)(THIS) PURE; - STDMETHOD_(ID3D10EffectType*, GetType)(THIS) PURE; - STDMETHOD(GetDesc)(THIS_ D3D10_EFFECT_VARIABLE_DESC *pDesc) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByName)(THIS_ LPCSTR Name) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetMemberByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetMemberByName)(THIS_ LPCSTR Name) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetMemberBySemantic)(THIS_ LPCSTR Semantic) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetElement)(THIS_ UINT Index) PURE; - - STDMETHOD_(ID3D10EffectConstantBuffer*, GetParentConstantBuffer)(THIS) PURE; - - STDMETHOD_(ID3D10EffectScalarVariable*, AsScalar)(THIS) PURE; - STDMETHOD_(ID3D10EffectVectorVariable*, AsVector)(THIS) PURE; - STDMETHOD_(ID3D10EffectMatrixVariable*, AsMatrix)(THIS) PURE; - STDMETHOD_(ID3D10EffectStringVariable*, AsString)(THIS) PURE; - STDMETHOD_(ID3D10EffectShaderResourceVariable*, AsShaderResource)(THIS) PURE; - STDMETHOD_(ID3D10EffectRenderTargetViewVariable*, AsRenderTargetView)(THIS) PURE; - STDMETHOD_(ID3D10EffectDepthStencilViewVariable*, AsDepthStencilView)(THIS) PURE; - STDMETHOD_(ID3D10EffectConstantBuffer*, AsConstantBuffer)(THIS) PURE; - STDMETHOD_(ID3D10EffectShaderVariable*, AsShader)(THIS) PURE; - STDMETHOD_(ID3D10EffectBlendVariable*, AsBlend)(THIS) PURE; - STDMETHOD_(ID3D10EffectDepthStencilVariable*, AsDepthStencil)(THIS) PURE; - STDMETHOD_(ID3D10EffectRasterizerVariable*, AsRasterizer)(THIS) PURE; - STDMETHOD_(ID3D10EffectSamplerVariable*, AsSampler)(THIS) PURE; - - STDMETHOD(SetRawValue)(THIS_ void *pData, UINT ByteOffset, UINT ByteCount) PURE; - STDMETHOD(GetRawValue)(THIS_ void *pData, UINT ByteOffset, UINT ByteCount) PURE; - - STDMETHOD(SetBoolVector) (THIS_ BOOL *pData) PURE; - STDMETHOD(SetIntVector) (THIS_ int *pData) PURE; - STDMETHOD(SetFloatVector)(THIS_ float *pData) PURE; - - STDMETHOD(GetBoolVector) (THIS_ BOOL *pData) PURE; - STDMETHOD(GetIntVector) (THIS_ int *pData) PURE; - STDMETHOD(GetFloatVector)(THIS_ float *pData) PURE; - - STDMETHOD(SetBoolVectorArray) (THIS_ BOOL *pData, UINT Offset, UINT Count) PURE; - STDMETHOD(SetIntVectorArray) (THIS_ int *pData, UINT Offset, UINT Count) PURE; - STDMETHOD(SetFloatVectorArray)(THIS_ float *pData, UINT Offset, UINT Count) PURE; - - STDMETHOD(GetBoolVectorArray) (THIS_ BOOL *pData, UINT Offset, UINT Count) PURE; - STDMETHOD(GetIntVectorArray) (THIS_ int *pData, UINT Offset, UINT Count) PURE; - STDMETHOD(GetFloatVectorArray)(THIS_ float *pData, UINT Offset, UINT Count) PURE; -}; - -////////////////////////////////////////////////////////////////////////////// -// ID3D10EffectMatrixVariable //////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -typedef interface ID3D10EffectMatrixVariable ID3D10EffectMatrixVariable; -typedef interface ID3D10EffectMatrixVariable *LPD3D10EFFECTMATRIXVARIABLE; - -// {50666C24-B82F-4eed-A172-5B6E7E8522E0} -DEFINE_GUID(IID_ID3D10EffectMatrixVariable, -0x50666c24, 0xb82f, 0x4eed, 0xa1, 0x72, 0x5b, 0x6e, 0x7e, 0x85, 0x22, 0xe0); - -#undef INTERFACE -#define INTERFACE ID3D10EffectMatrixVariable - -DECLARE_INTERFACE_(ID3D10EffectMatrixVariable, ID3D10EffectVariable) -{ - STDMETHOD_(BOOL, IsValid)(THIS) PURE; - STDMETHOD_(ID3D10EffectType*, GetType)(THIS) PURE; - STDMETHOD(GetDesc)(THIS_ D3D10_EFFECT_VARIABLE_DESC *pDesc) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByName)(THIS_ LPCSTR Name) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetMemberByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetMemberByName)(THIS_ LPCSTR Name) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetMemberBySemantic)(THIS_ LPCSTR Semantic) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetElement)(THIS_ UINT Index) PURE; - - STDMETHOD_(ID3D10EffectConstantBuffer*, GetParentConstantBuffer)(THIS) PURE; - - STDMETHOD_(ID3D10EffectScalarVariable*, AsScalar)(THIS) PURE; - STDMETHOD_(ID3D10EffectVectorVariable*, AsVector)(THIS) PURE; - STDMETHOD_(ID3D10EffectMatrixVariable*, AsMatrix)(THIS) PURE; - STDMETHOD_(ID3D10EffectStringVariable*, AsString)(THIS) PURE; - STDMETHOD_(ID3D10EffectShaderResourceVariable*, AsShaderResource)(THIS) PURE; - STDMETHOD_(ID3D10EffectRenderTargetViewVariable*, AsRenderTargetView)(THIS) PURE; - STDMETHOD_(ID3D10EffectDepthStencilViewVariable*, AsDepthStencilView)(THIS) PURE; - STDMETHOD_(ID3D10EffectConstantBuffer*, AsConstantBuffer)(THIS) PURE; - STDMETHOD_(ID3D10EffectShaderVariable*, AsShader)(THIS) PURE; - STDMETHOD_(ID3D10EffectBlendVariable*, AsBlend)(THIS) PURE; - STDMETHOD_(ID3D10EffectDepthStencilVariable*, AsDepthStencil)(THIS) PURE; - STDMETHOD_(ID3D10EffectRasterizerVariable*, AsRasterizer)(THIS) PURE; - STDMETHOD_(ID3D10EffectSamplerVariable*, AsSampler)(THIS) PURE; - - STDMETHOD(SetRawValue)(THIS_ void *pData, UINT ByteOffset, UINT ByteCount) PURE; - STDMETHOD(GetRawValue)(THIS_ void *pData, UINT ByteOffset, UINT ByteCount) PURE; - - STDMETHOD(SetMatrix)(THIS_ float *pData) PURE; - STDMETHOD(GetMatrix)(THIS_ float *pData) PURE; - - STDMETHOD(SetMatrixArray)(THIS_ float *pData, UINT Offset, UINT Count) PURE; - STDMETHOD(GetMatrixArray)(THIS_ float *pData, UINT Offset, UINT Count) PURE; - - STDMETHOD(SetMatrixTranspose)(THIS_ float *pData) PURE; - STDMETHOD(GetMatrixTranspose)(THIS_ float *pData) PURE; - - STDMETHOD(SetMatrixTransposeArray)(THIS_ float *pData, UINT Offset, UINT Count) PURE; - STDMETHOD(GetMatrixTransposeArray)(THIS_ float *pData, UINT Offset, UINT Count) PURE; -}; - -////////////////////////////////////////////////////////////////////////////// -// ID3D10EffectStringVariable //////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -typedef interface ID3D10EffectStringVariable ID3D10EffectStringVariable; -typedef interface ID3D10EffectStringVariable *LPD3D10EFFECTSTRINGVARIABLE; - -// {71417501-8DF9-4e0a-A78A-255F9756BAFF} -DEFINE_GUID(IID_ID3D10EffectStringVariable, -0x71417501, 0x8df9, 0x4e0a, 0xa7, 0x8a, 0x25, 0x5f, 0x97, 0x56, 0xba, 0xff); - -#undef INTERFACE -#define INTERFACE ID3D10EffectStringVariable - -DECLARE_INTERFACE_(ID3D10EffectStringVariable, ID3D10EffectVariable) -{ - STDMETHOD_(BOOL, IsValid)(THIS) PURE; - STDMETHOD_(ID3D10EffectType*, GetType)(THIS) PURE; - STDMETHOD(GetDesc)(THIS_ D3D10_EFFECT_VARIABLE_DESC *pDesc) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByName)(THIS_ LPCSTR Name) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetMemberByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetMemberByName)(THIS_ LPCSTR Name) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetMemberBySemantic)(THIS_ LPCSTR Semantic) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetElement)(THIS_ UINT Index) PURE; - - STDMETHOD_(ID3D10EffectConstantBuffer*, GetParentConstantBuffer)(THIS) PURE; - - STDMETHOD_(ID3D10EffectScalarVariable*, AsScalar)(THIS) PURE; - STDMETHOD_(ID3D10EffectVectorVariable*, AsVector)(THIS) PURE; - STDMETHOD_(ID3D10EffectMatrixVariable*, AsMatrix)(THIS) PURE; - STDMETHOD_(ID3D10EffectStringVariable*, AsString)(THIS) PURE; - STDMETHOD_(ID3D10EffectShaderResourceVariable*, AsShaderResource)(THIS) PURE; - STDMETHOD_(ID3D10EffectRenderTargetViewVariable*, AsRenderTargetView)(THIS) PURE; - STDMETHOD_(ID3D10EffectDepthStencilViewVariable*, AsDepthStencilView)(THIS) PURE; - STDMETHOD_(ID3D10EffectConstantBuffer*, AsConstantBuffer)(THIS) PURE; - STDMETHOD_(ID3D10EffectShaderVariable*, AsShader)(THIS) PURE; - STDMETHOD_(ID3D10EffectBlendVariable*, AsBlend)(THIS) PURE; - STDMETHOD_(ID3D10EffectDepthStencilVariable*, AsDepthStencil)(THIS) PURE; - STDMETHOD_(ID3D10EffectRasterizerVariable*, AsRasterizer)(THIS) PURE; - STDMETHOD_(ID3D10EffectSamplerVariable*, AsSampler)(THIS) PURE; - - STDMETHOD(SetRawValue)(THIS_ void *pData, UINT Offset, UINT Count) PURE; - STDMETHOD(GetRawValue)(THIS_ void *pData, UINT Offset, UINT Count) PURE; - - STDMETHOD(GetString)(THIS_ LPCSTR *ppString) PURE; - STDMETHOD(GetStringArray)(THIS_ LPCSTR *ppStrings, UINT Offset, UINT Count) PURE; -}; - -////////////////////////////////////////////////////////////////////////////// -// ID3D10EffectShaderResourceVariable //////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -typedef interface ID3D10EffectShaderResourceVariable ID3D10EffectShaderResourceVariable; -typedef interface ID3D10EffectShaderResourceVariable *LPD3D10EFFECTSHADERRESOURCEVARIABLE; - -// {C0A7157B-D872-4b1d-8073-EFC2ACD4B1FC} -DEFINE_GUID(IID_ID3D10EffectShaderResourceVariable, -0xc0a7157b, 0xd872, 0x4b1d, 0x80, 0x73, 0xef, 0xc2, 0xac, 0xd4, 0xb1, 0xfc); - - -#undef INTERFACE -#define INTERFACE ID3D10EffectShaderResourceVariable - -DECLARE_INTERFACE_(ID3D10EffectShaderResourceVariable, ID3D10EffectVariable) -{ - STDMETHOD_(BOOL, IsValid)(THIS) PURE; - STDMETHOD_(ID3D10EffectType*, GetType)(THIS) PURE; - STDMETHOD(GetDesc)(THIS_ D3D10_EFFECT_VARIABLE_DESC *pDesc) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByName)(THIS_ LPCSTR Name) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetMemberByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetMemberByName)(THIS_ LPCSTR Name) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetMemberBySemantic)(THIS_ LPCSTR Semantic) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetElement)(THIS_ UINT Index) PURE; - - STDMETHOD_(ID3D10EffectConstantBuffer*, GetParentConstantBuffer)(THIS) PURE; - - STDMETHOD_(ID3D10EffectScalarVariable*, AsScalar)(THIS) PURE; - STDMETHOD_(ID3D10EffectVectorVariable*, AsVector)(THIS) PURE; - STDMETHOD_(ID3D10EffectMatrixVariable*, AsMatrix)(THIS) PURE; - STDMETHOD_(ID3D10EffectStringVariable*, AsString)(THIS) PURE; - STDMETHOD_(ID3D10EffectShaderResourceVariable*, AsShaderResource)(THIS) PURE; - STDMETHOD_(ID3D10EffectRenderTargetViewVariable*, AsRenderTargetView)(THIS) PURE; - STDMETHOD_(ID3D10EffectDepthStencilViewVariable*, AsDepthStencilView)(THIS) PURE; - STDMETHOD_(ID3D10EffectConstantBuffer*, AsConstantBuffer)(THIS) PURE; - STDMETHOD_(ID3D10EffectShaderVariable*, AsShader)(THIS) PURE; - STDMETHOD_(ID3D10EffectBlendVariable*, AsBlend)(THIS) PURE; - STDMETHOD_(ID3D10EffectDepthStencilVariable*, AsDepthStencil)(THIS) PURE; - STDMETHOD_(ID3D10EffectRasterizerVariable*, AsRasterizer)(THIS) PURE; - STDMETHOD_(ID3D10EffectSamplerVariable*, AsSampler)(THIS) PURE; - - STDMETHOD(SetRawValue)(THIS_ void *pData, UINT Offset, UINT Count) PURE; - STDMETHOD(GetRawValue)(THIS_ void *pData, UINT Offset, UINT Count) PURE; - - STDMETHOD(SetResource)(THIS_ ID3D10ShaderResourceView *pResource) PURE; - STDMETHOD(GetResource)(THIS_ ID3D10ShaderResourceView **ppResource) PURE; - - STDMETHOD(SetResourceArray)(THIS_ ID3D10ShaderResourceView **ppResources, UINT Offset, UINT Count) PURE; - STDMETHOD(GetResourceArray)(THIS_ ID3D10ShaderResourceView **ppResources, UINT Offset, UINT Count) PURE; -}; - -////////////////////////////////////////////////////////////////////////////// -// ID3D10EffectRenderTargetViewVariable ////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -typedef interface ID3D10EffectRenderTargetViewVariable ID3D10EffectRenderTargetViewVariable; -typedef interface ID3D10EffectRenderTargetViewVariable *LPD3D10EFFECTRENDERTARGETVIEWVARIABLE; - -// {28CA0CC3-C2C9-40bb-B57F-67B737122B17} -DEFINE_GUID(IID_ID3D10EffectRenderTargetViewVariable, -0x28ca0cc3, 0xc2c9, 0x40bb, 0xb5, 0x7f, 0x67, 0xb7, 0x37, 0x12, 0x2b, 0x17); - -#undef INTERFACE -#define INTERFACE ID3D10EffectRenderTargetViewVariable - -DECLARE_INTERFACE_(ID3D10EffectRenderTargetViewVariable, ID3D10EffectVariable) -{ - STDMETHOD_(BOOL, IsValid)(THIS) PURE; - STDMETHOD_(ID3D10EffectType*, GetType)(THIS) PURE; - STDMETHOD(GetDesc)(THIS_ D3D10_EFFECT_VARIABLE_DESC *pDesc) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByName)(THIS_ LPCSTR Name) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetMemberByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetMemberByName)(THIS_ LPCSTR Name) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetMemberBySemantic)(THIS_ LPCSTR Semantic) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetElement)(THIS_ UINT Index) PURE; - - STDMETHOD_(ID3D10EffectConstantBuffer*, GetParentConstantBuffer)(THIS) PURE; - - STDMETHOD_(ID3D10EffectScalarVariable*, AsScalar)(THIS) PURE; - STDMETHOD_(ID3D10EffectVectorVariable*, AsVector)(THIS) PURE; - STDMETHOD_(ID3D10EffectMatrixVariable*, AsMatrix)(THIS) PURE; - STDMETHOD_(ID3D10EffectStringVariable*, AsString)(THIS) PURE; - STDMETHOD_(ID3D10EffectShaderResourceVariable*, AsShaderResource)(THIS) PURE; - STDMETHOD_(ID3D10EffectRenderTargetViewVariable*, AsRenderTargetView)(THIS) PURE; - STDMETHOD_(ID3D10EffectDepthStencilViewVariable*, AsDepthStencilView)(THIS) PURE; - STDMETHOD_(ID3D10EffectConstantBuffer*, AsConstantBuffer)(THIS) PURE; - STDMETHOD_(ID3D10EffectShaderVariable*, AsShader)(THIS) PURE; - STDMETHOD_(ID3D10EffectBlendVariable*, AsBlend)(THIS) PURE; - STDMETHOD_(ID3D10EffectDepthStencilVariable*, AsDepthStencil)(THIS) PURE; - STDMETHOD_(ID3D10EffectRasterizerVariable*, AsRasterizer)(THIS) PURE; - STDMETHOD_(ID3D10EffectSamplerVariable*, AsSampler)(THIS) PURE; - - STDMETHOD(SetRawValue)(THIS_ void *pData, UINT Offset, UINT Count) PURE; - STDMETHOD(GetRawValue)(THIS_ void *pData, UINT Offset, UINT Count) PURE; - - STDMETHOD(SetRenderTarget)(THIS_ ID3D10RenderTargetView *pResource) PURE; - STDMETHOD(GetRenderTarget)(THIS_ ID3D10RenderTargetView **ppResource) PURE; - - STDMETHOD(SetRenderTargetArray)(THIS_ ID3D10RenderTargetView **ppResources, UINT Offset, UINT Count) PURE; - STDMETHOD(GetRenderTargetArray)(THIS_ ID3D10RenderTargetView **ppResources, UINT Offset, UINT Count) PURE; -}; - -////////////////////////////////////////////////////////////////////////////// -// ID3D10EffectDepthStencilViewVariable ////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -typedef interface ID3D10EffectDepthStencilViewVariable ID3D10EffectDepthStencilViewVariable; -typedef interface ID3D10EffectDepthStencilViewVariable *LPD3D10EFFECTDEPTHSTENCILVIEWVARIABLE; - -// {3E02C918-CC79-4985-B622-2D92AD701623} -DEFINE_GUID(IID_ID3D10EffectDepthStencilViewVariable, -0x3e02c918, 0xcc79, 0x4985, 0xb6, 0x22, 0x2d, 0x92, 0xad, 0x70, 0x16, 0x23); - -#undef INTERFACE -#define INTERFACE ID3D10EffectDepthStencilViewVariable - -DECLARE_INTERFACE_(ID3D10EffectDepthStencilViewVariable, ID3D10EffectVariable) -{ - STDMETHOD_(BOOL, IsValid)(THIS) PURE; - STDMETHOD_(ID3D10EffectType*, GetType)(THIS) PURE; - STDMETHOD(GetDesc)(THIS_ D3D10_EFFECT_VARIABLE_DESC *pDesc) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByName)(THIS_ LPCSTR Name) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetMemberByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetMemberByName)(THIS_ LPCSTR Name) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetMemberBySemantic)(THIS_ LPCSTR Semantic) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetElement)(THIS_ UINT Index) PURE; - - STDMETHOD_(ID3D10EffectConstantBuffer*, GetParentConstantBuffer)(THIS) PURE; - - STDMETHOD_(ID3D10EffectScalarVariable*, AsScalar)(THIS) PURE; - STDMETHOD_(ID3D10EffectVectorVariable*, AsVector)(THIS) PURE; - STDMETHOD_(ID3D10EffectMatrixVariable*, AsMatrix)(THIS) PURE; - STDMETHOD_(ID3D10EffectStringVariable*, AsString)(THIS) PURE; - STDMETHOD_(ID3D10EffectShaderResourceVariable*, AsShaderResource)(THIS) PURE; - STDMETHOD_(ID3D10EffectRenderTargetViewVariable*, AsRenderTargetView)(THIS) PURE; - STDMETHOD_(ID3D10EffectDepthStencilViewVariable*, AsDepthStencilView)(THIS) PURE; - STDMETHOD_(ID3D10EffectConstantBuffer*, AsConstantBuffer)(THIS) PURE; - STDMETHOD_(ID3D10EffectShaderVariable*, AsShader)(THIS) PURE; - STDMETHOD_(ID3D10EffectBlendVariable*, AsBlend)(THIS) PURE; - STDMETHOD_(ID3D10EffectDepthStencilVariable*, AsDepthStencil)(THIS) PURE; - STDMETHOD_(ID3D10EffectRasterizerVariable*, AsRasterizer)(THIS) PURE; - STDMETHOD_(ID3D10EffectSamplerVariable*, AsSampler)(THIS) PURE; - - STDMETHOD(SetRawValue)(THIS_ void *pData, UINT Offset, UINT Count) PURE; - STDMETHOD(GetRawValue)(THIS_ void *pData, UINT Offset, UINT Count) PURE; - - STDMETHOD(SetDepthStencil)(THIS_ ID3D10DepthStencilView *pResource) PURE; - STDMETHOD(GetDepthStencil)(THIS_ ID3D10DepthStencilView **ppResource) PURE; - - STDMETHOD(SetDepthStencilArray)(THIS_ ID3D10DepthStencilView **ppResources, UINT Offset, UINT Count) PURE; - STDMETHOD(GetDepthStencilArray)(THIS_ ID3D10DepthStencilView **ppResources, UINT Offset, UINT Count) PURE; -}; - -////////////////////////////////////////////////////////////////////////////// -// ID3D10EffectConstantBuffer //////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -typedef interface ID3D10EffectConstantBuffer ID3D10EffectConstantBuffer; -typedef interface ID3D10EffectConstantBuffer *LPD3D10EFFECTCONSTANTBUFFER; - -// {56648F4D-CC8B-4444-A5AD-B5A3D76E91B3} -DEFINE_GUID(IID_ID3D10EffectConstantBuffer, -0x56648f4d, 0xcc8b, 0x4444, 0xa5, 0xad, 0xb5, 0xa3, 0xd7, 0x6e, 0x91, 0xb3); - -#undef INTERFACE -#define INTERFACE ID3D10EffectConstantBuffer - -DECLARE_INTERFACE_(ID3D10EffectConstantBuffer, ID3D10EffectVariable) -{ - STDMETHOD_(ID3D10EffectType*, GetType)(THIS) PURE; - STDMETHOD(GetDesc)(THIS_ D3D10_EFFECT_VARIABLE_DESC *pDesc) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByName)(THIS_ LPCSTR Name) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetMemberByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetMemberByName)(THIS_ LPCSTR Name) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetMemberBySemantic)(THIS_ LPCSTR Semantic) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetElement)(THIS_ UINT Index) PURE; - - STDMETHOD_(ID3D10EffectConstantBuffer*, GetParentConstantBuffer)(THIS) PURE; - - STDMETHOD_(ID3D10EffectScalarVariable*, AsScalar)(THIS) PURE; - STDMETHOD_(ID3D10EffectVectorVariable*, AsVector)(THIS) PURE; - STDMETHOD_(ID3D10EffectMatrixVariable*, AsMatrix)(THIS) PURE; - STDMETHOD_(ID3D10EffectStringVariable*, AsString)(THIS) PURE; - STDMETHOD_(ID3D10EffectShaderResourceVariable*, AsShaderResource)(THIS) PURE; - STDMETHOD_(ID3D10EffectRenderTargetViewVariable*, AsRenderTargetView)(THIS) PURE; - STDMETHOD_(ID3D10EffectDepthStencilViewVariable*, AsDepthStencilView)(THIS) PURE; - STDMETHOD_(ID3D10EffectConstantBuffer*, AsConstantBuffer)(THIS) PURE; - STDMETHOD_(ID3D10EffectShaderVariable*, AsShader)(THIS) PURE; - STDMETHOD_(ID3D10EffectBlendVariable*, AsBlend)(THIS) PURE; - STDMETHOD_(ID3D10EffectDepthStencilVariable*, AsDepthStencil)(THIS) PURE; - STDMETHOD_(ID3D10EffectRasterizerVariable*, AsRasterizer)(THIS) PURE; - STDMETHOD_(ID3D10EffectSamplerVariable*, AsSampler)(THIS) PURE; - - STDMETHOD(SetRawValue)(THIS_ void *pData, UINT Offset, UINT Count) PURE; - STDMETHOD(GetRawValue)(THIS_ void *pData, UINT Offset, UINT Count) PURE; - - STDMETHOD(SetConstantBuffer)(THIS_ ID3D10Buffer *pConstantBuffer) PURE; - STDMETHOD(GetConstantBuffer)(THIS_ ID3D10Buffer **ppConstantBuffer) PURE; - - STDMETHOD(SetTextureBuffer)(THIS_ ID3D10ShaderResourceView *pTextureBuffer) PURE; - STDMETHOD(GetTextureBuffer)(THIS_ ID3D10ShaderResourceView **ppTextureBuffer) PURE; -}; - -////////////////////////////////////////////////////////////////////////////// -// ID3D10EffectShaderVariable //////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -//---------------------------------------------------------------------------- -// D3D10_EFFECT_SHADER_DESC: -// -// Retrieved by ID3D10EffectShaderVariable::GetShaderDesc() -//---------------------------------------------------------------------------- - -typedef struct _D3D10_EFFECT_SHADER_DESC -{ - CONST BYTE *pInputSignature; // Passed into CreateInputLayout, - // valid on VS and GS only - - BOOL IsInline; // Is this an anonymous shader variable - // resulting from an inline shader assignment? - - - // -- The following fields are not valid after Optimize() -- - CONST BYTE *pBytecode; // Shader bytecode - UINT BytecodeLength; - - LPCSTR SODecl; // Stream out declaration string (for GS with SO) - - UINT NumInputSignatureEntries; // Number of entries in the input signature - UINT NumOutputSignatureEntries; // Number of entries in the output signature -} D3D10_EFFECT_SHADER_DESC; - - -typedef interface ID3D10EffectShaderVariable ID3D10EffectShaderVariable; -typedef interface ID3D10EffectShaderVariable *LPD3D10EFFECTSHADERVARIABLE; - -// {80849279-C799-4797-8C33-0407A07D9E06} -DEFINE_GUID(IID_ID3D10EffectShaderVariable, -0x80849279, 0xc799, 0x4797, 0x8c, 0x33, 0x4, 0x7, 0xa0, 0x7d, 0x9e, 0x6); - -#undef INTERFACE -#define INTERFACE ID3D10EffectShaderVariable - -DECLARE_INTERFACE_(ID3D10EffectShaderVariable, ID3D10EffectVariable) -{ - STDMETHOD_(ID3D10EffectType*, GetType)(THIS) PURE; - STDMETHOD(GetDesc)(THIS_ D3D10_EFFECT_VARIABLE_DESC *pDesc) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByName)(THIS_ LPCSTR Name) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetMemberByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetMemberByName)(THIS_ LPCSTR Name) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetMemberBySemantic)(THIS_ LPCSTR Semantic) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetElement)(THIS_ UINT Index) PURE; - - STDMETHOD_(ID3D10EffectConstantBuffer*, GetParentConstantBuffer)(THIS) PURE; - - STDMETHOD_(ID3D10EffectScalarVariable*, AsScalar)(THIS) PURE; - STDMETHOD_(ID3D10EffectVectorVariable*, AsVector)(THIS) PURE; - STDMETHOD_(ID3D10EffectMatrixVariable*, AsMatrix)(THIS) PURE; - STDMETHOD_(ID3D10EffectStringVariable*, AsString)(THIS) PURE; - STDMETHOD_(ID3D10EffectShaderResourceVariable*, AsShaderResource)(THIS) PURE; - STDMETHOD_(ID3D10EffectRenderTargetViewVariable*, AsRenderTargetView)(THIS) PURE; - STDMETHOD_(ID3D10EffectDepthStencilViewVariable*, AsDepthStencilView)(THIS) PURE; - STDMETHOD_(ID3D10EffectConstantBuffer*, AsConstantBuffer)(THIS) PURE; - STDMETHOD_(ID3D10EffectShaderVariable*, AsShader)(THIS) PURE; - STDMETHOD_(ID3D10EffectBlendVariable*, AsBlend)(THIS) PURE; - STDMETHOD_(ID3D10EffectDepthStencilVariable*, AsDepthStencil)(THIS) PURE; - STDMETHOD_(ID3D10EffectRasterizerVariable*, AsRasterizer)(THIS) PURE; - STDMETHOD_(ID3D10EffectSamplerVariable*, AsSampler)(THIS) PURE; - - STDMETHOD(SetRawValue)(THIS_ void *pData, UINT Offset, UINT Count) PURE; - STDMETHOD(GetRawValue)(THIS_ void *pData, UINT Offset, UINT Count) PURE; - - STDMETHOD(GetShaderDesc)(THIS_ UINT ShaderIndex, D3D10_EFFECT_SHADER_DESC *pDesc) PURE; - - STDMETHOD(GetVertexShader)(THIS_ UINT ShaderIndex, ID3D10VertexShader **ppVS) PURE; - STDMETHOD(GetGeometryShader)(THIS_ UINT ShaderIndex, ID3D10GeometryShader **ppGS) PURE; - STDMETHOD(GetPixelShader)(THIS_ UINT ShaderIndex, ID3D10PixelShader **ppPS) PURE; - - STDMETHOD(GetInputSignatureElementDesc)(THIS_ UINT ShaderIndex, UINT Element, D3D10_SIGNATURE_PARAMETER_DESC *pDesc) PURE; - STDMETHOD(GetOutputSignatureElementDesc)(THIS_ UINT ShaderIndex, UINT Element, D3D10_SIGNATURE_PARAMETER_DESC *pDesc) PURE; -}; - -////////////////////////////////////////////////////////////////////////////// -// ID3D10EffectBlendVariable ///////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -typedef interface ID3D10EffectBlendVariable ID3D10EffectBlendVariable; -typedef interface ID3D10EffectBlendVariable *LPD3D10EFFECTBLENDVARIABLE; - -// {1FCD2294-DF6D-4eae-86B3-0E9160CFB07B} -DEFINE_GUID(IID_ID3D10EffectBlendVariable, -0x1fcd2294, 0xdf6d, 0x4eae, 0x86, 0xb3, 0xe, 0x91, 0x60, 0xcf, 0xb0, 0x7b); - -#undef INTERFACE -#define INTERFACE ID3D10EffectBlendVariable - -DECLARE_INTERFACE_(ID3D10EffectBlendVariable, ID3D10EffectVariable) -{ - STDMETHOD_(ID3D10EffectType*, GetType)(THIS) PURE; - STDMETHOD(GetDesc)(THIS_ D3D10_EFFECT_VARIABLE_DESC *pDesc) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByName)(THIS_ LPCSTR Name) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetMemberByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetMemberByName)(THIS_ LPCSTR Name) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetMemberBySemantic)(THIS_ LPCSTR Semantic) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetElement)(THIS_ UINT Index) PURE; - - STDMETHOD_(ID3D10EffectConstantBuffer*, GetParentConstantBuffer)(THIS) PURE; - - STDMETHOD_(ID3D10EffectScalarVariable*, AsScalar)(THIS) PURE; - STDMETHOD_(ID3D10EffectVectorVariable*, AsVector)(THIS) PURE; - STDMETHOD_(ID3D10EffectMatrixVariable*, AsMatrix)(THIS) PURE; - STDMETHOD_(ID3D10EffectStringVariable*, AsString)(THIS) PURE; - STDMETHOD_(ID3D10EffectShaderResourceVariable*, AsShaderResource)(THIS) PURE; - STDMETHOD_(ID3D10EffectRenderTargetViewVariable*, AsRenderTargetView)(THIS) PURE; - STDMETHOD_(ID3D10EffectDepthStencilViewVariable*, AsDepthStencilView)(THIS) PURE; - STDMETHOD_(ID3D10EffectConstantBuffer*, AsConstantBuffer)(THIS) PURE; - STDMETHOD_(ID3D10EffectShaderVariable*, AsShader)(THIS) PURE; - STDMETHOD_(ID3D10EffectBlendVariable*, AsBlend)(THIS) PURE; - STDMETHOD_(ID3D10EffectDepthStencilVariable*, AsDepthStencil)(THIS) PURE; - STDMETHOD_(ID3D10EffectRasterizerVariable*, AsRasterizer)(THIS) PURE; - STDMETHOD_(ID3D10EffectSamplerVariable*, AsSampler)(THIS) PURE; - - STDMETHOD(SetRawValue)(THIS_ void *pData, UINT Offset, UINT Count) PURE; - STDMETHOD(GetRawValue)(THIS_ void *pData, UINT Offset, UINT Count) PURE; - - STDMETHOD(GetBlendState)(THIS_ UINT Index, ID3D10BlendState **ppBlendState) PURE; - STDMETHOD(GetBackingStore)(THIS_ UINT Index, D3D10_BLEND_DESC *pBlendDesc) PURE; -}; - -////////////////////////////////////////////////////////////////////////////// -// ID3D10EffectDepthStencilVariable ////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -typedef interface ID3D10EffectDepthStencilVariable ID3D10EffectDepthStencilVariable; -typedef interface ID3D10EffectDepthStencilVariable *LPD3D10EFFECTDEPTHSTENCILVARIABLE; - -// {AF482368-330A-46a5-9A5C-01C71AF24C8D} -DEFINE_GUID(IID_ID3D10EffectDepthStencilVariable, -0xaf482368, 0x330a, 0x46a5, 0x9a, 0x5c, 0x1, 0xc7, 0x1a, 0xf2, 0x4c, 0x8d); - -#undef INTERFACE -#define INTERFACE ID3D10EffectDepthStencilVariable - -DECLARE_INTERFACE_(ID3D10EffectDepthStencilVariable, ID3D10EffectVariable) -{ - STDMETHOD_(ID3D10EffectType*, GetType)(THIS) PURE; - STDMETHOD(GetDesc)(THIS_ D3D10_EFFECT_VARIABLE_DESC *pDesc) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByName)(THIS_ LPCSTR Name) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetMemberByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetMemberByName)(THIS_ LPCSTR Name) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetMemberBySemantic)(THIS_ LPCSTR Semantic) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetElement)(THIS_ UINT Index) PURE; - - STDMETHOD_(ID3D10EffectConstantBuffer*, GetParentConstantBuffer)(THIS) PURE; - - STDMETHOD_(ID3D10EffectScalarVariable*, AsScalar)(THIS) PURE; - STDMETHOD_(ID3D10EffectVectorVariable*, AsVector)(THIS) PURE; - STDMETHOD_(ID3D10EffectMatrixVariable*, AsMatrix)(THIS) PURE; - STDMETHOD_(ID3D10EffectStringVariable*, AsString)(THIS) PURE; - STDMETHOD_(ID3D10EffectShaderResourceVariable*, AsShaderResource)(THIS) PURE; - STDMETHOD_(ID3D10EffectRenderTargetViewVariable*, AsRenderTargetView)(THIS) PURE; - STDMETHOD_(ID3D10EffectDepthStencilViewVariable*, AsDepthStencilView)(THIS) PURE; - STDMETHOD_(ID3D10EffectConstantBuffer*, AsConstantBuffer)(THIS) PURE; - STDMETHOD_(ID3D10EffectShaderVariable*, AsShader)(THIS) PURE; - STDMETHOD_(ID3D10EffectBlendVariable*, AsBlend)(THIS) PURE; - STDMETHOD_(ID3D10EffectDepthStencilVariable*, AsDepthStencil)(THIS) PURE; - STDMETHOD_(ID3D10EffectRasterizerVariable*, AsRasterizer)(THIS) PURE; - STDMETHOD_(ID3D10EffectSamplerVariable*, AsSampler)(THIS) PURE; - - STDMETHOD(SetRawValue)(THIS_ void *pData, UINT Offset, UINT Count) PURE; - STDMETHOD(GetRawValue)(THIS_ void *pData, UINT Offset, UINT Count) PURE; - - STDMETHOD(GetDepthStencilState)(THIS_ UINT Index, ID3D10DepthStencilState **ppDepthStencilState) PURE; - STDMETHOD(GetBackingStore)(THIS_ UINT Index, D3D10_DEPTH_STENCIL_DESC *pDepthStencilDesc) PURE; -}; - -////////////////////////////////////////////////////////////////////////////// -// ID3D10EffectRasterizerVariable //////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -typedef interface ID3D10EffectRasterizerVariable ID3D10EffectRasterizerVariable; -typedef interface ID3D10EffectRasterizerVariable *LPD3D10EFFECTRASTERIZERVARIABLE; - -// {21AF9F0E-4D94-4ea9-9785-2CB76B8C0B34} -DEFINE_GUID(IID_ID3D10EffectRasterizerVariable, -0x21af9f0e, 0x4d94, 0x4ea9, 0x97, 0x85, 0x2c, 0xb7, 0x6b, 0x8c, 0xb, 0x34); - -#undef INTERFACE -#define INTERFACE ID3D10EffectRasterizerVariable - -DECLARE_INTERFACE_(ID3D10EffectRasterizerVariable, ID3D10EffectVariable) -{ - STDMETHOD_(ID3D10EffectType*, GetType)(THIS) PURE; - STDMETHOD(GetDesc)(THIS_ D3D10_EFFECT_VARIABLE_DESC *pDesc) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByName)(THIS_ LPCSTR Name) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetMemberByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetMemberByName)(THIS_ LPCSTR Name) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetMemberBySemantic)(THIS_ LPCSTR Semantic) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetElement)(THIS_ UINT Index) PURE; - - STDMETHOD_(ID3D10EffectConstantBuffer*, GetParentConstantBuffer)(THIS) PURE; - - STDMETHOD_(ID3D10EffectScalarVariable*, AsScalar)(THIS) PURE; - STDMETHOD_(ID3D10EffectVectorVariable*, AsVector)(THIS) PURE; - STDMETHOD_(ID3D10EffectMatrixVariable*, AsMatrix)(THIS) PURE; - STDMETHOD_(ID3D10EffectStringVariable*, AsString)(THIS) PURE; - STDMETHOD_(ID3D10EffectShaderResourceVariable*, AsShaderResource)(THIS) PURE; - STDMETHOD_(ID3D10EffectRenderTargetViewVariable*, AsRenderTargetView)(THIS) PURE; - STDMETHOD_(ID3D10EffectDepthStencilViewVariable*, AsDepthStencilView)(THIS) PURE; - STDMETHOD_(ID3D10EffectConstantBuffer*, AsConstantBuffer)(THIS) PURE; - STDMETHOD_(ID3D10EffectShaderVariable*, AsShader)(THIS) PURE; - STDMETHOD_(ID3D10EffectBlendVariable*, AsBlend)(THIS) PURE; - STDMETHOD_(ID3D10EffectDepthStencilVariable*, AsDepthStencil)(THIS) PURE; - STDMETHOD_(ID3D10EffectRasterizerVariable*, AsRasterizer)(THIS) PURE; - STDMETHOD_(ID3D10EffectSamplerVariable*, AsSampler)(THIS) PURE; - - STDMETHOD(SetRawValue)(THIS_ void *pData, UINT Offset, UINT Count) PURE; - STDMETHOD(GetRawValue)(THIS_ void *pData, UINT Offset, UINT Count) PURE; - - STDMETHOD(GetRasterizerState)(THIS_ UINT Index, ID3D10RasterizerState **ppRasterizerState) PURE; - STDMETHOD(GetBackingStore)(THIS_ UINT Index, D3D10_RASTERIZER_DESC *pRasterizerDesc) PURE; -}; - -////////////////////////////////////////////////////////////////////////////// -// ID3D10EffectSamplerVariable /////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -typedef interface ID3D10EffectSamplerVariable ID3D10EffectSamplerVariable; -typedef interface ID3D10EffectSamplerVariable *LPD3D10EFFECTSAMPLERVARIABLE; - -// {6530D5C7-07E9-4271-A418-E7CE4BD1E480} -DEFINE_GUID(IID_ID3D10EffectSamplerVariable, -0x6530d5c7, 0x7e9, 0x4271, 0xa4, 0x18, 0xe7, 0xce, 0x4b, 0xd1, 0xe4, 0x80); - -#undef INTERFACE -#define INTERFACE ID3D10EffectSamplerVariable - -DECLARE_INTERFACE_(ID3D10EffectSamplerVariable, ID3D10EffectVariable) -{ - STDMETHOD_(ID3D10EffectType*, GetType)(THIS) PURE; - STDMETHOD(GetDesc)(THIS_ D3D10_EFFECT_VARIABLE_DESC *pDesc) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByName)(THIS_ LPCSTR Name) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetMemberByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetMemberByName)(THIS_ LPCSTR Name) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetMemberBySemantic)(THIS_ LPCSTR Semantic) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetElement)(THIS_ UINT Index) PURE; - - STDMETHOD_(ID3D10EffectConstantBuffer*, GetParentConstantBuffer)(THIS) PURE; - - STDMETHOD_(ID3D10EffectScalarVariable*, AsScalar)(THIS) PURE; - STDMETHOD_(ID3D10EffectVectorVariable*, AsVector)(THIS) PURE; - STDMETHOD_(ID3D10EffectMatrixVariable*, AsMatrix)(THIS) PURE; - STDMETHOD_(ID3D10EffectStringVariable*, AsString)(THIS) PURE; - STDMETHOD_(ID3D10EffectShaderResourceVariable*, AsShaderResource)(THIS) PURE; - STDMETHOD_(ID3D10EffectRenderTargetViewVariable*, AsRenderTargetView)(THIS) PURE; - STDMETHOD_(ID3D10EffectDepthStencilViewVariable*, AsDepthStencilView)(THIS) PURE; - STDMETHOD_(ID3D10EffectConstantBuffer*, AsConstantBuffer)(THIS) PURE; - STDMETHOD_(ID3D10EffectShaderVariable*, AsShader)(THIS) PURE; - STDMETHOD_(ID3D10EffectBlendVariable*, AsBlend)(THIS) PURE; - STDMETHOD_(ID3D10EffectDepthStencilVariable*, AsDepthStencil)(THIS) PURE; - STDMETHOD_(ID3D10EffectRasterizerVariable*, AsRasterizer)(THIS) PURE; - STDMETHOD_(ID3D10EffectSamplerVariable*, AsSampler)(THIS) PURE; - - STDMETHOD(SetRawValue)(THIS_ void *pData, UINT Offset, UINT Count) PURE; - STDMETHOD(GetRawValue)(THIS_ void *pData, UINT Offset, UINT Count) PURE; - - STDMETHOD(GetSampler)(THIS_ UINT Index, ID3D10SamplerState **ppSampler) PURE; - STDMETHOD(GetBackingStore)(THIS_ UINT Index, D3D10_SAMPLER_DESC *pSamplerDesc) PURE; -}; - -////////////////////////////////////////////////////////////////////////////// -// ID3D10EffectPass ////////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -//---------------------------------------------------------------------------- -// D3D10_PASS_DESC: -// -// Retrieved by ID3D10EffectPass::GetDesc() -//---------------------------------------------------------------------------- - -typedef struct _D3D10_PASS_DESC -{ - LPCSTR Name; // Name of this pass (NULL if not anonymous) - UINT Annotations; // Number of annotations on this pass - - BYTE *pIAInputSignature; // Signature from VS or GS (if there is no VS) - // or NULL if neither exists - SIZE_T IAInputSignatureSize; // Singature size in bytes - - UINT StencilRef; // Specified in SetDepthStencilState() - UINT SampleMask; // Specified in SetBlendState() - FLOAT BlendFactor[4]; // Specified in SetBlendState() -} D3D10_PASS_DESC; - -//---------------------------------------------------------------------------- -// D3D10_PASS_SHADER_DESC: -// -// Retrieved by ID3D10EffectPass::Get**ShaderDesc() -//---------------------------------------------------------------------------- - -typedef struct _D3D10_PASS_SHADER_DESC -{ - ID3D10EffectShaderVariable *pShaderVariable; // The variable that this shader came from. - // If this is an inline shader assignment, - // the returned interface will be an - // anonymous shader variable, which is - // not retrievable any other way. It's - // name in the variable description will - // be "$Anonymous". - // If there is no assignment of this type in - // the pass block, pShaderVariable != NULL, - // but pShaderVariable->IsValid() == FALSE. - - UINT ShaderIndex; // The element of pShaderVariable (if an array) - // or 0 if not applicable -} D3D10_PASS_SHADER_DESC; - -typedef interface ID3D10EffectPass ID3D10EffectPass; -typedef interface ID3D10EffectPass *LPD3D10EFFECTPASS; - -// {5CFBEB89-1A06-46e0-B282-E3F9BFA36A54} -DEFINE_GUID(IID_ID3D10EffectPass, -0x5cfbeb89, 0x1a06, 0x46e0, 0xb2, 0x82, 0xe3, 0xf9, 0xbf, 0xa3, 0x6a, 0x54); - -#undef INTERFACE -#define INTERFACE ID3D10EffectPass - -DECLARE_INTERFACE(ID3D10EffectPass) -{ - STDMETHOD_(BOOL, IsValid)(THIS) PURE; - STDMETHOD(GetDesc)(THIS_ D3D10_PASS_DESC *pDesc) PURE; - - STDMETHOD(GetVertexShaderDesc)(THIS_ D3D10_PASS_SHADER_DESC *pDesc) PURE; - STDMETHOD(GetGeometryShaderDesc)(THIS_ D3D10_PASS_SHADER_DESC *pDesc) PURE; - STDMETHOD(GetPixelShaderDesc)(THIS_ D3D10_PASS_SHADER_DESC *pDesc) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByName)(THIS_ LPCSTR Name) PURE; - - STDMETHOD(Apply)(THIS_ UINT Flags) PURE; - - STDMETHOD(ComputeStateBlockMask)(THIS_ D3D10_STATE_BLOCK_MASK *pStateBlockMask) PURE; -}; - -////////////////////////////////////////////////////////////////////////////// -// ID3D10EffectTechnique ///////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -//---------------------------------------------------------------------------- -// D3D10_TECHNIQUE_DESC: -// -// Retrieved by ID3D10EffectTechnique::GetDesc() -//---------------------------------------------------------------------------- - -typedef struct _D3D10_TECHNIQUE_DESC -{ - LPCSTR Name; // Name of this technique (NULL if not anonymous) - UINT Passes; // Number of passes contained within - UINT Annotations; // Number of annotations on this technique -} D3D10_TECHNIQUE_DESC; - -typedef interface ID3D10EffectTechnique ID3D10EffectTechnique; -typedef interface ID3D10EffectTechnique *LPD3D10EFFECTTECHNIQUE; - -// {DB122CE8-D1C9-4292-B237-24ED3DE8B175} -DEFINE_GUID(IID_ID3D10EffectTechnique, -0xdb122ce8, 0xd1c9, 0x4292, 0xb2, 0x37, 0x24, 0xed, 0x3d, 0xe8, 0xb1, 0x75); - -#undef INTERFACE -#define INTERFACE ID3D10EffectTechnique - -DECLARE_INTERFACE(ID3D10EffectTechnique) -{ - STDMETHOD_(BOOL, IsValid)(THIS) PURE; - STDMETHOD(GetDesc)(THIS_ D3D10_TECHNIQUE_DESC *pDesc) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetAnnotationByName)(THIS_ LPCSTR Name) PURE; - - STDMETHOD_(ID3D10EffectPass*, GetPassByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectPass*, GetPassByName)(THIS_ LPCSTR Name) PURE; - - STDMETHOD(ComputeStateBlockMask)(THIS_ D3D10_STATE_BLOCK_MASK *pStateBlockMask) PURE; -}; - -////////////////////////////////////////////////////////////////////////////// -// ID3D10Effect ////////////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -//---------------------------------------------------------------------------- -// D3D10_EFFECT_DESC: -// -// Retrieved by ID3D10Effect::GetDesc() -//---------------------------------------------------------------------------- - -typedef struct _D3D10_EFFECT_DESC -{ - - BOOL IsChildEffect; // TRUE if this is a child effect, - // FALSE if this is standalone or an effect pool. - - UINT ConstantBuffers; // Number of constant buffers in this effect, - // excluding the effect pool. - UINT SharedConstantBuffers; // Number of constant buffers shared in this - // effect's pool. - - UINT GlobalVariables; // Number of global variables in this effect, - // excluding the effect pool. - UINT SharedGlobalVariables; // Number of global variables shared in this - // effect's pool. - - UINT Techniques; // Number of techniques in this effect, - // excluding the effect pool. -} D3D10_EFFECT_DESC; - -typedef interface ID3D10Effect ID3D10Effect; -typedef interface ID3D10Effect *LPD3D10EFFECT; - -// {51B0CA8B-EC0B-4519-870D-8EE1CB5017C7} -DEFINE_GUID(IID_ID3D10Effect, -0x51b0ca8b, 0xec0b, 0x4519, 0x87, 0xd, 0x8e, 0xe1, 0xcb, 0x50, 0x17, 0xc7); - -#undef INTERFACE -#define INTERFACE ID3D10Effect - -DECLARE_INTERFACE_(ID3D10Effect, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - STDMETHOD_(BOOL, IsValid)(THIS) PURE; - STDMETHOD_(BOOL, IsPool)(THIS) PURE; - - // Managing D3D Device - STDMETHOD(GetDevice)(THIS_ ID3D10Device** ppDevice) PURE; - - // New Reflection APIs - STDMETHOD(GetDesc)(THIS_ D3D10_EFFECT_DESC *pDesc) PURE; - - STDMETHOD_(ID3D10EffectConstantBuffer*, GetConstantBufferByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectConstantBuffer*, GetConstantBufferByName)(THIS_ LPCSTR Name) PURE; - - STDMETHOD_(ID3D10EffectVariable*, GetVariableByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetVariableByName)(THIS_ LPCSTR Name) PURE; - STDMETHOD_(ID3D10EffectVariable*, GetVariableBySemantic)(THIS_ LPCSTR Semantic) PURE; - - STDMETHOD_(ID3D10EffectTechnique*, GetTechniqueByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10EffectTechnique*, GetTechniqueByName)(THIS_ LPCSTR Name) PURE; - - STDMETHOD(Optimize)(THIS) PURE; - STDMETHOD_(BOOL, IsOptimized)(THIS) PURE; - -}; - -////////////////////////////////////////////////////////////////////////////// -// ID3D10EffectPool ////////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -typedef interface ID3D10EffectPool ID3D10EffectPool; -typedef interface ID3D10EffectPool *LPD3D10EFFECTPOOL; - -// {9537AB04-3250-412e-8213-FCD2F8677933} -DEFINE_GUID(IID_ID3D10EffectPool, -0x9537ab04, 0x3250, 0x412e, 0x82, 0x13, 0xfc, 0xd2, 0xf8, 0x67, 0x79, 0x33); - -#undef INTERFACE -#define INTERFACE ID3D10EffectPool - -DECLARE_INTERFACE_(ID3D10EffectPool, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - STDMETHOD_(ID3D10Effect*, AsEffect)(THIS) PURE; - - // No public methods -}; - -////////////////////////////////////////////////////////////////////////////// -// APIs ////////////////////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - -//---------------------------------------------------------------------------- -// D3D10CreateEffectFromXXXX: -// -------------------------- -// Creates an effect from a binary effect or file -// -// Parameters: -// -// [in] -// -// -// pData -// Blob of effect data, either ASCII (uncompiled, for D3D10CompileEffectFromMemory) or binary (compiled, for D3D10CreateEffect*) -// DataLength -// Length of the data blob -// -// pSrcFileName -// Name of the ASCII Effect file pData was obtained from -// -// pDefines -// Optional NULL-terminated array of preprocessor macro definitions. -// pInclude -// Optional interface pointer to use for handling #include directives. -// If this parameter is NULL, #includes will be honored when compiling -// from file, and will error when compiling from resource or memory. -// HLSLFlags -// Compilation flags pertaining to shaders and data types, honored by -// the HLSL compiler -// FXFlags -// Compilation flags pertaining to Effect compilation, honored -// by the Effect compiler -// pDevice -// Pointer to the D3D10 device on which to create Effect resources -// pEffectPool -// Pointer to an Effect pool to share variables with or NULL -// -// [out] -// -// ppEffect -// Address of the newly created Effect interface -// ppEffectPool -// Address of the newly created Effect pool interface -// ppErrors -// If non-NULL, address of a buffer with error messages that occurred -// during parsing or compilation -// -//---------------------------------------------------------------------------- - -HRESULT WINAPI D3D10CompileEffectFromMemory(void *pData, SIZE_T DataLength, LPCSTR pSrcFileName, CONST D3D10_SHADER_MACRO *pDefines, - ID3D10Include *pInclude, UINT HLSLFlags, UINT FXFlags, - ID3D10Blob **ppCompiledEffect, ID3D10Blob **ppErrors); - -HRESULT WINAPI D3D10CreateEffectFromMemory(void *pData, SIZE_T DataLength, UINT FXFlags, ID3D10Device *pDevice, - ID3D10EffectPool *pEffectPool, ID3D10Effect **ppEffect); - -HRESULT WINAPI D3D10CreateEffectPoolFromMemory(void *pData, SIZE_T DataLength, UINT FXFlags, ID3D10Device *pDevice, - ID3D10EffectPool **ppEffectPool); - - -//---------------------------------------------------------------------------- -// D3D10DisassembleEffect: -// ----------------------- -// Takes an effect interface, and returns a buffer containing text assembly. -// -// Parameters: -// pEffect -// Pointer to the runtime effect interface. -// EnableColorCode -// Emit HTML tags for color coding the output? -// ppDisassembly -// Returns a buffer containing the disassembled effect. -//---------------------------------------------------------------------------- - -HRESULT WINAPI D3D10DisassembleEffect(ID3D10Effect *pEffect, BOOL EnableColorCode, ID3D10Blob **ppDisassembly); - -#ifdef __cplusplus -} -#endif //__cplusplus - -#endif //__D3D10EFFECT_H__ - - diff --git a/SDK/Include/D3D10shader.h b/SDK/Include/D3D10shader.h deleted file mode 100644 index d5a8a7f..0000000 --- a/SDK/Include/D3D10shader.h +++ /dev/null @@ -1,534 +0,0 @@ -////////////////////////////////////////////////////////////////////////////// -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// -// File: D3D10Shader.h -// Content: D3D10 Shader Types and APIs -// -////////////////////////////////////////////////////////////////////////////// - -#ifndef __D3D10SHADER_H__ -#define __D3D10SHADER_H__ - -#include "d3d10.h" - - -//--------------------------------------------------------------------------- -// D3D10_TX_VERSION: -// -------------- -// Version token used to create a procedural texture filler in effects -// Used by D3D10Fill[]TX functions -//--------------------------------------------------------------------------- -#define D3D10_TX_VERSION(_Major,_Minor) (('T' << 24) | ('X' << 16) | ((_Major) << 8) | (_Minor)) - - -//---------------------------------------------------------------------------- -// D3D10SHADER flags: -// ----------------- -// D3D10_SHADER_DEBUG -// Insert debug file/line/type/symbol information. -// -// D3D10_SHADER_SKIP_VALIDATION -// Do not validate the generated code against known capabilities and -// constraints. This option is only recommended when compiling shaders -// you KNOW will work. (ie. have compiled before without this option.) -// Shaders are always validated by D3D before they are set to the device. -// -// D3D10_SHADER_SKIP_OPTIMIZATION -// Instructs the compiler to skip optimization steps during code generation. -// Unless you are trying to isolate a problem in your code using this option -// is not recommended. -// -// D3D10_SHADER_PACK_MATRIX_ROW_MAJOR -// Unless explicitly specified, matrices will be packed in row-major order -// on input and output from the shader. -// -// D3D10_SHADER_PACK_MATRIX_COLUMN_MAJOR -// Unless explicitly specified, matrices will be packed in column-major -// order on input and output from the shader. This is generally more -// efficient, since it allows vector-matrix multiplication to be performed -// using a series of dot-products. -// -// D3D10_SHADER_PARTIAL_PRECISION -// Force all computations in resulting shader to occur at partial precision. -// This may result in faster evaluation of shaders on some hardware. -// -// D3D10_SHADER_FORCE_VS_SOFTWARE_NO_OPT -// Force compiler to compile against the next highest available software -// target for vertex shaders. This flag also turns optimizations off, -// and debugging on. -// -// D3D10_SHADER_FORCE_PS_SOFTWARE_NO_OPT -// Force compiler to compile against the next highest available software -// target for pixel shaders. This flag also turns optimizations off, -// and debugging on. -// -// D3D10_SHADER_NO_PRESHADER -// Disables Preshaders. Using this flag will cause the compiler to not -// pull out static expression for evaluation on the host cpu -// -// D3D10_SHADER_AVOID_FLOW_CONTROL -// Hint compiler to avoid flow-control constructs where possible. -// -// D3D10_SHADER_PREFER_FLOW_CONTROL -// Hint compiler to prefer flow-control constructs where possible. -// -// D3D10_SHADER_ENABLE_STRICTNESS -// By default, the HLSL/Effect compilers are not strict on deprecated syntax. -// Specifying this flag enables the strict mode. Deprecated syntax may be -// removed in a future release, and enabling syntax is a good way to make sure -// your shaders comply to the latest spec. -// -// D3D10_SHADER_ENABLE_BACKWARDS_COMPATIBILITY -// This enables older shaders to compile to 4_0 targets. -// -//---------------------------------------------------------------------------- - -#define D3D10_SHADER_DEBUG (1 << 0) -#define D3D10_SHADER_SKIP_VALIDATION (1 << 1) -#define D3D10_SHADER_SKIP_OPTIMIZATION (1 << 2) -#define D3D10_SHADER_PACK_MATRIX_ROW_MAJOR (1 << 3) -#define D3D10_SHADER_PACK_MATRIX_COLUMN_MAJOR (1 << 4) -#define D3D10_SHADER_PARTIAL_PRECISION (1 << 5) -#define D3D10_SHADER_FORCE_VS_SOFTWARE_NO_OPT (1 << 6) -#define D3D10_SHADER_FORCE_PS_SOFTWARE_NO_OPT (1 << 7) -#define D3D10_SHADER_NO_PRESHADER (1 << 8) -#define D3D10_SHADER_AVOID_FLOW_CONTROL (1 << 9) -#define D3D10_SHADER_PREFER_FLOW_CONTROL (1 << 10) -#define D3D10_SHADER_ENABLE_STRICTNESS (1 << 11) -#define D3D10_SHADER_ENABLE_BACKWARDS_COMPATIBILITY (1 << 12) -#define D3D10_SHADER_IEEE_STRICTNESS (1 << 13) -#define D3D10_SHADER_WARNINGS_ARE_ERRORS (1 << 18) - - -// optimization level flags -#define D3D10_SHADER_OPTIMIZATION_LEVEL0 (1 << 14) -#define D3D10_SHADER_OPTIMIZATION_LEVEL1 0 -#define D3D10_SHADER_OPTIMIZATION_LEVEL2 ((1 << 14) | (1 << 15)) -#define D3D10_SHADER_OPTIMIZATION_LEVEL3 (1 << 15) - - - - -typedef D3D_SHADER_MACRO D3D10_SHADER_MACRO; -typedef D3D10_SHADER_MACRO* LPD3D10_SHADER_MACRO; - - -typedef D3D_SHADER_VARIABLE_CLASS D3D10_SHADER_VARIABLE_CLASS; -typedef D3D10_SHADER_VARIABLE_CLASS* LPD3D10_SHADER_VARIABLE_CLASS; - -typedef D3D_SHADER_VARIABLE_FLAGS D3D10_SHADER_VARIABLE_FLAGS; -typedef D3D10_SHADER_VARIABLE_FLAGS* LPD3D10_SHADER_VARIABLE_FLAGS; - -typedef D3D_SHADER_VARIABLE_TYPE D3D10_SHADER_VARIABLE_TYPE; -typedef D3D10_SHADER_VARIABLE_TYPE* LPD3D10_SHADER_VARIABLE_TYPE; - -typedef D3D_SHADER_INPUT_FLAGS D3D10_SHADER_INPUT_FLAGS; -typedef D3D10_SHADER_INPUT_FLAGS* LPD3D10_SHADER_INPUT_FLAGS; - -typedef D3D_SHADER_INPUT_TYPE D3D10_SHADER_INPUT_TYPE; -typedef D3D10_SHADER_INPUT_TYPE* LPD3D10_SHADER_INPUT_TYPE; - -typedef D3D_SHADER_CBUFFER_FLAGS D3D10_SHADER_CBUFFER_FLAGS; -typedef D3D10_SHADER_CBUFFER_FLAGS* LPD3D10_SHADER_CBUFFER_FLAGS; - -typedef D3D_CBUFFER_TYPE D3D10_CBUFFER_TYPE; -typedef D3D10_CBUFFER_TYPE* LPD3D10_CBUFFER_TYPE; - -typedef D3D_NAME D3D10_NAME; - -typedef D3D_RESOURCE_RETURN_TYPE D3D10_RESOURCE_RETURN_TYPE; - -typedef D3D_REGISTER_COMPONENT_TYPE D3D10_REGISTER_COMPONENT_TYPE; - -typedef D3D_INCLUDE_TYPE D3D10_INCLUDE_TYPE; - -// ID3D10Include has been made version-neutral and moved to d3dcommon.h. -typedef interface ID3DInclude ID3D10Include; -typedef interface ID3DInclude* LPD3D10INCLUDE; -#define IID_ID3D10Include IID_ID3DInclude - - -//---------------------------------------------------------------------------- -// ID3D10ShaderReflection: -//---------------------------------------------------------------------------- - -// -// Structure definitions -// - -typedef struct _D3D10_SHADER_DESC -{ - UINT Version; // Shader version - LPCSTR Creator; // Creator string - UINT Flags; // Shader compilation/parse flags - - UINT ConstantBuffers; // Number of constant buffers - UINT BoundResources; // Number of bound resources - UINT InputParameters; // Number of parameters in the input signature - UINT OutputParameters; // Number of parameters in the output signature - - UINT InstructionCount; // Number of emitted instructions - UINT TempRegisterCount; // Number of temporary registers used - UINT TempArrayCount; // Number of temporary arrays used - UINT DefCount; // Number of constant defines - UINT DclCount; // Number of declarations (input + output) - UINT TextureNormalInstructions; // Number of non-categorized texture instructions - UINT TextureLoadInstructions; // Number of texture load instructions - UINT TextureCompInstructions; // Number of texture comparison instructions - UINT TextureBiasInstructions; // Number of texture bias instructions - UINT TextureGradientInstructions; // Number of texture gradient instructions - UINT FloatInstructionCount; // Number of floating point arithmetic instructions used - UINT IntInstructionCount; // Number of signed integer arithmetic instructions used - UINT UintInstructionCount; // Number of unsigned integer arithmetic instructions used - UINT StaticFlowControlCount; // Number of static flow control instructions used - UINT DynamicFlowControlCount; // Number of dynamic flow control instructions used - UINT MacroInstructionCount; // Number of macro instructions used - UINT ArrayInstructionCount; // Number of array instructions used - UINT CutInstructionCount; // Number of cut instructions used - UINT EmitInstructionCount; // Number of emit instructions used - D3D10_PRIMITIVE_TOPOLOGY GSOutputTopology; // Geometry shader output topology - UINT GSMaxOutputVertexCount; // Geometry shader maximum output vertex count -} D3D10_SHADER_DESC; - -typedef struct _D3D10_SHADER_BUFFER_DESC -{ - LPCSTR Name; // Name of the constant buffer - D3D10_CBUFFER_TYPE Type; // Indicates that this is a CBuffer or TBuffer - UINT Variables; // Number of member variables - UINT Size; // Size of CB (in bytes) - UINT uFlags; // Buffer description flags -} D3D10_SHADER_BUFFER_DESC; - -typedef struct _D3D10_SHADER_VARIABLE_DESC -{ - LPCSTR Name; // Name of the variable - UINT StartOffset; // Offset in constant buffer's backing store - UINT Size; // Size of variable (in bytes) - UINT uFlags; // Variable flags - LPVOID DefaultValue; // Raw pointer to default value -} D3D10_SHADER_VARIABLE_DESC; - -typedef struct _D3D10_SHADER_TYPE_DESC -{ - D3D10_SHADER_VARIABLE_CLASS Class; // Variable class (e.g. object, matrix, etc.) - D3D10_SHADER_VARIABLE_TYPE Type; // Variable type (e.g. float, sampler, etc.) - UINT Rows; // Number of rows (for matrices, 1 for other numeric, 0 if not applicable) - UINT Columns; // Number of columns (for vectors & matrices, 1 for other numeric, 0 if not applicable) - UINT Elements; // Number of elements (0 if not an array) - UINT Members; // Number of members (0 if not a structure) - UINT Offset; // Offset from the start of structure (0 if not a structure member) -} D3D10_SHADER_TYPE_DESC; - -typedef struct _D3D10_SHADER_INPUT_BIND_DESC -{ - LPCSTR Name; // Name of the resource - D3D10_SHADER_INPUT_TYPE Type; // Type of resource (e.g. texture, cbuffer, etc.) - UINT BindPoint; // Starting bind point - UINT BindCount; // Number of contiguous bind points (for arrays) - - UINT uFlags; // Input binding flags - D3D10_RESOURCE_RETURN_TYPE ReturnType; // Return type (if texture) - D3D10_SRV_DIMENSION Dimension; // Dimension (if texture) - UINT NumSamples; // Number of samples (0 if not MS texture) -} D3D10_SHADER_INPUT_BIND_DESC; - -typedef struct _D3D10_SIGNATURE_PARAMETER_DESC -{ - LPCSTR SemanticName; // Name of the semantic - UINT SemanticIndex; // Index of the semantic - UINT Register; // Number of member variables - D3D10_NAME SystemValueType;// A predefined system value, or D3D10_NAME_UNDEFINED if not applicable - D3D10_REGISTER_COMPONENT_TYPE ComponentType;// Scalar type (e.g. uint, float, etc.) - BYTE Mask; // Mask to indicate which components of the register - // are used (combination of D3D10_COMPONENT_MASK values) - BYTE ReadWriteMask; // Mask to indicate whether a given component is - // never written (if this is an output signature) or - // always read (if this is an input signature). - // (combination of D3D10_COMPONENT_MASK values) - -} D3D10_SIGNATURE_PARAMETER_DESC; - - -// -// Interface definitions -// - -typedef interface ID3D10ShaderReflectionType ID3D10ShaderReflectionType; -typedef interface ID3D10ShaderReflectionType *LPD3D10SHADERREFLECTIONTYPE; - -// {C530AD7D-9B16-4395-A979-BA2ECFF83ADD} -DEFINE_GUID(IID_ID3D10ShaderReflectionType, -0xc530ad7d, 0x9b16, 0x4395, 0xa9, 0x79, 0xba, 0x2e, 0xcf, 0xf8, 0x3a, 0xdd); - -#undef INTERFACE -#define INTERFACE ID3D10ShaderReflectionType - -DECLARE_INTERFACE(ID3D10ShaderReflectionType) -{ - STDMETHOD(GetDesc)(THIS_ D3D10_SHADER_TYPE_DESC *pDesc) PURE; - - STDMETHOD_(ID3D10ShaderReflectionType*, GetMemberTypeByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10ShaderReflectionType*, GetMemberTypeByName)(THIS_ LPCSTR Name) PURE; - STDMETHOD_(LPCSTR, GetMemberTypeName)(THIS_ UINT Index) PURE; -}; - -typedef interface ID3D10ShaderReflectionVariable ID3D10ShaderReflectionVariable; -typedef interface ID3D10ShaderReflectionVariable *LPD3D10SHADERREFLECTIONVARIABLE; - -// {1BF63C95-2650-405d-99C1-3636BD1DA0A1} -DEFINE_GUID(IID_ID3D10ShaderReflectionVariable, -0x1bf63c95, 0x2650, 0x405d, 0x99, 0xc1, 0x36, 0x36, 0xbd, 0x1d, 0xa0, 0xa1); - -#undef INTERFACE -#define INTERFACE ID3D10ShaderReflectionVariable - -DECLARE_INTERFACE(ID3D10ShaderReflectionVariable) -{ - STDMETHOD(GetDesc)(THIS_ D3D10_SHADER_VARIABLE_DESC *pDesc) PURE; - - STDMETHOD_(ID3D10ShaderReflectionType*, GetType)(THIS) PURE; -}; - -typedef interface ID3D10ShaderReflectionConstantBuffer ID3D10ShaderReflectionConstantBuffer; -typedef interface ID3D10ShaderReflectionConstantBuffer *LPD3D10SHADERREFLECTIONCONSTANTBUFFER; - -// {66C66A94-DDDD-4b62-A66A-F0DA33C2B4D0} -DEFINE_GUID(IID_ID3D10ShaderReflectionConstantBuffer, -0x66c66a94, 0xdddd, 0x4b62, 0xa6, 0x6a, 0xf0, 0xda, 0x33, 0xc2, 0xb4, 0xd0); - -#undef INTERFACE -#define INTERFACE ID3D10ShaderReflectionConstantBuffer - -DECLARE_INTERFACE(ID3D10ShaderReflectionConstantBuffer) -{ - STDMETHOD(GetDesc)(THIS_ D3D10_SHADER_BUFFER_DESC *pDesc) PURE; - - STDMETHOD_(ID3D10ShaderReflectionVariable*, GetVariableByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10ShaderReflectionVariable*, GetVariableByName)(THIS_ LPCSTR Name) PURE; -}; - -typedef interface ID3D10ShaderReflection ID3D10ShaderReflection; -typedef interface ID3D10ShaderReflection *LPD3D10SHADERREFLECTION; - -// {D40E20B6-F8F7-42ad-AB20-4BAF8F15DFAA} -DEFINE_GUID(IID_ID3D10ShaderReflection, -0xd40e20b6, 0xf8f7, 0x42ad, 0xab, 0x20, 0x4b, 0xaf, 0x8f, 0x15, 0xdf, 0xaa); - -#undef INTERFACE -#define INTERFACE ID3D10ShaderReflection - -DECLARE_INTERFACE_(ID3D10ShaderReflection, IUnknown) -{ - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - STDMETHOD(GetDesc)(THIS_ D3D10_SHADER_DESC *pDesc) PURE; - - STDMETHOD_(ID3D10ShaderReflectionConstantBuffer*, GetConstantBufferByIndex)(THIS_ UINT Index) PURE; - STDMETHOD_(ID3D10ShaderReflectionConstantBuffer*, GetConstantBufferByName)(THIS_ LPCSTR Name) PURE; - - STDMETHOD(GetResourceBindingDesc)(THIS_ UINT ResourceIndex, D3D10_SHADER_INPUT_BIND_DESC *pDesc) PURE; - - STDMETHOD(GetInputParameterDesc)(THIS_ UINT ParameterIndex, D3D10_SIGNATURE_PARAMETER_DESC *pDesc) PURE; - STDMETHOD(GetOutputParameterDesc)(THIS_ UINT ParameterIndex, D3D10_SIGNATURE_PARAMETER_DESC *pDesc) PURE; - -}; - -////////////////////////////////////////////////////////////////////////////// -// APIs ////////////////////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - - -//---------------------------------------------------------------------------- -// D3D10CompileShader: -// ------------------ -// Compiles a shader. -// -// Parameters: -// pSrcFile -// Source file name. -// hSrcModule -// Module handle. if NULL, current module will be used. -// pSrcResource -// Resource name in module. -// pSrcData -// Pointer to source code. -// SrcDataLen -// Size of source code, in bytes. -// pDefines -// Optional NULL-terminated array of preprocessor macro definitions. -// pInclude -// Optional interface pointer to use for handling #include directives. -// If this parameter is NULL, #includes will be honored when compiling -// from file, and will error when compiling from resource or memory. -// pFunctionName -// Name of the entrypoint function where execution should begin. -// pProfile -// Instruction set to be used when generating code. The D3D10 entry -// point currently supports only "vs_4_0", "ps_4_0", and "gs_4_0". -// Flags -// See D3D10_SHADER_xxx flags. -// ppShader -// Returns a buffer containing the created shader. This buffer contains -// the compiled shader code, as well as any embedded debug and symbol -// table info. (See D3D10GetShaderConstantTable) -// ppErrorMsgs -// Returns a buffer containing a listing of errors and warnings that were -// encountered during the compile. If you are running in a debugger, -// these are the same messages you will see in your debug output. -//---------------------------------------------------------------------------- - -HRESULT WINAPI D3D10CompileShader(LPCSTR pSrcData, SIZE_T SrcDataLen, LPCSTR pFileName, CONST D3D10_SHADER_MACRO* pDefines, LPD3D10INCLUDE pInclude, - LPCSTR pFunctionName, LPCSTR pProfile, UINT Flags, ID3D10Blob** ppShader, ID3D10Blob** ppErrorMsgs); - -//---------------------------------------------------------------------------- -// D3D10DisassembleShader: -// ---------------------- -// Takes a binary shader, and returns a buffer containing text assembly. -// -// Parameters: -// pShader -// Pointer to the shader byte code. -// BytecodeLength -// Size of the shader byte code in bytes. -// EnableColorCode -// Emit HTML tags for color coding the output? -// pComments -// Pointer to a comment string to include at the top of the shader. -// ppDisassembly -// Returns a buffer containing the disassembled shader. -//---------------------------------------------------------------------------- - -HRESULT WINAPI D3D10DisassembleShader(CONST void *pShader, SIZE_T BytecodeLength, BOOL EnableColorCode, LPCSTR pComments, ID3D10Blob** ppDisassembly); - - -//---------------------------------------------------------------------------- -// D3D10GetPixelShaderProfile/D3D10GetVertexShaderProfile/D3D10GetGeometryShaderProfile: -// ----------------------------------------------------- -// Returns the name of the HLSL profile best suited to a given device. -// -// Parameters: -// pDevice -// Pointer to the device in question -//---------------------------------------------------------------------------- - -LPCSTR WINAPI D3D10GetPixelShaderProfile(ID3D10Device *pDevice); - -LPCSTR WINAPI D3D10GetVertexShaderProfile(ID3D10Device *pDevice); - -LPCSTR WINAPI D3D10GetGeometryShaderProfile(ID3D10Device *pDevice); - -//---------------------------------------------------------------------------- -// D3D10ReflectShader: -// ------------------ -// Creates a shader reflection object that can be used to retrieve information -// about a compiled shader -// -// Parameters: -// pShaderBytecode -// Pointer to a compiled shader (same pointer that is passed into -// ID3D10Device::CreateShader) -// BytecodeLength -// Length of the shader bytecode buffer -// ppReflector -// [out] Returns a ID3D10ShaderReflection object that can be used to -// retrieve shader resource and constant buffer information -// -//---------------------------------------------------------------------------- - -HRESULT WINAPI D3D10ReflectShader(CONST void *pShaderBytecode, SIZE_T BytecodeLength, ID3D10ShaderReflection **ppReflector); - -//---------------------------------------------------------------------------- -// D3D10PreprocessShader -// --------------------- -// Creates a shader reflection object that can be used to retrieve information -// about a compiled shader -// -// Parameters: -// pSrcData -// Pointer to source code -// SrcDataLen -// Size of source code, in bytes -// pFileName -// Source file name (used for error output) -// pDefines -// Optional NULL-terminated array of preprocessor macro definitions. -// pInclude -// Optional interface pointer to use for handling #include directives. -// If this parameter is NULL, #includes will be honored when assembling -// from file, and will error when assembling from resource or memory. -// ppShaderText -// Returns a buffer containing a single large string that represents -// the resulting formatted token stream -// ppErrorMsgs -// Returns a buffer containing a listing of errors and warnings that were -// encountered during assembly. If you are running in a debugger, -// these are the same messages you will see in your debug output. -//---------------------------------------------------------------------------- - -HRESULT WINAPI D3D10PreprocessShader(LPCSTR pSrcData, SIZE_T SrcDataSize, LPCSTR pFileName, CONST D3D10_SHADER_MACRO* pDefines, - LPD3D10INCLUDE pInclude, ID3D10Blob** ppShaderText, ID3D10Blob** ppErrorMsgs); - -////////////////////////////////////////////////////////////////////////// -// -// Shader blob manipulation routines -// --------------------------------- -// -// void *pShaderBytecode - a buffer containing the result of an HLSL -// compilation. Typically this opaque buffer contains several -// discrete sections including the shader executable code, the input -// signature, and the output signature. This can typically be retrieved -// by calling ID3D10Blob::GetBufferPointer() on the returned blob -// from HLSL's compile APIs. -// -// UINT BytecodeLength - the length of pShaderBytecode. This can -// typically be retrieved by calling ID3D10Blob::GetBufferSize() -// on the returned blob from HLSL's compile APIs. -// -// ID3D10Blob **ppSignatureBlob(s) - a newly created buffer that -// contains only the signature portions of the original bytecode. -// This is a copy; the original bytecode is not modified. You may -// specify NULL for this parameter to have the bytecode validated -// for the presence of the corresponding signatures without actually -// copying them and creating a new blob. -// -// Returns E_INVALIDARG if any required parameters are NULL -// Returns E_FAIL is the bytecode is corrupt or missing signatures -// Returns S_OK on success -// -////////////////////////////////////////////////////////////////////////// - -HRESULT WINAPI D3D10GetInputSignatureBlob(CONST void *pShaderBytecode, SIZE_T BytecodeLength, ID3D10Blob **ppSignatureBlob); -HRESULT WINAPI D3D10GetOutputSignatureBlob(CONST void *pShaderBytecode, SIZE_T BytecodeLength, ID3D10Blob **ppSignatureBlob); -HRESULT WINAPI D3D10GetInputAndOutputSignatureBlob(CONST void *pShaderBytecode, SIZE_T BytecodeLength, ID3D10Blob **ppSignatureBlob); - -//---------------------------------------------------------------------------- -// D3D10GetShaderDebugInfo: -// ----------------------- -// Gets shader debug info. Debug info is generated by D3D10CompileShader and is -// embedded in the body of the shader. -// -// Parameters: -// pShaderBytecode -// Pointer to the function bytecode -// BytecodeLength -// Length of the shader bytecode buffer -// ppDebugInfo -// Buffer used to return debug info. For information about the layout -// of this buffer, see definition of D3D10_SHADER_DEBUG_INFO above. -//---------------------------------------------------------------------------- - -HRESULT WINAPI D3D10GetShaderDebugInfo(CONST void *pShaderBytecode, SIZE_T BytecodeLength, ID3D10Blob** ppDebugInfo); - -#ifdef __cplusplus -} -#endif //__cplusplus - -#endif //__D3D10SHADER_H__ - diff --git a/SDK/Include/D3D11.h b/SDK/Include/D3D11.h deleted file mode 100644 index 680cf80..0000000 --- a/SDK/Include/D3D11.h +++ /dev/null @@ -1,10227 +0,0 @@ -/*------------------------------------------------------------------------------------- - * - * Copyright (c) Microsoft Corporation - * - *-------------------------------------------------------------------------------------*/ - - -/* this ALWAYS GENERATED file contains the definitions for the interfaces */ - - - /* File created by MIDL compiler version 7.00.0555 */ -/* @@MIDL_FILE_HEADING( ) */ - -#pragma warning( disable: 4049 ) /* more than 64k source lines */ - - -/* verify that the version is high enough to compile this file*/ -#ifndef __REQUIRED_RPCNDR_H_VERSION__ -#define __REQUIRED_RPCNDR_H_VERSION__ 475 -#endif - -/* verify that the version is high enough to compile this file*/ -#ifndef __REQUIRED_RPCSAL_H_VERSION__ -#define __REQUIRED_RPCSAL_H_VERSION__ 100 -#endif - -#include "rpc.h" -#include "rpcndr.h" - -#ifndef __RPCNDR_H_VERSION__ -#error this stub requires an updated version of -#endif // __RPCNDR_H_VERSION__ - -#ifndef COM_NO_WINDOWS_H -#include "windows.h" -#include "ole2.h" -#endif /*COM_NO_WINDOWS_H*/ - -#ifndef __d3d11_h__ -#define __d3d11_h__ - -#if defined(_MSC_VER) && (_MSC_VER >= 1020) -#pragma once -#endif - -/* Forward Declarations */ - -#ifndef __ID3D11DeviceChild_FWD_DEFINED__ -#define __ID3D11DeviceChild_FWD_DEFINED__ -typedef interface ID3D11DeviceChild ID3D11DeviceChild; -#endif /* __ID3D11DeviceChild_FWD_DEFINED__ */ - - -#ifndef __ID3D11DepthStencilState_FWD_DEFINED__ -#define __ID3D11DepthStencilState_FWD_DEFINED__ -typedef interface ID3D11DepthStencilState ID3D11DepthStencilState; -#endif /* __ID3D11DepthStencilState_FWD_DEFINED__ */ - - -#ifndef __ID3D11BlendState_FWD_DEFINED__ -#define __ID3D11BlendState_FWD_DEFINED__ -typedef interface ID3D11BlendState ID3D11BlendState; -#endif /* __ID3D11BlendState_FWD_DEFINED__ */ - - -#ifndef __ID3D11RasterizerState_FWD_DEFINED__ -#define __ID3D11RasterizerState_FWD_DEFINED__ -typedef interface ID3D11RasterizerState ID3D11RasterizerState; -#endif /* __ID3D11RasterizerState_FWD_DEFINED__ */ - - -#ifndef __ID3D11Resource_FWD_DEFINED__ -#define __ID3D11Resource_FWD_DEFINED__ -typedef interface ID3D11Resource ID3D11Resource; -#endif /* __ID3D11Resource_FWD_DEFINED__ */ - - -#ifndef __ID3D11Buffer_FWD_DEFINED__ -#define __ID3D11Buffer_FWD_DEFINED__ -typedef interface ID3D11Buffer ID3D11Buffer; -#endif /* __ID3D11Buffer_FWD_DEFINED__ */ - - -#ifndef __ID3D11Texture1D_FWD_DEFINED__ -#define __ID3D11Texture1D_FWD_DEFINED__ -typedef interface ID3D11Texture1D ID3D11Texture1D; -#endif /* __ID3D11Texture1D_FWD_DEFINED__ */ - - -#ifndef __ID3D11Texture2D_FWD_DEFINED__ -#define __ID3D11Texture2D_FWD_DEFINED__ -typedef interface ID3D11Texture2D ID3D11Texture2D; -#endif /* __ID3D11Texture2D_FWD_DEFINED__ */ - - -#ifndef __ID3D11Texture3D_FWD_DEFINED__ -#define __ID3D11Texture3D_FWD_DEFINED__ -typedef interface ID3D11Texture3D ID3D11Texture3D; -#endif /* __ID3D11Texture3D_FWD_DEFINED__ */ - - -#ifndef __ID3D11View_FWD_DEFINED__ -#define __ID3D11View_FWD_DEFINED__ -typedef interface ID3D11View ID3D11View; -#endif /* __ID3D11View_FWD_DEFINED__ */ - - -#ifndef __ID3D11ShaderResourceView_FWD_DEFINED__ -#define __ID3D11ShaderResourceView_FWD_DEFINED__ -typedef interface ID3D11ShaderResourceView ID3D11ShaderResourceView; -#endif /* __ID3D11ShaderResourceView_FWD_DEFINED__ */ - - -#ifndef __ID3D11RenderTargetView_FWD_DEFINED__ -#define __ID3D11RenderTargetView_FWD_DEFINED__ -typedef interface ID3D11RenderTargetView ID3D11RenderTargetView; -#endif /* __ID3D11RenderTargetView_FWD_DEFINED__ */ - - -#ifndef __ID3D11DepthStencilView_FWD_DEFINED__ -#define __ID3D11DepthStencilView_FWD_DEFINED__ -typedef interface ID3D11DepthStencilView ID3D11DepthStencilView; -#endif /* __ID3D11DepthStencilView_FWD_DEFINED__ */ - - -#ifndef __ID3D11UnorderedAccessView_FWD_DEFINED__ -#define __ID3D11UnorderedAccessView_FWD_DEFINED__ -typedef interface ID3D11UnorderedAccessView ID3D11UnorderedAccessView; -#endif /* __ID3D11UnorderedAccessView_FWD_DEFINED__ */ - - -#ifndef __ID3D11VertexShader_FWD_DEFINED__ -#define __ID3D11VertexShader_FWD_DEFINED__ -typedef interface ID3D11VertexShader ID3D11VertexShader; -#endif /* __ID3D11VertexShader_FWD_DEFINED__ */ - - -#ifndef __ID3D11HullShader_FWD_DEFINED__ -#define __ID3D11HullShader_FWD_DEFINED__ -typedef interface ID3D11HullShader ID3D11HullShader; -#endif /* __ID3D11HullShader_FWD_DEFINED__ */ - - -#ifndef __ID3D11DomainShader_FWD_DEFINED__ -#define __ID3D11DomainShader_FWD_DEFINED__ -typedef interface ID3D11DomainShader ID3D11DomainShader; -#endif /* __ID3D11DomainShader_FWD_DEFINED__ */ - - -#ifndef __ID3D11GeometryShader_FWD_DEFINED__ -#define __ID3D11GeometryShader_FWD_DEFINED__ -typedef interface ID3D11GeometryShader ID3D11GeometryShader; -#endif /* __ID3D11GeometryShader_FWD_DEFINED__ */ - - -#ifndef __ID3D11PixelShader_FWD_DEFINED__ -#define __ID3D11PixelShader_FWD_DEFINED__ -typedef interface ID3D11PixelShader ID3D11PixelShader; -#endif /* __ID3D11PixelShader_FWD_DEFINED__ */ - - -#ifndef __ID3D11ComputeShader_FWD_DEFINED__ -#define __ID3D11ComputeShader_FWD_DEFINED__ -typedef interface ID3D11ComputeShader ID3D11ComputeShader; -#endif /* __ID3D11ComputeShader_FWD_DEFINED__ */ - - -#ifndef __ID3D11InputLayout_FWD_DEFINED__ -#define __ID3D11InputLayout_FWD_DEFINED__ -typedef interface ID3D11InputLayout ID3D11InputLayout; -#endif /* __ID3D11InputLayout_FWD_DEFINED__ */ - - -#ifndef __ID3D11SamplerState_FWD_DEFINED__ -#define __ID3D11SamplerState_FWD_DEFINED__ -typedef interface ID3D11SamplerState ID3D11SamplerState; -#endif /* __ID3D11SamplerState_FWD_DEFINED__ */ - - -#ifndef __ID3D11Asynchronous_FWD_DEFINED__ -#define __ID3D11Asynchronous_FWD_DEFINED__ -typedef interface ID3D11Asynchronous ID3D11Asynchronous; -#endif /* __ID3D11Asynchronous_FWD_DEFINED__ */ - - -#ifndef __ID3D11Query_FWD_DEFINED__ -#define __ID3D11Query_FWD_DEFINED__ -typedef interface ID3D11Query ID3D11Query; -#endif /* __ID3D11Query_FWD_DEFINED__ */ - - -#ifndef __ID3D11Predicate_FWD_DEFINED__ -#define __ID3D11Predicate_FWD_DEFINED__ -typedef interface ID3D11Predicate ID3D11Predicate; -#endif /* __ID3D11Predicate_FWD_DEFINED__ */ - - -#ifndef __ID3D11Counter_FWD_DEFINED__ -#define __ID3D11Counter_FWD_DEFINED__ -typedef interface ID3D11Counter ID3D11Counter; -#endif /* __ID3D11Counter_FWD_DEFINED__ */ - - -#ifndef __ID3D11ClassInstance_FWD_DEFINED__ -#define __ID3D11ClassInstance_FWD_DEFINED__ -typedef interface ID3D11ClassInstance ID3D11ClassInstance; -#endif /* __ID3D11ClassInstance_FWD_DEFINED__ */ - - -#ifndef __ID3D11ClassLinkage_FWD_DEFINED__ -#define __ID3D11ClassLinkage_FWD_DEFINED__ -typedef interface ID3D11ClassLinkage ID3D11ClassLinkage; -#endif /* __ID3D11ClassLinkage_FWD_DEFINED__ */ - - -#ifndef __ID3D11CommandList_FWD_DEFINED__ -#define __ID3D11CommandList_FWD_DEFINED__ -typedef interface ID3D11CommandList ID3D11CommandList; -#endif /* __ID3D11CommandList_FWD_DEFINED__ */ - - -#ifndef __ID3D11DeviceContext_FWD_DEFINED__ -#define __ID3D11DeviceContext_FWD_DEFINED__ -typedef interface ID3D11DeviceContext ID3D11DeviceContext; -#endif /* __ID3D11DeviceContext_FWD_DEFINED__ */ - - -#ifndef __ID3D11Device_FWD_DEFINED__ -#define __ID3D11Device_FWD_DEFINED__ -typedef interface ID3D11Device ID3D11Device; -#endif /* __ID3D11Device_FWD_DEFINED__ */ - - -/* header files for imported files */ -#include "oaidl.h" -#include "ocidl.h" -#include "dxgi.h" -#include "d3dcommon.h" - -#ifdef __cplusplus -extern "C"{ -#endif - - -/* interface __MIDL_itf_d3d11_0000_0000 */ -/* [local] */ - -#ifndef _D3D11_CONSTANTS -#define _D3D11_CONSTANTS -#define D3D11_16BIT_INDEX_STRIP_CUT_VALUE ( 0xffff ) - -#define D3D11_32BIT_INDEX_STRIP_CUT_VALUE ( 0xffffffff ) - -#define D3D11_8BIT_INDEX_STRIP_CUT_VALUE ( 0xff ) - -#define D3D11_ARRAY_AXIS_ADDRESS_RANGE_BIT_COUNT ( 9 ) - -#define D3D11_CLIP_OR_CULL_DISTANCE_COUNT ( 8 ) - -#define D3D11_CLIP_OR_CULL_DISTANCE_ELEMENT_COUNT ( 2 ) - -#define D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT ( 14 ) - -#define D3D11_COMMONSHADER_CONSTANT_BUFFER_COMPONENTS ( 4 ) - -#define D3D11_COMMONSHADER_CONSTANT_BUFFER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D11_COMMONSHADER_CONSTANT_BUFFER_HW_SLOT_COUNT ( 15 ) - -#define D3D11_COMMONSHADER_CONSTANT_BUFFER_REGISTER_COMPONENTS ( 4 ) - -#define D3D11_COMMONSHADER_CONSTANT_BUFFER_REGISTER_COUNT ( 15 ) - -#define D3D11_COMMONSHADER_CONSTANT_BUFFER_REGISTER_READS_PER_INST ( 1 ) - -#define D3D11_COMMONSHADER_CONSTANT_BUFFER_REGISTER_READ_PORTS ( 1 ) - -#define D3D11_COMMONSHADER_FLOWCONTROL_NESTING_LIMIT ( 64 ) - -#define D3D11_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_COMPONENTS ( 4 ) - -#define D3D11_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_COUNT ( 1 ) - -#define D3D11_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_READS_PER_INST ( 1 ) - -#define D3D11_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_READ_PORTS ( 1 ) - -#define D3D11_COMMONSHADER_IMMEDIATE_VALUE_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D11_COMMONSHADER_INPUT_RESOURCE_REGISTER_COMPONENTS ( 1 ) - -#define D3D11_COMMONSHADER_INPUT_RESOURCE_REGISTER_COUNT ( 128 ) - -#define D3D11_COMMONSHADER_INPUT_RESOURCE_REGISTER_READS_PER_INST ( 1 ) - -#define D3D11_COMMONSHADER_INPUT_RESOURCE_REGISTER_READ_PORTS ( 1 ) - -#define D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT ( 128 ) - -#define D3D11_COMMONSHADER_SAMPLER_REGISTER_COMPONENTS ( 1 ) - -#define D3D11_COMMONSHADER_SAMPLER_REGISTER_COUNT ( 16 ) - -#define D3D11_COMMONSHADER_SAMPLER_REGISTER_READS_PER_INST ( 1 ) - -#define D3D11_COMMONSHADER_SAMPLER_REGISTER_READ_PORTS ( 1 ) - -#define D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT ( 16 ) - -#define D3D11_COMMONSHADER_SUBROUTINE_NESTING_LIMIT ( 32 ) - -#define D3D11_COMMONSHADER_TEMP_REGISTER_COMPONENTS ( 4 ) - -#define D3D11_COMMONSHADER_TEMP_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D11_COMMONSHADER_TEMP_REGISTER_COUNT ( 4096 ) - -#define D3D11_COMMONSHADER_TEMP_REGISTER_READS_PER_INST ( 3 ) - -#define D3D11_COMMONSHADER_TEMP_REGISTER_READ_PORTS ( 3 ) - -#define D3D11_COMMONSHADER_TEXCOORD_RANGE_REDUCTION_MAX ( 10 ) - -#define D3D11_COMMONSHADER_TEXCOORD_RANGE_REDUCTION_MIN ( -10 ) - -#define D3D11_COMMONSHADER_TEXEL_OFFSET_MAX_NEGATIVE ( -8 ) - -#define D3D11_COMMONSHADER_TEXEL_OFFSET_MAX_POSITIVE ( 7 ) - -#define D3D11_CS_4_X_BUCKET00_MAX_BYTES_TGSM_WRITABLE_PER_THREAD ( 256 ) - -#define D3D11_CS_4_X_BUCKET00_MAX_NUM_THREADS_PER_GROUP ( 64 ) - -#define D3D11_CS_4_X_BUCKET01_MAX_BYTES_TGSM_WRITABLE_PER_THREAD ( 240 ) - -#define D3D11_CS_4_X_BUCKET01_MAX_NUM_THREADS_PER_GROUP ( 68 ) - -#define D3D11_CS_4_X_BUCKET02_MAX_BYTES_TGSM_WRITABLE_PER_THREAD ( 224 ) - -#define D3D11_CS_4_X_BUCKET02_MAX_NUM_THREADS_PER_GROUP ( 72 ) - -#define D3D11_CS_4_X_BUCKET03_MAX_BYTES_TGSM_WRITABLE_PER_THREAD ( 208 ) - -#define D3D11_CS_4_X_BUCKET03_MAX_NUM_THREADS_PER_GROUP ( 76 ) - -#define D3D11_CS_4_X_BUCKET04_MAX_BYTES_TGSM_WRITABLE_PER_THREAD ( 192 ) - -#define D3D11_CS_4_X_BUCKET04_MAX_NUM_THREADS_PER_GROUP ( 84 ) - -#define D3D11_CS_4_X_BUCKET05_MAX_BYTES_TGSM_WRITABLE_PER_THREAD ( 176 ) - -#define D3D11_CS_4_X_BUCKET05_MAX_NUM_THREADS_PER_GROUP ( 92 ) - -#define D3D11_CS_4_X_BUCKET06_MAX_BYTES_TGSM_WRITABLE_PER_THREAD ( 160 ) - -#define D3D11_CS_4_X_BUCKET06_MAX_NUM_THREADS_PER_GROUP ( 100 ) - -#define D3D11_CS_4_X_BUCKET07_MAX_BYTES_TGSM_WRITABLE_PER_THREAD ( 144 ) - -#define D3D11_CS_4_X_BUCKET07_MAX_NUM_THREADS_PER_GROUP ( 112 ) - -#define D3D11_CS_4_X_BUCKET08_MAX_BYTES_TGSM_WRITABLE_PER_THREAD ( 128 ) - -#define D3D11_CS_4_X_BUCKET08_MAX_NUM_THREADS_PER_GROUP ( 128 ) - -#define D3D11_CS_4_X_BUCKET09_MAX_BYTES_TGSM_WRITABLE_PER_THREAD ( 112 ) - -#define D3D11_CS_4_X_BUCKET09_MAX_NUM_THREADS_PER_GROUP ( 144 ) - -#define D3D11_CS_4_X_BUCKET10_MAX_BYTES_TGSM_WRITABLE_PER_THREAD ( 96 ) - -#define D3D11_CS_4_X_BUCKET10_MAX_NUM_THREADS_PER_GROUP ( 168 ) - -#define D3D11_CS_4_X_BUCKET11_MAX_BYTES_TGSM_WRITABLE_PER_THREAD ( 80 ) - -#define D3D11_CS_4_X_BUCKET11_MAX_NUM_THREADS_PER_GROUP ( 204 ) - -#define D3D11_CS_4_X_BUCKET12_MAX_BYTES_TGSM_WRITABLE_PER_THREAD ( 64 ) - -#define D3D11_CS_4_X_BUCKET12_MAX_NUM_THREADS_PER_GROUP ( 256 ) - -#define D3D11_CS_4_X_BUCKET13_MAX_BYTES_TGSM_WRITABLE_PER_THREAD ( 48 ) - -#define D3D11_CS_4_X_BUCKET13_MAX_NUM_THREADS_PER_GROUP ( 340 ) - -#define D3D11_CS_4_X_BUCKET14_MAX_BYTES_TGSM_WRITABLE_PER_THREAD ( 32 ) - -#define D3D11_CS_4_X_BUCKET14_MAX_NUM_THREADS_PER_GROUP ( 512 ) - -#define D3D11_CS_4_X_BUCKET15_MAX_BYTES_TGSM_WRITABLE_PER_THREAD ( 16 ) - -#define D3D11_CS_4_X_BUCKET15_MAX_NUM_THREADS_PER_GROUP ( 768 ) - -#define D3D11_CS_4_X_DISPATCH_MAX_THREAD_GROUPS_IN_Z_DIMENSION ( 1 ) - -#define D3D11_CS_4_X_RAW_UAV_BYTE_ALIGNMENT ( 256 ) - -#define D3D11_CS_4_X_THREAD_GROUP_MAX_THREADS_PER_GROUP ( 768 ) - -#define D3D11_CS_4_X_THREAD_GROUP_MAX_X ( 768 ) - -#define D3D11_CS_4_X_THREAD_GROUP_MAX_Y ( 768 ) - -#define D3D11_CS_4_X_UAV_REGISTER_COUNT ( 1 ) - -#define D3D11_CS_DISPATCH_MAX_THREAD_GROUPS_PER_DIMENSION ( 65535 ) - -#define D3D11_CS_TGSM_REGISTER_COUNT ( 8192 ) - -#define D3D11_CS_TGSM_REGISTER_READS_PER_INST ( 1 ) - -#define D3D11_CS_TGSM_RESOURCE_REGISTER_COMPONENTS ( 1 ) - -#define D3D11_CS_TGSM_RESOURCE_REGISTER_READ_PORTS ( 1 ) - -#define D3D11_CS_THREAD_GROUP_MAX_THREADS_PER_GROUP ( 1024 ) - -#define D3D11_CS_THREAD_GROUP_MAX_X ( 1024 ) - -#define D3D11_CS_THREAD_GROUP_MAX_Y ( 1024 ) - -#define D3D11_CS_THREAD_GROUP_MAX_Z ( 64 ) - -#define D3D11_CS_THREAD_GROUP_MIN_X ( 1 ) - -#define D3D11_CS_THREAD_GROUP_MIN_Y ( 1 ) - -#define D3D11_CS_THREAD_GROUP_MIN_Z ( 1 ) - -#define D3D11_CS_THREAD_LOCAL_TEMP_REGISTER_POOL ( 16384 ) - -#define D3D11_DEFAULT_BLEND_FACTOR_ALPHA ( 1.0f ) -#define D3D11_DEFAULT_BLEND_FACTOR_BLUE ( 1.0f ) -#define D3D11_DEFAULT_BLEND_FACTOR_GREEN ( 1.0f ) -#define D3D11_DEFAULT_BLEND_FACTOR_RED ( 1.0f ) -#define D3D11_DEFAULT_BORDER_COLOR_COMPONENT ( 0.0f ) -#define D3D11_DEFAULT_DEPTH_BIAS ( 0 ) - -#define D3D11_DEFAULT_DEPTH_BIAS_CLAMP ( 0.0f ) -#define D3D11_DEFAULT_MAX_ANISOTROPY ( 16 ) -#define D3D11_DEFAULT_MIP_LOD_BIAS ( 0.0f ) -#define D3D11_DEFAULT_RENDER_TARGET_ARRAY_INDEX ( 0 ) - -#define D3D11_DEFAULT_SAMPLE_MASK ( 0xffffffff ) - -#define D3D11_DEFAULT_SCISSOR_ENDX ( 0 ) - -#define D3D11_DEFAULT_SCISSOR_ENDY ( 0 ) - -#define D3D11_DEFAULT_SCISSOR_STARTX ( 0 ) - -#define D3D11_DEFAULT_SCISSOR_STARTY ( 0 ) - -#define D3D11_DEFAULT_SLOPE_SCALED_DEPTH_BIAS ( 0.0f ) -#define D3D11_DEFAULT_STENCIL_READ_MASK ( 0xff ) - -#define D3D11_DEFAULT_STENCIL_REFERENCE ( 0 ) - -#define D3D11_DEFAULT_STENCIL_WRITE_MASK ( 0xff ) - -#define D3D11_DEFAULT_VIEWPORT_AND_SCISSORRECT_INDEX ( 0 ) - -#define D3D11_DEFAULT_VIEWPORT_HEIGHT ( 0 ) - -#define D3D11_DEFAULT_VIEWPORT_MAX_DEPTH ( 0.0f ) -#define D3D11_DEFAULT_VIEWPORT_MIN_DEPTH ( 0.0f ) -#define D3D11_DEFAULT_VIEWPORT_TOPLEFTX ( 0 ) - -#define D3D11_DEFAULT_VIEWPORT_TOPLEFTY ( 0 ) - -#define D3D11_DEFAULT_VIEWPORT_WIDTH ( 0 ) - -#define D3D11_DS_INPUT_CONTROL_POINTS_MAX_TOTAL_SCALARS ( 3968 ) - -#define D3D11_DS_INPUT_CONTROL_POINT_REGISTER_COMPONENTS ( 4 ) - -#define D3D11_DS_INPUT_CONTROL_POINT_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D11_DS_INPUT_CONTROL_POINT_REGISTER_COUNT ( 32 ) - -#define D3D11_DS_INPUT_CONTROL_POINT_REGISTER_READS_PER_INST ( 2 ) - -#define D3D11_DS_INPUT_CONTROL_POINT_REGISTER_READ_PORTS ( 1 ) - -#define D3D11_DS_INPUT_DOMAIN_POINT_REGISTER_COMPONENTS ( 3 ) - -#define D3D11_DS_INPUT_DOMAIN_POINT_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D11_DS_INPUT_DOMAIN_POINT_REGISTER_COUNT ( 1 ) - -#define D3D11_DS_INPUT_DOMAIN_POINT_REGISTER_READS_PER_INST ( 2 ) - -#define D3D11_DS_INPUT_DOMAIN_POINT_REGISTER_READ_PORTS ( 1 ) - -#define D3D11_DS_INPUT_PATCH_CONSTANT_REGISTER_COMPONENTS ( 4 ) - -#define D3D11_DS_INPUT_PATCH_CONSTANT_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D11_DS_INPUT_PATCH_CONSTANT_REGISTER_COUNT ( 32 ) - -#define D3D11_DS_INPUT_PATCH_CONSTANT_REGISTER_READS_PER_INST ( 2 ) - -#define D3D11_DS_INPUT_PATCH_CONSTANT_REGISTER_READ_PORTS ( 1 ) - -#define D3D11_DS_OUTPUT_REGISTER_COMPONENTS ( 4 ) - -#define D3D11_DS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D11_DS_OUTPUT_REGISTER_COUNT ( 32 ) - -#define D3D11_FLOAT16_FUSED_TOLERANCE_IN_ULP ( 0.6 ) -#define D3D11_FLOAT32_MAX ( 3.402823466e+38f ) -#define D3D11_FLOAT32_TO_INTEGER_TOLERANCE_IN_ULP ( 0.6f ) -#define D3D11_FLOAT_TO_SRGB_EXPONENT_DENOMINATOR ( 2.4f ) -#define D3D11_FLOAT_TO_SRGB_EXPONENT_NUMERATOR ( 1.0f ) -#define D3D11_FLOAT_TO_SRGB_OFFSET ( 0.055f ) -#define D3D11_FLOAT_TO_SRGB_SCALE_1 ( 12.92f ) -#define D3D11_FLOAT_TO_SRGB_SCALE_2 ( 1.055f ) -#define D3D11_FLOAT_TO_SRGB_THRESHOLD ( 0.0031308f ) -#define D3D11_FTOI_INSTRUCTION_MAX_INPUT ( 2147483647.999f ) -#define D3D11_FTOI_INSTRUCTION_MIN_INPUT ( -2147483648.999f ) -#define D3D11_FTOU_INSTRUCTION_MAX_INPUT ( 4294967295.999f ) -#define D3D11_FTOU_INSTRUCTION_MIN_INPUT ( 0.0f ) -#define D3D11_GS_INPUT_INSTANCE_ID_READS_PER_INST ( 2 ) - -#define D3D11_GS_INPUT_INSTANCE_ID_READ_PORTS ( 1 ) - -#define D3D11_GS_INPUT_INSTANCE_ID_REGISTER_COMPONENTS ( 1 ) - -#define D3D11_GS_INPUT_INSTANCE_ID_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D11_GS_INPUT_INSTANCE_ID_REGISTER_COUNT ( 1 ) - -#define D3D11_GS_INPUT_PRIM_CONST_REGISTER_COMPONENTS ( 1 ) - -#define D3D11_GS_INPUT_PRIM_CONST_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D11_GS_INPUT_PRIM_CONST_REGISTER_COUNT ( 1 ) - -#define D3D11_GS_INPUT_PRIM_CONST_REGISTER_READS_PER_INST ( 2 ) - -#define D3D11_GS_INPUT_PRIM_CONST_REGISTER_READ_PORTS ( 1 ) - -#define D3D11_GS_INPUT_REGISTER_COMPONENTS ( 4 ) - -#define D3D11_GS_INPUT_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D11_GS_INPUT_REGISTER_COUNT ( 32 ) - -#define D3D11_GS_INPUT_REGISTER_READS_PER_INST ( 2 ) - -#define D3D11_GS_INPUT_REGISTER_READ_PORTS ( 1 ) - -#define D3D11_GS_INPUT_REGISTER_VERTICES ( 32 ) - -#define D3D11_GS_MAX_INSTANCE_COUNT ( 32 ) - -#define D3D11_GS_MAX_OUTPUT_VERTEX_COUNT_ACROSS_INSTANCES ( 1024 ) - -#define D3D11_GS_OUTPUT_ELEMENTS ( 32 ) - -#define D3D11_GS_OUTPUT_REGISTER_COMPONENTS ( 4 ) - -#define D3D11_GS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D11_GS_OUTPUT_REGISTER_COUNT ( 32 ) - -#define D3D11_HS_CONTROL_POINT_PHASE_INPUT_REGISTER_COUNT ( 32 ) - -#define D3D11_HS_CONTROL_POINT_PHASE_OUTPUT_REGISTER_COUNT ( 32 ) - -#define D3D11_HS_CONTROL_POINT_REGISTER_COMPONENTS ( 4 ) - -#define D3D11_HS_CONTROL_POINT_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D11_HS_CONTROL_POINT_REGISTER_READS_PER_INST ( 2 ) - -#define D3D11_HS_CONTROL_POINT_REGISTER_READ_PORTS ( 1 ) - -#define D3D11_HS_FORK_PHASE_INSTANCE_COUNT_UPPER_BOUND ( 0xffffffff ) - -#define D3D11_HS_INPUT_FORK_INSTANCE_ID_REGISTER_COMPONENTS ( 1 ) - -#define D3D11_HS_INPUT_FORK_INSTANCE_ID_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D11_HS_INPUT_FORK_INSTANCE_ID_REGISTER_COUNT ( 1 ) - -#define D3D11_HS_INPUT_FORK_INSTANCE_ID_REGISTER_READS_PER_INST ( 2 ) - -#define D3D11_HS_INPUT_FORK_INSTANCE_ID_REGISTER_READ_PORTS ( 1 ) - -#define D3D11_HS_INPUT_JOIN_INSTANCE_ID_REGISTER_COMPONENTS ( 1 ) - -#define D3D11_HS_INPUT_JOIN_INSTANCE_ID_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D11_HS_INPUT_JOIN_INSTANCE_ID_REGISTER_COUNT ( 1 ) - -#define D3D11_HS_INPUT_JOIN_INSTANCE_ID_REGISTER_READS_PER_INST ( 2 ) - -#define D3D11_HS_INPUT_JOIN_INSTANCE_ID_REGISTER_READ_PORTS ( 1 ) - -#define D3D11_HS_INPUT_PRIMITIVE_ID_REGISTER_COMPONENTS ( 1 ) - -#define D3D11_HS_INPUT_PRIMITIVE_ID_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D11_HS_INPUT_PRIMITIVE_ID_REGISTER_COUNT ( 1 ) - -#define D3D11_HS_INPUT_PRIMITIVE_ID_REGISTER_READS_PER_INST ( 2 ) - -#define D3D11_HS_INPUT_PRIMITIVE_ID_REGISTER_READ_PORTS ( 1 ) - -#define D3D11_HS_JOIN_PHASE_INSTANCE_COUNT_UPPER_BOUND ( 0xffffffff ) - -#define D3D11_HS_MAXTESSFACTOR_LOWER_BOUND ( 1.0f ) -#define D3D11_HS_MAXTESSFACTOR_UPPER_BOUND ( 64.0f ) -#define D3D11_HS_OUTPUT_CONTROL_POINTS_MAX_TOTAL_SCALARS ( 3968 ) - -#define D3D11_HS_OUTPUT_CONTROL_POINT_ID_REGISTER_COMPONENTS ( 1 ) - -#define D3D11_HS_OUTPUT_CONTROL_POINT_ID_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D11_HS_OUTPUT_CONTROL_POINT_ID_REGISTER_COUNT ( 1 ) - -#define D3D11_HS_OUTPUT_CONTROL_POINT_ID_REGISTER_READS_PER_INST ( 2 ) - -#define D3D11_HS_OUTPUT_CONTROL_POINT_ID_REGISTER_READ_PORTS ( 1 ) - -#define D3D11_HS_OUTPUT_PATCH_CONSTANT_REGISTER_COMPONENTS ( 4 ) - -#define D3D11_HS_OUTPUT_PATCH_CONSTANT_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D11_HS_OUTPUT_PATCH_CONSTANT_REGISTER_COUNT ( 32 ) - -#define D3D11_HS_OUTPUT_PATCH_CONSTANT_REGISTER_READS_PER_INST ( 2 ) - -#define D3D11_HS_OUTPUT_PATCH_CONSTANT_REGISTER_READ_PORTS ( 1 ) - -#define D3D11_IA_DEFAULT_INDEX_BUFFER_OFFSET_IN_BYTES ( 0 ) - -#define D3D11_IA_DEFAULT_PRIMITIVE_TOPOLOGY ( 0 ) - -#define D3D11_IA_DEFAULT_VERTEX_BUFFER_OFFSET_IN_BYTES ( 0 ) - -#define D3D11_IA_INDEX_INPUT_RESOURCE_SLOT_COUNT ( 1 ) - -#define D3D11_IA_INSTANCE_ID_BIT_COUNT ( 32 ) - -#define D3D11_IA_INTEGER_ARITHMETIC_BIT_COUNT ( 32 ) - -#define D3D11_IA_PATCH_MAX_CONTROL_POINT_COUNT ( 32 ) - -#define D3D11_IA_PRIMITIVE_ID_BIT_COUNT ( 32 ) - -#define D3D11_IA_VERTEX_ID_BIT_COUNT ( 32 ) - -#define D3D11_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT ( 32 ) - -#define D3D11_IA_VERTEX_INPUT_STRUCTURE_ELEMENTS_COMPONENTS ( 128 ) - -#define D3D11_IA_VERTEX_INPUT_STRUCTURE_ELEMENT_COUNT ( 32 ) - -#define D3D11_INTEGER_DIVIDE_BY_ZERO_QUOTIENT ( 0xffffffff ) - -#define D3D11_INTEGER_DIVIDE_BY_ZERO_REMAINDER ( 0xffffffff ) - -#define D3D11_KEEP_RENDER_TARGETS_AND_DEPTH_STENCIL ( 0xffffffff ) - -#define D3D11_KEEP_UNORDERED_ACCESS_VIEWS ( 0xffffffff ) - -#define D3D11_LINEAR_GAMMA ( 1.0f ) -#define D3D11_MAJOR_VERSION ( 11 ) - -#define D3D11_MAX_BORDER_COLOR_COMPONENT ( 1.0f ) -#define D3D11_MAX_DEPTH ( 1.0f ) -#define D3D11_MAX_MAXANISOTROPY ( 16 ) - -#define D3D11_MAX_MULTISAMPLE_SAMPLE_COUNT ( 32 ) - -#define D3D11_MAX_POSITION_VALUE ( 3.402823466e+34f ) -#define D3D11_MAX_TEXTURE_DIMENSION_2_TO_EXP ( 17 ) - -#define D3D11_MINOR_VERSION ( 0 ) - -#define D3D11_MIN_BORDER_COLOR_COMPONENT ( 0.0f ) -#define D3D11_MIN_DEPTH ( 0.0f ) -#define D3D11_MIN_MAXANISOTROPY ( 0 ) - -#define D3D11_MIP_LOD_BIAS_MAX ( 15.99f ) -#define D3D11_MIP_LOD_BIAS_MIN ( -16.0f ) -#define D3D11_MIP_LOD_FRACTIONAL_BIT_COUNT ( 8 ) - -#define D3D11_MIP_LOD_RANGE_BIT_COUNT ( 8 ) - -#define D3D11_MULTISAMPLE_ANTIALIAS_LINE_WIDTH ( 1.4f ) -#define D3D11_NONSAMPLE_FETCH_OUT_OF_RANGE_ACCESS_RESULT ( 0 ) - -#define D3D11_PIXEL_ADDRESS_RANGE_BIT_COUNT ( 15 ) - -#define D3D11_PRE_SCISSOR_PIXEL_ADDRESS_RANGE_BIT_COUNT ( 16 ) - -#define D3D11_PS_CS_UAV_REGISTER_COMPONENTS ( 1 ) - -#define D3D11_PS_CS_UAV_REGISTER_COUNT ( 8 ) - -#define D3D11_PS_CS_UAV_REGISTER_READS_PER_INST ( 1 ) - -#define D3D11_PS_CS_UAV_REGISTER_READ_PORTS ( 1 ) - -#define D3D11_PS_FRONTFACING_DEFAULT_VALUE ( 0xffffffff ) - -#define D3D11_PS_FRONTFACING_FALSE_VALUE ( 0 ) - -#define D3D11_PS_FRONTFACING_TRUE_VALUE ( 0xffffffff ) - -#define D3D11_PS_INPUT_REGISTER_COMPONENTS ( 4 ) - -#define D3D11_PS_INPUT_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D11_PS_INPUT_REGISTER_COUNT ( 32 ) - -#define D3D11_PS_INPUT_REGISTER_READS_PER_INST ( 2 ) - -#define D3D11_PS_INPUT_REGISTER_READ_PORTS ( 1 ) - -#define D3D11_PS_LEGACY_PIXEL_CENTER_FRACTIONAL_COMPONENT ( 0.0f ) -#define D3D11_PS_OUTPUT_DEPTH_REGISTER_COMPONENTS ( 1 ) - -#define D3D11_PS_OUTPUT_DEPTH_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D11_PS_OUTPUT_DEPTH_REGISTER_COUNT ( 1 ) - -#define D3D11_PS_OUTPUT_MASK_REGISTER_COMPONENTS ( 1 ) - -#define D3D11_PS_OUTPUT_MASK_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D11_PS_OUTPUT_MASK_REGISTER_COUNT ( 1 ) - -#define D3D11_PS_OUTPUT_REGISTER_COMPONENTS ( 4 ) - -#define D3D11_PS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D11_PS_OUTPUT_REGISTER_COUNT ( 8 ) - -#define D3D11_PS_PIXEL_CENTER_FRACTIONAL_COMPONENT ( 0.5f ) -#define D3D11_RAW_UAV_SRV_BYTE_ALIGNMENT ( 16 ) - -#define D3D11_REQ_BLEND_OBJECT_COUNT_PER_DEVICE ( 4096 ) - -#define D3D11_REQ_BUFFER_RESOURCE_TEXEL_COUNT_2_TO_EXP ( 27 ) - -#define D3D11_REQ_CONSTANT_BUFFER_ELEMENT_COUNT ( 4096 ) - -#define D3D11_REQ_DEPTH_STENCIL_OBJECT_COUNT_PER_DEVICE ( 4096 ) - -#define D3D11_REQ_DRAWINDEXED_INDEX_COUNT_2_TO_EXP ( 32 ) - -#define D3D11_REQ_DRAW_VERTEX_COUNT_2_TO_EXP ( 32 ) - -#define D3D11_REQ_FILTERING_HW_ADDRESSABLE_RESOURCE_DIMENSION ( 16384 ) - -#define D3D11_REQ_GS_INVOCATION_32BIT_OUTPUT_COMPONENT_LIMIT ( 1024 ) - -#define D3D11_REQ_IMMEDIATE_CONSTANT_BUFFER_ELEMENT_COUNT ( 4096 ) - -#define D3D11_REQ_MAXANISOTROPY ( 16 ) - -#define D3D11_REQ_MIP_LEVELS ( 15 ) - -#define D3D11_REQ_MULTI_ELEMENT_STRUCTURE_SIZE_IN_BYTES ( 2048 ) - -#define D3D11_REQ_RASTERIZER_OBJECT_COUNT_PER_DEVICE ( 4096 ) - -#define D3D11_REQ_RENDER_TO_BUFFER_WINDOW_WIDTH ( 16384 ) - -#define D3D11_REQ_RESOURCE_SIZE_IN_MEGABYTES_EXPRESSION_A_TERM ( 128 ) - -#define D3D11_REQ_RESOURCE_SIZE_IN_MEGABYTES_EXPRESSION_B_TERM ( 0.25f ) -#define D3D11_REQ_RESOURCE_VIEW_COUNT_PER_DEVICE_2_TO_EXP ( 20 ) - -#define D3D11_REQ_SAMPLER_OBJECT_COUNT_PER_DEVICE ( 4096 ) - -#define D3D11_REQ_TEXTURE1D_ARRAY_AXIS_DIMENSION ( 2048 ) - -#define D3D11_REQ_TEXTURE1D_U_DIMENSION ( 16384 ) - -#define D3D11_REQ_TEXTURE2D_ARRAY_AXIS_DIMENSION ( 2048 ) - -#define D3D11_REQ_TEXTURE2D_U_OR_V_DIMENSION ( 16384 ) - -#define D3D11_REQ_TEXTURE3D_U_V_OR_W_DIMENSION ( 2048 ) - -#define D3D11_REQ_TEXTURECUBE_DIMENSION ( 16384 ) - -#define D3D11_RESINFO_INSTRUCTION_MISSING_COMPONENT_RETVAL ( 0 ) - -#define D3D11_SHADER_MAJOR_VERSION ( 5 ) - -#define D3D11_SHADER_MAX_INSTANCES ( 65535 ) - -#define D3D11_SHADER_MAX_INTERFACES ( 253 ) - -#define D3D11_SHADER_MAX_INTERFACE_CALL_SITES ( 4096 ) - -#define D3D11_SHADER_MAX_TYPES ( 65535 ) - -#define D3D11_SHADER_MINOR_VERSION ( 0 ) - -#define D3D11_SHIFT_INSTRUCTION_PAD_VALUE ( 0 ) - -#define D3D11_SHIFT_INSTRUCTION_SHIFT_VALUE_BIT_COUNT ( 5 ) - -#define D3D11_SIMULTANEOUS_RENDER_TARGET_COUNT ( 8 ) - -#define D3D11_SO_BUFFER_MAX_STRIDE_IN_BYTES ( 2048 ) - -#define D3D11_SO_BUFFER_MAX_WRITE_WINDOW_IN_BYTES ( 512 ) - -#define D3D11_SO_BUFFER_SLOT_COUNT ( 4 ) - -#define D3D11_SO_DDI_REGISTER_INDEX_DENOTING_GAP ( 0xffffffff ) - -#define D3D11_SO_NO_RASTERIZED_STREAM ( 0xffffffff ) - -#define D3D11_SO_OUTPUT_COMPONENT_COUNT ( 128 ) - -#define D3D11_SO_STREAM_COUNT ( 4 ) - -#define D3D11_SPEC_DATE_DAY ( 04 ) - -#define D3D11_SPEC_DATE_MONTH ( 06 ) - -#define D3D11_SPEC_DATE_YEAR ( 2009 ) - -#define D3D11_SPEC_VERSION ( 1.0 ) -#define D3D11_SRGB_GAMMA ( 2.2f ) -#define D3D11_SRGB_TO_FLOAT_DENOMINATOR_1 ( 12.92f ) -#define D3D11_SRGB_TO_FLOAT_DENOMINATOR_2 ( 1.055f ) -#define D3D11_SRGB_TO_FLOAT_EXPONENT ( 2.4f ) -#define D3D11_SRGB_TO_FLOAT_OFFSET ( 0.055f ) -#define D3D11_SRGB_TO_FLOAT_THRESHOLD ( 0.04045f ) -#define D3D11_SRGB_TO_FLOAT_TOLERANCE_IN_ULP ( 0.5f ) -#define D3D11_STANDARD_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D11_STANDARD_COMPONENT_BIT_COUNT_DOUBLED ( 64 ) - -#define D3D11_STANDARD_MAXIMUM_ELEMENT_ALIGNMENT_BYTE_MULTIPLE ( 4 ) - -#define D3D11_STANDARD_PIXEL_COMPONENT_COUNT ( 128 ) - -#define D3D11_STANDARD_PIXEL_ELEMENT_COUNT ( 32 ) - -#define D3D11_STANDARD_VECTOR_SIZE ( 4 ) - -#define D3D11_STANDARD_VERTEX_ELEMENT_COUNT ( 32 ) - -#define D3D11_STANDARD_VERTEX_TOTAL_COMPONENT_COUNT ( 64 ) - -#define D3D11_SUBPIXEL_FRACTIONAL_BIT_COUNT ( 8 ) - -#define D3D11_SUBTEXEL_FRACTIONAL_BIT_COUNT ( 8 ) - -#define D3D11_TESSELLATOR_MAX_EVEN_TESSELLATION_FACTOR ( 64 ) - -#define D3D11_TESSELLATOR_MAX_ISOLINE_DENSITY_TESSELLATION_FACTOR ( 64 ) - -#define D3D11_TESSELLATOR_MAX_ODD_TESSELLATION_FACTOR ( 63 ) - -#define D3D11_TESSELLATOR_MAX_TESSELLATION_FACTOR ( 64 ) - -#define D3D11_TESSELLATOR_MIN_EVEN_TESSELLATION_FACTOR ( 2 ) - -#define D3D11_TESSELLATOR_MIN_ISOLINE_DENSITY_TESSELLATION_FACTOR ( 1 ) - -#define D3D11_TESSELLATOR_MIN_ODD_TESSELLATION_FACTOR ( 1 ) - -#define D3D11_TEXEL_ADDRESS_RANGE_BIT_COUNT ( 16 ) - -#define D3D11_UNBOUND_MEMORY_ACCESS_RESULT ( 0 ) - -#define D3D11_VIEWPORT_AND_SCISSORRECT_MAX_INDEX ( 15 ) - -#define D3D11_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE ( 16 ) - -#define D3D11_VIEWPORT_BOUNDS_MAX ( 32767 ) - -#define D3D11_VIEWPORT_BOUNDS_MIN ( -32768 ) - -#define D3D11_VS_INPUT_REGISTER_COMPONENTS ( 4 ) - -#define D3D11_VS_INPUT_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D11_VS_INPUT_REGISTER_COUNT ( 32 ) - -#define D3D11_VS_INPUT_REGISTER_READS_PER_INST ( 2 ) - -#define D3D11_VS_INPUT_REGISTER_READ_PORTS ( 1 ) - -#define D3D11_VS_OUTPUT_REGISTER_COMPONENTS ( 4 ) - -#define D3D11_VS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT ( 32 ) - -#define D3D11_VS_OUTPUT_REGISTER_COUNT ( 32 ) - -#define D3D11_WHQL_CONTEXT_COUNT_FOR_RESOURCE_LIMIT ( 10 ) - -#define D3D11_WHQL_DRAWINDEXED_INDEX_COUNT_2_TO_EXP ( 25 ) - -#define D3D11_WHQL_DRAW_VERTEX_COUNT_2_TO_EXP ( 25 ) - -#endif -#define _FACD3D11 ( 0x87c ) - -#define _FACD3D11DEBUG ( ( _FACD3D11 + 1 ) ) - -#define MAKE_D3D11_HRESULT( code ) MAKE_HRESULT( 1, _FACD3D11, code ) -#define MAKE_D3D11_STATUS( code ) MAKE_HRESULT( 0, _FACD3D11, code ) -#define D3D11_ERROR_TOO_MANY_UNIQUE_STATE_OBJECTS MAKE_D3D11_HRESULT(1) -#define D3D11_ERROR_FILE_NOT_FOUND MAKE_D3D11_HRESULT(2) -#define D3D11_ERROR_TOO_MANY_UNIQUE_VIEW_OBJECTS MAKE_D3D11_HRESULT(3) -#define D3D11_ERROR_DEFERRED_CONTEXT_MAP_WITHOUT_INITIAL_DISCARD MAKE_D3D11_HRESULT(4) -#if __SAL_H_FULL_VER < 140050727 -#undef __in_range -#undef __in_xcount_opt -#define __in_range(x, y) -#define __in_xcount_opt(x) -#endif -#if !defined( D3D11_NO_HELPERS ) && defined( __cplusplus ) -} -struct CD3D11_DEFAULT {}; -extern const DECLSPEC_SELECTANY CD3D11_DEFAULT D3D11_DEFAULT; -extern "C"{ -#endif -typedef -enum D3D11_INPUT_CLASSIFICATION - { D3D11_INPUT_PER_VERTEX_DATA = 0, - D3D11_INPUT_PER_INSTANCE_DATA = 1 - } D3D11_INPUT_CLASSIFICATION; - -#define D3D11_APPEND_ALIGNED_ELEMENT ( 0xffffffff ) - -typedef struct D3D11_INPUT_ELEMENT_DESC - { - LPCSTR SemanticName; - UINT SemanticIndex; - DXGI_FORMAT Format; - UINT InputSlot; - UINT AlignedByteOffset; - D3D11_INPUT_CLASSIFICATION InputSlotClass; - UINT InstanceDataStepRate; - } D3D11_INPUT_ELEMENT_DESC; - -typedef -enum D3D11_FILL_MODE - { D3D11_FILL_WIREFRAME = 2, - D3D11_FILL_SOLID = 3 - } D3D11_FILL_MODE; - -typedef D3D_PRIMITIVE_TOPOLOGY D3D11_PRIMITIVE_TOPOLOGY; - -typedef D3D_PRIMITIVE D3D11_PRIMITIVE; - -typedef -enum D3D11_CULL_MODE - { D3D11_CULL_NONE = 1, - D3D11_CULL_FRONT = 2, - D3D11_CULL_BACK = 3 - } D3D11_CULL_MODE; - -typedef struct D3D11_SO_DECLARATION_ENTRY - { - UINT Stream; - LPCSTR SemanticName; - UINT SemanticIndex; - BYTE StartComponent; - BYTE ComponentCount; - BYTE OutputSlot; - } D3D11_SO_DECLARATION_ENTRY; - -typedef struct D3D11_VIEWPORT - { - FLOAT TopLeftX; - FLOAT TopLeftY; - FLOAT Width; - FLOAT Height; - FLOAT MinDepth; - FLOAT MaxDepth; - } D3D11_VIEWPORT; - -#if !defined( D3D11_NO_HELPERS ) && defined( __cplusplus ) -} -inline bool operator==( const D3D11_VIEWPORT& l, const D3D11_VIEWPORT& r ) -{ - return l.TopLeftX == r.TopLeftX && l.TopLeftY == r.TopLeftY && l.Width == r.Width && - l.Height == r.Height && l.MinDepth == r.MinDepth && l.MaxDepth == r.MaxDepth; -} -inline bool operator!=( const D3D11_VIEWPORT& l, const D3D11_VIEWPORT& r ) -{ return !( l == r ); } -extern "C"{ -#endif -typedef -enum D3D11_RESOURCE_DIMENSION - { D3D11_RESOURCE_DIMENSION_UNKNOWN = 0, - D3D11_RESOURCE_DIMENSION_BUFFER = 1, - D3D11_RESOURCE_DIMENSION_TEXTURE1D = 2, - D3D11_RESOURCE_DIMENSION_TEXTURE2D = 3, - D3D11_RESOURCE_DIMENSION_TEXTURE3D = 4 - } D3D11_RESOURCE_DIMENSION; - -typedef D3D_SRV_DIMENSION D3D11_SRV_DIMENSION; - -typedef -enum D3D11_DSV_DIMENSION - { D3D11_DSV_DIMENSION_UNKNOWN = 0, - D3D11_DSV_DIMENSION_TEXTURE1D = 1, - D3D11_DSV_DIMENSION_TEXTURE1DARRAY = 2, - D3D11_DSV_DIMENSION_TEXTURE2D = 3, - D3D11_DSV_DIMENSION_TEXTURE2DARRAY = 4, - D3D11_DSV_DIMENSION_TEXTURE2DMS = 5, - D3D11_DSV_DIMENSION_TEXTURE2DMSARRAY = 6 - } D3D11_DSV_DIMENSION; - -typedef -enum D3D11_RTV_DIMENSION - { D3D11_RTV_DIMENSION_UNKNOWN = 0, - D3D11_RTV_DIMENSION_BUFFER = 1, - D3D11_RTV_DIMENSION_TEXTURE1D = 2, - D3D11_RTV_DIMENSION_TEXTURE1DARRAY = 3, - D3D11_RTV_DIMENSION_TEXTURE2D = 4, - D3D11_RTV_DIMENSION_TEXTURE2DARRAY = 5, - D3D11_RTV_DIMENSION_TEXTURE2DMS = 6, - D3D11_RTV_DIMENSION_TEXTURE2DMSARRAY = 7, - D3D11_RTV_DIMENSION_TEXTURE3D = 8 - } D3D11_RTV_DIMENSION; - -typedef -enum D3D11_UAV_DIMENSION - { D3D11_UAV_DIMENSION_UNKNOWN = 0, - D3D11_UAV_DIMENSION_BUFFER = 1, - D3D11_UAV_DIMENSION_TEXTURE1D = 2, - D3D11_UAV_DIMENSION_TEXTURE1DARRAY = 3, - D3D11_UAV_DIMENSION_TEXTURE2D = 4, - D3D11_UAV_DIMENSION_TEXTURE2DARRAY = 5, - D3D11_UAV_DIMENSION_TEXTURE3D = 8 - } D3D11_UAV_DIMENSION; - -typedef -enum D3D11_USAGE - { D3D11_USAGE_DEFAULT = 0, - D3D11_USAGE_IMMUTABLE = 1, - D3D11_USAGE_DYNAMIC = 2, - D3D11_USAGE_STAGING = 3 - } D3D11_USAGE; - -typedef -enum D3D11_BIND_FLAG - { D3D11_BIND_VERTEX_BUFFER = 0x1L, - D3D11_BIND_INDEX_BUFFER = 0x2L, - D3D11_BIND_CONSTANT_BUFFER = 0x4L, - D3D11_BIND_SHADER_RESOURCE = 0x8L, - D3D11_BIND_STREAM_OUTPUT = 0x10L, - D3D11_BIND_RENDER_TARGET = 0x20L, - D3D11_BIND_DEPTH_STENCIL = 0x40L, - D3D11_BIND_UNORDERED_ACCESS = 0x80L - } D3D11_BIND_FLAG; - -typedef -enum D3D11_CPU_ACCESS_FLAG - { D3D11_CPU_ACCESS_WRITE = 0x10000L, - D3D11_CPU_ACCESS_READ = 0x20000L - } D3D11_CPU_ACCESS_FLAG; - -typedef -enum D3D11_RESOURCE_MISC_FLAG - { D3D11_RESOURCE_MISC_GENERATE_MIPS = 0x1L, - D3D11_RESOURCE_MISC_SHARED = 0x2L, - D3D11_RESOURCE_MISC_TEXTURECUBE = 0x4L, - D3D11_RESOURCE_MISC_DRAWINDIRECT_ARGS = 0x10L, - D3D11_RESOURCE_MISC_BUFFER_ALLOW_RAW_VIEWS = 0x20L, - D3D11_RESOURCE_MISC_BUFFER_STRUCTURED = 0x40L, - D3D11_RESOURCE_MISC_RESOURCE_CLAMP = 0x80L, - D3D11_RESOURCE_MISC_SHARED_KEYEDMUTEX = 0x100L, - D3D11_RESOURCE_MISC_GDI_COMPATIBLE = 0x200L - } D3D11_RESOURCE_MISC_FLAG; - -typedef -enum D3D11_MAP - { D3D11_MAP_READ = 1, - D3D11_MAP_WRITE = 2, - D3D11_MAP_READ_WRITE = 3, - D3D11_MAP_WRITE_DISCARD = 4, - D3D11_MAP_WRITE_NO_OVERWRITE = 5 - } D3D11_MAP; - -typedef -enum D3D11_MAP_FLAG - { D3D11_MAP_FLAG_DO_NOT_WAIT = 0x100000L - } D3D11_MAP_FLAG; - -typedef -enum D3D11_RAISE_FLAG - { D3D11_RAISE_FLAG_DRIVER_INTERNAL_ERROR = 0x1L - } D3D11_RAISE_FLAG; - -typedef -enum D3D11_CLEAR_FLAG - { D3D11_CLEAR_DEPTH = 0x1L, - D3D11_CLEAR_STENCIL = 0x2L - } D3D11_CLEAR_FLAG; - -typedef RECT D3D11_RECT; - -#if !defined( D3D11_NO_HELPERS ) && defined( __cplusplus ) -} -struct CD3D11_RECT : public D3D11_RECT -{ - CD3D11_RECT() - {} - explicit CD3D11_RECT( const D3D11_RECT& o ) : - D3D11_RECT( o ) - {} - explicit CD3D11_RECT( - LONG Left, - LONG Top, - LONG Right, - LONG Bottom ) - { - left = Left; - top = Top; - right = Right; - bottom = Bottom; - } - ~CD3D11_RECT() {} - operator const D3D11_RECT&() const { return *this; } -}; -inline bool operator==( const D3D11_RECT& l, const D3D11_RECT& r ) -{ - return l.left == r.left && l.top == r.top && - l.right == r.right && l.bottom == r.bottom; -} -inline bool operator!=( const D3D11_RECT& l, const D3D11_RECT& r ) -{ return !( l == r ); } -extern "C"{ -#endif -typedef struct D3D11_BOX - { - UINT left; - UINT top; - UINT front; - UINT right; - UINT bottom; - UINT back; - } D3D11_BOX; - -#if !defined( D3D11_NO_HELPERS ) && defined( __cplusplus ) -} -struct CD3D11_BOX : public D3D11_BOX -{ - CD3D11_BOX() - {} - explicit CD3D11_BOX( const D3D11_BOX& o ) : - D3D11_BOX( o ) - {} - explicit CD3D11_BOX( - LONG Left, - LONG Top, - LONG Front, - LONG Right, - LONG Bottom, - LONG Back ) - { - left = Left; - top = Top; - front = Front; - right = Right; - bottom = Bottom; - back = Back; - } - ~CD3D11_BOX() {} - operator const D3D11_BOX&() const { return *this; } -}; -inline bool operator==( const D3D11_BOX& l, const D3D11_BOX& r ) -{ - return l.left == r.left && l.top == r.top && l.front == r.front && - l.right == r.right && l.bottom == r.bottom && l.back == r.back; -} -inline bool operator!=( const D3D11_BOX& l, const D3D11_BOX& r ) -{ return !( l == r ); } -extern "C"{ -#endif - - - - -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0000_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0000_v0_0_s_ifspec; - -#ifndef __ID3D11DeviceChild_INTERFACE_DEFINED__ -#define __ID3D11DeviceChild_INTERFACE_DEFINED__ - -/* interface ID3D11DeviceChild */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11DeviceChild; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("1841e5c8-16b0-489b-bcc8-44cfb0d5deae") - ID3D11DeviceChild : public IUnknown - { - public: - virtual void STDMETHODCALLTYPE GetDevice( - /* [annotation] */ - __out ID3D11Device **ppDevice) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetPrivateData( - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData) = 0; - - virtual HRESULT STDMETHODCALLTYPE SetPrivateData( - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData) = 0; - - virtual HRESULT STDMETHODCALLTYPE SetPrivateDataInterface( - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D11DeviceChildVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11DeviceChild * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11DeviceChild * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11DeviceChild * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11DeviceChild * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11DeviceChild * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11DeviceChild * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11DeviceChild * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - END_INTERFACE - } ID3D11DeviceChildVtbl; - - interface ID3D11DeviceChild - { - CONST_VTBL struct ID3D11DeviceChildVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11DeviceChild_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11DeviceChild_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11DeviceChild_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11DeviceChild_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11DeviceChild_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11DeviceChild_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11DeviceChild_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11DeviceChild_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d11_0000_0001 */ -/* [local] */ - -typedef -enum D3D11_COMPARISON_FUNC - { D3D11_COMPARISON_NEVER = 1, - D3D11_COMPARISON_LESS = 2, - D3D11_COMPARISON_EQUAL = 3, - D3D11_COMPARISON_LESS_EQUAL = 4, - D3D11_COMPARISON_GREATER = 5, - D3D11_COMPARISON_NOT_EQUAL = 6, - D3D11_COMPARISON_GREATER_EQUAL = 7, - D3D11_COMPARISON_ALWAYS = 8 - } D3D11_COMPARISON_FUNC; - -typedef -enum D3D11_DEPTH_WRITE_MASK - { D3D11_DEPTH_WRITE_MASK_ZERO = 0, - D3D11_DEPTH_WRITE_MASK_ALL = 1 - } D3D11_DEPTH_WRITE_MASK; - -typedef -enum D3D11_STENCIL_OP - { D3D11_STENCIL_OP_KEEP = 1, - D3D11_STENCIL_OP_ZERO = 2, - D3D11_STENCIL_OP_REPLACE = 3, - D3D11_STENCIL_OP_INCR_SAT = 4, - D3D11_STENCIL_OP_DECR_SAT = 5, - D3D11_STENCIL_OP_INVERT = 6, - D3D11_STENCIL_OP_INCR = 7, - D3D11_STENCIL_OP_DECR = 8 - } D3D11_STENCIL_OP; - -typedef struct D3D11_DEPTH_STENCILOP_DESC - { - D3D11_STENCIL_OP StencilFailOp; - D3D11_STENCIL_OP StencilDepthFailOp; - D3D11_STENCIL_OP StencilPassOp; - D3D11_COMPARISON_FUNC StencilFunc; - } D3D11_DEPTH_STENCILOP_DESC; - -typedef struct D3D11_DEPTH_STENCIL_DESC - { - BOOL DepthEnable; - D3D11_DEPTH_WRITE_MASK DepthWriteMask; - D3D11_COMPARISON_FUNC DepthFunc; - BOOL StencilEnable; - UINT8 StencilReadMask; - UINT8 StencilWriteMask; - D3D11_DEPTH_STENCILOP_DESC FrontFace; - D3D11_DEPTH_STENCILOP_DESC BackFace; - } D3D11_DEPTH_STENCIL_DESC; - -#if !defined( D3D11_NO_HELPERS ) && defined( __cplusplus ) -} -struct CD3D11_DEPTH_STENCIL_DESC : public D3D11_DEPTH_STENCIL_DESC -{ - CD3D11_DEPTH_STENCIL_DESC() - {} - explicit CD3D11_DEPTH_STENCIL_DESC( const D3D11_DEPTH_STENCIL_DESC& o ) : - D3D11_DEPTH_STENCIL_DESC( o ) - {} - explicit CD3D11_DEPTH_STENCIL_DESC( CD3D11_DEFAULT ) - { - DepthEnable = TRUE; - DepthWriteMask = D3D11_DEPTH_WRITE_MASK_ALL; - DepthFunc = D3D11_COMPARISON_LESS; - StencilEnable = FALSE; - StencilReadMask = D3D11_DEFAULT_STENCIL_READ_MASK; - StencilWriteMask = D3D11_DEFAULT_STENCIL_WRITE_MASK; - const D3D11_DEPTH_STENCILOP_DESC defaultStencilOp = - { D3D11_STENCIL_OP_KEEP, D3D11_STENCIL_OP_KEEP, D3D11_STENCIL_OP_KEEP, D3D11_COMPARISON_ALWAYS }; - FrontFace = defaultStencilOp; - BackFace = defaultStencilOp; - } - explicit CD3D11_DEPTH_STENCIL_DESC( - BOOL depthEnable, - D3D11_DEPTH_WRITE_MASK depthWriteMask, - D3D11_COMPARISON_FUNC depthFunc, - BOOL stencilEnable, - UINT8 stencilReadMask, - UINT8 stencilWriteMask, - D3D11_STENCIL_OP frontStencilFailOp, - D3D11_STENCIL_OP frontStencilDepthFailOp, - D3D11_STENCIL_OP frontStencilPassOp, - D3D11_COMPARISON_FUNC frontStencilFunc, - D3D11_STENCIL_OP backStencilFailOp, - D3D11_STENCIL_OP backStencilDepthFailOp, - D3D11_STENCIL_OP backStencilPassOp, - D3D11_COMPARISON_FUNC backStencilFunc ) - { - DepthEnable = depthEnable; - DepthWriteMask = depthWriteMask; - DepthFunc = depthFunc; - StencilEnable = stencilEnable; - StencilReadMask = stencilReadMask; - StencilWriteMask = stencilWriteMask; - FrontFace.StencilFailOp = frontStencilFailOp; - FrontFace.StencilDepthFailOp = frontStencilDepthFailOp; - FrontFace.StencilPassOp = frontStencilPassOp; - FrontFace.StencilFunc = frontStencilFunc; - BackFace.StencilFailOp = backStencilFailOp; - BackFace.StencilDepthFailOp = backStencilDepthFailOp; - BackFace.StencilPassOp = backStencilPassOp; - BackFace.StencilFunc = backStencilFunc; - } - ~CD3D11_DEPTH_STENCIL_DESC() {} - operator const D3D11_DEPTH_STENCIL_DESC&() const { return *this; } -}; -extern "C"{ -#endif - - -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0001_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0001_v0_0_s_ifspec; - -#ifndef __ID3D11DepthStencilState_INTERFACE_DEFINED__ -#define __ID3D11DepthStencilState_INTERFACE_DEFINED__ - -/* interface ID3D11DepthStencilState */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11DepthStencilState; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("03823efb-8d8f-4e1c-9aa2-f64bb2cbfdf1") - ID3D11DepthStencilState : public ID3D11DeviceChild - { - public: - virtual void STDMETHODCALLTYPE GetDesc( - /* [annotation] */ - __out D3D11_DEPTH_STENCIL_DESC *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D11DepthStencilStateVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11DepthStencilState * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11DepthStencilState * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11DepthStencilState * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11DepthStencilState * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11DepthStencilState * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11DepthStencilState * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11DepthStencilState * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D11DepthStencilState * This, - /* [annotation] */ - __out D3D11_DEPTH_STENCIL_DESC *pDesc); - - END_INTERFACE - } ID3D11DepthStencilStateVtbl; - - interface ID3D11DepthStencilState - { - CONST_VTBL struct ID3D11DepthStencilStateVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11DepthStencilState_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11DepthStencilState_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11DepthStencilState_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11DepthStencilState_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11DepthStencilState_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11DepthStencilState_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11DepthStencilState_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D11DepthStencilState_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11DepthStencilState_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d11_0000_0002 */ -/* [local] */ - -typedef -enum D3D11_BLEND - { D3D11_BLEND_ZERO = 1, - D3D11_BLEND_ONE = 2, - D3D11_BLEND_SRC_COLOR = 3, - D3D11_BLEND_INV_SRC_COLOR = 4, - D3D11_BLEND_SRC_ALPHA = 5, - D3D11_BLEND_INV_SRC_ALPHA = 6, - D3D11_BLEND_DEST_ALPHA = 7, - D3D11_BLEND_INV_DEST_ALPHA = 8, - D3D11_BLEND_DEST_COLOR = 9, - D3D11_BLEND_INV_DEST_COLOR = 10, - D3D11_BLEND_SRC_ALPHA_SAT = 11, - D3D11_BLEND_BLEND_FACTOR = 14, - D3D11_BLEND_INV_BLEND_FACTOR = 15, - D3D11_BLEND_SRC1_COLOR = 16, - D3D11_BLEND_INV_SRC1_COLOR = 17, - D3D11_BLEND_SRC1_ALPHA = 18, - D3D11_BLEND_INV_SRC1_ALPHA = 19 - } D3D11_BLEND; - -typedef -enum D3D11_BLEND_OP - { D3D11_BLEND_OP_ADD = 1, - D3D11_BLEND_OP_SUBTRACT = 2, - D3D11_BLEND_OP_REV_SUBTRACT = 3, - D3D11_BLEND_OP_MIN = 4, - D3D11_BLEND_OP_MAX = 5 - } D3D11_BLEND_OP; - -typedef -enum D3D11_COLOR_WRITE_ENABLE - { D3D11_COLOR_WRITE_ENABLE_RED = 1, - D3D11_COLOR_WRITE_ENABLE_GREEN = 2, - D3D11_COLOR_WRITE_ENABLE_BLUE = 4, - D3D11_COLOR_WRITE_ENABLE_ALPHA = 8, - D3D11_COLOR_WRITE_ENABLE_ALL = ( ( ( D3D11_COLOR_WRITE_ENABLE_RED | D3D11_COLOR_WRITE_ENABLE_GREEN ) | D3D11_COLOR_WRITE_ENABLE_BLUE ) | D3D11_COLOR_WRITE_ENABLE_ALPHA ) - } D3D11_COLOR_WRITE_ENABLE; - -typedef struct D3D11_RENDER_TARGET_BLEND_DESC - { - BOOL BlendEnable; - D3D11_BLEND SrcBlend; - D3D11_BLEND DestBlend; - D3D11_BLEND_OP BlendOp; - D3D11_BLEND SrcBlendAlpha; - D3D11_BLEND DestBlendAlpha; - D3D11_BLEND_OP BlendOpAlpha; - UINT8 RenderTargetWriteMask; - } D3D11_RENDER_TARGET_BLEND_DESC; - -typedef struct D3D11_BLEND_DESC - { - BOOL AlphaToCoverageEnable; - BOOL IndependentBlendEnable; - D3D11_RENDER_TARGET_BLEND_DESC RenderTarget[ 8 ]; - } D3D11_BLEND_DESC; - -/* Note, the array size for RenderTarget[] above is D3D11_SIMULTANEOUS_RENDERTARGET_COUNT. - IDL processing/generation of this header replaces the define; this comment is merely explaining what happened. */ -#if !defined( D3D11_NO_HELPERS ) && defined( __cplusplus ) -} -struct CD3D11_BLEND_DESC : public D3D11_BLEND_DESC -{ - CD3D11_BLEND_DESC() - {} - explicit CD3D11_BLEND_DESC( const D3D11_BLEND_DESC& o ) : - D3D11_BLEND_DESC( o ) - {} - explicit CD3D11_BLEND_DESC( CD3D11_DEFAULT ) - { - AlphaToCoverageEnable = FALSE; - IndependentBlendEnable = FALSE; - const D3D11_RENDER_TARGET_BLEND_DESC defaultRenderTargetBlendDesc = - { - FALSE, - D3D11_BLEND_ONE, D3D11_BLEND_ZERO, D3D11_BLEND_OP_ADD, - D3D11_BLEND_ONE, D3D11_BLEND_ZERO, D3D11_BLEND_OP_ADD, - D3D11_COLOR_WRITE_ENABLE_ALL, - }; - for (UINT i = 0; i < D3D11_SIMULTANEOUS_RENDER_TARGET_COUNT; ++i) - RenderTarget[ i ] = defaultRenderTargetBlendDesc; - } - ~CD3D11_BLEND_DESC() {} - operator const D3D11_BLEND_DESC&() const { return *this; } -}; -extern "C"{ -#endif - - -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0002_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0002_v0_0_s_ifspec; - -#ifndef __ID3D11BlendState_INTERFACE_DEFINED__ -#define __ID3D11BlendState_INTERFACE_DEFINED__ - -/* interface ID3D11BlendState */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11BlendState; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("75b68faa-347d-4159-8f45-a0640f01cd9a") - ID3D11BlendState : public ID3D11DeviceChild - { - public: - virtual void STDMETHODCALLTYPE GetDesc( - /* [annotation] */ - __out D3D11_BLEND_DESC *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D11BlendStateVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11BlendState * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11BlendState * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11BlendState * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11BlendState * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11BlendState * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11BlendState * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11BlendState * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D11BlendState * This, - /* [annotation] */ - __out D3D11_BLEND_DESC *pDesc); - - END_INTERFACE - } ID3D11BlendStateVtbl; - - interface ID3D11BlendState - { - CONST_VTBL struct ID3D11BlendStateVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11BlendState_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11BlendState_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11BlendState_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11BlendState_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11BlendState_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11BlendState_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11BlendState_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D11BlendState_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11BlendState_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d11_0000_0003 */ -/* [local] */ - -typedef struct D3D11_RASTERIZER_DESC - { - D3D11_FILL_MODE FillMode; - D3D11_CULL_MODE CullMode; - BOOL FrontCounterClockwise; - INT DepthBias; - FLOAT DepthBiasClamp; - FLOAT SlopeScaledDepthBias; - BOOL DepthClipEnable; - BOOL ScissorEnable; - BOOL MultisampleEnable; - BOOL AntialiasedLineEnable; - } D3D11_RASTERIZER_DESC; - -#if !defined( D3D11_NO_HELPERS ) && defined( __cplusplus ) -} -struct CD3D11_RASTERIZER_DESC : public D3D11_RASTERIZER_DESC -{ - CD3D11_RASTERIZER_DESC() - {} - explicit CD3D11_RASTERIZER_DESC( const D3D11_RASTERIZER_DESC& o ) : - D3D11_RASTERIZER_DESC( o ) - {} - explicit CD3D11_RASTERIZER_DESC( CD3D11_DEFAULT ) - { - FillMode = D3D11_FILL_SOLID; - CullMode = D3D11_CULL_BACK; - FrontCounterClockwise = FALSE; - DepthBias = D3D11_DEFAULT_DEPTH_BIAS; - DepthBiasClamp = D3D11_DEFAULT_DEPTH_BIAS_CLAMP; - SlopeScaledDepthBias = D3D11_DEFAULT_SLOPE_SCALED_DEPTH_BIAS; - DepthClipEnable = TRUE; - ScissorEnable = FALSE; - MultisampleEnable = FALSE; - AntialiasedLineEnable = FALSE; - } - explicit CD3D11_RASTERIZER_DESC( - D3D11_FILL_MODE fillMode, - D3D11_CULL_MODE cullMode, - BOOL frontCounterClockwise, - INT depthBias, - FLOAT depthBiasClamp, - FLOAT slopeScaledDepthBias, - BOOL depthClipEnable, - BOOL scissorEnable, - BOOL multisampleEnable, - BOOL antialiasedLineEnable ) - { - FillMode = fillMode; - CullMode = cullMode; - FrontCounterClockwise = frontCounterClockwise; - DepthBias = depthBias; - DepthBiasClamp = depthBiasClamp; - SlopeScaledDepthBias = slopeScaledDepthBias; - DepthClipEnable = depthClipEnable; - ScissorEnable = scissorEnable; - MultisampleEnable = multisampleEnable; - AntialiasedLineEnable = antialiasedLineEnable; - } - ~CD3D11_RASTERIZER_DESC() {} - operator const D3D11_RASTERIZER_DESC&() const { return *this; } -}; -extern "C"{ -#endif - - -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0003_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0003_v0_0_s_ifspec; - -#ifndef __ID3D11RasterizerState_INTERFACE_DEFINED__ -#define __ID3D11RasterizerState_INTERFACE_DEFINED__ - -/* interface ID3D11RasterizerState */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11RasterizerState; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("9bb4ab81-ab1a-4d8f-b506-fc04200b6ee7") - ID3D11RasterizerState : public ID3D11DeviceChild - { - public: - virtual void STDMETHODCALLTYPE GetDesc( - /* [annotation] */ - __out D3D11_RASTERIZER_DESC *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D11RasterizerStateVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11RasterizerState * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11RasterizerState * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11RasterizerState * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11RasterizerState * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11RasterizerState * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11RasterizerState * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11RasterizerState * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D11RasterizerState * This, - /* [annotation] */ - __out D3D11_RASTERIZER_DESC *pDesc); - - END_INTERFACE - } ID3D11RasterizerStateVtbl; - - interface ID3D11RasterizerState - { - CONST_VTBL struct ID3D11RasterizerStateVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11RasterizerState_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11RasterizerState_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11RasterizerState_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11RasterizerState_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11RasterizerState_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11RasterizerState_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11RasterizerState_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D11RasterizerState_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11RasterizerState_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d11_0000_0004 */ -/* [local] */ - -#if !defined( D3D11_NO_HELPERS ) && defined( __cplusplus ) -} -inline UINT D3D11CalcSubresource( UINT MipSlice, UINT ArraySlice, UINT MipLevels ) -{ return MipSlice + ArraySlice * MipLevels; } -extern "C"{ -#endif -typedef struct D3D11_SUBRESOURCE_DATA - { - const void *pSysMem; - UINT SysMemPitch; - UINT SysMemSlicePitch; - } D3D11_SUBRESOURCE_DATA; - -typedef struct D3D11_MAPPED_SUBRESOURCE - { - void *pData; - UINT RowPitch; - UINT DepthPitch; - } D3D11_MAPPED_SUBRESOURCE; - - - -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0004_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0004_v0_0_s_ifspec; - -#ifndef __ID3D11Resource_INTERFACE_DEFINED__ -#define __ID3D11Resource_INTERFACE_DEFINED__ - -/* interface ID3D11Resource */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11Resource; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("dc8e63f3-d12b-4952-b47b-5e45026a862d") - ID3D11Resource : public ID3D11DeviceChild - { - public: - virtual void STDMETHODCALLTYPE GetType( - /* [annotation] */ - __out D3D11_RESOURCE_DIMENSION *pResourceDimension) = 0; - - virtual void STDMETHODCALLTYPE SetEvictionPriority( - /* [annotation] */ - __in UINT EvictionPriority) = 0; - - virtual UINT STDMETHODCALLTYPE GetEvictionPriority( void) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D11ResourceVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11Resource * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11Resource * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11Resource * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11Resource * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11Resource * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11Resource * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11Resource * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetType )( - ID3D11Resource * This, - /* [annotation] */ - __out D3D11_RESOURCE_DIMENSION *pResourceDimension); - - void ( STDMETHODCALLTYPE *SetEvictionPriority )( - ID3D11Resource * This, - /* [annotation] */ - __in UINT EvictionPriority); - - UINT ( STDMETHODCALLTYPE *GetEvictionPriority )( - ID3D11Resource * This); - - END_INTERFACE - } ID3D11ResourceVtbl; - - interface ID3D11Resource - { - CONST_VTBL struct ID3D11ResourceVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11Resource_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11Resource_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11Resource_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11Resource_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11Resource_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11Resource_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11Resource_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D11Resource_GetType(This,pResourceDimension) \ - ( (This)->lpVtbl -> GetType(This,pResourceDimension) ) - -#define ID3D11Resource_SetEvictionPriority(This,EvictionPriority) \ - ( (This)->lpVtbl -> SetEvictionPriority(This,EvictionPriority) ) - -#define ID3D11Resource_GetEvictionPriority(This) \ - ( (This)->lpVtbl -> GetEvictionPriority(This) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11Resource_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d11_0000_0005 */ -/* [local] */ - -typedef struct D3D11_BUFFER_DESC - { - UINT ByteWidth; - D3D11_USAGE Usage; - UINT BindFlags; - UINT CPUAccessFlags; - UINT MiscFlags; - UINT StructureByteStride; - } D3D11_BUFFER_DESC; - -#if !defined( D3D11_NO_HELPERS ) && defined( __cplusplus ) -} -struct CD3D11_BUFFER_DESC : public D3D11_BUFFER_DESC -{ - CD3D11_BUFFER_DESC() - {} - explicit CD3D11_BUFFER_DESC( const D3D11_BUFFER_DESC& o ) : - D3D11_BUFFER_DESC( o ) - {} - explicit CD3D11_BUFFER_DESC( - UINT byteWidth, - UINT bindFlags, - D3D11_USAGE usage = D3D11_USAGE_DEFAULT, - UINT cpuaccessFlags = 0, - UINT miscFlags = 0, - UINT structureByteStride = 0 ) - { - ByteWidth = byteWidth; - Usage = usage; - BindFlags = bindFlags; - CPUAccessFlags = cpuaccessFlags ; - MiscFlags = miscFlags; - StructureByteStride = structureByteStride; - } - ~CD3D11_BUFFER_DESC() {} - operator const D3D11_BUFFER_DESC&() const { return *this; } -}; -extern "C"{ -#endif - - -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0005_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0005_v0_0_s_ifspec; - -#ifndef __ID3D11Buffer_INTERFACE_DEFINED__ -#define __ID3D11Buffer_INTERFACE_DEFINED__ - -/* interface ID3D11Buffer */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11Buffer; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("48570b85-d1ee-4fcd-a250-eb350722b037") - ID3D11Buffer : public ID3D11Resource - { - public: - virtual void STDMETHODCALLTYPE GetDesc( - /* [annotation] */ - __out D3D11_BUFFER_DESC *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D11BufferVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11Buffer * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11Buffer * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11Buffer * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11Buffer * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11Buffer * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11Buffer * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11Buffer * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetType )( - ID3D11Buffer * This, - /* [annotation] */ - __out D3D11_RESOURCE_DIMENSION *pResourceDimension); - - void ( STDMETHODCALLTYPE *SetEvictionPriority )( - ID3D11Buffer * This, - /* [annotation] */ - __in UINT EvictionPriority); - - UINT ( STDMETHODCALLTYPE *GetEvictionPriority )( - ID3D11Buffer * This); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D11Buffer * This, - /* [annotation] */ - __out D3D11_BUFFER_DESC *pDesc); - - END_INTERFACE - } ID3D11BufferVtbl; - - interface ID3D11Buffer - { - CONST_VTBL struct ID3D11BufferVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11Buffer_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11Buffer_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11Buffer_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11Buffer_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11Buffer_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11Buffer_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11Buffer_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D11Buffer_GetType(This,pResourceDimension) \ - ( (This)->lpVtbl -> GetType(This,pResourceDimension) ) - -#define ID3D11Buffer_SetEvictionPriority(This,EvictionPriority) \ - ( (This)->lpVtbl -> SetEvictionPriority(This,EvictionPriority) ) - -#define ID3D11Buffer_GetEvictionPriority(This) \ - ( (This)->lpVtbl -> GetEvictionPriority(This) ) - - -#define ID3D11Buffer_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11Buffer_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d11_0000_0006 */ -/* [local] */ - -typedef struct D3D11_TEXTURE1D_DESC - { - UINT Width; - UINT MipLevels; - UINT ArraySize; - DXGI_FORMAT Format; - D3D11_USAGE Usage; - UINT BindFlags; - UINT CPUAccessFlags; - UINT MiscFlags; - } D3D11_TEXTURE1D_DESC; - -#if !defined( D3D11_NO_HELPERS ) && defined( __cplusplus ) -} -struct CD3D11_TEXTURE1D_DESC : public D3D11_TEXTURE1D_DESC -{ - CD3D11_TEXTURE1D_DESC() - {} - explicit CD3D11_TEXTURE1D_DESC( const D3D11_TEXTURE1D_DESC& o ) : - D3D11_TEXTURE1D_DESC( o ) - {} - explicit CD3D11_TEXTURE1D_DESC( - DXGI_FORMAT format, - UINT width, - UINT arraySize = 1, - UINT mipLevels = 0, - UINT bindFlags = D3D11_BIND_SHADER_RESOURCE, - D3D11_USAGE usage = D3D11_USAGE_DEFAULT, - UINT cpuaccessFlags= 0, - UINT miscFlags = 0 ) - { - Width = width; - MipLevels = mipLevels; - ArraySize = arraySize; - Format = format; - Usage = usage; - BindFlags = bindFlags; - CPUAccessFlags = cpuaccessFlags; - MiscFlags = miscFlags; - } - ~CD3D11_TEXTURE1D_DESC() {} - operator const D3D11_TEXTURE1D_DESC&() const { return *this; } -}; -extern "C"{ -#endif - - -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0006_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0006_v0_0_s_ifspec; - -#ifndef __ID3D11Texture1D_INTERFACE_DEFINED__ -#define __ID3D11Texture1D_INTERFACE_DEFINED__ - -/* interface ID3D11Texture1D */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11Texture1D; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("f8fb5c27-c6b3-4f75-a4c8-439af2ef564c") - ID3D11Texture1D : public ID3D11Resource - { - public: - virtual void STDMETHODCALLTYPE GetDesc( - /* [annotation] */ - __out D3D11_TEXTURE1D_DESC *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D11Texture1DVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11Texture1D * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11Texture1D * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11Texture1D * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11Texture1D * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11Texture1D * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11Texture1D * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11Texture1D * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetType )( - ID3D11Texture1D * This, - /* [annotation] */ - __out D3D11_RESOURCE_DIMENSION *pResourceDimension); - - void ( STDMETHODCALLTYPE *SetEvictionPriority )( - ID3D11Texture1D * This, - /* [annotation] */ - __in UINT EvictionPriority); - - UINT ( STDMETHODCALLTYPE *GetEvictionPriority )( - ID3D11Texture1D * This); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D11Texture1D * This, - /* [annotation] */ - __out D3D11_TEXTURE1D_DESC *pDesc); - - END_INTERFACE - } ID3D11Texture1DVtbl; - - interface ID3D11Texture1D - { - CONST_VTBL struct ID3D11Texture1DVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11Texture1D_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11Texture1D_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11Texture1D_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11Texture1D_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11Texture1D_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11Texture1D_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11Texture1D_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D11Texture1D_GetType(This,pResourceDimension) \ - ( (This)->lpVtbl -> GetType(This,pResourceDimension) ) - -#define ID3D11Texture1D_SetEvictionPriority(This,EvictionPriority) \ - ( (This)->lpVtbl -> SetEvictionPriority(This,EvictionPriority) ) - -#define ID3D11Texture1D_GetEvictionPriority(This) \ - ( (This)->lpVtbl -> GetEvictionPriority(This) ) - - -#define ID3D11Texture1D_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11Texture1D_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d11_0000_0007 */ -/* [local] */ - -typedef struct D3D11_TEXTURE2D_DESC - { - UINT Width; - UINT Height; - UINT MipLevels; - UINT ArraySize; - DXGI_FORMAT Format; - DXGI_SAMPLE_DESC SampleDesc; - D3D11_USAGE Usage; - UINT BindFlags; - UINT CPUAccessFlags; - UINT MiscFlags; - } D3D11_TEXTURE2D_DESC; - -#if !defined( D3D11_NO_HELPERS ) && defined( __cplusplus ) -} -struct CD3D11_TEXTURE2D_DESC : public D3D11_TEXTURE2D_DESC -{ - CD3D11_TEXTURE2D_DESC() - {} - explicit CD3D11_TEXTURE2D_DESC( const D3D11_TEXTURE2D_DESC& o ) : - D3D11_TEXTURE2D_DESC( o ) - {} - explicit CD3D11_TEXTURE2D_DESC( - DXGI_FORMAT format, - UINT width, - UINT height, - UINT arraySize = 1, - UINT mipLevels = 0, - UINT bindFlags = D3D11_BIND_SHADER_RESOURCE, - D3D11_USAGE usage = D3D11_USAGE_DEFAULT, - UINT cpuaccessFlags = 0, - UINT sampleCount = 1, - UINT sampleQuality = 0, - UINT miscFlags = 0 ) - { - Width = width; - Height = height; - MipLevels = mipLevels; - ArraySize = arraySize; - Format = format; - SampleDesc.Count = sampleCount; - SampleDesc.Quality = sampleQuality; - Usage = usage; - BindFlags = bindFlags; - CPUAccessFlags = cpuaccessFlags; - MiscFlags = miscFlags; - } - ~CD3D11_TEXTURE2D_DESC() {} - operator const D3D11_TEXTURE2D_DESC&() const { return *this; } -}; -extern "C"{ -#endif - - -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0007_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0007_v0_0_s_ifspec; - -#ifndef __ID3D11Texture2D_INTERFACE_DEFINED__ -#define __ID3D11Texture2D_INTERFACE_DEFINED__ - -/* interface ID3D11Texture2D */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11Texture2D; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("6f15aaf2-d208-4e89-9ab4-489535d34f9c") - ID3D11Texture2D : public ID3D11Resource - { - public: - virtual void STDMETHODCALLTYPE GetDesc( - /* [annotation] */ - __out D3D11_TEXTURE2D_DESC *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D11Texture2DVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11Texture2D * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11Texture2D * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11Texture2D * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11Texture2D * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11Texture2D * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11Texture2D * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11Texture2D * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetType )( - ID3D11Texture2D * This, - /* [annotation] */ - __out D3D11_RESOURCE_DIMENSION *pResourceDimension); - - void ( STDMETHODCALLTYPE *SetEvictionPriority )( - ID3D11Texture2D * This, - /* [annotation] */ - __in UINT EvictionPriority); - - UINT ( STDMETHODCALLTYPE *GetEvictionPriority )( - ID3D11Texture2D * This); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D11Texture2D * This, - /* [annotation] */ - __out D3D11_TEXTURE2D_DESC *pDesc); - - END_INTERFACE - } ID3D11Texture2DVtbl; - - interface ID3D11Texture2D - { - CONST_VTBL struct ID3D11Texture2DVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11Texture2D_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11Texture2D_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11Texture2D_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11Texture2D_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11Texture2D_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11Texture2D_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11Texture2D_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D11Texture2D_GetType(This,pResourceDimension) \ - ( (This)->lpVtbl -> GetType(This,pResourceDimension) ) - -#define ID3D11Texture2D_SetEvictionPriority(This,EvictionPriority) \ - ( (This)->lpVtbl -> SetEvictionPriority(This,EvictionPriority) ) - -#define ID3D11Texture2D_GetEvictionPriority(This) \ - ( (This)->lpVtbl -> GetEvictionPriority(This) ) - - -#define ID3D11Texture2D_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11Texture2D_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d11_0000_0008 */ -/* [local] */ - -typedef struct D3D11_TEXTURE3D_DESC - { - UINT Width; - UINT Height; - UINT Depth; - UINT MipLevels; - DXGI_FORMAT Format; - D3D11_USAGE Usage; - UINT BindFlags; - UINT CPUAccessFlags; - UINT MiscFlags; - } D3D11_TEXTURE3D_DESC; - -#if !defined( D3D11_NO_HELPERS ) && defined( __cplusplus ) -} -struct CD3D11_TEXTURE3D_DESC : public D3D11_TEXTURE3D_DESC -{ - CD3D11_TEXTURE3D_DESC() - {} - explicit CD3D11_TEXTURE3D_DESC( const D3D11_TEXTURE3D_DESC& o ) : - D3D11_TEXTURE3D_DESC( o ) - {} - explicit CD3D11_TEXTURE3D_DESC( - DXGI_FORMAT format, - UINT width, - UINT height, - UINT depth, - UINT mipLevels = 0, - UINT bindFlags = D3D11_BIND_SHADER_RESOURCE, - D3D11_USAGE usage = D3D11_USAGE_DEFAULT, - UINT cpuaccessFlags = 0, - UINT miscFlags = 0 ) - { - Width = width; - Height = height; - Depth = depth; - MipLevels = mipLevels; - Format = format; - Usage = usage; - BindFlags = bindFlags; - CPUAccessFlags = cpuaccessFlags; - MiscFlags = miscFlags; - } - ~CD3D11_TEXTURE3D_DESC() {} - operator const D3D11_TEXTURE3D_DESC&() const { return *this; } -}; -extern "C"{ -#endif - - -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0008_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0008_v0_0_s_ifspec; - -#ifndef __ID3D11Texture3D_INTERFACE_DEFINED__ -#define __ID3D11Texture3D_INTERFACE_DEFINED__ - -/* interface ID3D11Texture3D */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11Texture3D; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("037e866e-f56d-4357-a8af-9dabbe6e250e") - ID3D11Texture3D : public ID3D11Resource - { - public: - virtual void STDMETHODCALLTYPE GetDesc( - /* [annotation] */ - __out D3D11_TEXTURE3D_DESC *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D11Texture3DVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11Texture3D * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11Texture3D * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11Texture3D * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11Texture3D * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11Texture3D * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11Texture3D * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11Texture3D * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetType )( - ID3D11Texture3D * This, - /* [annotation] */ - __out D3D11_RESOURCE_DIMENSION *pResourceDimension); - - void ( STDMETHODCALLTYPE *SetEvictionPriority )( - ID3D11Texture3D * This, - /* [annotation] */ - __in UINT EvictionPriority); - - UINT ( STDMETHODCALLTYPE *GetEvictionPriority )( - ID3D11Texture3D * This); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D11Texture3D * This, - /* [annotation] */ - __out D3D11_TEXTURE3D_DESC *pDesc); - - END_INTERFACE - } ID3D11Texture3DVtbl; - - interface ID3D11Texture3D - { - CONST_VTBL struct ID3D11Texture3DVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11Texture3D_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11Texture3D_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11Texture3D_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11Texture3D_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11Texture3D_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11Texture3D_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11Texture3D_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D11Texture3D_GetType(This,pResourceDimension) \ - ( (This)->lpVtbl -> GetType(This,pResourceDimension) ) - -#define ID3D11Texture3D_SetEvictionPriority(This,EvictionPriority) \ - ( (This)->lpVtbl -> SetEvictionPriority(This,EvictionPriority) ) - -#define ID3D11Texture3D_GetEvictionPriority(This) \ - ( (This)->lpVtbl -> GetEvictionPriority(This) ) - - -#define ID3D11Texture3D_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11Texture3D_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d11_0000_0009 */ -/* [local] */ - -typedef -enum D3D11_TEXTURECUBE_FACE - { D3D11_TEXTURECUBE_FACE_POSITIVE_X = 0, - D3D11_TEXTURECUBE_FACE_NEGATIVE_X = 1, - D3D11_TEXTURECUBE_FACE_POSITIVE_Y = 2, - D3D11_TEXTURECUBE_FACE_NEGATIVE_Y = 3, - D3D11_TEXTURECUBE_FACE_POSITIVE_Z = 4, - D3D11_TEXTURECUBE_FACE_NEGATIVE_Z = 5 - } D3D11_TEXTURECUBE_FACE; - - - -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0009_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0009_v0_0_s_ifspec; - -#ifndef __ID3D11View_INTERFACE_DEFINED__ -#define __ID3D11View_INTERFACE_DEFINED__ - -/* interface ID3D11View */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11View; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("839d1216-bb2e-412b-b7f4-a9dbebe08ed1") - ID3D11View : public ID3D11DeviceChild - { - public: - virtual void STDMETHODCALLTYPE GetResource( - /* [annotation] */ - __out ID3D11Resource **ppResource) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D11ViewVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11View * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11View * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11View * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11View * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11View * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11View * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11View * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetResource )( - ID3D11View * This, - /* [annotation] */ - __out ID3D11Resource **ppResource); - - END_INTERFACE - } ID3D11ViewVtbl; - - interface ID3D11View - { - CONST_VTBL struct ID3D11ViewVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11View_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11View_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11View_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11View_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11View_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11View_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11View_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D11View_GetResource(This,ppResource) \ - ( (This)->lpVtbl -> GetResource(This,ppResource) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11View_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d11_0000_0010 */ -/* [local] */ - -typedef struct D3D11_BUFFER_SRV - { - union - { - UINT FirstElement; - UINT ElementOffset; - } ; - union - { - UINT NumElements; - UINT ElementWidth; - } ; - } D3D11_BUFFER_SRV; - -typedef -enum D3D11_BUFFEREX_SRV_FLAG - { D3D11_BUFFEREX_SRV_FLAG_RAW = 0x1 - } D3D11_BUFFEREX_SRV_FLAG; - -typedef struct D3D11_BUFFEREX_SRV - { - UINT FirstElement; - UINT NumElements; - UINT Flags; - } D3D11_BUFFEREX_SRV; - -typedef struct D3D11_TEX1D_SRV - { - UINT MostDetailedMip; - UINT MipLevels; - } D3D11_TEX1D_SRV; - -typedef struct D3D11_TEX1D_ARRAY_SRV - { - UINT MostDetailedMip; - UINT MipLevels; - UINT FirstArraySlice; - UINT ArraySize; - } D3D11_TEX1D_ARRAY_SRV; - -typedef struct D3D11_TEX2D_SRV - { - UINT MostDetailedMip; - UINT MipLevels; - } D3D11_TEX2D_SRV; - -typedef struct D3D11_TEX2D_ARRAY_SRV - { - UINT MostDetailedMip; - UINT MipLevels; - UINT FirstArraySlice; - UINT ArraySize; - } D3D11_TEX2D_ARRAY_SRV; - -typedef struct D3D11_TEX3D_SRV - { - UINT MostDetailedMip; - UINT MipLevels; - } D3D11_TEX3D_SRV; - -typedef struct D3D11_TEXCUBE_SRV - { - UINT MostDetailedMip; - UINT MipLevels; - } D3D11_TEXCUBE_SRV; - -typedef struct D3D11_TEXCUBE_ARRAY_SRV - { - UINT MostDetailedMip; - UINT MipLevels; - UINT First2DArrayFace; - UINT NumCubes; - } D3D11_TEXCUBE_ARRAY_SRV; - -typedef struct D3D11_TEX2DMS_SRV - { - UINT UnusedField_NothingToDefine; - } D3D11_TEX2DMS_SRV; - -typedef struct D3D11_TEX2DMS_ARRAY_SRV - { - UINT FirstArraySlice; - UINT ArraySize; - } D3D11_TEX2DMS_ARRAY_SRV; - -typedef struct D3D11_SHADER_RESOURCE_VIEW_DESC - { - DXGI_FORMAT Format; - D3D11_SRV_DIMENSION ViewDimension; - union - { - D3D11_BUFFER_SRV Buffer; - D3D11_TEX1D_SRV Texture1D; - D3D11_TEX1D_ARRAY_SRV Texture1DArray; - D3D11_TEX2D_SRV Texture2D; - D3D11_TEX2D_ARRAY_SRV Texture2DArray; - D3D11_TEX2DMS_SRV Texture2DMS; - D3D11_TEX2DMS_ARRAY_SRV Texture2DMSArray; - D3D11_TEX3D_SRV Texture3D; - D3D11_TEXCUBE_SRV TextureCube; - D3D11_TEXCUBE_ARRAY_SRV TextureCubeArray; - D3D11_BUFFEREX_SRV BufferEx; - } ; - } D3D11_SHADER_RESOURCE_VIEW_DESC; - -#if !defined( D3D11_NO_HELPERS ) && defined( __cplusplus ) -} -struct CD3D11_SHADER_RESOURCE_VIEW_DESC : public D3D11_SHADER_RESOURCE_VIEW_DESC -{ - CD3D11_SHADER_RESOURCE_VIEW_DESC() - {} - explicit CD3D11_SHADER_RESOURCE_VIEW_DESC( const D3D11_SHADER_RESOURCE_VIEW_DESC& o ) : - D3D11_SHADER_RESOURCE_VIEW_DESC( o ) - {} - explicit CD3D11_SHADER_RESOURCE_VIEW_DESC( - D3D11_SRV_DIMENSION viewDimension, - DXGI_FORMAT format = DXGI_FORMAT_UNKNOWN, - UINT mostDetailedMip = 0, // FirstElement for BUFFER - UINT mipLevels = -1, // NumElements for BUFFER - UINT firstArraySlice = 0, // First2DArrayFace for TEXTURECUBEARRAY - UINT arraySize = -1, // NumCubes for TEXTURECUBEARRAY - UINT flags = 0 ) // BUFFEREX only - { - Format = format; - ViewDimension = viewDimension; - switch (viewDimension) - { - case D3D11_SRV_DIMENSION_BUFFER: - Buffer.FirstElement = mostDetailedMip; - Buffer.NumElements = mipLevels; - break; - case D3D11_SRV_DIMENSION_TEXTURE1D: - Texture1D.MostDetailedMip = mostDetailedMip; - Texture1D.MipLevels = mipLevels; - break; - case D3D11_SRV_DIMENSION_TEXTURE1DARRAY: - Texture1DArray.MostDetailedMip = mostDetailedMip; - Texture1DArray.MipLevels = mipLevels; - Texture1DArray.FirstArraySlice = firstArraySlice; - Texture1DArray.ArraySize = arraySize; - break; - case D3D11_SRV_DIMENSION_TEXTURE2D: - Texture2D.MostDetailedMip = mostDetailedMip; - Texture2D.MipLevels = mipLevels; - break; - case D3D11_SRV_DIMENSION_TEXTURE2DARRAY: - Texture2DArray.MostDetailedMip = mostDetailedMip; - Texture2DArray.MipLevels = mipLevels; - Texture2DArray.FirstArraySlice = firstArraySlice; - Texture2DArray.ArraySize = arraySize; - break; - case D3D11_SRV_DIMENSION_TEXTURE2DMS: - break; - case D3D11_SRV_DIMENSION_TEXTURE2DMSARRAY: - Texture2DMSArray.FirstArraySlice = firstArraySlice; - Texture2DMSArray.ArraySize = arraySize; - break; - case D3D11_SRV_DIMENSION_TEXTURE3D: - Texture3D.MostDetailedMip = mostDetailedMip; - Texture3D.MipLevels = mipLevels; - break; - case D3D11_SRV_DIMENSION_TEXTURECUBE: - TextureCube.MostDetailedMip = mostDetailedMip; - TextureCube.MipLevels = mipLevels; - break; - case D3D11_SRV_DIMENSION_TEXTURECUBEARRAY: - TextureCubeArray.MostDetailedMip = mostDetailedMip; - TextureCubeArray.MipLevels = mipLevels; - TextureCubeArray.First2DArrayFace = firstArraySlice; - TextureCubeArray.NumCubes = arraySize; - break; - case D3D11_SRV_DIMENSION_BUFFEREX: - BufferEx.FirstElement = mostDetailedMip; - BufferEx.NumElements = mipLevels; - BufferEx.Flags = flags; - break; - default: break; - } - } - explicit CD3D11_SHADER_RESOURCE_VIEW_DESC( - __in ID3D11Buffer*, - DXGI_FORMAT format, - UINT firstElement, - UINT numElements, - UINT flags = 0 ) - { - Format = format; - ViewDimension = D3D11_SRV_DIMENSION_BUFFEREX; - BufferEx.FirstElement = firstElement; - BufferEx.NumElements = numElements; - BufferEx.Flags = flags; - } - explicit CD3D11_SHADER_RESOURCE_VIEW_DESC( - __in ID3D11Texture1D* pTex1D, - D3D11_SRV_DIMENSION viewDimension, - DXGI_FORMAT format = DXGI_FORMAT_UNKNOWN, - UINT mostDetailedMip = 0, - UINT mipLevels = -1, - UINT firstArraySlice = 0, - UINT arraySize = -1 ) - { - ViewDimension = viewDimension; - if (DXGI_FORMAT_UNKNOWN == format || -1 == mipLevels || - (-1 == arraySize && D3D11_SRV_DIMENSION_TEXTURE1DARRAY == viewDimension)) - { - D3D11_TEXTURE1D_DESC TexDesc; - pTex1D->GetDesc( &TexDesc ); - if (DXGI_FORMAT_UNKNOWN == format) format = TexDesc.Format; - if (-1 == mipLevels) mipLevels = TexDesc.MipLevels - mostDetailedMip; - if (-1 == arraySize) arraySize = TexDesc.ArraySize - firstArraySlice; - } - Format = format; - switch (viewDimension) - { - case D3D11_SRV_DIMENSION_TEXTURE1D: - Texture1D.MostDetailedMip = mostDetailedMip; - Texture1D.MipLevels = mipLevels; - break; - case D3D11_SRV_DIMENSION_TEXTURE1DARRAY: - Texture1DArray.MostDetailedMip = mostDetailedMip; - Texture1DArray.MipLevels = mipLevels; - Texture1DArray.FirstArraySlice = firstArraySlice; - Texture1DArray.ArraySize = arraySize; - break; - default: break; - } - } - explicit CD3D11_SHADER_RESOURCE_VIEW_DESC( - __in ID3D11Texture2D* pTex2D, - D3D11_SRV_DIMENSION viewDimension, - DXGI_FORMAT format = DXGI_FORMAT_UNKNOWN, - UINT mostDetailedMip = 0, - UINT mipLevels = -1, - UINT firstArraySlice = 0, // First2DArrayFace for TEXTURECUBEARRAY - UINT arraySize = -1 ) // NumCubes for TEXTURECUBEARRAY - { - ViewDimension = viewDimension; - if (DXGI_FORMAT_UNKNOWN == format || - (-1 == mipLevels && - D3D11_SRV_DIMENSION_TEXTURE2DMS != viewDimension && - D3D11_SRV_DIMENSION_TEXTURE2DMSARRAY != viewDimension) || - (-1 == arraySize && - (D3D11_SRV_DIMENSION_TEXTURE2DARRAY == viewDimension || - D3D11_SRV_DIMENSION_TEXTURE2DMSARRAY == viewDimension || - D3D11_SRV_DIMENSION_TEXTURECUBEARRAY == viewDimension))) - { - D3D11_TEXTURE2D_DESC TexDesc; - pTex2D->GetDesc( &TexDesc ); - if (DXGI_FORMAT_UNKNOWN == format) format = TexDesc.Format; - if (-1 == mipLevels) mipLevels = TexDesc.MipLevels - mostDetailedMip; - if (-1 == arraySize) - { - arraySize = TexDesc.ArraySize - firstArraySlice; - if (D3D11_SRV_DIMENSION_TEXTURECUBEARRAY == viewDimension) arraySize /= 6; - } - } - Format = format; - switch (viewDimension) - { - case D3D11_SRV_DIMENSION_TEXTURE2D: - Texture2D.MostDetailedMip = mostDetailedMip; - Texture2D.MipLevels = mipLevels; - break; - case D3D11_SRV_DIMENSION_TEXTURE2DARRAY: - Texture2DArray.MostDetailedMip = mostDetailedMip; - Texture2DArray.MipLevels = mipLevels; - Texture2DArray.FirstArraySlice = firstArraySlice; - Texture2DArray.ArraySize = arraySize; - break; - case D3D11_SRV_DIMENSION_TEXTURE2DMS: - break; - case D3D11_SRV_DIMENSION_TEXTURE2DMSARRAY: - Texture2DMSArray.FirstArraySlice = firstArraySlice; - Texture2DMSArray.ArraySize = arraySize; - break; - case D3D11_SRV_DIMENSION_TEXTURECUBE: - TextureCube.MostDetailedMip = mostDetailedMip; - TextureCube.MipLevels = mipLevels; - break; - case D3D11_SRV_DIMENSION_TEXTURECUBEARRAY: - TextureCubeArray.MostDetailedMip = mostDetailedMip; - TextureCubeArray.MipLevels = mipLevels; - TextureCubeArray.First2DArrayFace = firstArraySlice; - TextureCubeArray.NumCubes = arraySize; - break; - default: break; - } - } - explicit CD3D11_SHADER_RESOURCE_VIEW_DESC( - __in ID3D11Texture3D* pTex3D, - DXGI_FORMAT format = DXGI_FORMAT_UNKNOWN, - UINT mostDetailedMip = 0, - UINT mipLevels = -1 ) - { - ViewDimension = D3D11_SRV_DIMENSION_TEXTURE3D; - if (DXGI_FORMAT_UNKNOWN == format || -1 == mipLevels) - { - D3D11_TEXTURE3D_DESC TexDesc; - pTex3D->GetDesc( &TexDesc ); - if (DXGI_FORMAT_UNKNOWN == format) format = TexDesc.Format; - if (-1 == mipLevels) mipLevels = TexDesc.MipLevels - mostDetailedMip; - } - Format = format; - Texture3D.MostDetailedMip = mostDetailedMip; - Texture3D.MipLevels = mipLevels; - } - ~CD3D11_SHADER_RESOURCE_VIEW_DESC() {} - operator const D3D11_SHADER_RESOURCE_VIEW_DESC&() const { return *this; } -}; -extern "C"{ -#endif - - -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0010_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0010_v0_0_s_ifspec; - -#ifndef __ID3D11ShaderResourceView_INTERFACE_DEFINED__ -#define __ID3D11ShaderResourceView_INTERFACE_DEFINED__ - -/* interface ID3D11ShaderResourceView */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11ShaderResourceView; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("b0e06fe0-8192-4e1a-b1ca-36d7414710b2") - ID3D11ShaderResourceView : public ID3D11View - { - public: - virtual void STDMETHODCALLTYPE GetDesc( - /* [annotation] */ - __out D3D11_SHADER_RESOURCE_VIEW_DESC *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D11ShaderResourceViewVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11ShaderResourceView * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11ShaderResourceView * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11ShaderResourceView * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11ShaderResourceView * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11ShaderResourceView * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11ShaderResourceView * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11ShaderResourceView * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetResource )( - ID3D11ShaderResourceView * This, - /* [annotation] */ - __out ID3D11Resource **ppResource); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D11ShaderResourceView * This, - /* [annotation] */ - __out D3D11_SHADER_RESOURCE_VIEW_DESC *pDesc); - - END_INTERFACE - } ID3D11ShaderResourceViewVtbl; - - interface ID3D11ShaderResourceView - { - CONST_VTBL struct ID3D11ShaderResourceViewVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11ShaderResourceView_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11ShaderResourceView_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11ShaderResourceView_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11ShaderResourceView_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11ShaderResourceView_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11ShaderResourceView_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11ShaderResourceView_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D11ShaderResourceView_GetResource(This,ppResource) \ - ( (This)->lpVtbl -> GetResource(This,ppResource) ) - - -#define ID3D11ShaderResourceView_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11ShaderResourceView_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d11_0000_0011 */ -/* [local] */ - -typedef struct D3D11_BUFFER_RTV - { - union - { - UINT FirstElement; - UINT ElementOffset; - } ; - union - { - UINT NumElements; - UINT ElementWidth; - } ; - } D3D11_BUFFER_RTV; - -typedef struct D3D11_TEX1D_RTV - { - UINT MipSlice; - } D3D11_TEX1D_RTV; - -typedef struct D3D11_TEX1D_ARRAY_RTV - { - UINT MipSlice; - UINT FirstArraySlice; - UINT ArraySize; - } D3D11_TEX1D_ARRAY_RTV; - -typedef struct D3D11_TEX2D_RTV - { - UINT MipSlice; - } D3D11_TEX2D_RTV; - -typedef struct D3D11_TEX2DMS_RTV - { - UINT UnusedField_NothingToDefine; - } D3D11_TEX2DMS_RTV; - -typedef struct D3D11_TEX2D_ARRAY_RTV - { - UINT MipSlice; - UINT FirstArraySlice; - UINT ArraySize; - } D3D11_TEX2D_ARRAY_RTV; - -typedef struct D3D11_TEX2DMS_ARRAY_RTV - { - UINT FirstArraySlice; - UINT ArraySize; - } D3D11_TEX2DMS_ARRAY_RTV; - -typedef struct D3D11_TEX3D_RTV - { - UINT MipSlice; - UINT FirstWSlice; - UINT WSize; - } D3D11_TEX3D_RTV; - -typedef struct D3D11_RENDER_TARGET_VIEW_DESC - { - DXGI_FORMAT Format; - D3D11_RTV_DIMENSION ViewDimension; - union - { - D3D11_BUFFER_RTV Buffer; - D3D11_TEX1D_RTV Texture1D; - D3D11_TEX1D_ARRAY_RTV Texture1DArray; - D3D11_TEX2D_RTV Texture2D; - D3D11_TEX2D_ARRAY_RTV Texture2DArray; - D3D11_TEX2DMS_RTV Texture2DMS; - D3D11_TEX2DMS_ARRAY_RTV Texture2DMSArray; - D3D11_TEX3D_RTV Texture3D; - } ; - } D3D11_RENDER_TARGET_VIEW_DESC; - -#if !defined( D3D11_NO_HELPERS ) && defined( __cplusplus ) -} -struct CD3D11_RENDER_TARGET_VIEW_DESC : public D3D11_RENDER_TARGET_VIEW_DESC -{ - CD3D11_RENDER_TARGET_VIEW_DESC() - {} - explicit CD3D11_RENDER_TARGET_VIEW_DESC( const D3D11_RENDER_TARGET_VIEW_DESC& o ) : - D3D11_RENDER_TARGET_VIEW_DESC( o ) - {} - explicit CD3D11_RENDER_TARGET_VIEW_DESC( - D3D11_RTV_DIMENSION viewDimension, - DXGI_FORMAT format = DXGI_FORMAT_UNKNOWN, - UINT mipSlice = 0, // FirstElement for BUFFER - UINT firstArraySlice = 0, // NumElements for BUFFER, FirstWSlice for TEXTURE3D - UINT arraySize = -1 ) // WSize for TEXTURE3D - { - Format = format; - ViewDimension = viewDimension; - switch (viewDimension) - { - case D3D11_RTV_DIMENSION_BUFFER: - Buffer.FirstElement = mipSlice; - Buffer.NumElements = firstArraySlice; - break; - case D3D11_RTV_DIMENSION_TEXTURE1D: - Texture1D.MipSlice = mipSlice; - break; - case D3D11_RTV_DIMENSION_TEXTURE1DARRAY: - Texture1DArray.MipSlice = mipSlice; - Texture1DArray.FirstArraySlice = firstArraySlice; - Texture1DArray.ArraySize = arraySize; - break; - case D3D11_RTV_DIMENSION_TEXTURE2D: - Texture2D.MipSlice = mipSlice; - break; - case D3D11_RTV_DIMENSION_TEXTURE2DARRAY: - Texture2DArray.MipSlice = mipSlice; - Texture2DArray.FirstArraySlice = firstArraySlice; - Texture2DArray.ArraySize = arraySize; - break; - case D3D11_RTV_DIMENSION_TEXTURE2DMS: - break; - case D3D11_RTV_DIMENSION_TEXTURE2DMSARRAY: - Texture2DMSArray.FirstArraySlice = firstArraySlice; - Texture2DMSArray.ArraySize = arraySize; - break; - case D3D11_RTV_DIMENSION_TEXTURE3D: - Texture3D.MipSlice = mipSlice; - Texture3D.FirstWSlice = firstArraySlice; - Texture3D.WSize = arraySize; - break; - default: break; - } - } - explicit CD3D11_RENDER_TARGET_VIEW_DESC( - __in ID3D11Buffer*, - DXGI_FORMAT format, - UINT firstElement, - UINT numElements ) - { - Format = format; - ViewDimension = D3D11_RTV_DIMENSION_BUFFER; - Buffer.FirstElement = firstElement; - Buffer.NumElements = numElements; - } - explicit CD3D11_RENDER_TARGET_VIEW_DESC( - __in ID3D11Texture1D* pTex1D, - D3D11_RTV_DIMENSION viewDimension, - DXGI_FORMAT format = DXGI_FORMAT_UNKNOWN, - UINT mipSlice = 0, - UINT firstArraySlice = 0, - UINT arraySize = -1 ) - { - ViewDimension = viewDimension; - if (DXGI_FORMAT_UNKNOWN == format || - (-1 == arraySize && D3D11_RTV_DIMENSION_TEXTURE1DARRAY == viewDimension)) - { - D3D11_TEXTURE1D_DESC TexDesc; - pTex1D->GetDesc( &TexDesc ); - if (DXGI_FORMAT_UNKNOWN == format) format = TexDesc.Format; - if (-1 == arraySize) arraySize = TexDesc.ArraySize - firstArraySlice; - } - Format = format; - switch (viewDimension) - { - case D3D11_RTV_DIMENSION_TEXTURE1D: - Texture1D.MipSlice = mipSlice; - break; - case D3D11_RTV_DIMENSION_TEXTURE1DARRAY: - Texture1DArray.MipSlice = mipSlice; - Texture1DArray.FirstArraySlice = firstArraySlice; - Texture1DArray.ArraySize = arraySize; - break; - default: break; - } - } - explicit CD3D11_RENDER_TARGET_VIEW_DESC( - __in ID3D11Texture2D* pTex2D, - D3D11_RTV_DIMENSION viewDimension, - DXGI_FORMAT format = DXGI_FORMAT_UNKNOWN, - UINT mipSlice = 0, - UINT firstArraySlice = 0, - UINT arraySize = -1 ) - { - ViewDimension = viewDimension; - if (DXGI_FORMAT_UNKNOWN == format || - (-1 == arraySize && - (D3D11_RTV_DIMENSION_TEXTURE2DARRAY == viewDimension || - D3D11_RTV_DIMENSION_TEXTURE2DMSARRAY == viewDimension))) - { - D3D11_TEXTURE2D_DESC TexDesc; - pTex2D->GetDesc( &TexDesc ); - if (DXGI_FORMAT_UNKNOWN == format) format = TexDesc.Format; - if (-1 == arraySize) arraySize = TexDesc.ArraySize - firstArraySlice; - } - Format = format; - switch (viewDimension) - { - case D3D11_RTV_DIMENSION_TEXTURE2D: - Texture2D.MipSlice = mipSlice; - break; - case D3D11_RTV_DIMENSION_TEXTURE2DARRAY: - Texture2DArray.MipSlice = mipSlice; - Texture2DArray.FirstArraySlice = firstArraySlice; - Texture2DArray.ArraySize = arraySize; - break; - case D3D11_RTV_DIMENSION_TEXTURE2DMS: - break; - case D3D11_RTV_DIMENSION_TEXTURE2DMSARRAY: - Texture2DMSArray.FirstArraySlice = firstArraySlice; - Texture2DMSArray.ArraySize = arraySize; - break; - default: break; - } - } - explicit CD3D11_RENDER_TARGET_VIEW_DESC( - __in ID3D11Texture3D* pTex3D, - DXGI_FORMAT format = DXGI_FORMAT_UNKNOWN, - UINT mipSlice = 0, - UINT firstWSlice = 0, - UINT wSize = -1 ) - { - ViewDimension = D3D11_RTV_DIMENSION_TEXTURE3D; - if (DXGI_FORMAT_UNKNOWN == format || -1 == wSize) - { - D3D11_TEXTURE3D_DESC TexDesc; - pTex3D->GetDesc( &TexDesc ); - if (DXGI_FORMAT_UNKNOWN == format) format = TexDesc.Format; - if (-1 == wSize) wSize = TexDesc.Depth - firstWSlice; - } - Format = format; - Texture3D.MipSlice = mipSlice; - Texture3D.FirstWSlice = firstWSlice; - Texture3D.WSize = wSize; - } - ~CD3D11_RENDER_TARGET_VIEW_DESC() {} - operator const D3D11_RENDER_TARGET_VIEW_DESC&() const { return *this; } -}; -extern "C"{ -#endif - - -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0011_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0011_v0_0_s_ifspec; - -#ifndef __ID3D11RenderTargetView_INTERFACE_DEFINED__ -#define __ID3D11RenderTargetView_INTERFACE_DEFINED__ - -/* interface ID3D11RenderTargetView */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11RenderTargetView; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("dfdba067-0b8d-4865-875b-d7b4516cc164") - ID3D11RenderTargetView : public ID3D11View - { - public: - virtual void STDMETHODCALLTYPE GetDesc( - /* [annotation] */ - __out D3D11_RENDER_TARGET_VIEW_DESC *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D11RenderTargetViewVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11RenderTargetView * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11RenderTargetView * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11RenderTargetView * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11RenderTargetView * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11RenderTargetView * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11RenderTargetView * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11RenderTargetView * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetResource )( - ID3D11RenderTargetView * This, - /* [annotation] */ - __out ID3D11Resource **ppResource); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D11RenderTargetView * This, - /* [annotation] */ - __out D3D11_RENDER_TARGET_VIEW_DESC *pDesc); - - END_INTERFACE - } ID3D11RenderTargetViewVtbl; - - interface ID3D11RenderTargetView - { - CONST_VTBL struct ID3D11RenderTargetViewVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11RenderTargetView_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11RenderTargetView_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11RenderTargetView_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11RenderTargetView_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11RenderTargetView_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11RenderTargetView_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11RenderTargetView_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D11RenderTargetView_GetResource(This,ppResource) \ - ( (This)->lpVtbl -> GetResource(This,ppResource) ) - - -#define ID3D11RenderTargetView_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11RenderTargetView_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d11_0000_0012 */ -/* [local] */ - -#if !defined( D3D11_NO_HELPERS ) && defined( __cplusplus ) -} -struct CD3D11_VIEWPORT : public D3D11_VIEWPORT -{ - CD3D11_VIEWPORT() - {} - explicit CD3D11_VIEWPORT( const D3D11_VIEWPORT& o ) : - D3D11_VIEWPORT( o ) - {} - explicit CD3D11_VIEWPORT( - FLOAT topLeftX, - FLOAT topLeftY, - FLOAT width, - FLOAT height, - FLOAT minDepth = D3D11_MIN_DEPTH, - FLOAT maxDepth = D3D11_MAX_DEPTH ) - { - TopLeftX = topLeftX; - TopLeftY = topLeftY; - Width = width; - Height = height; - MinDepth = minDepth; - MaxDepth = maxDepth; - } - explicit CD3D11_VIEWPORT( - __in ID3D11Buffer*, - __in ID3D11RenderTargetView* pRTView, - FLOAT topLeftX = 0.0f, - FLOAT minDepth = D3D11_MIN_DEPTH, - FLOAT maxDepth = D3D11_MAX_DEPTH ) - { - D3D11_RENDER_TARGET_VIEW_DESC RTVDesc; - pRTView->GetDesc( &RTVDesc ); - UINT NumElements = 0; - switch (RTVDesc.ViewDimension) - { - case D3D11_RTV_DIMENSION_BUFFER: - NumElements = RTVDesc.Buffer.NumElements; - break; - default: break; - } - TopLeftX = topLeftX; - TopLeftY = 0.0f; - Width = NumElements - topLeftX; - Height = 1.0f; - MinDepth = minDepth; - MaxDepth = maxDepth; - } - explicit CD3D11_VIEWPORT( - __in ID3D11Texture1D* pTex1D, - __in ID3D11RenderTargetView* pRTView, - FLOAT topLeftX = 0.0f, - FLOAT minDepth = D3D11_MIN_DEPTH, - FLOAT maxDepth = D3D11_MAX_DEPTH ) - { - D3D11_TEXTURE1D_DESC TexDesc; - pTex1D->GetDesc( &TexDesc ); - D3D11_RENDER_TARGET_VIEW_DESC RTVDesc; - pRTView->GetDesc( &RTVDesc ); - UINT MipSlice = 0; - switch (RTVDesc.ViewDimension) - { - case D3D11_RTV_DIMENSION_TEXTURE1D: - MipSlice = RTVDesc.Texture1D.MipSlice; - break; - case D3D11_RTV_DIMENSION_TEXTURE1DARRAY: - MipSlice = RTVDesc.Texture1DArray.MipSlice; - break; - default: break; - } - const UINT SubResourceWidth = TexDesc.Width / (UINT( 1 ) << MipSlice); - TopLeftX = topLeftX; - TopLeftY = 0.0f; - Width = (SubResourceWidth ? SubResourceWidth : 1) - topLeftX; - Height = 1.0f; - MinDepth = minDepth; - MaxDepth = maxDepth; - } - explicit CD3D11_VIEWPORT( - __in ID3D11Texture2D* pTex2D, - __in ID3D11RenderTargetView* pRTView, - FLOAT topLeftX = 0.0f, - FLOAT topLeftY = 0.0f, - FLOAT minDepth = D3D11_MIN_DEPTH, - FLOAT maxDepth = D3D11_MAX_DEPTH ) - { - D3D11_TEXTURE2D_DESC TexDesc; - pTex2D->GetDesc( &TexDesc ); - D3D11_RENDER_TARGET_VIEW_DESC RTVDesc; - pRTView->GetDesc( &RTVDesc ); - UINT MipSlice = 0; - switch (RTVDesc.ViewDimension) - { - case D3D11_RTV_DIMENSION_TEXTURE2D: - MipSlice = RTVDesc.Texture2D.MipSlice; - break; - case D3D11_RTV_DIMENSION_TEXTURE2DARRAY: - MipSlice = RTVDesc.Texture2DArray.MipSlice; - break; - case D3D11_RTV_DIMENSION_TEXTURE2DMS: - case D3D11_RTV_DIMENSION_TEXTURE2DMSARRAY: - break; - default: break; - } - const UINT SubResourceWidth = TexDesc.Width / (UINT( 1 ) << MipSlice); - const UINT SubResourceHeight = TexDesc.Height / (UINT( 1 ) << MipSlice); - TopLeftX = topLeftX; - TopLeftY = topLeftY; - Width = (SubResourceWidth ? SubResourceWidth : 1) - topLeftX; - Height = (SubResourceHeight ? SubResourceHeight : 1) - topLeftY; - MinDepth = minDepth; - MaxDepth = maxDepth; - } - explicit CD3D11_VIEWPORT( - __in ID3D11Texture3D* pTex3D, - __in ID3D11RenderTargetView* pRTView, - FLOAT topLeftX = 0.0f, - FLOAT topLeftY = 0.0f, - FLOAT minDepth = D3D11_MIN_DEPTH, - FLOAT maxDepth = D3D11_MAX_DEPTH ) - { - D3D11_TEXTURE3D_DESC TexDesc; - pTex3D->GetDesc( &TexDesc ); - D3D11_RENDER_TARGET_VIEW_DESC RTVDesc; - pRTView->GetDesc( &RTVDesc ); - UINT MipSlice = 0; - switch (RTVDesc.ViewDimension) - { - case D3D11_RTV_DIMENSION_TEXTURE3D: - MipSlice = RTVDesc.Texture3D.MipSlice; - break; - default: break; - } - const UINT SubResourceWidth = TexDesc.Width / (UINT( 1 ) << MipSlice); - const UINT SubResourceHeight = TexDesc.Height / (UINT( 1 ) << MipSlice); - TopLeftX = topLeftX; - TopLeftY = topLeftY; - Width = (SubResourceWidth ? SubResourceWidth : 1) - topLeftX; - Height = (SubResourceHeight ? SubResourceHeight : 1) - topLeftY; - MinDepth = minDepth; - MaxDepth = maxDepth; - } - ~CD3D11_VIEWPORT() {} - operator const D3D11_VIEWPORT&() const { return *this; } -}; -extern "C"{ -#endif -typedef struct D3D11_TEX1D_DSV - { - UINT MipSlice; - } D3D11_TEX1D_DSV; - -typedef struct D3D11_TEX1D_ARRAY_DSV - { - UINT MipSlice; - UINT FirstArraySlice; - UINT ArraySize; - } D3D11_TEX1D_ARRAY_DSV; - -typedef struct D3D11_TEX2D_DSV - { - UINT MipSlice; - } D3D11_TEX2D_DSV; - -typedef struct D3D11_TEX2D_ARRAY_DSV - { - UINT MipSlice; - UINT FirstArraySlice; - UINT ArraySize; - } D3D11_TEX2D_ARRAY_DSV; - -typedef struct D3D11_TEX2DMS_DSV - { - UINT UnusedField_NothingToDefine; - } D3D11_TEX2DMS_DSV; - -typedef struct D3D11_TEX2DMS_ARRAY_DSV - { - UINT FirstArraySlice; - UINT ArraySize; - } D3D11_TEX2DMS_ARRAY_DSV; - -typedef -enum D3D11_DSV_FLAG - { D3D11_DSV_READ_ONLY_DEPTH = 0x1L, - D3D11_DSV_READ_ONLY_STENCIL = 0x2L - } D3D11_DSV_FLAG; - -typedef struct D3D11_DEPTH_STENCIL_VIEW_DESC - { - DXGI_FORMAT Format; - D3D11_DSV_DIMENSION ViewDimension; - UINT Flags; - union - { - D3D11_TEX1D_DSV Texture1D; - D3D11_TEX1D_ARRAY_DSV Texture1DArray; - D3D11_TEX2D_DSV Texture2D; - D3D11_TEX2D_ARRAY_DSV Texture2DArray; - D3D11_TEX2DMS_DSV Texture2DMS; - D3D11_TEX2DMS_ARRAY_DSV Texture2DMSArray; - } ; - } D3D11_DEPTH_STENCIL_VIEW_DESC; - -#if !defined( D3D11_NO_HELPERS ) && defined( __cplusplus ) -} -struct CD3D11_DEPTH_STENCIL_VIEW_DESC : public D3D11_DEPTH_STENCIL_VIEW_DESC -{ - CD3D11_DEPTH_STENCIL_VIEW_DESC() - {} - explicit CD3D11_DEPTH_STENCIL_VIEW_DESC( const D3D11_DEPTH_STENCIL_VIEW_DESC& o ) : - D3D11_DEPTH_STENCIL_VIEW_DESC( o ) - {} - explicit CD3D11_DEPTH_STENCIL_VIEW_DESC( - D3D11_DSV_DIMENSION viewDimension, - DXGI_FORMAT format = DXGI_FORMAT_UNKNOWN, - UINT mipSlice = 0, - UINT firstArraySlice = 0, - UINT arraySize = -1, - UINT flags = 0 ) - { - Format = format; - ViewDimension = viewDimension; - Flags = flags; - switch (viewDimension) - { - case D3D11_DSV_DIMENSION_TEXTURE1D: - Texture1D.MipSlice = mipSlice; - break; - case D3D11_DSV_DIMENSION_TEXTURE1DARRAY: - Texture1DArray.MipSlice = mipSlice; - Texture1DArray.FirstArraySlice = firstArraySlice; - Texture1DArray.ArraySize = arraySize; - break; - case D3D11_DSV_DIMENSION_TEXTURE2D: - Texture2D.MipSlice = mipSlice; - break; - case D3D11_DSV_DIMENSION_TEXTURE2DARRAY: - Texture2DArray.MipSlice = mipSlice; - Texture2DArray.FirstArraySlice = firstArraySlice; - Texture2DArray.ArraySize = arraySize; - break; - case D3D11_DSV_DIMENSION_TEXTURE2DMS: - break; - case D3D11_DSV_DIMENSION_TEXTURE2DMSARRAY: - Texture2DMSArray.FirstArraySlice = firstArraySlice; - Texture2DMSArray.ArraySize = arraySize; - break; - default: break; - } - } - explicit CD3D11_DEPTH_STENCIL_VIEW_DESC( - __in ID3D11Texture1D* pTex1D, - D3D11_DSV_DIMENSION viewDimension, - DXGI_FORMAT format = DXGI_FORMAT_UNKNOWN, - UINT mipSlice = 0, - UINT firstArraySlice = 0, - UINT arraySize = -1, - UINT flags = 0 ) - { - ViewDimension = viewDimension; - Flags = flags; - if (DXGI_FORMAT_UNKNOWN == format || - (-1 == arraySize && D3D11_DSV_DIMENSION_TEXTURE1DARRAY == viewDimension)) - { - D3D11_TEXTURE1D_DESC TexDesc; - pTex1D->GetDesc( &TexDesc ); - if (DXGI_FORMAT_UNKNOWN == format) format = TexDesc.Format; - if (-1 == arraySize) arraySize = TexDesc.ArraySize - firstArraySlice; - } - Format = format; - switch (viewDimension) - { - case D3D11_DSV_DIMENSION_TEXTURE1D: - Texture1D.MipSlice = mipSlice; - break; - case D3D11_DSV_DIMENSION_TEXTURE1DARRAY: - Texture1DArray.MipSlice = mipSlice; - Texture1DArray.FirstArraySlice = firstArraySlice; - Texture1DArray.ArraySize = arraySize; - break; - default: break; - } - } - explicit CD3D11_DEPTH_STENCIL_VIEW_DESC( - __in ID3D11Texture2D* pTex2D, - D3D11_DSV_DIMENSION viewDimension, - DXGI_FORMAT format = DXGI_FORMAT_UNKNOWN, - UINT mipSlice = 0, - UINT firstArraySlice = 0, - UINT arraySize = -1, - UINT flags = 0 ) - { - ViewDimension = viewDimension; - Flags = flags; - if (DXGI_FORMAT_UNKNOWN == format || - (-1 == arraySize && - (D3D11_DSV_DIMENSION_TEXTURE2DARRAY == viewDimension || - D3D11_DSV_DIMENSION_TEXTURE2DMSARRAY == viewDimension))) - { - D3D11_TEXTURE2D_DESC TexDesc; - pTex2D->GetDesc( &TexDesc ); - if (DXGI_FORMAT_UNKNOWN == format) format = TexDesc.Format; - if (-1 == arraySize) arraySize = TexDesc.ArraySize - firstArraySlice; - } - Format = format; - switch (viewDimension) - { - case D3D11_DSV_DIMENSION_TEXTURE2D: - Texture2D.MipSlice = mipSlice; - break; - case D3D11_DSV_DIMENSION_TEXTURE2DARRAY: - Texture2DArray.MipSlice = mipSlice; - Texture2DArray.FirstArraySlice = firstArraySlice; - Texture2DArray.ArraySize = arraySize; - break; - case D3D11_DSV_DIMENSION_TEXTURE2DMS: - break; - case D3D11_DSV_DIMENSION_TEXTURE2DMSARRAY: - Texture2DMSArray.FirstArraySlice = firstArraySlice; - Texture2DMSArray.ArraySize = arraySize; - break; - default: break; - } - } - ~CD3D11_DEPTH_STENCIL_VIEW_DESC() {} - operator const D3D11_DEPTH_STENCIL_VIEW_DESC&() const { return *this; } -}; -extern "C"{ -#endif - - -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0012_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0012_v0_0_s_ifspec; - -#ifndef __ID3D11DepthStencilView_INTERFACE_DEFINED__ -#define __ID3D11DepthStencilView_INTERFACE_DEFINED__ - -/* interface ID3D11DepthStencilView */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11DepthStencilView; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("9fdac92a-1876-48c3-afad-25b94f84a9b6") - ID3D11DepthStencilView : public ID3D11View - { - public: - virtual void STDMETHODCALLTYPE GetDesc( - /* [annotation] */ - __out D3D11_DEPTH_STENCIL_VIEW_DESC *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D11DepthStencilViewVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11DepthStencilView * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11DepthStencilView * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11DepthStencilView * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11DepthStencilView * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11DepthStencilView * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11DepthStencilView * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11DepthStencilView * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetResource )( - ID3D11DepthStencilView * This, - /* [annotation] */ - __out ID3D11Resource **ppResource); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D11DepthStencilView * This, - /* [annotation] */ - __out D3D11_DEPTH_STENCIL_VIEW_DESC *pDesc); - - END_INTERFACE - } ID3D11DepthStencilViewVtbl; - - interface ID3D11DepthStencilView - { - CONST_VTBL struct ID3D11DepthStencilViewVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11DepthStencilView_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11DepthStencilView_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11DepthStencilView_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11DepthStencilView_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11DepthStencilView_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11DepthStencilView_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11DepthStencilView_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D11DepthStencilView_GetResource(This,ppResource) \ - ( (This)->lpVtbl -> GetResource(This,ppResource) ) - - -#define ID3D11DepthStencilView_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11DepthStencilView_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d11_0000_0013 */ -/* [local] */ - -typedef -enum D3D11_BUFFER_UAV_FLAG - { D3D11_BUFFER_UAV_FLAG_RAW = 0x1, - D3D11_BUFFER_UAV_FLAG_APPEND = 0x2, - D3D11_BUFFER_UAV_FLAG_COUNTER = 0x4 - } D3D11_BUFFER_UAV_FLAG; - -typedef struct D3D11_BUFFER_UAV - { - UINT FirstElement; - UINT NumElements; - UINT Flags; - } D3D11_BUFFER_UAV; - -typedef struct D3D11_TEX1D_UAV - { - UINT MipSlice; - } D3D11_TEX1D_UAV; - -typedef struct D3D11_TEX1D_ARRAY_UAV - { - UINT MipSlice; - UINT FirstArraySlice; - UINT ArraySize; - } D3D11_TEX1D_ARRAY_UAV; - -typedef struct D3D11_TEX2D_UAV - { - UINT MipSlice; - } D3D11_TEX2D_UAV; - -typedef struct D3D11_TEX2D_ARRAY_UAV - { - UINT MipSlice; - UINT FirstArraySlice; - UINT ArraySize; - } D3D11_TEX2D_ARRAY_UAV; - -typedef struct D3D11_TEX3D_UAV - { - UINT MipSlice; - UINT FirstWSlice; - UINT WSize; - } D3D11_TEX3D_UAV; - -typedef struct D3D11_UNORDERED_ACCESS_VIEW_DESC - { - DXGI_FORMAT Format; - D3D11_UAV_DIMENSION ViewDimension; - union - { - D3D11_BUFFER_UAV Buffer; - D3D11_TEX1D_UAV Texture1D; - D3D11_TEX1D_ARRAY_UAV Texture1DArray; - D3D11_TEX2D_UAV Texture2D; - D3D11_TEX2D_ARRAY_UAV Texture2DArray; - D3D11_TEX3D_UAV Texture3D; - } ; - } D3D11_UNORDERED_ACCESS_VIEW_DESC; - -#if !defined( D3D11_NO_HELPERS ) && defined( __cplusplus ) -} -struct CD3D11_UNORDERED_ACCESS_VIEW_DESC : public D3D11_UNORDERED_ACCESS_VIEW_DESC -{ - CD3D11_UNORDERED_ACCESS_VIEW_DESC() - {} - explicit CD3D11_UNORDERED_ACCESS_VIEW_DESC( const D3D11_UNORDERED_ACCESS_VIEW_DESC& o ) : - D3D11_UNORDERED_ACCESS_VIEW_DESC( o ) - {} - explicit CD3D11_UNORDERED_ACCESS_VIEW_DESC( - D3D11_UAV_DIMENSION viewDimension, - DXGI_FORMAT format = DXGI_FORMAT_UNKNOWN, - UINT mipSlice = 0, // FirstElement for BUFFER - UINT firstArraySlice = 0, // NumElements for BUFFER, FirstWSlice for TEXTURE3D - UINT arraySize = -1, // WSize for TEXTURE3D - UINT flags = 0 ) // BUFFER only - { - Format = format; - ViewDimension = viewDimension; - switch (viewDimension) - { - case D3D11_UAV_DIMENSION_BUFFER: - Buffer.FirstElement = mipSlice; - Buffer.NumElements = firstArraySlice; - Buffer.Flags = flags; - break; - case D3D11_UAV_DIMENSION_TEXTURE1D: - Texture1D.MipSlice = mipSlice; - break; - case D3D11_UAV_DIMENSION_TEXTURE1DARRAY: - Texture1DArray.MipSlice = mipSlice; - Texture1DArray.FirstArraySlice = firstArraySlice; - Texture1DArray.ArraySize = arraySize; - break; - case D3D11_UAV_DIMENSION_TEXTURE2D: - Texture2D.MipSlice = mipSlice; - break; - case D3D11_UAV_DIMENSION_TEXTURE2DARRAY: - Texture2DArray.MipSlice = mipSlice; - Texture2DArray.FirstArraySlice = firstArraySlice; - Texture2DArray.ArraySize = arraySize; - break; - case D3D11_UAV_DIMENSION_TEXTURE3D: - Texture3D.MipSlice = mipSlice; - Texture3D.FirstWSlice = firstArraySlice; - Texture3D.WSize = arraySize; - break; - default: break; - } - } - explicit CD3D11_UNORDERED_ACCESS_VIEW_DESC( - __in ID3D11Buffer*, - DXGI_FORMAT format, - UINT firstElement, - UINT numElements, - UINT flags = 0 ) - { - Format = format; - ViewDimension = D3D11_UAV_DIMENSION_BUFFER; - Buffer.FirstElement = firstElement; - Buffer.NumElements = numElements; - Buffer.Flags = flags; - } - explicit CD3D11_UNORDERED_ACCESS_VIEW_DESC( - __in ID3D11Texture1D* pTex1D, - D3D11_UAV_DIMENSION viewDimension, - DXGI_FORMAT format = DXGI_FORMAT_UNKNOWN, - UINT mipSlice = 0, - UINT firstArraySlice = 0, - UINT arraySize = -1 ) - { - ViewDimension = viewDimension; - if (DXGI_FORMAT_UNKNOWN == format || - (-1 == arraySize && D3D11_UAV_DIMENSION_TEXTURE1DARRAY == viewDimension)) - { - D3D11_TEXTURE1D_DESC TexDesc; - pTex1D->GetDesc( &TexDesc ); - if (DXGI_FORMAT_UNKNOWN == format) format = TexDesc.Format; - if (-1 == arraySize) arraySize = TexDesc.ArraySize - firstArraySlice; - } - Format = format; - switch (viewDimension) - { - case D3D11_UAV_DIMENSION_TEXTURE1D: - Texture1D.MipSlice = mipSlice; - break; - case D3D11_UAV_DIMENSION_TEXTURE1DARRAY: - Texture1DArray.MipSlice = mipSlice; - Texture1DArray.FirstArraySlice = firstArraySlice; - Texture1DArray.ArraySize = arraySize; - break; - default: break; - } - } - explicit CD3D11_UNORDERED_ACCESS_VIEW_DESC( - __in ID3D11Texture2D* pTex2D, - D3D11_UAV_DIMENSION viewDimension, - DXGI_FORMAT format = DXGI_FORMAT_UNKNOWN, - UINT mipSlice = 0, - UINT firstArraySlice = 0, - UINT arraySize = -1 ) - { - ViewDimension = viewDimension; - if (DXGI_FORMAT_UNKNOWN == format || - (-1 == arraySize && D3D11_UAV_DIMENSION_TEXTURE2DARRAY == viewDimension)) - { - D3D11_TEXTURE2D_DESC TexDesc; - pTex2D->GetDesc( &TexDesc ); - if (DXGI_FORMAT_UNKNOWN == format) format = TexDesc.Format; - if (-1 == arraySize) arraySize = TexDesc.ArraySize - firstArraySlice; - } - Format = format; - switch (viewDimension) - { - case D3D11_UAV_DIMENSION_TEXTURE2D: - Texture2D.MipSlice = mipSlice; - break; - case D3D11_UAV_DIMENSION_TEXTURE2DARRAY: - Texture2DArray.MipSlice = mipSlice; - Texture2DArray.FirstArraySlice = firstArraySlice; - Texture2DArray.ArraySize = arraySize; - break; - default: break; - } - } - explicit CD3D11_UNORDERED_ACCESS_VIEW_DESC( - __in ID3D11Texture3D* pTex3D, - DXGI_FORMAT format = DXGI_FORMAT_UNKNOWN, - UINT mipSlice = 0, - UINT firstWSlice = 0, - UINT wSize = -1 ) - { - ViewDimension = D3D11_UAV_DIMENSION_TEXTURE3D; - if (DXGI_FORMAT_UNKNOWN == format || -1 == wSize) - { - D3D11_TEXTURE3D_DESC TexDesc; - pTex3D->GetDesc( &TexDesc ); - if (DXGI_FORMAT_UNKNOWN == format) format = TexDesc.Format; - if (-1 == wSize) wSize = TexDesc.Depth - firstWSlice; - } - Format = format; - Texture3D.MipSlice = mipSlice; - Texture3D.FirstWSlice = firstWSlice; - Texture3D.WSize = wSize; - } - ~CD3D11_UNORDERED_ACCESS_VIEW_DESC() {} - operator const D3D11_UNORDERED_ACCESS_VIEW_DESC&() const { return *this; } -}; -extern "C"{ -#endif - - -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0013_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0013_v0_0_s_ifspec; - -#ifndef __ID3D11UnorderedAccessView_INTERFACE_DEFINED__ -#define __ID3D11UnorderedAccessView_INTERFACE_DEFINED__ - -/* interface ID3D11UnorderedAccessView */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11UnorderedAccessView; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("28acf509-7f5c-48f6-8611-f316010a6380") - ID3D11UnorderedAccessView : public ID3D11View - { - public: - virtual void STDMETHODCALLTYPE GetDesc( - /* [annotation] */ - __out D3D11_UNORDERED_ACCESS_VIEW_DESC *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D11UnorderedAccessViewVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11UnorderedAccessView * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11UnorderedAccessView * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11UnorderedAccessView * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11UnorderedAccessView * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11UnorderedAccessView * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11UnorderedAccessView * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11UnorderedAccessView * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetResource )( - ID3D11UnorderedAccessView * This, - /* [annotation] */ - __out ID3D11Resource **ppResource); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D11UnorderedAccessView * This, - /* [annotation] */ - __out D3D11_UNORDERED_ACCESS_VIEW_DESC *pDesc); - - END_INTERFACE - } ID3D11UnorderedAccessViewVtbl; - - interface ID3D11UnorderedAccessView - { - CONST_VTBL struct ID3D11UnorderedAccessViewVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11UnorderedAccessView_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11UnorderedAccessView_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11UnorderedAccessView_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11UnorderedAccessView_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11UnorderedAccessView_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11UnorderedAccessView_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11UnorderedAccessView_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D11UnorderedAccessView_GetResource(This,ppResource) \ - ( (This)->lpVtbl -> GetResource(This,ppResource) ) - - -#define ID3D11UnorderedAccessView_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11UnorderedAccessView_INTERFACE_DEFINED__ */ - - -#ifndef __ID3D11VertexShader_INTERFACE_DEFINED__ -#define __ID3D11VertexShader_INTERFACE_DEFINED__ - -/* interface ID3D11VertexShader */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11VertexShader; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("3b301d64-d678-4289-8897-22f8928b72f3") - ID3D11VertexShader : public ID3D11DeviceChild - { - public: - }; - -#else /* C style interface */ - - typedef struct ID3D11VertexShaderVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11VertexShader * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11VertexShader * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11VertexShader * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11VertexShader * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11VertexShader * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11VertexShader * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11VertexShader * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - END_INTERFACE - } ID3D11VertexShaderVtbl; - - interface ID3D11VertexShader - { - CONST_VTBL struct ID3D11VertexShaderVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11VertexShader_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11VertexShader_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11VertexShader_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11VertexShader_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11VertexShader_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11VertexShader_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11VertexShader_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11VertexShader_INTERFACE_DEFINED__ */ - - -#ifndef __ID3D11HullShader_INTERFACE_DEFINED__ -#define __ID3D11HullShader_INTERFACE_DEFINED__ - -/* interface ID3D11HullShader */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11HullShader; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("8e5c6061-628a-4c8e-8264-bbe45cb3d5dd") - ID3D11HullShader : public ID3D11DeviceChild - { - public: - }; - -#else /* C style interface */ - - typedef struct ID3D11HullShaderVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11HullShader * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11HullShader * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11HullShader * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11HullShader * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11HullShader * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11HullShader * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11HullShader * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - END_INTERFACE - } ID3D11HullShaderVtbl; - - interface ID3D11HullShader - { - CONST_VTBL struct ID3D11HullShaderVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11HullShader_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11HullShader_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11HullShader_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11HullShader_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11HullShader_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11HullShader_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11HullShader_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11HullShader_INTERFACE_DEFINED__ */ - - -#ifndef __ID3D11DomainShader_INTERFACE_DEFINED__ -#define __ID3D11DomainShader_INTERFACE_DEFINED__ - -/* interface ID3D11DomainShader */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11DomainShader; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("f582c508-0f36-490c-9977-31eece268cfa") - ID3D11DomainShader : public ID3D11DeviceChild - { - public: - }; - -#else /* C style interface */ - - typedef struct ID3D11DomainShaderVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11DomainShader * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11DomainShader * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11DomainShader * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11DomainShader * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11DomainShader * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11DomainShader * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11DomainShader * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - END_INTERFACE - } ID3D11DomainShaderVtbl; - - interface ID3D11DomainShader - { - CONST_VTBL struct ID3D11DomainShaderVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11DomainShader_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11DomainShader_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11DomainShader_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11DomainShader_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11DomainShader_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11DomainShader_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11DomainShader_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11DomainShader_INTERFACE_DEFINED__ */ - - -#ifndef __ID3D11GeometryShader_INTERFACE_DEFINED__ -#define __ID3D11GeometryShader_INTERFACE_DEFINED__ - -/* interface ID3D11GeometryShader */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11GeometryShader; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("38325b96-effb-4022-ba02-2e795b70275c") - ID3D11GeometryShader : public ID3D11DeviceChild - { - public: - }; - -#else /* C style interface */ - - typedef struct ID3D11GeometryShaderVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11GeometryShader * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11GeometryShader * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11GeometryShader * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11GeometryShader * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11GeometryShader * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11GeometryShader * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11GeometryShader * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - END_INTERFACE - } ID3D11GeometryShaderVtbl; - - interface ID3D11GeometryShader - { - CONST_VTBL struct ID3D11GeometryShaderVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11GeometryShader_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11GeometryShader_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11GeometryShader_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11GeometryShader_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11GeometryShader_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11GeometryShader_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11GeometryShader_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11GeometryShader_INTERFACE_DEFINED__ */ - - -#ifndef __ID3D11PixelShader_INTERFACE_DEFINED__ -#define __ID3D11PixelShader_INTERFACE_DEFINED__ - -/* interface ID3D11PixelShader */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11PixelShader; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("ea82e40d-51dc-4f33-93d4-db7c9125ae8c") - ID3D11PixelShader : public ID3D11DeviceChild - { - public: - }; - -#else /* C style interface */ - - typedef struct ID3D11PixelShaderVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11PixelShader * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11PixelShader * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11PixelShader * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11PixelShader * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11PixelShader * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11PixelShader * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11PixelShader * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - END_INTERFACE - } ID3D11PixelShaderVtbl; - - interface ID3D11PixelShader - { - CONST_VTBL struct ID3D11PixelShaderVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11PixelShader_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11PixelShader_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11PixelShader_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11PixelShader_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11PixelShader_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11PixelShader_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11PixelShader_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11PixelShader_INTERFACE_DEFINED__ */ - - -#ifndef __ID3D11ComputeShader_INTERFACE_DEFINED__ -#define __ID3D11ComputeShader_INTERFACE_DEFINED__ - -/* interface ID3D11ComputeShader */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11ComputeShader; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("4f5b196e-c2bd-495e-bd01-1fded38e4969") - ID3D11ComputeShader : public ID3D11DeviceChild - { - public: - }; - -#else /* C style interface */ - - typedef struct ID3D11ComputeShaderVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11ComputeShader * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11ComputeShader * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11ComputeShader * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11ComputeShader * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11ComputeShader * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11ComputeShader * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11ComputeShader * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - END_INTERFACE - } ID3D11ComputeShaderVtbl; - - interface ID3D11ComputeShader - { - CONST_VTBL struct ID3D11ComputeShaderVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11ComputeShader_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11ComputeShader_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11ComputeShader_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11ComputeShader_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11ComputeShader_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11ComputeShader_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11ComputeShader_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11ComputeShader_INTERFACE_DEFINED__ */ - - -#ifndef __ID3D11InputLayout_INTERFACE_DEFINED__ -#define __ID3D11InputLayout_INTERFACE_DEFINED__ - -/* interface ID3D11InputLayout */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11InputLayout; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("e4819ddc-4cf0-4025-bd26-5de82a3e07b7") - ID3D11InputLayout : public ID3D11DeviceChild - { - public: - }; - -#else /* C style interface */ - - typedef struct ID3D11InputLayoutVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11InputLayout * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11InputLayout * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11InputLayout * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11InputLayout * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11InputLayout * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11InputLayout * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11InputLayout * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - END_INTERFACE - } ID3D11InputLayoutVtbl; - - interface ID3D11InputLayout - { - CONST_VTBL struct ID3D11InputLayoutVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11InputLayout_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11InputLayout_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11InputLayout_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11InputLayout_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11InputLayout_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11InputLayout_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11InputLayout_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11InputLayout_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d11_0000_0021 */ -/* [local] */ - -typedef -enum D3D11_FILTER - { D3D11_FILTER_MIN_MAG_MIP_POINT = 0, - D3D11_FILTER_MIN_MAG_POINT_MIP_LINEAR = 0x1, - D3D11_FILTER_MIN_POINT_MAG_LINEAR_MIP_POINT = 0x4, - D3D11_FILTER_MIN_POINT_MAG_MIP_LINEAR = 0x5, - D3D11_FILTER_MIN_LINEAR_MAG_MIP_POINT = 0x10, - D3D11_FILTER_MIN_LINEAR_MAG_POINT_MIP_LINEAR = 0x11, - D3D11_FILTER_MIN_MAG_LINEAR_MIP_POINT = 0x14, - D3D11_FILTER_MIN_MAG_MIP_LINEAR = 0x15, - D3D11_FILTER_ANISOTROPIC = 0x55, - D3D11_FILTER_COMPARISON_MIN_MAG_MIP_POINT = 0x80, - D3D11_FILTER_COMPARISON_MIN_MAG_POINT_MIP_LINEAR = 0x81, - D3D11_FILTER_COMPARISON_MIN_POINT_MAG_LINEAR_MIP_POINT = 0x84, - D3D11_FILTER_COMPARISON_MIN_POINT_MAG_MIP_LINEAR = 0x85, - D3D11_FILTER_COMPARISON_MIN_LINEAR_MAG_MIP_POINT = 0x90, - D3D11_FILTER_COMPARISON_MIN_LINEAR_MAG_POINT_MIP_LINEAR = 0x91, - D3D11_FILTER_COMPARISON_MIN_MAG_LINEAR_MIP_POINT = 0x94, - D3D11_FILTER_COMPARISON_MIN_MAG_MIP_LINEAR = 0x95, - D3D11_FILTER_COMPARISON_ANISOTROPIC = 0xd5 - } D3D11_FILTER; - -typedef -enum D3D11_FILTER_TYPE - { D3D11_FILTER_TYPE_POINT = 0, - D3D11_FILTER_TYPE_LINEAR = 1 - } D3D11_FILTER_TYPE; - -#define D3D11_FILTER_TYPE_MASK ( 0x3 ) - -#define D3D11_MIN_FILTER_SHIFT ( 4 ) - -#define D3D11_MAG_FILTER_SHIFT ( 2 ) - -#define D3D11_MIP_FILTER_SHIFT ( 0 ) - -#define D3D11_COMPARISON_FILTERING_BIT ( 0x80 ) - -#define D3D11_ANISOTROPIC_FILTERING_BIT ( 0x40 ) - -#define D3D11_ENCODE_BASIC_FILTER( min, mag, mip, bComparison ) \ - ( ( D3D11_FILTER ) ( \ - ( ( bComparison ) ? D3D11_COMPARISON_FILTERING_BIT : 0 ) | \ - ( ( ( min ) & D3D11_FILTER_TYPE_MASK ) << D3D11_MIN_FILTER_SHIFT ) | \ - ( ( ( mag ) & D3D11_FILTER_TYPE_MASK ) << D3D11_MAG_FILTER_SHIFT ) | \ - ( ( ( mip ) & D3D11_FILTER_TYPE_MASK ) << D3D11_MIP_FILTER_SHIFT ) ) ) -#define D3D11_ENCODE_ANISOTROPIC_FILTER( bComparison ) \ - ( ( D3D11_FILTER ) ( \ - D3D11_ANISOTROPIC_FILTERING_BIT | \ - D3D11_ENCODE_BASIC_FILTER( D3D11_FILTER_TYPE_LINEAR, \ - D3D11_FILTER_TYPE_LINEAR, \ - D3D11_FILTER_TYPE_LINEAR, \ - bComparison ) ) ) -#define D3D11_DECODE_MIN_FILTER( d3d11Filter ) \ - ( ( D3D11_FILTER_TYPE ) \ - ( ( ( d3d11Filter ) >> D3D11_MIN_FILTER_SHIFT ) & D3D11_FILTER_TYPE_MASK ) ) -#define D3D11_DECODE_MAG_FILTER( d3d11Filter ) \ - ( ( D3D11_FILTER_TYPE ) \ - ( ( ( d3d11Filter ) >> D3D11_MAG_FILTER_SHIFT ) & D3D11_FILTER_TYPE_MASK ) ) -#define D3D11_DECODE_MIP_FILTER( d3d11Filter ) \ - ( ( D3D11_FILTER_TYPE ) \ - ( ( ( d3d11Filter ) >> D3D11_MIP_FILTER_SHIFT ) & D3D11_FILTER_TYPE_MASK ) ) -#define D3D11_DECODE_IS_COMPARISON_FILTER( d3d11Filter ) \ - ( ( d3d11Filter ) & D3D11_COMPARISON_FILTERING_BIT ) -#define D3D11_DECODE_IS_ANISOTROPIC_FILTER( d3d11Filter ) \ - ( ( ( d3d11Filter ) & D3D11_ANISOTROPIC_FILTERING_BIT ) && \ - ( D3D11_FILTER_TYPE_LINEAR == D3D11_DECODE_MIN_FILTER( d3d11Filter ) ) && \ - ( D3D11_FILTER_TYPE_LINEAR == D3D11_DECODE_MAG_FILTER( d3d11Filter ) ) && \ - ( D3D11_FILTER_TYPE_LINEAR == D3D11_DECODE_MIP_FILTER( d3d11Filter ) ) ) -typedef -enum D3D11_TEXTURE_ADDRESS_MODE - { D3D11_TEXTURE_ADDRESS_WRAP = 1, - D3D11_TEXTURE_ADDRESS_MIRROR = 2, - D3D11_TEXTURE_ADDRESS_CLAMP = 3, - D3D11_TEXTURE_ADDRESS_BORDER = 4, - D3D11_TEXTURE_ADDRESS_MIRROR_ONCE = 5 - } D3D11_TEXTURE_ADDRESS_MODE; - -typedef struct D3D11_SAMPLER_DESC - { - D3D11_FILTER Filter; - D3D11_TEXTURE_ADDRESS_MODE AddressU; - D3D11_TEXTURE_ADDRESS_MODE AddressV; - D3D11_TEXTURE_ADDRESS_MODE AddressW; - FLOAT MipLODBias; - UINT MaxAnisotropy; - D3D11_COMPARISON_FUNC ComparisonFunc; - FLOAT BorderColor[ 4 ]; - FLOAT MinLOD; - FLOAT MaxLOD; - } D3D11_SAMPLER_DESC; - -#if !defined( D3D11_NO_HELPERS ) && defined( __cplusplus ) -} -struct CD3D11_SAMPLER_DESC : public D3D11_SAMPLER_DESC -{ - CD3D11_SAMPLER_DESC() - {} - explicit CD3D11_SAMPLER_DESC( const D3D11_SAMPLER_DESC& o ) : - D3D11_SAMPLER_DESC( o ) - {} - explicit CD3D11_SAMPLER_DESC( CD3D11_DEFAULT ) - { - Filter = D3D11_FILTER_MIN_MAG_MIP_LINEAR; - AddressU = D3D11_TEXTURE_ADDRESS_CLAMP; - AddressV = D3D11_TEXTURE_ADDRESS_CLAMP; - AddressW = D3D11_TEXTURE_ADDRESS_CLAMP; - MipLODBias = 0; - MaxAnisotropy = 1; - ComparisonFunc = D3D11_COMPARISON_NEVER; - BorderColor[ 0 ] = 1.0f; - BorderColor[ 1 ] = 1.0f; - BorderColor[ 2 ] = 1.0f; - BorderColor[ 3 ] = 1.0f; - MinLOD = -3.402823466e+38F; // -FLT_MAX - MaxLOD = 3.402823466e+38F; // FLT_MAX - } - explicit CD3D11_SAMPLER_DESC( - D3D11_FILTER filter, - D3D11_TEXTURE_ADDRESS_MODE addressU, - D3D11_TEXTURE_ADDRESS_MODE addressV, - D3D11_TEXTURE_ADDRESS_MODE addressW, - FLOAT mipLODBias, - UINT maxAnisotropy, - D3D11_COMPARISON_FUNC comparisonFunc, - __in_ecount_opt( 4 ) const FLOAT* borderColor, // RGBA - FLOAT minLOD, - FLOAT maxLOD ) - { - Filter = filter; - AddressU = addressU; - AddressV = addressV; - AddressW = addressW; - MipLODBias = mipLODBias; - MaxAnisotropy = maxAnisotropy; - ComparisonFunc = comparisonFunc; - const float defaultColor[ 4 ] = { 1.0f, 1.0f, 1.0f, 1.0f }; - if (!borderColor) borderColor = defaultColor; - BorderColor[ 0 ] = borderColor[ 0 ]; - BorderColor[ 1 ] = borderColor[ 1 ]; - BorderColor[ 2 ] = borderColor[ 2 ]; - BorderColor[ 3 ] = borderColor[ 3 ]; - MinLOD = minLOD; - MaxLOD = maxLOD; - } - ~CD3D11_SAMPLER_DESC() {} - operator const D3D11_SAMPLER_DESC&() const { return *this; } -}; -extern "C"{ -#endif - - -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0021_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0021_v0_0_s_ifspec; - -#ifndef __ID3D11SamplerState_INTERFACE_DEFINED__ -#define __ID3D11SamplerState_INTERFACE_DEFINED__ - -/* interface ID3D11SamplerState */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11SamplerState; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("da6fea51-564c-4487-9810-f0d0f9b4e3a5") - ID3D11SamplerState : public ID3D11DeviceChild - { - public: - virtual void STDMETHODCALLTYPE GetDesc( - /* [annotation] */ - __out D3D11_SAMPLER_DESC *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D11SamplerStateVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11SamplerState * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11SamplerState * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11SamplerState * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11SamplerState * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11SamplerState * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11SamplerState * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11SamplerState * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D11SamplerState * This, - /* [annotation] */ - __out D3D11_SAMPLER_DESC *pDesc); - - END_INTERFACE - } ID3D11SamplerStateVtbl; - - interface ID3D11SamplerState - { - CONST_VTBL struct ID3D11SamplerStateVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11SamplerState_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11SamplerState_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11SamplerState_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11SamplerState_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11SamplerState_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11SamplerState_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11SamplerState_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D11SamplerState_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11SamplerState_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d11_0000_0022 */ -/* [local] */ - -typedef -enum D3D11_FORMAT_SUPPORT - { D3D11_FORMAT_SUPPORT_BUFFER = 0x1, - D3D11_FORMAT_SUPPORT_IA_VERTEX_BUFFER = 0x2, - D3D11_FORMAT_SUPPORT_IA_INDEX_BUFFER = 0x4, - D3D11_FORMAT_SUPPORT_SO_BUFFER = 0x8, - D3D11_FORMAT_SUPPORT_TEXTURE1D = 0x10, - D3D11_FORMAT_SUPPORT_TEXTURE2D = 0x20, - D3D11_FORMAT_SUPPORT_TEXTURE3D = 0x40, - D3D11_FORMAT_SUPPORT_TEXTURECUBE = 0x80, - D3D11_FORMAT_SUPPORT_SHADER_LOAD = 0x100, - D3D11_FORMAT_SUPPORT_SHADER_SAMPLE = 0x200, - D3D11_FORMAT_SUPPORT_SHADER_SAMPLE_COMPARISON = 0x400, - D3D11_FORMAT_SUPPORT_SHADER_SAMPLE_MONO_TEXT = 0x800, - D3D11_FORMAT_SUPPORT_MIP = 0x1000, - D3D11_FORMAT_SUPPORT_MIP_AUTOGEN = 0x2000, - D3D11_FORMAT_SUPPORT_RENDER_TARGET = 0x4000, - D3D11_FORMAT_SUPPORT_BLENDABLE = 0x8000, - D3D11_FORMAT_SUPPORT_DEPTH_STENCIL = 0x10000, - D3D11_FORMAT_SUPPORT_CPU_LOCKABLE = 0x20000, - D3D11_FORMAT_SUPPORT_MULTISAMPLE_RESOLVE = 0x40000, - D3D11_FORMAT_SUPPORT_DISPLAY = 0x80000, - D3D11_FORMAT_SUPPORT_CAST_WITHIN_BIT_LAYOUT = 0x100000, - D3D11_FORMAT_SUPPORT_MULTISAMPLE_RENDERTARGET = 0x200000, - D3D11_FORMAT_SUPPORT_MULTISAMPLE_LOAD = 0x400000, - D3D11_FORMAT_SUPPORT_SHADER_GATHER = 0x800000, - D3D11_FORMAT_SUPPORT_BACK_BUFFER_CAST = 0x1000000, - D3D11_FORMAT_SUPPORT_TYPED_UNORDERED_ACCESS_VIEW = 0x2000000, - D3D11_FORMAT_SUPPORT_SHADER_GATHER_COMPARISON = 0x4000000 - } D3D11_FORMAT_SUPPORT; - -typedef -enum D3D11_FORMAT_SUPPORT2 - { D3D11_FORMAT_SUPPORT2_UAV_ATOMIC_ADD = 0x1, - D3D11_FORMAT_SUPPORT2_UAV_ATOMIC_BITWISE_OPS = 0x2, - D3D11_FORMAT_SUPPORT2_UAV_ATOMIC_COMPARE_STORE_OR_COMPARE_EXCHANGE = 0x4, - D3D11_FORMAT_SUPPORT2_UAV_ATOMIC_EXCHANGE = 0x8, - D3D11_FORMAT_SUPPORT2_UAV_ATOMIC_SIGNED_MIN_OR_MAX = 0x10, - D3D11_FORMAT_SUPPORT2_UAV_ATOMIC_UNSIGNED_MIN_OR_MAX = 0x20, - D3D11_FORMAT_SUPPORT2_UAV_TYPED_LOAD = 0x40, - D3D11_FORMAT_SUPPORT2_UAV_TYPED_STORE = 0x80 - } D3D11_FORMAT_SUPPORT2; - - - -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0022_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0022_v0_0_s_ifspec; - -#ifndef __ID3D11Asynchronous_INTERFACE_DEFINED__ -#define __ID3D11Asynchronous_INTERFACE_DEFINED__ - -/* interface ID3D11Asynchronous */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11Asynchronous; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("4b35d0cd-1e15-4258-9c98-1b1333f6dd3b") - ID3D11Asynchronous : public ID3D11DeviceChild - { - public: - virtual UINT STDMETHODCALLTYPE GetDataSize( void) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D11AsynchronousVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11Asynchronous * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11Asynchronous * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11Asynchronous * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11Asynchronous * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11Asynchronous * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11Asynchronous * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11Asynchronous * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - UINT ( STDMETHODCALLTYPE *GetDataSize )( - ID3D11Asynchronous * This); - - END_INTERFACE - } ID3D11AsynchronousVtbl; - - interface ID3D11Asynchronous - { - CONST_VTBL struct ID3D11AsynchronousVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11Asynchronous_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11Asynchronous_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11Asynchronous_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11Asynchronous_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11Asynchronous_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11Asynchronous_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11Asynchronous_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D11Asynchronous_GetDataSize(This) \ - ( (This)->lpVtbl -> GetDataSize(This) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11Asynchronous_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d11_0000_0023 */ -/* [local] */ - -typedef -enum D3D11_ASYNC_GETDATA_FLAG - { D3D11_ASYNC_GETDATA_DONOTFLUSH = 0x1 - } D3D11_ASYNC_GETDATA_FLAG; - -typedef -enum D3D11_QUERY - { D3D11_QUERY_EVENT = 0, - D3D11_QUERY_OCCLUSION = ( D3D11_QUERY_EVENT + 1 ) , - D3D11_QUERY_TIMESTAMP = ( D3D11_QUERY_OCCLUSION + 1 ) , - D3D11_QUERY_TIMESTAMP_DISJOINT = ( D3D11_QUERY_TIMESTAMP + 1 ) , - D3D11_QUERY_PIPELINE_STATISTICS = ( D3D11_QUERY_TIMESTAMP_DISJOINT + 1 ) , - D3D11_QUERY_OCCLUSION_PREDICATE = ( D3D11_QUERY_PIPELINE_STATISTICS + 1 ) , - D3D11_QUERY_SO_STATISTICS = ( D3D11_QUERY_OCCLUSION_PREDICATE + 1 ) , - D3D11_QUERY_SO_OVERFLOW_PREDICATE = ( D3D11_QUERY_SO_STATISTICS + 1 ) , - D3D11_QUERY_SO_STATISTICS_STREAM0 = ( D3D11_QUERY_SO_OVERFLOW_PREDICATE + 1 ) , - D3D11_QUERY_SO_OVERFLOW_PREDICATE_STREAM0 = ( D3D11_QUERY_SO_STATISTICS_STREAM0 + 1 ) , - D3D11_QUERY_SO_STATISTICS_STREAM1 = ( D3D11_QUERY_SO_OVERFLOW_PREDICATE_STREAM0 + 1 ) , - D3D11_QUERY_SO_OVERFLOW_PREDICATE_STREAM1 = ( D3D11_QUERY_SO_STATISTICS_STREAM1 + 1 ) , - D3D11_QUERY_SO_STATISTICS_STREAM2 = ( D3D11_QUERY_SO_OVERFLOW_PREDICATE_STREAM1 + 1 ) , - D3D11_QUERY_SO_OVERFLOW_PREDICATE_STREAM2 = ( D3D11_QUERY_SO_STATISTICS_STREAM2 + 1 ) , - D3D11_QUERY_SO_STATISTICS_STREAM3 = ( D3D11_QUERY_SO_OVERFLOW_PREDICATE_STREAM2 + 1 ) , - D3D11_QUERY_SO_OVERFLOW_PREDICATE_STREAM3 = ( D3D11_QUERY_SO_STATISTICS_STREAM3 + 1 ) - } D3D11_QUERY; - -typedef -enum D3D11_QUERY_MISC_FLAG - { D3D11_QUERY_MISC_PREDICATEHINT = 0x1 - } D3D11_QUERY_MISC_FLAG; - -typedef struct D3D11_QUERY_DESC - { - D3D11_QUERY Query; - UINT MiscFlags; - } D3D11_QUERY_DESC; - -#if !defined( D3D11_NO_HELPERS ) && defined( __cplusplus ) -} -struct CD3D11_QUERY_DESC : public D3D11_QUERY_DESC -{ - CD3D11_QUERY_DESC() - {} - explicit CD3D11_QUERY_DESC( const D3D11_QUERY_DESC& o ) : - D3D11_QUERY_DESC( o ) - {} - explicit CD3D11_QUERY_DESC( - D3D11_QUERY query, - UINT miscFlags = 0 ) - { - Query = query; - MiscFlags = miscFlags; - } - ~CD3D11_QUERY_DESC() {} - operator const D3D11_QUERY_DESC&() const { return *this; } -}; -extern "C"{ -#endif - - -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0023_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0023_v0_0_s_ifspec; - -#ifndef __ID3D11Query_INTERFACE_DEFINED__ -#define __ID3D11Query_INTERFACE_DEFINED__ - -/* interface ID3D11Query */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11Query; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("d6c00747-87b7-425e-b84d-44d108560afd") - ID3D11Query : public ID3D11Asynchronous - { - public: - virtual void STDMETHODCALLTYPE GetDesc( - /* [annotation] */ - __out D3D11_QUERY_DESC *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D11QueryVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11Query * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11Query * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11Query * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11Query * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11Query * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11Query * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11Query * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - UINT ( STDMETHODCALLTYPE *GetDataSize )( - ID3D11Query * This); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D11Query * This, - /* [annotation] */ - __out D3D11_QUERY_DESC *pDesc); - - END_INTERFACE - } ID3D11QueryVtbl; - - interface ID3D11Query - { - CONST_VTBL struct ID3D11QueryVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11Query_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11Query_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11Query_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11Query_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11Query_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11Query_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11Query_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D11Query_GetDataSize(This) \ - ( (This)->lpVtbl -> GetDataSize(This) ) - - -#define ID3D11Query_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11Query_INTERFACE_DEFINED__ */ - - -#ifndef __ID3D11Predicate_INTERFACE_DEFINED__ -#define __ID3D11Predicate_INTERFACE_DEFINED__ - -/* interface ID3D11Predicate */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11Predicate; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("9eb576dd-9f77-4d86-81aa-8bab5fe490e2") - ID3D11Predicate : public ID3D11Query - { - public: - }; - -#else /* C style interface */ - - typedef struct ID3D11PredicateVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11Predicate * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11Predicate * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11Predicate * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11Predicate * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11Predicate * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11Predicate * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11Predicate * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - UINT ( STDMETHODCALLTYPE *GetDataSize )( - ID3D11Predicate * This); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D11Predicate * This, - /* [annotation] */ - __out D3D11_QUERY_DESC *pDesc); - - END_INTERFACE - } ID3D11PredicateVtbl; - - interface ID3D11Predicate - { - CONST_VTBL struct ID3D11PredicateVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11Predicate_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11Predicate_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11Predicate_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11Predicate_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11Predicate_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11Predicate_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11Predicate_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D11Predicate_GetDataSize(This) \ - ( (This)->lpVtbl -> GetDataSize(This) ) - - -#define ID3D11Predicate_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11Predicate_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d11_0000_0025 */ -/* [local] */ - -typedef struct D3D11_QUERY_DATA_TIMESTAMP_DISJOINT - { - UINT64 Frequency; - BOOL Disjoint; - } D3D11_QUERY_DATA_TIMESTAMP_DISJOINT; - -typedef struct D3D11_QUERY_DATA_PIPELINE_STATISTICS - { - UINT64 IAVertices; - UINT64 IAPrimitives; - UINT64 VSInvocations; - UINT64 GSInvocations; - UINT64 GSPrimitives; - UINT64 CInvocations; - UINT64 CPrimitives; - UINT64 PSInvocations; - UINT64 HSInvocations; - UINT64 DSInvocations; - UINT64 CSInvocations; - } D3D11_QUERY_DATA_PIPELINE_STATISTICS; - -typedef struct D3D11_QUERY_DATA_SO_STATISTICS - { - UINT64 NumPrimitivesWritten; - UINT64 PrimitivesStorageNeeded; - } D3D11_QUERY_DATA_SO_STATISTICS; - -typedef -enum D3D11_COUNTER - { D3D11_COUNTER_DEVICE_DEPENDENT_0 = 0x40000000 - } D3D11_COUNTER; - -typedef -enum D3D11_COUNTER_TYPE - { D3D11_COUNTER_TYPE_FLOAT32 = 0, - D3D11_COUNTER_TYPE_UINT16 = ( D3D11_COUNTER_TYPE_FLOAT32 + 1 ) , - D3D11_COUNTER_TYPE_UINT32 = ( D3D11_COUNTER_TYPE_UINT16 + 1 ) , - D3D11_COUNTER_TYPE_UINT64 = ( D3D11_COUNTER_TYPE_UINT32 + 1 ) - } D3D11_COUNTER_TYPE; - -typedef struct D3D11_COUNTER_DESC - { - D3D11_COUNTER Counter; - UINT MiscFlags; - } D3D11_COUNTER_DESC; - -#if !defined( D3D11_NO_HELPERS ) && defined( __cplusplus ) -} -struct CD3D11_COUNTER_DESC : public D3D11_COUNTER_DESC -{ - CD3D11_COUNTER_DESC() - {} - explicit CD3D11_COUNTER_DESC( const D3D11_COUNTER_DESC& o ) : - D3D11_COUNTER_DESC( o ) - {} - explicit CD3D11_COUNTER_DESC( - D3D11_COUNTER counter, - UINT miscFlags = 0 ) - { - Counter = counter; - MiscFlags = miscFlags; - } - ~CD3D11_COUNTER_DESC() {} - operator const D3D11_COUNTER_DESC&() const { return *this; } -}; -extern "C"{ -#endif -typedef struct D3D11_COUNTER_INFO - { - D3D11_COUNTER LastDeviceDependentCounter; - UINT NumSimultaneousCounters; - UINT8 NumDetectableParallelUnits; - } D3D11_COUNTER_INFO; - - - -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0025_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0025_v0_0_s_ifspec; - -#ifndef __ID3D11Counter_INTERFACE_DEFINED__ -#define __ID3D11Counter_INTERFACE_DEFINED__ - -/* interface ID3D11Counter */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11Counter; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("6e8c49fb-a371-4770-b440-29086022b741") - ID3D11Counter : public ID3D11Asynchronous - { - public: - virtual void STDMETHODCALLTYPE GetDesc( - /* [annotation] */ - __out D3D11_COUNTER_DESC *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D11CounterVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11Counter * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11Counter * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11Counter * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11Counter * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11Counter * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11Counter * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11Counter * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - UINT ( STDMETHODCALLTYPE *GetDataSize )( - ID3D11Counter * This); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D11Counter * This, - /* [annotation] */ - __out D3D11_COUNTER_DESC *pDesc); - - END_INTERFACE - } ID3D11CounterVtbl; - - interface ID3D11Counter - { - CONST_VTBL struct ID3D11CounterVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11Counter_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11Counter_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11Counter_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11Counter_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11Counter_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11Counter_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11Counter_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D11Counter_GetDataSize(This) \ - ( (This)->lpVtbl -> GetDataSize(This) ) - - -#define ID3D11Counter_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11Counter_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d11_0000_0026 */ -/* [local] */ - -typedef -enum D3D11_STANDARD_MULTISAMPLE_QUALITY_LEVELS - { D3D11_STANDARD_MULTISAMPLE_PATTERN = 0xffffffff, - D3D11_CENTER_MULTISAMPLE_PATTERN = 0xfffffffe - } D3D11_STANDARD_MULTISAMPLE_QUALITY_LEVELS; - -typedef -enum D3D11_DEVICE_CONTEXT_TYPE - { D3D11_DEVICE_CONTEXT_IMMEDIATE = 0, - D3D11_DEVICE_CONTEXT_DEFERRED = ( D3D11_DEVICE_CONTEXT_IMMEDIATE + 1 ) - } D3D11_DEVICE_CONTEXT_TYPE; - -typedef struct D3D11_CLASS_INSTANCE_DESC - { - UINT InstanceId; - UINT InstanceIndex; - UINT TypeId; - UINT ConstantBuffer; - UINT BaseConstantBufferOffset; - UINT BaseTexture; - UINT BaseSampler; - BOOL Created; - } D3D11_CLASS_INSTANCE_DESC; - - - -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0026_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0026_v0_0_s_ifspec; - -#ifndef __ID3D11ClassInstance_INTERFACE_DEFINED__ -#define __ID3D11ClassInstance_INTERFACE_DEFINED__ - -/* interface ID3D11ClassInstance */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11ClassInstance; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("a6cd7faa-b0b7-4a2f-9436-8662a65797cb") - ID3D11ClassInstance : public ID3D11DeviceChild - { - public: - virtual void STDMETHODCALLTYPE GetClassLinkage( - /* [annotation] */ - __out ID3D11ClassLinkage **ppLinkage) = 0; - - virtual void STDMETHODCALLTYPE GetDesc( - /* [annotation] */ - __out D3D11_CLASS_INSTANCE_DESC *pDesc) = 0; - - virtual void STDMETHODCALLTYPE GetInstanceName( - /* [annotation] */ - __out_ecount_opt(*pBufferLength) LPSTR pInstanceName, - /* [annotation] */ - __inout SIZE_T *pBufferLength) = 0; - - virtual void STDMETHODCALLTYPE GetTypeName( - /* [annotation] */ - __out_ecount_opt(*pBufferLength) LPSTR pTypeName, - /* [annotation] */ - __inout SIZE_T *pBufferLength) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D11ClassInstanceVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11ClassInstance * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11ClassInstance * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11ClassInstance * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11ClassInstance * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11ClassInstance * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11ClassInstance * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11ClassInstance * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *GetClassLinkage )( - ID3D11ClassInstance * This, - /* [annotation] */ - __out ID3D11ClassLinkage **ppLinkage); - - void ( STDMETHODCALLTYPE *GetDesc )( - ID3D11ClassInstance * This, - /* [annotation] */ - __out D3D11_CLASS_INSTANCE_DESC *pDesc); - - void ( STDMETHODCALLTYPE *GetInstanceName )( - ID3D11ClassInstance * This, - /* [annotation] */ - __out_ecount_opt(*pBufferLength) LPSTR pInstanceName, - /* [annotation] */ - __inout SIZE_T *pBufferLength); - - void ( STDMETHODCALLTYPE *GetTypeName )( - ID3D11ClassInstance * This, - /* [annotation] */ - __out_ecount_opt(*pBufferLength) LPSTR pTypeName, - /* [annotation] */ - __inout SIZE_T *pBufferLength); - - END_INTERFACE - } ID3D11ClassInstanceVtbl; - - interface ID3D11ClassInstance - { - CONST_VTBL struct ID3D11ClassInstanceVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11ClassInstance_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11ClassInstance_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11ClassInstance_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11ClassInstance_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11ClassInstance_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11ClassInstance_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11ClassInstance_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D11ClassInstance_GetClassLinkage(This,ppLinkage) \ - ( (This)->lpVtbl -> GetClassLinkage(This,ppLinkage) ) - -#define ID3D11ClassInstance_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#define ID3D11ClassInstance_GetInstanceName(This,pInstanceName,pBufferLength) \ - ( (This)->lpVtbl -> GetInstanceName(This,pInstanceName,pBufferLength) ) - -#define ID3D11ClassInstance_GetTypeName(This,pTypeName,pBufferLength) \ - ( (This)->lpVtbl -> GetTypeName(This,pTypeName,pBufferLength) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11ClassInstance_INTERFACE_DEFINED__ */ - - -#ifndef __ID3D11ClassLinkage_INTERFACE_DEFINED__ -#define __ID3D11ClassLinkage_INTERFACE_DEFINED__ - -/* interface ID3D11ClassLinkage */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11ClassLinkage; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("ddf57cba-9543-46e4-a12b-f207a0fe7fed") - ID3D11ClassLinkage : public ID3D11DeviceChild - { - public: - virtual HRESULT STDMETHODCALLTYPE GetClassInstance( - /* [annotation] */ - __in LPCSTR pClassInstanceName, - /* [annotation] */ - __in UINT InstanceIndex, - /* [annotation] */ - __out ID3D11ClassInstance **ppInstance) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateClassInstance( - /* [annotation] */ - __in LPCSTR pClassTypeName, - /* [annotation] */ - __in UINT ConstantBufferOffset, - /* [annotation] */ - __in UINT ConstantVectorOffset, - /* [annotation] */ - __in UINT TextureOffset, - /* [annotation] */ - __in UINT SamplerOffset, - /* [annotation] */ - __out ID3D11ClassInstance **ppInstance) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D11ClassLinkageVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11ClassLinkage * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11ClassLinkage * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11ClassLinkage * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11ClassLinkage * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11ClassLinkage * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11ClassLinkage * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11ClassLinkage * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - HRESULT ( STDMETHODCALLTYPE *GetClassInstance )( - ID3D11ClassLinkage * This, - /* [annotation] */ - __in LPCSTR pClassInstanceName, - /* [annotation] */ - __in UINT InstanceIndex, - /* [annotation] */ - __out ID3D11ClassInstance **ppInstance); - - HRESULT ( STDMETHODCALLTYPE *CreateClassInstance )( - ID3D11ClassLinkage * This, - /* [annotation] */ - __in LPCSTR pClassTypeName, - /* [annotation] */ - __in UINT ConstantBufferOffset, - /* [annotation] */ - __in UINT ConstantVectorOffset, - /* [annotation] */ - __in UINT TextureOffset, - /* [annotation] */ - __in UINT SamplerOffset, - /* [annotation] */ - __out ID3D11ClassInstance **ppInstance); - - END_INTERFACE - } ID3D11ClassLinkageVtbl; - - interface ID3D11ClassLinkage - { - CONST_VTBL struct ID3D11ClassLinkageVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11ClassLinkage_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11ClassLinkage_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11ClassLinkage_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11ClassLinkage_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11ClassLinkage_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11ClassLinkage_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11ClassLinkage_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D11ClassLinkage_GetClassInstance(This,pClassInstanceName,InstanceIndex,ppInstance) \ - ( (This)->lpVtbl -> GetClassInstance(This,pClassInstanceName,InstanceIndex,ppInstance) ) - -#define ID3D11ClassLinkage_CreateClassInstance(This,pClassTypeName,ConstantBufferOffset,ConstantVectorOffset,TextureOffset,SamplerOffset,ppInstance) \ - ( (This)->lpVtbl -> CreateClassInstance(This,pClassTypeName,ConstantBufferOffset,ConstantVectorOffset,TextureOffset,SamplerOffset,ppInstance) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11ClassLinkage_INTERFACE_DEFINED__ */ - - -#ifndef __ID3D11CommandList_INTERFACE_DEFINED__ -#define __ID3D11CommandList_INTERFACE_DEFINED__ - -/* interface ID3D11CommandList */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11CommandList; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("a24bc4d1-769e-43f7-8013-98ff566c18e2") - ID3D11CommandList : public ID3D11DeviceChild - { - public: - virtual UINT STDMETHODCALLTYPE GetContextFlags( void) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D11CommandListVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11CommandList * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11CommandList * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11CommandList * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11CommandList * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11CommandList * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11CommandList * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11CommandList * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - UINT ( STDMETHODCALLTYPE *GetContextFlags )( - ID3D11CommandList * This); - - END_INTERFACE - } ID3D11CommandListVtbl; - - interface ID3D11CommandList - { - CONST_VTBL struct ID3D11CommandListVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11CommandList_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11CommandList_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11CommandList_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11CommandList_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11CommandList_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11CommandList_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11CommandList_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D11CommandList_GetContextFlags(This) \ - ( (This)->lpVtbl -> GetContextFlags(This) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11CommandList_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d11_0000_0029 */ -/* [local] */ - -typedef -enum D3D11_FEATURE - { D3D11_FEATURE_THREADING = 0, - D3D11_FEATURE_DOUBLES = ( D3D11_FEATURE_THREADING + 1 ) , - D3D11_FEATURE_FORMAT_SUPPORT = ( D3D11_FEATURE_DOUBLES + 1 ) , - D3D11_FEATURE_FORMAT_SUPPORT2 = ( D3D11_FEATURE_FORMAT_SUPPORT + 1 ) , - D3D11_FEATURE_D3D10_X_HARDWARE_OPTIONS = ( D3D11_FEATURE_FORMAT_SUPPORT2 + 1 ) - } D3D11_FEATURE; - -typedef struct D3D11_FEATURE_DATA_THREADING - { - BOOL DriverConcurrentCreates; - BOOL DriverCommandLists; - } D3D11_FEATURE_DATA_THREADING; - -typedef struct D3D11_FEATURE_DATA_DOUBLES - { - BOOL DoublePrecisionFloatShaderOps; - } D3D11_FEATURE_DATA_DOUBLES; - -typedef struct D3D11_FEATURE_DATA_FORMAT_SUPPORT - { - DXGI_FORMAT InFormat; - UINT OutFormatSupport; - } D3D11_FEATURE_DATA_FORMAT_SUPPORT; - -typedef struct D3D11_FEATURE_DATA_FORMAT_SUPPORT2 - { - DXGI_FORMAT InFormat; - UINT OutFormatSupport2; - } D3D11_FEATURE_DATA_FORMAT_SUPPORT2; - -typedef struct D3D11_FEATURE_DATA_D3D10_X_HARDWARE_OPTIONS - { - BOOL ComputeShaders_Plus_RawAndStructuredBuffers_Via_Shader_4_x; - } D3D11_FEATURE_DATA_D3D10_X_HARDWARE_OPTIONS; - - - -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0029_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0029_v0_0_s_ifspec; - -#ifndef __ID3D11DeviceContext_INTERFACE_DEFINED__ -#define __ID3D11DeviceContext_INTERFACE_DEFINED__ - -/* interface ID3D11DeviceContext */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11DeviceContext; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("c0bfa96c-e089-44fb-8eaf-26f8796190da") - ID3D11DeviceContext : public ID3D11DeviceChild - { - public: - virtual void STDMETHODCALLTYPE VSSetConstantBuffers( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) ID3D11Buffer *const *ppConstantBuffers) = 0; - - virtual void STDMETHODCALLTYPE PSSetShaderResources( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __in_ecount(NumViews) ID3D11ShaderResourceView *const *ppShaderResourceViews) = 0; - - virtual void STDMETHODCALLTYPE PSSetShader( - /* [annotation] */ - __in_opt ID3D11PixelShader *pPixelShader, - /* [annotation] */ - __in_ecount_opt(NumClassInstances) ID3D11ClassInstance *const *ppClassInstances, - UINT NumClassInstances) = 0; - - virtual void STDMETHODCALLTYPE PSSetSamplers( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __in_ecount(NumSamplers) ID3D11SamplerState *const *ppSamplers) = 0; - - virtual void STDMETHODCALLTYPE VSSetShader( - /* [annotation] */ - __in_opt ID3D11VertexShader *pVertexShader, - /* [annotation] */ - __in_ecount_opt(NumClassInstances) ID3D11ClassInstance *const *ppClassInstances, - UINT NumClassInstances) = 0; - - virtual void STDMETHODCALLTYPE DrawIndexed( - /* [annotation] */ - __in UINT IndexCount, - /* [annotation] */ - __in UINT StartIndexLocation, - /* [annotation] */ - __in INT BaseVertexLocation) = 0; - - virtual void STDMETHODCALLTYPE Draw( - /* [annotation] */ - __in UINT VertexCount, - /* [annotation] */ - __in UINT StartVertexLocation) = 0; - - virtual HRESULT STDMETHODCALLTYPE Map( - /* [annotation] */ - __in ID3D11Resource *pResource, - /* [annotation] */ - __in UINT Subresource, - /* [annotation] */ - __in D3D11_MAP MapType, - /* [annotation] */ - __in UINT MapFlags, - /* [annotation] */ - __out D3D11_MAPPED_SUBRESOURCE *pMappedResource) = 0; - - virtual void STDMETHODCALLTYPE Unmap( - /* [annotation] */ - __in ID3D11Resource *pResource, - /* [annotation] */ - __in UINT Subresource) = 0; - - virtual void STDMETHODCALLTYPE PSSetConstantBuffers( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) ID3D11Buffer *const *ppConstantBuffers) = 0; - - virtual void STDMETHODCALLTYPE IASetInputLayout( - /* [annotation] */ - __in_opt ID3D11InputLayout *pInputLayout) = 0; - - virtual void STDMETHODCALLTYPE IASetVertexBuffers( - /* [annotation] */ - __in_range( 0, D3D11_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) ID3D11Buffer *const *ppVertexBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) const UINT *pStrides, - /* [annotation] */ - __in_ecount(NumBuffers) const UINT *pOffsets) = 0; - - virtual void STDMETHODCALLTYPE IASetIndexBuffer( - /* [annotation] */ - __in_opt ID3D11Buffer *pIndexBuffer, - /* [annotation] */ - __in DXGI_FORMAT Format, - /* [annotation] */ - __in UINT Offset) = 0; - - virtual void STDMETHODCALLTYPE DrawIndexedInstanced( - /* [annotation] */ - __in UINT IndexCountPerInstance, - /* [annotation] */ - __in UINT InstanceCount, - /* [annotation] */ - __in UINT StartIndexLocation, - /* [annotation] */ - __in INT BaseVertexLocation, - /* [annotation] */ - __in UINT StartInstanceLocation) = 0; - - virtual void STDMETHODCALLTYPE DrawInstanced( - /* [annotation] */ - __in UINT VertexCountPerInstance, - /* [annotation] */ - __in UINT InstanceCount, - /* [annotation] */ - __in UINT StartVertexLocation, - /* [annotation] */ - __in UINT StartInstanceLocation) = 0; - - virtual void STDMETHODCALLTYPE GSSetConstantBuffers( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) ID3D11Buffer *const *ppConstantBuffers) = 0; - - virtual void STDMETHODCALLTYPE GSSetShader( - /* [annotation] */ - __in_opt ID3D11GeometryShader *pShader, - /* [annotation] */ - __in_ecount_opt(NumClassInstances) ID3D11ClassInstance *const *ppClassInstances, - UINT NumClassInstances) = 0; - - virtual void STDMETHODCALLTYPE IASetPrimitiveTopology( - /* [annotation] */ - __in D3D11_PRIMITIVE_TOPOLOGY Topology) = 0; - - virtual void STDMETHODCALLTYPE VSSetShaderResources( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __in_ecount(NumViews) ID3D11ShaderResourceView *const *ppShaderResourceViews) = 0; - - virtual void STDMETHODCALLTYPE VSSetSamplers( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __in_ecount(NumSamplers) ID3D11SamplerState *const *ppSamplers) = 0; - - virtual void STDMETHODCALLTYPE Begin( - /* [annotation] */ - __in ID3D11Asynchronous *pAsync) = 0; - - virtual void STDMETHODCALLTYPE End( - /* [annotation] */ - __in ID3D11Asynchronous *pAsync) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetData( - /* [annotation] */ - __in ID3D11Asynchronous *pAsync, - /* [annotation] */ - __out_bcount_opt( DataSize ) void *pData, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in UINT GetDataFlags) = 0; - - virtual void STDMETHODCALLTYPE SetPredication( - /* [annotation] */ - __in_opt ID3D11Predicate *pPredicate, - /* [annotation] */ - __in BOOL PredicateValue) = 0; - - virtual void STDMETHODCALLTYPE GSSetShaderResources( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __in_ecount(NumViews) ID3D11ShaderResourceView *const *ppShaderResourceViews) = 0; - - virtual void STDMETHODCALLTYPE GSSetSamplers( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __in_ecount(NumSamplers) ID3D11SamplerState *const *ppSamplers) = 0; - - virtual void STDMETHODCALLTYPE OMSetRenderTargets( - /* [annotation] */ - __in_range( 0, D3D11_SIMULTANEOUS_RENDER_TARGET_COUNT ) UINT NumViews, - /* [annotation] */ - __in_ecount_opt(NumViews) ID3D11RenderTargetView *const *ppRenderTargetViews, - /* [annotation] */ - __in_opt ID3D11DepthStencilView *pDepthStencilView) = 0; - - virtual void STDMETHODCALLTYPE OMSetRenderTargetsAndUnorderedAccessViews( - /* [annotation] */ - __in UINT NumRTVs, - /* [annotation] */ - __in_ecount_opt(NumRTVs) ID3D11RenderTargetView *const *ppRenderTargetViews, - /* [annotation] */ - __in_opt ID3D11DepthStencilView *pDepthStencilView, - /* [annotation] */ - __in_range( 0, D3D11_PS_CS_UAV_REGISTER_COUNT - 1 ) UINT UAVStartSlot, - /* [annotation] */ - __in UINT NumUAVs, - /* [annotation] */ - __in_ecount_opt(NumUAVs) ID3D11UnorderedAccessView *const *ppUnorderedAccessViews, - /* [annotation] */ - __in_ecount_opt(NumUAVs) const UINT *pUAVInitialCounts) = 0; - - virtual void STDMETHODCALLTYPE OMSetBlendState( - /* [annotation] */ - __in_opt ID3D11BlendState *pBlendState, - /* [annotation] */ - __in_opt const FLOAT BlendFactor[ 4 ], - /* [annotation] */ - __in UINT SampleMask) = 0; - - virtual void STDMETHODCALLTYPE OMSetDepthStencilState( - /* [annotation] */ - __in_opt ID3D11DepthStencilState *pDepthStencilState, - /* [annotation] */ - __in UINT StencilRef) = 0; - - virtual void STDMETHODCALLTYPE SOSetTargets( - /* [annotation] */ - __in_range( 0, D3D11_SO_BUFFER_SLOT_COUNT) UINT NumBuffers, - /* [annotation] */ - __in_ecount_opt(NumBuffers) ID3D11Buffer *const *ppSOTargets, - /* [annotation] */ - __in_ecount_opt(NumBuffers) const UINT *pOffsets) = 0; - - virtual void STDMETHODCALLTYPE DrawAuto( void) = 0; - - virtual void STDMETHODCALLTYPE DrawIndexedInstancedIndirect( - /* [annotation] */ - __in ID3D11Buffer *pBufferForArgs, - /* [annotation] */ - __in UINT AlignedByteOffsetForArgs) = 0; - - virtual void STDMETHODCALLTYPE DrawInstancedIndirect( - /* [annotation] */ - __in ID3D11Buffer *pBufferForArgs, - /* [annotation] */ - __in UINT AlignedByteOffsetForArgs) = 0; - - virtual void STDMETHODCALLTYPE Dispatch( - /* [annotation] */ - __in UINT ThreadGroupCountX, - /* [annotation] */ - __in UINT ThreadGroupCountY, - /* [annotation] */ - __in UINT ThreadGroupCountZ) = 0; - - virtual void STDMETHODCALLTYPE DispatchIndirect( - /* [annotation] */ - __in ID3D11Buffer *pBufferForArgs, - /* [annotation] */ - __in UINT AlignedByteOffsetForArgs) = 0; - - virtual void STDMETHODCALLTYPE RSSetState( - /* [annotation] */ - __in_opt ID3D11RasterizerState *pRasterizerState) = 0; - - virtual void STDMETHODCALLTYPE RSSetViewports( - /* [annotation] */ - __in_range(0, D3D11_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE) UINT NumViewports, - /* [annotation] */ - __in_ecount_opt(NumViewports) const D3D11_VIEWPORT *pViewports) = 0; - - virtual void STDMETHODCALLTYPE RSSetScissorRects( - /* [annotation] */ - __in_range(0, D3D11_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE) UINT NumRects, - /* [annotation] */ - __in_ecount_opt(NumRects) const D3D11_RECT *pRects) = 0; - - virtual void STDMETHODCALLTYPE CopySubresourceRegion( - /* [annotation] */ - __in ID3D11Resource *pDstResource, - /* [annotation] */ - __in UINT DstSubresource, - /* [annotation] */ - __in UINT DstX, - /* [annotation] */ - __in UINT DstY, - /* [annotation] */ - __in UINT DstZ, - /* [annotation] */ - __in ID3D11Resource *pSrcResource, - /* [annotation] */ - __in UINT SrcSubresource, - /* [annotation] */ - __in_opt const D3D11_BOX *pSrcBox) = 0; - - virtual void STDMETHODCALLTYPE CopyResource( - /* [annotation] */ - __in ID3D11Resource *pDstResource, - /* [annotation] */ - __in ID3D11Resource *pSrcResource) = 0; - - virtual void STDMETHODCALLTYPE UpdateSubresource( - /* [annotation] */ - __in ID3D11Resource *pDstResource, - /* [annotation] */ - __in UINT DstSubresource, - /* [annotation] */ - __in_opt const D3D11_BOX *pDstBox, - /* [annotation] */ - __in const void *pSrcData, - /* [annotation] */ - __in UINT SrcRowPitch, - /* [annotation] */ - __in UINT SrcDepthPitch) = 0; - - virtual void STDMETHODCALLTYPE CopyStructureCount( - /* [annotation] */ - __in ID3D11Buffer *pDstBuffer, - /* [annotation] */ - __in UINT DstAlignedByteOffset, - /* [annotation] */ - __in ID3D11UnorderedAccessView *pSrcView) = 0; - - virtual void STDMETHODCALLTYPE ClearRenderTargetView( - /* [annotation] */ - __in ID3D11RenderTargetView *pRenderTargetView, - /* [annotation] */ - __in const FLOAT ColorRGBA[ 4 ]) = 0; - - virtual void STDMETHODCALLTYPE ClearUnorderedAccessViewUint( - /* [annotation] */ - __in ID3D11UnorderedAccessView *pUnorderedAccessView, - /* [annotation] */ - __in const UINT Values[ 4 ]) = 0; - - virtual void STDMETHODCALLTYPE ClearUnorderedAccessViewFloat( - /* [annotation] */ - __in ID3D11UnorderedAccessView *pUnorderedAccessView, - /* [annotation] */ - __in const FLOAT Values[ 4 ]) = 0; - - virtual void STDMETHODCALLTYPE ClearDepthStencilView( - /* [annotation] */ - __in ID3D11DepthStencilView *pDepthStencilView, - /* [annotation] */ - __in UINT ClearFlags, - /* [annotation] */ - __in FLOAT Depth, - /* [annotation] */ - __in UINT8 Stencil) = 0; - - virtual void STDMETHODCALLTYPE GenerateMips( - /* [annotation] */ - __in ID3D11ShaderResourceView *pShaderResourceView) = 0; - - virtual void STDMETHODCALLTYPE SetResourceMinLOD( - /* [annotation] */ - __in ID3D11Resource *pResource, - FLOAT MinLOD) = 0; - - virtual FLOAT STDMETHODCALLTYPE GetResourceMinLOD( - /* [annotation] */ - __in ID3D11Resource *pResource) = 0; - - virtual void STDMETHODCALLTYPE ResolveSubresource( - /* [annotation] */ - __in ID3D11Resource *pDstResource, - /* [annotation] */ - __in UINT DstSubresource, - /* [annotation] */ - __in ID3D11Resource *pSrcResource, - /* [annotation] */ - __in UINT SrcSubresource, - /* [annotation] */ - __in DXGI_FORMAT Format) = 0; - - virtual void STDMETHODCALLTYPE ExecuteCommandList( - /* [annotation] */ - __in ID3D11CommandList *pCommandList, - BOOL RestoreContextState) = 0; - - virtual void STDMETHODCALLTYPE HSSetShaderResources( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __in_ecount(NumViews) ID3D11ShaderResourceView *const *ppShaderResourceViews) = 0; - - virtual void STDMETHODCALLTYPE HSSetShader( - /* [annotation] */ - __in_opt ID3D11HullShader *pHullShader, - /* [annotation] */ - __in_ecount_opt(NumClassInstances) ID3D11ClassInstance *const *ppClassInstances, - UINT NumClassInstances) = 0; - - virtual void STDMETHODCALLTYPE HSSetSamplers( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __in_ecount(NumSamplers) ID3D11SamplerState *const *ppSamplers) = 0; - - virtual void STDMETHODCALLTYPE HSSetConstantBuffers( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) ID3D11Buffer *const *ppConstantBuffers) = 0; - - virtual void STDMETHODCALLTYPE DSSetShaderResources( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __in_ecount(NumViews) ID3D11ShaderResourceView *const *ppShaderResourceViews) = 0; - - virtual void STDMETHODCALLTYPE DSSetShader( - /* [annotation] */ - __in_opt ID3D11DomainShader *pDomainShader, - /* [annotation] */ - __in_ecount_opt(NumClassInstances) ID3D11ClassInstance *const *ppClassInstances, - UINT NumClassInstances) = 0; - - virtual void STDMETHODCALLTYPE DSSetSamplers( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __in_ecount(NumSamplers) ID3D11SamplerState *const *ppSamplers) = 0; - - virtual void STDMETHODCALLTYPE DSSetConstantBuffers( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) ID3D11Buffer *const *ppConstantBuffers) = 0; - - virtual void STDMETHODCALLTYPE CSSetShaderResources( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __in_ecount(NumViews) ID3D11ShaderResourceView *const *ppShaderResourceViews) = 0; - - virtual void STDMETHODCALLTYPE CSSetUnorderedAccessViews( - /* [annotation] */ - __in_range( 0, D3D11_PS_CS_UAV_REGISTER_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_PS_CS_UAV_REGISTER_COUNT - StartSlot ) UINT NumUAVs, - /* [annotation] */ - __in_ecount(NumUAVs) ID3D11UnorderedAccessView *const *ppUnorderedAccessViews, - /* [annotation] */ - __in_ecount(NumUAVs) const UINT *pUAVInitialCounts) = 0; - - virtual void STDMETHODCALLTYPE CSSetShader( - /* [annotation] */ - __in_opt ID3D11ComputeShader *pComputeShader, - /* [annotation] */ - __in_ecount_opt(NumClassInstances) ID3D11ClassInstance *const *ppClassInstances, - UINT NumClassInstances) = 0; - - virtual void STDMETHODCALLTYPE CSSetSamplers( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __in_ecount(NumSamplers) ID3D11SamplerState *const *ppSamplers) = 0; - - virtual void STDMETHODCALLTYPE CSSetConstantBuffers( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) ID3D11Buffer *const *ppConstantBuffers) = 0; - - virtual void STDMETHODCALLTYPE VSGetConstantBuffers( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __out_ecount(NumBuffers) ID3D11Buffer **ppConstantBuffers) = 0; - - virtual void STDMETHODCALLTYPE PSGetShaderResources( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __out_ecount(NumViews) ID3D11ShaderResourceView **ppShaderResourceViews) = 0; - - virtual void STDMETHODCALLTYPE PSGetShader( - /* [annotation] */ - __out ID3D11PixelShader **ppPixelShader, - /* [annotation] */ - __out_ecount_opt(*pNumClassInstances) ID3D11ClassInstance **ppClassInstances, - /* [annotation] */ - __inout_opt UINT *pNumClassInstances) = 0; - - virtual void STDMETHODCALLTYPE PSGetSamplers( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __out_ecount(NumSamplers) ID3D11SamplerState **ppSamplers) = 0; - - virtual void STDMETHODCALLTYPE VSGetShader( - /* [annotation] */ - __out ID3D11VertexShader **ppVertexShader, - /* [annotation] */ - __out_ecount_opt(*pNumClassInstances) ID3D11ClassInstance **ppClassInstances, - /* [annotation] */ - __inout_opt UINT *pNumClassInstances) = 0; - - virtual void STDMETHODCALLTYPE PSGetConstantBuffers( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __out_ecount(NumBuffers) ID3D11Buffer **ppConstantBuffers) = 0; - - virtual void STDMETHODCALLTYPE IAGetInputLayout( - /* [annotation] */ - __out ID3D11InputLayout **ppInputLayout) = 0; - - virtual void STDMETHODCALLTYPE IAGetVertexBuffers( - /* [annotation] */ - __in_range( 0, D3D11_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __out_ecount_opt(NumBuffers) ID3D11Buffer **ppVertexBuffers, - /* [annotation] */ - __out_ecount_opt(NumBuffers) UINT *pStrides, - /* [annotation] */ - __out_ecount_opt(NumBuffers) UINT *pOffsets) = 0; - - virtual void STDMETHODCALLTYPE IAGetIndexBuffer( - /* [annotation] */ - __out_opt ID3D11Buffer **pIndexBuffer, - /* [annotation] */ - __out_opt DXGI_FORMAT *Format, - /* [annotation] */ - __out_opt UINT *Offset) = 0; - - virtual void STDMETHODCALLTYPE GSGetConstantBuffers( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __out_ecount(NumBuffers) ID3D11Buffer **ppConstantBuffers) = 0; - - virtual void STDMETHODCALLTYPE GSGetShader( - /* [annotation] */ - __out ID3D11GeometryShader **ppGeometryShader, - /* [annotation] */ - __out_ecount_opt(*pNumClassInstances) ID3D11ClassInstance **ppClassInstances, - /* [annotation] */ - __inout_opt UINT *pNumClassInstances) = 0; - - virtual void STDMETHODCALLTYPE IAGetPrimitiveTopology( - /* [annotation] */ - __out D3D11_PRIMITIVE_TOPOLOGY *pTopology) = 0; - - virtual void STDMETHODCALLTYPE VSGetShaderResources( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __out_ecount(NumViews) ID3D11ShaderResourceView **ppShaderResourceViews) = 0; - - virtual void STDMETHODCALLTYPE VSGetSamplers( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __out_ecount(NumSamplers) ID3D11SamplerState **ppSamplers) = 0; - - virtual void STDMETHODCALLTYPE GetPredication( - /* [annotation] */ - __out_opt ID3D11Predicate **ppPredicate, - /* [annotation] */ - __out_opt BOOL *pPredicateValue) = 0; - - virtual void STDMETHODCALLTYPE GSGetShaderResources( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __out_ecount(NumViews) ID3D11ShaderResourceView **ppShaderResourceViews) = 0; - - virtual void STDMETHODCALLTYPE GSGetSamplers( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __out_ecount(NumSamplers) ID3D11SamplerState **ppSamplers) = 0; - - virtual void STDMETHODCALLTYPE OMGetRenderTargets( - /* [annotation] */ - __in_range( 0, D3D11_SIMULTANEOUS_RENDER_TARGET_COUNT ) UINT NumViews, - /* [annotation] */ - __out_ecount_opt(NumViews) ID3D11RenderTargetView **ppRenderTargetViews, - /* [annotation] */ - __out_opt ID3D11DepthStencilView **ppDepthStencilView) = 0; - - virtual void STDMETHODCALLTYPE OMGetRenderTargetsAndUnorderedAccessViews( - /* [annotation] */ - __in_range( 0, D3D11_SIMULTANEOUS_RENDER_TARGET_COUNT ) UINT NumRTVs, - /* [annotation] */ - __out_ecount_opt(NumRTVs) ID3D11RenderTargetView **ppRenderTargetViews, - /* [annotation] */ - __out_opt ID3D11DepthStencilView **ppDepthStencilView, - /* [annotation] */ - __in_range( 0, D3D11_PS_CS_UAV_REGISTER_COUNT - 1 ) UINT UAVStartSlot, - /* [annotation] */ - __in_range( 0, D3D11_PS_CS_UAV_REGISTER_COUNT - UAVStartSlot ) UINT NumUAVs, - /* [annotation] */ - __out_ecount_opt(NumUAVs) ID3D11UnorderedAccessView **ppUnorderedAccessViews) = 0; - - virtual void STDMETHODCALLTYPE OMGetBlendState( - /* [annotation] */ - __out_opt ID3D11BlendState **ppBlendState, - /* [annotation] */ - __out_opt FLOAT BlendFactor[ 4 ], - /* [annotation] */ - __out_opt UINT *pSampleMask) = 0; - - virtual void STDMETHODCALLTYPE OMGetDepthStencilState( - /* [annotation] */ - __out_opt ID3D11DepthStencilState **ppDepthStencilState, - /* [annotation] */ - __out_opt UINT *pStencilRef) = 0; - - virtual void STDMETHODCALLTYPE SOGetTargets( - /* [annotation] */ - __in_range( 0, D3D11_SO_BUFFER_SLOT_COUNT ) UINT NumBuffers, - /* [annotation] */ - __out_ecount(NumBuffers) ID3D11Buffer **ppSOTargets) = 0; - - virtual void STDMETHODCALLTYPE RSGetState( - /* [annotation] */ - __out ID3D11RasterizerState **ppRasterizerState) = 0; - - virtual void STDMETHODCALLTYPE RSGetViewports( - /* [annotation] */ - __inout /*_range(0, D3D11_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE )*/ UINT *pNumViewports, - /* [annotation] */ - __out_ecount_opt(*pNumViewports) D3D11_VIEWPORT *pViewports) = 0; - - virtual void STDMETHODCALLTYPE RSGetScissorRects( - /* [annotation] */ - __inout /*_range(0, D3D11_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE )*/ UINT *pNumRects, - /* [annotation] */ - __out_ecount_opt(*pNumRects) D3D11_RECT *pRects) = 0; - - virtual void STDMETHODCALLTYPE HSGetShaderResources( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __out_ecount(NumViews) ID3D11ShaderResourceView **ppShaderResourceViews) = 0; - - virtual void STDMETHODCALLTYPE HSGetShader( - /* [annotation] */ - __out ID3D11HullShader **ppHullShader, - /* [annotation] */ - __out_ecount_opt(*pNumClassInstances) ID3D11ClassInstance **ppClassInstances, - /* [annotation] */ - __inout_opt UINT *pNumClassInstances) = 0; - - virtual void STDMETHODCALLTYPE HSGetSamplers( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __out_ecount(NumSamplers) ID3D11SamplerState **ppSamplers) = 0; - - virtual void STDMETHODCALLTYPE HSGetConstantBuffers( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __out_ecount(NumBuffers) ID3D11Buffer **ppConstantBuffers) = 0; - - virtual void STDMETHODCALLTYPE DSGetShaderResources( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __out_ecount(NumViews) ID3D11ShaderResourceView **ppShaderResourceViews) = 0; - - virtual void STDMETHODCALLTYPE DSGetShader( - /* [annotation] */ - __out ID3D11DomainShader **ppDomainShader, - /* [annotation] */ - __out_ecount_opt(*pNumClassInstances) ID3D11ClassInstance **ppClassInstances, - /* [annotation] */ - __inout_opt UINT *pNumClassInstances) = 0; - - virtual void STDMETHODCALLTYPE DSGetSamplers( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __out_ecount(NumSamplers) ID3D11SamplerState **ppSamplers) = 0; - - virtual void STDMETHODCALLTYPE DSGetConstantBuffers( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __out_ecount(NumBuffers) ID3D11Buffer **ppConstantBuffers) = 0; - - virtual void STDMETHODCALLTYPE CSGetShaderResources( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __out_ecount(NumViews) ID3D11ShaderResourceView **ppShaderResourceViews) = 0; - - virtual void STDMETHODCALLTYPE CSGetUnorderedAccessViews( - /* [annotation] */ - __in_range( 0, D3D11_PS_CS_UAV_REGISTER_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_PS_CS_UAV_REGISTER_COUNT - StartSlot ) UINT NumUAVs, - /* [annotation] */ - __out_ecount(NumUAVs) ID3D11UnorderedAccessView **ppUnorderedAccessViews) = 0; - - virtual void STDMETHODCALLTYPE CSGetShader( - /* [annotation] */ - __out ID3D11ComputeShader **ppComputeShader, - /* [annotation] */ - __out_ecount_opt(*pNumClassInstances) ID3D11ClassInstance **ppClassInstances, - /* [annotation] */ - __inout_opt UINT *pNumClassInstances) = 0; - - virtual void STDMETHODCALLTYPE CSGetSamplers( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __out_ecount(NumSamplers) ID3D11SamplerState **ppSamplers) = 0; - - virtual void STDMETHODCALLTYPE CSGetConstantBuffers( - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __out_ecount(NumBuffers) ID3D11Buffer **ppConstantBuffers) = 0; - - virtual void STDMETHODCALLTYPE ClearState( void) = 0; - - virtual void STDMETHODCALLTYPE Flush( void) = 0; - - virtual D3D11_DEVICE_CONTEXT_TYPE STDMETHODCALLTYPE GetType( void) = 0; - - virtual UINT STDMETHODCALLTYPE GetContextFlags( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE FinishCommandList( - BOOL RestoreDeferredContextState, - /* [annotation] */ - __out_opt ID3D11CommandList **ppCommandList) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D11DeviceContextVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11DeviceContext * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11DeviceContext * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11DeviceContext * This); - - void ( STDMETHODCALLTYPE *GetDevice )( - ID3D11DeviceContext * This, - /* [annotation] */ - __out ID3D11Device **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt( *pDataSize ) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt( DataSize ) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - void ( STDMETHODCALLTYPE *VSSetConstantBuffers )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) ID3D11Buffer *const *ppConstantBuffers); - - void ( STDMETHODCALLTYPE *PSSetShaderResources )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __in_ecount(NumViews) ID3D11ShaderResourceView *const *ppShaderResourceViews); - - void ( STDMETHODCALLTYPE *PSSetShader )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_opt ID3D11PixelShader *pPixelShader, - /* [annotation] */ - __in_ecount_opt(NumClassInstances) ID3D11ClassInstance *const *ppClassInstances, - UINT NumClassInstances); - - void ( STDMETHODCALLTYPE *PSSetSamplers )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __in_ecount(NumSamplers) ID3D11SamplerState *const *ppSamplers); - - void ( STDMETHODCALLTYPE *VSSetShader )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_opt ID3D11VertexShader *pVertexShader, - /* [annotation] */ - __in_ecount_opt(NumClassInstances) ID3D11ClassInstance *const *ppClassInstances, - UINT NumClassInstances); - - void ( STDMETHODCALLTYPE *DrawIndexed )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in UINT IndexCount, - /* [annotation] */ - __in UINT StartIndexLocation, - /* [annotation] */ - __in INT BaseVertexLocation); - - void ( STDMETHODCALLTYPE *Draw )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in UINT VertexCount, - /* [annotation] */ - __in UINT StartVertexLocation); - - HRESULT ( STDMETHODCALLTYPE *Map )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in ID3D11Resource *pResource, - /* [annotation] */ - __in UINT Subresource, - /* [annotation] */ - __in D3D11_MAP MapType, - /* [annotation] */ - __in UINT MapFlags, - /* [annotation] */ - __out D3D11_MAPPED_SUBRESOURCE *pMappedResource); - - void ( STDMETHODCALLTYPE *Unmap )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in ID3D11Resource *pResource, - /* [annotation] */ - __in UINT Subresource); - - void ( STDMETHODCALLTYPE *PSSetConstantBuffers )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) ID3D11Buffer *const *ppConstantBuffers); - - void ( STDMETHODCALLTYPE *IASetInputLayout )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_opt ID3D11InputLayout *pInputLayout); - - void ( STDMETHODCALLTYPE *IASetVertexBuffers )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) ID3D11Buffer *const *ppVertexBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) const UINT *pStrides, - /* [annotation] */ - __in_ecount(NumBuffers) const UINT *pOffsets); - - void ( STDMETHODCALLTYPE *IASetIndexBuffer )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_opt ID3D11Buffer *pIndexBuffer, - /* [annotation] */ - __in DXGI_FORMAT Format, - /* [annotation] */ - __in UINT Offset); - - void ( STDMETHODCALLTYPE *DrawIndexedInstanced )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in UINT IndexCountPerInstance, - /* [annotation] */ - __in UINT InstanceCount, - /* [annotation] */ - __in UINT StartIndexLocation, - /* [annotation] */ - __in INT BaseVertexLocation, - /* [annotation] */ - __in UINT StartInstanceLocation); - - void ( STDMETHODCALLTYPE *DrawInstanced )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in UINT VertexCountPerInstance, - /* [annotation] */ - __in UINT InstanceCount, - /* [annotation] */ - __in UINT StartVertexLocation, - /* [annotation] */ - __in UINT StartInstanceLocation); - - void ( STDMETHODCALLTYPE *GSSetConstantBuffers )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) ID3D11Buffer *const *ppConstantBuffers); - - void ( STDMETHODCALLTYPE *GSSetShader )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_opt ID3D11GeometryShader *pShader, - /* [annotation] */ - __in_ecount_opt(NumClassInstances) ID3D11ClassInstance *const *ppClassInstances, - UINT NumClassInstances); - - void ( STDMETHODCALLTYPE *IASetPrimitiveTopology )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in D3D11_PRIMITIVE_TOPOLOGY Topology); - - void ( STDMETHODCALLTYPE *VSSetShaderResources )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __in_ecount(NumViews) ID3D11ShaderResourceView *const *ppShaderResourceViews); - - void ( STDMETHODCALLTYPE *VSSetSamplers )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __in_ecount(NumSamplers) ID3D11SamplerState *const *ppSamplers); - - void ( STDMETHODCALLTYPE *Begin )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in ID3D11Asynchronous *pAsync); - - void ( STDMETHODCALLTYPE *End )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in ID3D11Asynchronous *pAsync); - - HRESULT ( STDMETHODCALLTYPE *GetData )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in ID3D11Asynchronous *pAsync, - /* [annotation] */ - __out_bcount_opt( DataSize ) void *pData, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in UINT GetDataFlags); - - void ( STDMETHODCALLTYPE *SetPredication )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_opt ID3D11Predicate *pPredicate, - /* [annotation] */ - __in BOOL PredicateValue); - - void ( STDMETHODCALLTYPE *GSSetShaderResources )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __in_ecount(NumViews) ID3D11ShaderResourceView *const *ppShaderResourceViews); - - void ( STDMETHODCALLTYPE *GSSetSamplers )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __in_ecount(NumSamplers) ID3D11SamplerState *const *ppSamplers); - - void ( STDMETHODCALLTYPE *OMSetRenderTargets )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_SIMULTANEOUS_RENDER_TARGET_COUNT ) UINT NumViews, - /* [annotation] */ - __in_ecount_opt(NumViews) ID3D11RenderTargetView *const *ppRenderTargetViews, - /* [annotation] */ - __in_opt ID3D11DepthStencilView *pDepthStencilView); - - void ( STDMETHODCALLTYPE *OMSetRenderTargetsAndUnorderedAccessViews )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in UINT NumRTVs, - /* [annotation] */ - __in_ecount_opt(NumRTVs) ID3D11RenderTargetView *const *ppRenderTargetViews, - /* [annotation] */ - __in_opt ID3D11DepthStencilView *pDepthStencilView, - /* [annotation] */ - __in_range( 0, D3D11_PS_CS_UAV_REGISTER_COUNT - 1 ) UINT UAVStartSlot, - /* [annotation] */ - __in UINT NumUAVs, - /* [annotation] */ - __in_ecount_opt(NumUAVs) ID3D11UnorderedAccessView *const *ppUnorderedAccessViews, - /* [annotation] */ - __in_ecount_opt(NumUAVs) const UINT *pUAVInitialCounts); - - void ( STDMETHODCALLTYPE *OMSetBlendState )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_opt ID3D11BlendState *pBlendState, - /* [annotation] */ - __in_opt const FLOAT BlendFactor[ 4 ], - /* [annotation] */ - __in UINT SampleMask); - - void ( STDMETHODCALLTYPE *OMSetDepthStencilState )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_opt ID3D11DepthStencilState *pDepthStencilState, - /* [annotation] */ - __in UINT StencilRef); - - void ( STDMETHODCALLTYPE *SOSetTargets )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_SO_BUFFER_SLOT_COUNT) UINT NumBuffers, - /* [annotation] */ - __in_ecount_opt(NumBuffers) ID3D11Buffer *const *ppSOTargets, - /* [annotation] */ - __in_ecount_opt(NumBuffers) const UINT *pOffsets); - - void ( STDMETHODCALLTYPE *DrawAuto )( - ID3D11DeviceContext * This); - - void ( STDMETHODCALLTYPE *DrawIndexedInstancedIndirect )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in ID3D11Buffer *pBufferForArgs, - /* [annotation] */ - __in UINT AlignedByteOffsetForArgs); - - void ( STDMETHODCALLTYPE *DrawInstancedIndirect )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in ID3D11Buffer *pBufferForArgs, - /* [annotation] */ - __in UINT AlignedByteOffsetForArgs); - - void ( STDMETHODCALLTYPE *Dispatch )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in UINT ThreadGroupCountX, - /* [annotation] */ - __in UINT ThreadGroupCountY, - /* [annotation] */ - __in UINT ThreadGroupCountZ); - - void ( STDMETHODCALLTYPE *DispatchIndirect )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in ID3D11Buffer *pBufferForArgs, - /* [annotation] */ - __in UINT AlignedByteOffsetForArgs); - - void ( STDMETHODCALLTYPE *RSSetState )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_opt ID3D11RasterizerState *pRasterizerState); - - void ( STDMETHODCALLTYPE *RSSetViewports )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range(0, D3D11_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE) UINT NumViewports, - /* [annotation] */ - __in_ecount_opt(NumViewports) const D3D11_VIEWPORT *pViewports); - - void ( STDMETHODCALLTYPE *RSSetScissorRects )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range(0, D3D11_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE) UINT NumRects, - /* [annotation] */ - __in_ecount_opt(NumRects) const D3D11_RECT *pRects); - - void ( STDMETHODCALLTYPE *CopySubresourceRegion )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in ID3D11Resource *pDstResource, - /* [annotation] */ - __in UINT DstSubresource, - /* [annotation] */ - __in UINT DstX, - /* [annotation] */ - __in UINT DstY, - /* [annotation] */ - __in UINT DstZ, - /* [annotation] */ - __in ID3D11Resource *pSrcResource, - /* [annotation] */ - __in UINT SrcSubresource, - /* [annotation] */ - __in_opt const D3D11_BOX *pSrcBox); - - void ( STDMETHODCALLTYPE *CopyResource )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in ID3D11Resource *pDstResource, - /* [annotation] */ - __in ID3D11Resource *pSrcResource); - - void ( STDMETHODCALLTYPE *UpdateSubresource )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in ID3D11Resource *pDstResource, - /* [annotation] */ - __in UINT DstSubresource, - /* [annotation] */ - __in_opt const D3D11_BOX *pDstBox, - /* [annotation] */ - __in const void *pSrcData, - /* [annotation] */ - __in UINT SrcRowPitch, - /* [annotation] */ - __in UINT SrcDepthPitch); - - void ( STDMETHODCALLTYPE *CopyStructureCount )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in ID3D11Buffer *pDstBuffer, - /* [annotation] */ - __in UINT DstAlignedByteOffset, - /* [annotation] */ - __in ID3D11UnorderedAccessView *pSrcView); - - void ( STDMETHODCALLTYPE *ClearRenderTargetView )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in ID3D11RenderTargetView *pRenderTargetView, - /* [annotation] */ - __in const FLOAT ColorRGBA[ 4 ]); - - void ( STDMETHODCALLTYPE *ClearUnorderedAccessViewUint )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in ID3D11UnorderedAccessView *pUnorderedAccessView, - /* [annotation] */ - __in const UINT Values[ 4 ]); - - void ( STDMETHODCALLTYPE *ClearUnorderedAccessViewFloat )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in ID3D11UnorderedAccessView *pUnorderedAccessView, - /* [annotation] */ - __in const FLOAT Values[ 4 ]); - - void ( STDMETHODCALLTYPE *ClearDepthStencilView )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in ID3D11DepthStencilView *pDepthStencilView, - /* [annotation] */ - __in UINT ClearFlags, - /* [annotation] */ - __in FLOAT Depth, - /* [annotation] */ - __in UINT8 Stencil); - - void ( STDMETHODCALLTYPE *GenerateMips )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in ID3D11ShaderResourceView *pShaderResourceView); - - void ( STDMETHODCALLTYPE *SetResourceMinLOD )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in ID3D11Resource *pResource, - FLOAT MinLOD); - - FLOAT ( STDMETHODCALLTYPE *GetResourceMinLOD )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in ID3D11Resource *pResource); - - void ( STDMETHODCALLTYPE *ResolveSubresource )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in ID3D11Resource *pDstResource, - /* [annotation] */ - __in UINT DstSubresource, - /* [annotation] */ - __in ID3D11Resource *pSrcResource, - /* [annotation] */ - __in UINT SrcSubresource, - /* [annotation] */ - __in DXGI_FORMAT Format); - - void ( STDMETHODCALLTYPE *ExecuteCommandList )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in ID3D11CommandList *pCommandList, - BOOL RestoreContextState); - - void ( STDMETHODCALLTYPE *HSSetShaderResources )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __in_ecount(NumViews) ID3D11ShaderResourceView *const *ppShaderResourceViews); - - void ( STDMETHODCALLTYPE *HSSetShader )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_opt ID3D11HullShader *pHullShader, - /* [annotation] */ - __in_ecount_opt(NumClassInstances) ID3D11ClassInstance *const *ppClassInstances, - UINT NumClassInstances); - - void ( STDMETHODCALLTYPE *HSSetSamplers )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __in_ecount(NumSamplers) ID3D11SamplerState *const *ppSamplers); - - void ( STDMETHODCALLTYPE *HSSetConstantBuffers )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) ID3D11Buffer *const *ppConstantBuffers); - - void ( STDMETHODCALLTYPE *DSSetShaderResources )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __in_ecount(NumViews) ID3D11ShaderResourceView *const *ppShaderResourceViews); - - void ( STDMETHODCALLTYPE *DSSetShader )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_opt ID3D11DomainShader *pDomainShader, - /* [annotation] */ - __in_ecount_opt(NumClassInstances) ID3D11ClassInstance *const *ppClassInstances, - UINT NumClassInstances); - - void ( STDMETHODCALLTYPE *DSSetSamplers )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __in_ecount(NumSamplers) ID3D11SamplerState *const *ppSamplers); - - void ( STDMETHODCALLTYPE *DSSetConstantBuffers )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) ID3D11Buffer *const *ppConstantBuffers); - - void ( STDMETHODCALLTYPE *CSSetShaderResources )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __in_ecount(NumViews) ID3D11ShaderResourceView *const *ppShaderResourceViews); - - void ( STDMETHODCALLTYPE *CSSetUnorderedAccessViews )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_PS_CS_UAV_REGISTER_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_PS_CS_UAV_REGISTER_COUNT - StartSlot ) UINT NumUAVs, - /* [annotation] */ - __in_ecount(NumUAVs) ID3D11UnorderedAccessView *const *ppUnorderedAccessViews, - /* [annotation] */ - __in_ecount(NumUAVs) const UINT *pUAVInitialCounts); - - void ( STDMETHODCALLTYPE *CSSetShader )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_opt ID3D11ComputeShader *pComputeShader, - /* [annotation] */ - __in_ecount_opt(NumClassInstances) ID3D11ClassInstance *const *ppClassInstances, - UINT NumClassInstances); - - void ( STDMETHODCALLTYPE *CSSetSamplers )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __in_ecount(NumSamplers) ID3D11SamplerState *const *ppSamplers); - - void ( STDMETHODCALLTYPE *CSSetConstantBuffers )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __in_ecount(NumBuffers) ID3D11Buffer *const *ppConstantBuffers); - - void ( STDMETHODCALLTYPE *VSGetConstantBuffers )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __out_ecount(NumBuffers) ID3D11Buffer **ppConstantBuffers); - - void ( STDMETHODCALLTYPE *PSGetShaderResources )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __out_ecount(NumViews) ID3D11ShaderResourceView **ppShaderResourceViews); - - void ( STDMETHODCALLTYPE *PSGetShader )( - ID3D11DeviceContext * This, - /* [annotation] */ - __out ID3D11PixelShader **ppPixelShader, - /* [annotation] */ - __out_ecount_opt(*pNumClassInstances) ID3D11ClassInstance **ppClassInstances, - /* [annotation] */ - __inout_opt UINT *pNumClassInstances); - - void ( STDMETHODCALLTYPE *PSGetSamplers )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __out_ecount(NumSamplers) ID3D11SamplerState **ppSamplers); - - void ( STDMETHODCALLTYPE *VSGetShader )( - ID3D11DeviceContext * This, - /* [annotation] */ - __out ID3D11VertexShader **ppVertexShader, - /* [annotation] */ - __out_ecount_opt(*pNumClassInstances) ID3D11ClassInstance **ppClassInstances, - /* [annotation] */ - __inout_opt UINT *pNumClassInstances); - - void ( STDMETHODCALLTYPE *PSGetConstantBuffers )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __out_ecount(NumBuffers) ID3D11Buffer **ppConstantBuffers); - - void ( STDMETHODCALLTYPE *IAGetInputLayout )( - ID3D11DeviceContext * This, - /* [annotation] */ - __out ID3D11InputLayout **ppInputLayout); - - void ( STDMETHODCALLTYPE *IAGetVertexBuffers )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __out_ecount_opt(NumBuffers) ID3D11Buffer **ppVertexBuffers, - /* [annotation] */ - __out_ecount_opt(NumBuffers) UINT *pStrides, - /* [annotation] */ - __out_ecount_opt(NumBuffers) UINT *pOffsets); - - void ( STDMETHODCALLTYPE *IAGetIndexBuffer )( - ID3D11DeviceContext * This, - /* [annotation] */ - __out_opt ID3D11Buffer **pIndexBuffer, - /* [annotation] */ - __out_opt DXGI_FORMAT *Format, - /* [annotation] */ - __out_opt UINT *Offset); - - void ( STDMETHODCALLTYPE *GSGetConstantBuffers )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __out_ecount(NumBuffers) ID3D11Buffer **ppConstantBuffers); - - void ( STDMETHODCALLTYPE *GSGetShader )( - ID3D11DeviceContext * This, - /* [annotation] */ - __out ID3D11GeometryShader **ppGeometryShader, - /* [annotation] */ - __out_ecount_opt(*pNumClassInstances) ID3D11ClassInstance **ppClassInstances, - /* [annotation] */ - __inout_opt UINT *pNumClassInstances); - - void ( STDMETHODCALLTYPE *IAGetPrimitiveTopology )( - ID3D11DeviceContext * This, - /* [annotation] */ - __out D3D11_PRIMITIVE_TOPOLOGY *pTopology); - - void ( STDMETHODCALLTYPE *VSGetShaderResources )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __out_ecount(NumViews) ID3D11ShaderResourceView **ppShaderResourceViews); - - void ( STDMETHODCALLTYPE *VSGetSamplers )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __out_ecount(NumSamplers) ID3D11SamplerState **ppSamplers); - - void ( STDMETHODCALLTYPE *GetPredication )( - ID3D11DeviceContext * This, - /* [annotation] */ - __out_opt ID3D11Predicate **ppPredicate, - /* [annotation] */ - __out_opt BOOL *pPredicateValue); - - void ( STDMETHODCALLTYPE *GSGetShaderResources )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __out_ecount(NumViews) ID3D11ShaderResourceView **ppShaderResourceViews); - - void ( STDMETHODCALLTYPE *GSGetSamplers )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __out_ecount(NumSamplers) ID3D11SamplerState **ppSamplers); - - void ( STDMETHODCALLTYPE *OMGetRenderTargets )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_SIMULTANEOUS_RENDER_TARGET_COUNT ) UINT NumViews, - /* [annotation] */ - __out_ecount_opt(NumViews) ID3D11RenderTargetView **ppRenderTargetViews, - /* [annotation] */ - __out_opt ID3D11DepthStencilView **ppDepthStencilView); - - void ( STDMETHODCALLTYPE *OMGetRenderTargetsAndUnorderedAccessViews )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_SIMULTANEOUS_RENDER_TARGET_COUNT ) UINT NumRTVs, - /* [annotation] */ - __out_ecount_opt(NumRTVs) ID3D11RenderTargetView **ppRenderTargetViews, - /* [annotation] */ - __out_opt ID3D11DepthStencilView **ppDepthStencilView, - /* [annotation] */ - __in_range( 0, D3D11_PS_CS_UAV_REGISTER_COUNT - 1 ) UINT UAVStartSlot, - /* [annotation] */ - __in_range( 0, D3D11_PS_CS_UAV_REGISTER_COUNT - UAVStartSlot ) UINT NumUAVs, - /* [annotation] */ - __out_ecount_opt(NumUAVs) ID3D11UnorderedAccessView **ppUnorderedAccessViews); - - void ( STDMETHODCALLTYPE *OMGetBlendState )( - ID3D11DeviceContext * This, - /* [annotation] */ - __out_opt ID3D11BlendState **ppBlendState, - /* [annotation] */ - __out_opt FLOAT BlendFactor[ 4 ], - /* [annotation] */ - __out_opt UINT *pSampleMask); - - void ( STDMETHODCALLTYPE *OMGetDepthStencilState )( - ID3D11DeviceContext * This, - /* [annotation] */ - __out_opt ID3D11DepthStencilState **ppDepthStencilState, - /* [annotation] */ - __out_opt UINT *pStencilRef); - - void ( STDMETHODCALLTYPE *SOGetTargets )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_SO_BUFFER_SLOT_COUNT ) UINT NumBuffers, - /* [annotation] */ - __out_ecount(NumBuffers) ID3D11Buffer **ppSOTargets); - - void ( STDMETHODCALLTYPE *RSGetState )( - ID3D11DeviceContext * This, - /* [annotation] */ - __out ID3D11RasterizerState **ppRasterizerState); - - void ( STDMETHODCALLTYPE *RSGetViewports )( - ID3D11DeviceContext * This, - /* [annotation] */ - __inout /*_range(0, D3D11_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE )*/ UINT *pNumViewports, - /* [annotation] */ - __out_ecount_opt(*pNumViewports) D3D11_VIEWPORT *pViewports); - - void ( STDMETHODCALLTYPE *RSGetScissorRects )( - ID3D11DeviceContext * This, - /* [annotation] */ - __inout /*_range(0, D3D11_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE )*/ UINT *pNumRects, - /* [annotation] */ - __out_ecount_opt(*pNumRects) D3D11_RECT *pRects); - - void ( STDMETHODCALLTYPE *HSGetShaderResources )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __out_ecount(NumViews) ID3D11ShaderResourceView **ppShaderResourceViews); - - void ( STDMETHODCALLTYPE *HSGetShader )( - ID3D11DeviceContext * This, - /* [annotation] */ - __out ID3D11HullShader **ppHullShader, - /* [annotation] */ - __out_ecount_opt(*pNumClassInstances) ID3D11ClassInstance **ppClassInstances, - /* [annotation] */ - __inout_opt UINT *pNumClassInstances); - - void ( STDMETHODCALLTYPE *HSGetSamplers )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __out_ecount(NumSamplers) ID3D11SamplerState **ppSamplers); - - void ( STDMETHODCALLTYPE *HSGetConstantBuffers )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __out_ecount(NumBuffers) ID3D11Buffer **ppConstantBuffers); - - void ( STDMETHODCALLTYPE *DSGetShaderResources )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __out_ecount(NumViews) ID3D11ShaderResourceView **ppShaderResourceViews); - - void ( STDMETHODCALLTYPE *DSGetShader )( - ID3D11DeviceContext * This, - /* [annotation] */ - __out ID3D11DomainShader **ppDomainShader, - /* [annotation] */ - __out_ecount_opt(*pNumClassInstances) ID3D11ClassInstance **ppClassInstances, - /* [annotation] */ - __inout_opt UINT *pNumClassInstances); - - void ( STDMETHODCALLTYPE *DSGetSamplers )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __out_ecount(NumSamplers) ID3D11SamplerState **ppSamplers); - - void ( STDMETHODCALLTYPE *DSGetConstantBuffers )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __out_ecount(NumBuffers) ID3D11Buffer **ppConstantBuffers); - - void ( STDMETHODCALLTYPE *CSGetShaderResources )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot ) UINT NumViews, - /* [annotation] */ - __out_ecount(NumViews) ID3D11ShaderResourceView **ppShaderResourceViews); - - void ( STDMETHODCALLTYPE *CSGetUnorderedAccessViews )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_PS_CS_UAV_REGISTER_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_PS_CS_UAV_REGISTER_COUNT - StartSlot ) UINT NumUAVs, - /* [annotation] */ - __out_ecount(NumUAVs) ID3D11UnorderedAccessView **ppUnorderedAccessViews); - - void ( STDMETHODCALLTYPE *CSGetShader )( - ID3D11DeviceContext * This, - /* [annotation] */ - __out ID3D11ComputeShader **ppComputeShader, - /* [annotation] */ - __out_ecount_opt(*pNumClassInstances) ID3D11ClassInstance **ppClassInstances, - /* [annotation] */ - __inout_opt UINT *pNumClassInstances); - - void ( STDMETHODCALLTYPE *CSGetSamplers )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot ) UINT NumSamplers, - /* [annotation] */ - __out_ecount(NumSamplers) ID3D11SamplerState **ppSamplers); - - void ( STDMETHODCALLTYPE *CSGetConstantBuffers )( - ID3D11DeviceContext * This, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1 ) UINT StartSlot, - /* [annotation] */ - __in_range( 0, D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot ) UINT NumBuffers, - /* [annotation] */ - __out_ecount(NumBuffers) ID3D11Buffer **ppConstantBuffers); - - void ( STDMETHODCALLTYPE *ClearState )( - ID3D11DeviceContext * This); - - void ( STDMETHODCALLTYPE *Flush )( - ID3D11DeviceContext * This); - - D3D11_DEVICE_CONTEXT_TYPE ( STDMETHODCALLTYPE *GetType )( - ID3D11DeviceContext * This); - - UINT ( STDMETHODCALLTYPE *GetContextFlags )( - ID3D11DeviceContext * This); - - HRESULT ( STDMETHODCALLTYPE *FinishCommandList )( - ID3D11DeviceContext * This, - BOOL RestoreDeferredContextState, - /* [annotation] */ - __out_opt ID3D11CommandList **ppCommandList); - - END_INTERFACE - } ID3D11DeviceContextVtbl; - - interface ID3D11DeviceContext - { - CONST_VTBL struct ID3D11DeviceContextVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11DeviceContext_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11DeviceContext_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11DeviceContext_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11DeviceContext_GetDevice(This,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,ppDevice) ) - -#define ID3D11DeviceContext_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11DeviceContext_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11DeviceContext_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - - -#define ID3D11DeviceContext_VSSetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) \ - ( (This)->lpVtbl -> VSSetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) ) - -#define ID3D11DeviceContext_PSSetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) \ - ( (This)->lpVtbl -> PSSetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) ) - -#define ID3D11DeviceContext_PSSetShader(This,pPixelShader,ppClassInstances,NumClassInstances) \ - ( (This)->lpVtbl -> PSSetShader(This,pPixelShader,ppClassInstances,NumClassInstances) ) - -#define ID3D11DeviceContext_PSSetSamplers(This,StartSlot,NumSamplers,ppSamplers) \ - ( (This)->lpVtbl -> PSSetSamplers(This,StartSlot,NumSamplers,ppSamplers) ) - -#define ID3D11DeviceContext_VSSetShader(This,pVertexShader,ppClassInstances,NumClassInstances) \ - ( (This)->lpVtbl -> VSSetShader(This,pVertexShader,ppClassInstances,NumClassInstances) ) - -#define ID3D11DeviceContext_DrawIndexed(This,IndexCount,StartIndexLocation,BaseVertexLocation) \ - ( (This)->lpVtbl -> DrawIndexed(This,IndexCount,StartIndexLocation,BaseVertexLocation) ) - -#define ID3D11DeviceContext_Draw(This,VertexCount,StartVertexLocation) \ - ( (This)->lpVtbl -> Draw(This,VertexCount,StartVertexLocation) ) - -#define ID3D11DeviceContext_Map(This,pResource,Subresource,MapType,MapFlags,pMappedResource) \ - ( (This)->lpVtbl -> Map(This,pResource,Subresource,MapType,MapFlags,pMappedResource) ) - -#define ID3D11DeviceContext_Unmap(This,pResource,Subresource) \ - ( (This)->lpVtbl -> Unmap(This,pResource,Subresource) ) - -#define ID3D11DeviceContext_PSSetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) \ - ( (This)->lpVtbl -> PSSetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) ) - -#define ID3D11DeviceContext_IASetInputLayout(This,pInputLayout) \ - ( (This)->lpVtbl -> IASetInputLayout(This,pInputLayout) ) - -#define ID3D11DeviceContext_IASetVertexBuffers(This,StartSlot,NumBuffers,ppVertexBuffers,pStrides,pOffsets) \ - ( (This)->lpVtbl -> IASetVertexBuffers(This,StartSlot,NumBuffers,ppVertexBuffers,pStrides,pOffsets) ) - -#define ID3D11DeviceContext_IASetIndexBuffer(This,pIndexBuffer,Format,Offset) \ - ( (This)->lpVtbl -> IASetIndexBuffer(This,pIndexBuffer,Format,Offset) ) - -#define ID3D11DeviceContext_DrawIndexedInstanced(This,IndexCountPerInstance,InstanceCount,StartIndexLocation,BaseVertexLocation,StartInstanceLocation) \ - ( (This)->lpVtbl -> DrawIndexedInstanced(This,IndexCountPerInstance,InstanceCount,StartIndexLocation,BaseVertexLocation,StartInstanceLocation) ) - -#define ID3D11DeviceContext_DrawInstanced(This,VertexCountPerInstance,InstanceCount,StartVertexLocation,StartInstanceLocation) \ - ( (This)->lpVtbl -> DrawInstanced(This,VertexCountPerInstance,InstanceCount,StartVertexLocation,StartInstanceLocation) ) - -#define ID3D11DeviceContext_GSSetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) \ - ( (This)->lpVtbl -> GSSetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) ) - -#define ID3D11DeviceContext_GSSetShader(This,pShader,ppClassInstances,NumClassInstances) \ - ( (This)->lpVtbl -> GSSetShader(This,pShader,ppClassInstances,NumClassInstances) ) - -#define ID3D11DeviceContext_IASetPrimitiveTopology(This,Topology) \ - ( (This)->lpVtbl -> IASetPrimitiveTopology(This,Topology) ) - -#define ID3D11DeviceContext_VSSetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) \ - ( (This)->lpVtbl -> VSSetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) ) - -#define ID3D11DeviceContext_VSSetSamplers(This,StartSlot,NumSamplers,ppSamplers) \ - ( (This)->lpVtbl -> VSSetSamplers(This,StartSlot,NumSamplers,ppSamplers) ) - -#define ID3D11DeviceContext_Begin(This,pAsync) \ - ( (This)->lpVtbl -> Begin(This,pAsync) ) - -#define ID3D11DeviceContext_End(This,pAsync) \ - ( (This)->lpVtbl -> End(This,pAsync) ) - -#define ID3D11DeviceContext_GetData(This,pAsync,pData,DataSize,GetDataFlags) \ - ( (This)->lpVtbl -> GetData(This,pAsync,pData,DataSize,GetDataFlags) ) - -#define ID3D11DeviceContext_SetPredication(This,pPredicate,PredicateValue) \ - ( (This)->lpVtbl -> SetPredication(This,pPredicate,PredicateValue) ) - -#define ID3D11DeviceContext_GSSetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) \ - ( (This)->lpVtbl -> GSSetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) ) - -#define ID3D11DeviceContext_GSSetSamplers(This,StartSlot,NumSamplers,ppSamplers) \ - ( (This)->lpVtbl -> GSSetSamplers(This,StartSlot,NumSamplers,ppSamplers) ) - -#define ID3D11DeviceContext_OMSetRenderTargets(This,NumViews,ppRenderTargetViews,pDepthStencilView) \ - ( (This)->lpVtbl -> OMSetRenderTargets(This,NumViews,ppRenderTargetViews,pDepthStencilView) ) - -#define ID3D11DeviceContext_OMSetRenderTargetsAndUnorderedAccessViews(This,NumRTVs,ppRenderTargetViews,pDepthStencilView,UAVStartSlot,NumUAVs,ppUnorderedAccessViews,pUAVInitialCounts) \ - ( (This)->lpVtbl -> OMSetRenderTargetsAndUnorderedAccessViews(This,NumRTVs,ppRenderTargetViews,pDepthStencilView,UAVStartSlot,NumUAVs,ppUnorderedAccessViews,pUAVInitialCounts) ) - -#define ID3D11DeviceContext_OMSetBlendState(This,pBlendState,BlendFactor,SampleMask) \ - ( (This)->lpVtbl -> OMSetBlendState(This,pBlendState,BlendFactor,SampleMask) ) - -#define ID3D11DeviceContext_OMSetDepthStencilState(This,pDepthStencilState,StencilRef) \ - ( (This)->lpVtbl -> OMSetDepthStencilState(This,pDepthStencilState,StencilRef) ) - -#define ID3D11DeviceContext_SOSetTargets(This,NumBuffers,ppSOTargets,pOffsets) \ - ( (This)->lpVtbl -> SOSetTargets(This,NumBuffers,ppSOTargets,pOffsets) ) - -#define ID3D11DeviceContext_DrawAuto(This) \ - ( (This)->lpVtbl -> DrawAuto(This) ) - -#define ID3D11DeviceContext_DrawIndexedInstancedIndirect(This,pBufferForArgs,AlignedByteOffsetForArgs) \ - ( (This)->lpVtbl -> DrawIndexedInstancedIndirect(This,pBufferForArgs,AlignedByteOffsetForArgs) ) - -#define ID3D11DeviceContext_DrawInstancedIndirect(This,pBufferForArgs,AlignedByteOffsetForArgs) \ - ( (This)->lpVtbl -> DrawInstancedIndirect(This,pBufferForArgs,AlignedByteOffsetForArgs) ) - -#define ID3D11DeviceContext_Dispatch(This,ThreadGroupCountX,ThreadGroupCountY,ThreadGroupCountZ) \ - ( (This)->lpVtbl -> Dispatch(This,ThreadGroupCountX,ThreadGroupCountY,ThreadGroupCountZ) ) - -#define ID3D11DeviceContext_DispatchIndirect(This,pBufferForArgs,AlignedByteOffsetForArgs) \ - ( (This)->lpVtbl -> DispatchIndirect(This,pBufferForArgs,AlignedByteOffsetForArgs) ) - -#define ID3D11DeviceContext_RSSetState(This,pRasterizerState) \ - ( (This)->lpVtbl -> RSSetState(This,pRasterizerState) ) - -#define ID3D11DeviceContext_RSSetViewports(This,NumViewports,pViewports) \ - ( (This)->lpVtbl -> RSSetViewports(This,NumViewports,pViewports) ) - -#define ID3D11DeviceContext_RSSetScissorRects(This,NumRects,pRects) \ - ( (This)->lpVtbl -> RSSetScissorRects(This,NumRects,pRects) ) - -#define ID3D11DeviceContext_CopySubresourceRegion(This,pDstResource,DstSubresource,DstX,DstY,DstZ,pSrcResource,SrcSubresource,pSrcBox) \ - ( (This)->lpVtbl -> CopySubresourceRegion(This,pDstResource,DstSubresource,DstX,DstY,DstZ,pSrcResource,SrcSubresource,pSrcBox) ) - -#define ID3D11DeviceContext_CopyResource(This,pDstResource,pSrcResource) \ - ( (This)->lpVtbl -> CopyResource(This,pDstResource,pSrcResource) ) - -#define ID3D11DeviceContext_UpdateSubresource(This,pDstResource,DstSubresource,pDstBox,pSrcData,SrcRowPitch,SrcDepthPitch) \ - ( (This)->lpVtbl -> UpdateSubresource(This,pDstResource,DstSubresource,pDstBox,pSrcData,SrcRowPitch,SrcDepthPitch) ) - -#define ID3D11DeviceContext_CopyStructureCount(This,pDstBuffer,DstAlignedByteOffset,pSrcView) \ - ( (This)->lpVtbl -> CopyStructureCount(This,pDstBuffer,DstAlignedByteOffset,pSrcView) ) - -#define ID3D11DeviceContext_ClearRenderTargetView(This,pRenderTargetView,ColorRGBA) \ - ( (This)->lpVtbl -> ClearRenderTargetView(This,pRenderTargetView,ColorRGBA) ) - -#define ID3D11DeviceContext_ClearUnorderedAccessViewUint(This,pUnorderedAccessView,Values) \ - ( (This)->lpVtbl -> ClearUnorderedAccessViewUint(This,pUnorderedAccessView,Values) ) - -#define ID3D11DeviceContext_ClearUnorderedAccessViewFloat(This,pUnorderedAccessView,Values) \ - ( (This)->lpVtbl -> ClearUnorderedAccessViewFloat(This,pUnorderedAccessView,Values) ) - -#define ID3D11DeviceContext_ClearDepthStencilView(This,pDepthStencilView,ClearFlags,Depth,Stencil) \ - ( (This)->lpVtbl -> ClearDepthStencilView(This,pDepthStencilView,ClearFlags,Depth,Stencil) ) - -#define ID3D11DeviceContext_GenerateMips(This,pShaderResourceView) \ - ( (This)->lpVtbl -> GenerateMips(This,pShaderResourceView) ) - -#define ID3D11DeviceContext_SetResourceMinLOD(This,pResource,MinLOD) \ - ( (This)->lpVtbl -> SetResourceMinLOD(This,pResource,MinLOD) ) - -#define ID3D11DeviceContext_GetResourceMinLOD(This,pResource) \ - ( (This)->lpVtbl -> GetResourceMinLOD(This,pResource) ) - -#define ID3D11DeviceContext_ResolveSubresource(This,pDstResource,DstSubresource,pSrcResource,SrcSubresource,Format) \ - ( (This)->lpVtbl -> ResolveSubresource(This,pDstResource,DstSubresource,pSrcResource,SrcSubresource,Format) ) - -#define ID3D11DeviceContext_ExecuteCommandList(This,pCommandList,RestoreContextState) \ - ( (This)->lpVtbl -> ExecuteCommandList(This,pCommandList,RestoreContextState) ) - -#define ID3D11DeviceContext_HSSetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) \ - ( (This)->lpVtbl -> HSSetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) ) - -#define ID3D11DeviceContext_HSSetShader(This,pHullShader,ppClassInstances,NumClassInstances) \ - ( (This)->lpVtbl -> HSSetShader(This,pHullShader,ppClassInstances,NumClassInstances) ) - -#define ID3D11DeviceContext_HSSetSamplers(This,StartSlot,NumSamplers,ppSamplers) \ - ( (This)->lpVtbl -> HSSetSamplers(This,StartSlot,NumSamplers,ppSamplers) ) - -#define ID3D11DeviceContext_HSSetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) \ - ( (This)->lpVtbl -> HSSetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) ) - -#define ID3D11DeviceContext_DSSetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) \ - ( (This)->lpVtbl -> DSSetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) ) - -#define ID3D11DeviceContext_DSSetShader(This,pDomainShader,ppClassInstances,NumClassInstances) \ - ( (This)->lpVtbl -> DSSetShader(This,pDomainShader,ppClassInstances,NumClassInstances) ) - -#define ID3D11DeviceContext_DSSetSamplers(This,StartSlot,NumSamplers,ppSamplers) \ - ( (This)->lpVtbl -> DSSetSamplers(This,StartSlot,NumSamplers,ppSamplers) ) - -#define ID3D11DeviceContext_DSSetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) \ - ( (This)->lpVtbl -> DSSetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) ) - -#define ID3D11DeviceContext_CSSetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) \ - ( (This)->lpVtbl -> CSSetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) ) - -#define ID3D11DeviceContext_CSSetUnorderedAccessViews(This,StartSlot,NumUAVs,ppUnorderedAccessViews,pUAVInitialCounts) \ - ( (This)->lpVtbl -> CSSetUnorderedAccessViews(This,StartSlot,NumUAVs,ppUnorderedAccessViews,pUAVInitialCounts) ) - -#define ID3D11DeviceContext_CSSetShader(This,pComputeShader,ppClassInstances,NumClassInstances) \ - ( (This)->lpVtbl -> CSSetShader(This,pComputeShader,ppClassInstances,NumClassInstances) ) - -#define ID3D11DeviceContext_CSSetSamplers(This,StartSlot,NumSamplers,ppSamplers) \ - ( (This)->lpVtbl -> CSSetSamplers(This,StartSlot,NumSamplers,ppSamplers) ) - -#define ID3D11DeviceContext_CSSetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) \ - ( (This)->lpVtbl -> CSSetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) ) - -#define ID3D11DeviceContext_VSGetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) \ - ( (This)->lpVtbl -> VSGetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) ) - -#define ID3D11DeviceContext_PSGetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) \ - ( (This)->lpVtbl -> PSGetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) ) - -#define ID3D11DeviceContext_PSGetShader(This,ppPixelShader,ppClassInstances,pNumClassInstances) \ - ( (This)->lpVtbl -> PSGetShader(This,ppPixelShader,ppClassInstances,pNumClassInstances) ) - -#define ID3D11DeviceContext_PSGetSamplers(This,StartSlot,NumSamplers,ppSamplers) \ - ( (This)->lpVtbl -> PSGetSamplers(This,StartSlot,NumSamplers,ppSamplers) ) - -#define ID3D11DeviceContext_VSGetShader(This,ppVertexShader,ppClassInstances,pNumClassInstances) \ - ( (This)->lpVtbl -> VSGetShader(This,ppVertexShader,ppClassInstances,pNumClassInstances) ) - -#define ID3D11DeviceContext_PSGetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) \ - ( (This)->lpVtbl -> PSGetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) ) - -#define ID3D11DeviceContext_IAGetInputLayout(This,ppInputLayout) \ - ( (This)->lpVtbl -> IAGetInputLayout(This,ppInputLayout) ) - -#define ID3D11DeviceContext_IAGetVertexBuffers(This,StartSlot,NumBuffers,ppVertexBuffers,pStrides,pOffsets) \ - ( (This)->lpVtbl -> IAGetVertexBuffers(This,StartSlot,NumBuffers,ppVertexBuffers,pStrides,pOffsets) ) - -#define ID3D11DeviceContext_IAGetIndexBuffer(This,pIndexBuffer,Format,Offset) \ - ( (This)->lpVtbl -> IAGetIndexBuffer(This,pIndexBuffer,Format,Offset) ) - -#define ID3D11DeviceContext_GSGetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) \ - ( (This)->lpVtbl -> GSGetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) ) - -#define ID3D11DeviceContext_GSGetShader(This,ppGeometryShader,ppClassInstances,pNumClassInstances) \ - ( (This)->lpVtbl -> GSGetShader(This,ppGeometryShader,ppClassInstances,pNumClassInstances) ) - -#define ID3D11DeviceContext_IAGetPrimitiveTopology(This,pTopology) \ - ( (This)->lpVtbl -> IAGetPrimitiveTopology(This,pTopology) ) - -#define ID3D11DeviceContext_VSGetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) \ - ( (This)->lpVtbl -> VSGetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) ) - -#define ID3D11DeviceContext_VSGetSamplers(This,StartSlot,NumSamplers,ppSamplers) \ - ( (This)->lpVtbl -> VSGetSamplers(This,StartSlot,NumSamplers,ppSamplers) ) - -#define ID3D11DeviceContext_GetPredication(This,ppPredicate,pPredicateValue) \ - ( (This)->lpVtbl -> GetPredication(This,ppPredicate,pPredicateValue) ) - -#define ID3D11DeviceContext_GSGetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) \ - ( (This)->lpVtbl -> GSGetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) ) - -#define ID3D11DeviceContext_GSGetSamplers(This,StartSlot,NumSamplers,ppSamplers) \ - ( (This)->lpVtbl -> GSGetSamplers(This,StartSlot,NumSamplers,ppSamplers) ) - -#define ID3D11DeviceContext_OMGetRenderTargets(This,NumViews,ppRenderTargetViews,ppDepthStencilView) \ - ( (This)->lpVtbl -> OMGetRenderTargets(This,NumViews,ppRenderTargetViews,ppDepthStencilView) ) - -#define ID3D11DeviceContext_OMGetRenderTargetsAndUnorderedAccessViews(This,NumRTVs,ppRenderTargetViews,ppDepthStencilView,UAVStartSlot,NumUAVs,ppUnorderedAccessViews) \ - ( (This)->lpVtbl -> OMGetRenderTargetsAndUnorderedAccessViews(This,NumRTVs,ppRenderTargetViews,ppDepthStencilView,UAVStartSlot,NumUAVs,ppUnorderedAccessViews) ) - -#define ID3D11DeviceContext_OMGetBlendState(This,ppBlendState,BlendFactor,pSampleMask) \ - ( (This)->lpVtbl -> OMGetBlendState(This,ppBlendState,BlendFactor,pSampleMask) ) - -#define ID3D11DeviceContext_OMGetDepthStencilState(This,ppDepthStencilState,pStencilRef) \ - ( (This)->lpVtbl -> OMGetDepthStencilState(This,ppDepthStencilState,pStencilRef) ) - -#define ID3D11DeviceContext_SOGetTargets(This,NumBuffers,ppSOTargets) \ - ( (This)->lpVtbl -> SOGetTargets(This,NumBuffers,ppSOTargets) ) - -#define ID3D11DeviceContext_RSGetState(This,ppRasterizerState) \ - ( (This)->lpVtbl -> RSGetState(This,ppRasterizerState) ) - -#define ID3D11DeviceContext_RSGetViewports(This,pNumViewports,pViewports) \ - ( (This)->lpVtbl -> RSGetViewports(This,pNumViewports,pViewports) ) - -#define ID3D11DeviceContext_RSGetScissorRects(This,pNumRects,pRects) \ - ( (This)->lpVtbl -> RSGetScissorRects(This,pNumRects,pRects) ) - -#define ID3D11DeviceContext_HSGetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) \ - ( (This)->lpVtbl -> HSGetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) ) - -#define ID3D11DeviceContext_HSGetShader(This,ppHullShader,ppClassInstances,pNumClassInstances) \ - ( (This)->lpVtbl -> HSGetShader(This,ppHullShader,ppClassInstances,pNumClassInstances) ) - -#define ID3D11DeviceContext_HSGetSamplers(This,StartSlot,NumSamplers,ppSamplers) \ - ( (This)->lpVtbl -> HSGetSamplers(This,StartSlot,NumSamplers,ppSamplers) ) - -#define ID3D11DeviceContext_HSGetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) \ - ( (This)->lpVtbl -> HSGetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) ) - -#define ID3D11DeviceContext_DSGetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) \ - ( (This)->lpVtbl -> DSGetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) ) - -#define ID3D11DeviceContext_DSGetShader(This,ppDomainShader,ppClassInstances,pNumClassInstances) \ - ( (This)->lpVtbl -> DSGetShader(This,ppDomainShader,ppClassInstances,pNumClassInstances) ) - -#define ID3D11DeviceContext_DSGetSamplers(This,StartSlot,NumSamplers,ppSamplers) \ - ( (This)->lpVtbl -> DSGetSamplers(This,StartSlot,NumSamplers,ppSamplers) ) - -#define ID3D11DeviceContext_DSGetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) \ - ( (This)->lpVtbl -> DSGetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) ) - -#define ID3D11DeviceContext_CSGetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) \ - ( (This)->lpVtbl -> CSGetShaderResources(This,StartSlot,NumViews,ppShaderResourceViews) ) - -#define ID3D11DeviceContext_CSGetUnorderedAccessViews(This,StartSlot,NumUAVs,ppUnorderedAccessViews) \ - ( (This)->lpVtbl -> CSGetUnorderedAccessViews(This,StartSlot,NumUAVs,ppUnorderedAccessViews) ) - -#define ID3D11DeviceContext_CSGetShader(This,ppComputeShader,ppClassInstances,pNumClassInstances) \ - ( (This)->lpVtbl -> CSGetShader(This,ppComputeShader,ppClassInstances,pNumClassInstances) ) - -#define ID3D11DeviceContext_CSGetSamplers(This,StartSlot,NumSamplers,ppSamplers) \ - ( (This)->lpVtbl -> CSGetSamplers(This,StartSlot,NumSamplers,ppSamplers) ) - -#define ID3D11DeviceContext_CSGetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) \ - ( (This)->lpVtbl -> CSGetConstantBuffers(This,StartSlot,NumBuffers,ppConstantBuffers) ) - -#define ID3D11DeviceContext_ClearState(This) \ - ( (This)->lpVtbl -> ClearState(This) ) - -#define ID3D11DeviceContext_Flush(This) \ - ( (This)->lpVtbl -> Flush(This) ) - -#define ID3D11DeviceContext_GetType(This) \ - ( (This)->lpVtbl -> GetType(This) ) - -#define ID3D11DeviceContext_GetContextFlags(This) \ - ( (This)->lpVtbl -> GetContextFlags(This) ) - -#define ID3D11DeviceContext_FinishCommandList(This,RestoreDeferredContextState,ppCommandList) \ - ( (This)->lpVtbl -> FinishCommandList(This,RestoreDeferredContextState,ppCommandList) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11DeviceContext_INTERFACE_DEFINED__ */ - - -#ifndef __ID3D11Device_INTERFACE_DEFINED__ -#define __ID3D11Device_INTERFACE_DEFINED__ - -/* interface ID3D11Device */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11Device; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("db6f6ddb-ac77-4e88-8253-819df9bbf140") - ID3D11Device : public IUnknown - { - public: - virtual HRESULT STDMETHODCALLTYPE CreateBuffer( - /* [annotation] */ - __in const D3D11_BUFFER_DESC *pDesc, - /* [annotation] */ - __in_opt const D3D11_SUBRESOURCE_DATA *pInitialData, - /* [annotation] */ - __out_opt ID3D11Buffer **ppBuffer) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateTexture1D( - /* [annotation] */ - __in const D3D11_TEXTURE1D_DESC *pDesc, - /* [annotation] */ - __in_xcount_opt(pDesc->MipLevels * pDesc->ArraySize) const D3D11_SUBRESOURCE_DATA *pInitialData, - /* [annotation] */ - __out_opt ID3D11Texture1D **ppTexture1D) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateTexture2D( - /* [annotation] */ - __in const D3D11_TEXTURE2D_DESC *pDesc, - /* [annotation] */ - __in_xcount_opt(pDesc->MipLevels * pDesc->ArraySize) const D3D11_SUBRESOURCE_DATA *pInitialData, - /* [annotation] */ - __out_opt ID3D11Texture2D **ppTexture2D) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateTexture3D( - /* [annotation] */ - __in const D3D11_TEXTURE3D_DESC *pDesc, - /* [annotation] */ - __in_xcount_opt(pDesc->MipLevels) const D3D11_SUBRESOURCE_DATA *pInitialData, - /* [annotation] */ - __out_opt ID3D11Texture3D **ppTexture3D) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateShaderResourceView( - /* [annotation] */ - __in ID3D11Resource *pResource, - /* [annotation] */ - __in_opt const D3D11_SHADER_RESOURCE_VIEW_DESC *pDesc, - /* [annotation] */ - __out_opt ID3D11ShaderResourceView **ppSRView) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateUnorderedAccessView( - /* [annotation] */ - __in ID3D11Resource *pResource, - /* [annotation] */ - __in_opt const D3D11_UNORDERED_ACCESS_VIEW_DESC *pDesc, - /* [annotation] */ - __out_opt ID3D11UnorderedAccessView **ppUAView) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateRenderTargetView( - /* [annotation] */ - __in ID3D11Resource *pResource, - /* [annotation] */ - __in_opt const D3D11_RENDER_TARGET_VIEW_DESC *pDesc, - /* [annotation] */ - __out_opt ID3D11RenderTargetView **ppRTView) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateDepthStencilView( - /* [annotation] */ - __in ID3D11Resource *pResource, - /* [annotation] */ - __in_opt const D3D11_DEPTH_STENCIL_VIEW_DESC *pDesc, - /* [annotation] */ - __out_opt ID3D11DepthStencilView **ppDepthStencilView) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateInputLayout( - /* [annotation] */ - __in_ecount(NumElements) const D3D11_INPUT_ELEMENT_DESC *pInputElementDescs, - /* [annotation] */ - __in_range( 0, D3D11_IA_VERTEX_INPUT_STRUCTURE_ELEMENT_COUNT ) UINT NumElements, - /* [annotation] */ - __in const void *pShaderBytecodeWithInputSignature, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __out_opt ID3D11InputLayout **ppInputLayout) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateVertexShader( - /* [annotation] */ - __in const void *pShaderBytecode, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __in_opt ID3D11ClassLinkage *pClassLinkage, - /* [annotation] */ - __out_opt ID3D11VertexShader **ppVertexShader) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateGeometryShader( - /* [annotation] */ - __in const void *pShaderBytecode, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __in_opt ID3D11ClassLinkage *pClassLinkage, - /* [annotation] */ - __out_opt ID3D11GeometryShader **ppGeometryShader) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateGeometryShaderWithStreamOutput( - /* [annotation] */ - __in const void *pShaderBytecode, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __in_ecount_opt(NumEntries) const D3D11_SO_DECLARATION_ENTRY *pSODeclaration, - /* [annotation] */ - __in_range( 0, D3D11_SO_STREAM_COUNT * D3D11_SO_OUTPUT_COMPONENT_COUNT ) UINT NumEntries, - /* [annotation] */ - __in_ecount_opt(NumStrides) const UINT *pBufferStrides, - /* [annotation] */ - __in_range( 0, D3D11_SO_BUFFER_SLOT_COUNT ) UINT NumStrides, - /* [annotation] */ - __in UINT RasterizedStream, - /* [annotation] */ - __in_opt ID3D11ClassLinkage *pClassLinkage, - /* [annotation] */ - __out_opt ID3D11GeometryShader **ppGeometryShader) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreatePixelShader( - /* [annotation] */ - __in const void *pShaderBytecode, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __in_opt ID3D11ClassLinkage *pClassLinkage, - /* [annotation] */ - __out_opt ID3D11PixelShader **ppPixelShader) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateHullShader( - /* [annotation] */ - __in const void *pShaderBytecode, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __in_opt ID3D11ClassLinkage *pClassLinkage, - /* [annotation] */ - __out_opt ID3D11HullShader **ppHullShader) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateDomainShader( - /* [annotation] */ - __in const void *pShaderBytecode, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __in_opt ID3D11ClassLinkage *pClassLinkage, - /* [annotation] */ - __out_opt ID3D11DomainShader **ppDomainShader) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateComputeShader( - /* [annotation] */ - __in const void *pShaderBytecode, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __in_opt ID3D11ClassLinkage *pClassLinkage, - /* [annotation] */ - __out_opt ID3D11ComputeShader **ppComputeShader) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateClassLinkage( - /* [annotation] */ - __out ID3D11ClassLinkage **ppLinkage) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateBlendState( - /* [annotation] */ - __in const D3D11_BLEND_DESC *pBlendStateDesc, - /* [annotation] */ - __out_opt ID3D11BlendState **ppBlendState) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateDepthStencilState( - /* [annotation] */ - __in const D3D11_DEPTH_STENCIL_DESC *pDepthStencilDesc, - /* [annotation] */ - __out_opt ID3D11DepthStencilState **ppDepthStencilState) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateRasterizerState( - /* [annotation] */ - __in const D3D11_RASTERIZER_DESC *pRasterizerDesc, - /* [annotation] */ - __out_opt ID3D11RasterizerState **ppRasterizerState) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateSamplerState( - /* [annotation] */ - __in const D3D11_SAMPLER_DESC *pSamplerDesc, - /* [annotation] */ - __out_opt ID3D11SamplerState **ppSamplerState) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateQuery( - /* [annotation] */ - __in const D3D11_QUERY_DESC *pQueryDesc, - /* [annotation] */ - __out_opt ID3D11Query **ppQuery) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreatePredicate( - /* [annotation] */ - __in const D3D11_QUERY_DESC *pPredicateDesc, - /* [annotation] */ - __out_opt ID3D11Predicate **ppPredicate) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateCounter( - /* [annotation] */ - __in const D3D11_COUNTER_DESC *pCounterDesc, - /* [annotation] */ - __out_opt ID3D11Counter **ppCounter) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateDeferredContext( - UINT ContextFlags, - /* [annotation] */ - __out_opt ID3D11DeviceContext **ppDeferredContext) = 0; - - virtual HRESULT STDMETHODCALLTYPE OpenSharedResource( - /* [annotation] */ - __in HANDLE hResource, - /* [annotation] */ - __in REFIID ReturnedInterface, - /* [annotation] */ - __out_opt void **ppResource) = 0; - - virtual HRESULT STDMETHODCALLTYPE CheckFormatSupport( - /* [annotation] */ - __in DXGI_FORMAT Format, - /* [annotation] */ - __out UINT *pFormatSupport) = 0; - - virtual HRESULT STDMETHODCALLTYPE CheckMultisampleQualityLevels( - /* [annotation] */ - __in DXGI_FORMAT Format, - /* [annotation] */ - __in UINT SampleCount, - /* [annotation] */ - __out UINT *pNumQualityLevels) = 0; - - virtual void STDMETHODCALLTYPE CheckCounterInfo( - /* [annotation] */ - __out D3D11_COUNTER_INFO *pCounterInfo) = 0; - - virtual HRESULT STDMETHODCALLTYPE CheckCounter( - /* [annotation] */ - __in const D3D11_COUNTER_DESC *pDesc, - /* [annotation] */ - __out D3D11_COUNTER_TYPE *pType, - /* [annotation] */ - __out UINT *pActiveCounters, - /* [annotation] */ - __out_ecount_opt(*pNameLength) LPSTR szName, - /* [annotation] */ - __inout_opt UINT *pNameLength, - /* [annotation] */ - __out_ecount_opt(*pUnitsLength) LPSTR szUnits, - /* [annotation] */ - __inout_opt UINT *pUnitsLength, - /* [annotation] */ - __out_ecount_opt(*pDescriptionLength) LPSTR szDescription, - /* [annotation] */ - __inout_opt UINT *pDescriptionLength) = 0; - - virtual HRESULT STDMETHODCALLTYPE CheckFeatureSupport( - D3D11_FEATURE Feature, - /* [annotation] */ - __out_bcount(FeatureSupportDataSize) void *pFeatureSupportData, - UINT FeatureSupportDataSize) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetPrivateData( - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData) = 0; - - virtual HRESULT STDMETHODCALLTYPE SetPrivateData( - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData) = 0; - - virtual HRESULT STDMETHODCALLTYPE SetPrivateDataInterface( - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData) = 0; - - virtual D3D_FEATURE_LEVEL STDMETHODCALLTYPE GetFeatureLevel( void) = 0; - - virtual UINT STDMETHODCALLTYPE GetCreationFlags( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetDeviceRemovedReason( void) = 0; - - virtual void STDMETHODCALLTYPE GetImmediateContext( - /* [annotation] */ - __out ID3D11DeviceContext **ppImmediateContext) = 0; - - virtual HRESULT STDMETHODCALLTYPE SetExceptionMode( - UINT RaiseFlags) = 0; - - virtual UINT STDMETHODCALLTYPE GetExceptionMode( void) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D11DeviceVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11Device * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11Device * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11Device * This); - - HRESULT ( STDMETHODCALLTYPE *CreateBuffer )( - ID3D11Device * This, - /* [annotation] */ - __in const D3D11_BUFFER_DESC *pDesc, - /* [annotation] */ - __in_opt const D3D11_SUBRESOURCE_DATA *pInitialData, - /* [annotation] */ - __out_opt ID3D11Buffer **ppBuffer); - - HRESULT ( STDMETHODCALLTYPE *CreateTexture1D )( - ID3D11Device * This, - /* [annotation] */ - __in const D3D11_TEXTURE1D_DESC *pDesc, - /* [annotation] */ - __in_xcount_opt(pDesc->MipLevels * pDesc->ArraySize) const D3D11_SUBRESOURCE_DATA *pInitialData, - /* [annotation] */ - __out_opt ID3D11Texture1D **ppTexture1D); - - HRESULT ( STDMETHODCALLTYPE *CreateTexture2D )( - ID3D11Device * This, - /* [annotation] */ - __in const D3D11_TEXTURE2D_DESC *pDesc, - /* [annotation] */ - __in_xcount_opt(pDesc->MipLevels * pDesc->ArraySize) const D3D11_SUBRESOURCE_DATA *pInitialData, - /* [annotation] */ - __out_opt ID3D11Texture2D **ppTexture2D); - - HRESULT ( STDMETHODCALLTYPE *CreateTexture3D )( - ID3D11Device * This, - /* [annotation] */ - __in const D3D11_TEXTURE3D_DESC *pDesc, - /* [annotation] */ - __in_xcount_opt(pDesc->MipLevels) const D3D11_SUBRESOURCE_DATA *pInitialData, - /* [annotation] */ - __out_opt ID3D11Texture3D **ppTexture3D); - - HRESULT ( STDMETHODCALLTYPE *CreateShaderResourceView )( - ID3D11Device * This, - /* [annotation] */ - __in ID3D11Resource *pResource, - /* [annotation] */ - __in_opt const D3D11_SHADER_RESOURCE_VIEW_DESC *pDesc, - /* [annotation] */ - __out_opt ID3D11ShaderResourceView **ppSRView); - - HRESULT ( STDMETHODCALLTYPE *CreateUnorderedAccessView )( - ID3D11Device * This, - /* [annotation] */ - __in ID3D11Resource *pResource, - /* [annotation] */ - __in_opt const D3D11_UNORDERED_ACCESS_VIEW_DESC *pDesc, - /* [annotation] */ - __out_opt ID3D11UnorderedAccessView **ppUAView); - - HRESULT ( STDMETHODCALLTYPE *CreateRenderTargetView )( - ID3D11Device * This, - /* [annotation] */ - __in ID3D11Resource *pResource, - /* [annotation] */ - __in_opt const D3D11_RENDER_TARGET_VIEW_DESC *pDesc, - /* [annotation] */ - __out_opt ID3D11RenderTargetView **ppRTView); - - HRESULT ( STDMETHODCALLTYPE *CreateDepthStencilView )( - ID3D11Device * This, - /* [annotation] */ - __in ID3D11Resource *pResource, - /* [annotation] */ - __in_opt const D3D11_DEPTH_STENCIL_VIEW_DESC *pDesc, - /* [annotation] */ - __out_opt ID3D11DepthStencilView **ppDepthStencilView); - - HRESULT ( STDMETHODCALLTYPE *CreateInputLayout )( - ID3D11Device * This, - /* [annotation] */ - __in_ecount(NumElements) const D3D11_INPUT_ELEMENT_DESC *pInputElementDescs, - /* [annotation] */ - __in_range( 0, D3D11_IA_VERTEX_INPUT_STRUCTURE_ELEMENT_COUNT ) UINT NumElements, - /* [annotation] */ - __in const void *pShaderBytecodeWithInputSignature, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __out_opt ID3D11InputLayout **ppInputLayout); - - HRESULT ( STDMETHODCALLTYPE *CreateVertexShader )( - ID3D11Device * This, - /* [annotation] */ - __in const void *pShaderBytecode, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __in_opt ID3D11ClassLinkage *pClassLinkage, - /* [annotation] */ - __out_opt ID3D11VertexShader **ppVertexShader); - - HRESULT ( STDMETHODCALLTYPE *CreateGeometryShader )( - ID3D11Device * This, - /* [annotation] */ - __in const void *pShaderBytecode, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __in_opt ID3D11ClassLinkage *pClassLinkage, - /* [annotation] */ - __out_opt ID3D11GeometryShader **ppGeometryShader); - - HRESULT ( STDMETHODCALLTYPE *CreateGeometryShaderWithStreamOutput )( - ID3D11Device * This, - /* [annotation] */ - __in const void *pShaderBytecode, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __in_ecount_opt(NumEntries) const D3D11_SO_DECLARATION_ENTRY *pSODeclaration, - /* [annotation] */ - __in_range( 0, D3D11_SO_STREAM_COUNT * D3D11_SO_OUTPUT_COMPONENT_COUNT ) UINT NumEntries, - /* [annotation] */ - __in_ecount_opt(NumStrides) const UINT *pBufferStrides, - /* [annotation] */ - __in_range( 0, D3D11_SO_BUFFER_SLOT_COUNT ) UINT NumStrides, - /* [annotation] */ - __in UINT RasterizedStream, - /* [annotation] */ - __in_opt ID3D11ClassLinkage *pClassLinkage, - /* [annotation] */ - __out_opt ID3D11GeometryShader **ppGeometryShader); - - HRESULT ( STDMETHODCALLTYPE *CreatePixelShader )( - ID3D11Device * This, - /* [annotation] */ - __in const void *pShaderBytecode, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __in_opt ID3D11ClassLinkage *pClassLinkage, - /* [annotation] */ - __out_opt ID3D11PixelShader **ppPixelShader); - - HRESULT ( STDMETHODCALLTYPE *CreateHullShader )( - ID3D11Device * This, - /* [annotation] */ - __in const void *pShaderBytecode, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __in_opt ID3D11ClassLinkage *pClassLinkage, - /* [annotation] */ - __out_opt ID3D11HullShader **ppHullShader); - - HRESULT ( STDMETHODCALLTYPE *CreateDomainShader )( - ID3D11Device * This, - /* [annotation] */ - __in const void *pShaderBytecode, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __in_opt ID3D11ClassLinkage *pClassLinkage, - /* [annotation] */ - __out_opt ID3D11DomainShader **ppDomainShader); - - HRESULT ( STDMETHODCALLTYPE *CreateComputeShader )( - ID3D11Device * This, - /* [annotation] */ - __in const void *pShaderBytecode, - /* [annotation] */ - __in SIZE_T BytecodeLength, - /* [annotation] */ - __in_opt ID3D11ClassLinkage *pClassLinkage, - /* [annotation] */ - __out_opt ID3D11ComputeShader **ppComputeShader); - - HRESULT ( STDMETHODCALLTYPE *CreateClassLinkage )( - ID3D11Device * This, - /* [annotation] */ - __out ID3D11ClassLinkage **ppLinkage); - - HRESULT ( STDMETHODCALLTYPE *CreateBlendState )( - ID3D11Device * This, - /* [annotation] */ - __in const D3D11_BLEND_DESC *pBlendStateDesc, - /* [annotation] */ - __out_opt ID3D11BlendState **ppBlendState); - - HRESULT ( STDMETHODCALLTYPE *CreateDepthStencilState )( - ID3D11Device * This, - /* [annotation] */ - __in const D3D11_DEPTH_STENCIL_DESC *pDepthStencilDesc, - /* [annotation] */ - __out_opt ID3D11DepthStencilState **ppDepthStencilState); - - HRESULT ( STDMETHODCALLTYPE *CreateRasterizerState )( - ID3D11Device * This, - /* [annotation] */ - __in const D3D11_RASTERIZER_DESC *pRasterizerDesc, - /* [annotation] */ - __out_opt ID3D11RasterizerState **ppRasterizerState); - - HRESULT ( STDMETHODCALLTYPE *CreateSamplerState )( - ID3D11Device * This, - /* [annotation] */ - __in const D3D11_SAMPLER_DESC *pSamplerDesc, - /* [annotation] */ - __out_opt ID3D11SamplerState **ppSamplerState); - - HRESULT ( STDMETHODCALLTYPE *CreateQuery )( - ID3D11Device * This, - /* [annotation] */ - __in const D3D11_QUERY_DESC *pQueryDesc, - /* [annotation] */ - __out_opt ID3D11Query **ppQuery); - - HRESULT ( STDMETHODCALLTYPE *CreatePredicate )( - ID3D11Device * This, - /* [annotation] */ - __in const D3D11_QUERY_DESC *pPredicateDesc, - /* [annotation] */ - __out_opt ID3D11Predicate **ppPredicate); - - HRESULT ( STDMETHODCALLTYPE *CreateCounter )( - ID3D11Device * This, - /* [annotation] */ - __in const D3D11_COUNTER_DESC *pCounterDesc, - /* [annotation] */ - __out_opt ID3D11Counter **ppCounter); - - HRESULT ( STDMETHODCALLTYPE *CreateDeferredContext )( - ID3D11Device * This, - UINT ContextFlags, - /* [annotation] */ - __out_opt ID3D11DeviceContext **ppDeferredContext); - - HRESULT ( STDMETHODCALLTYPE *OpenSharedResource )( - ID3D11Device * This, - /* [annotation] */ - __in HANDLE hResource, - /* [annotation] */ - __in REFIID ReturnedInterface, - /* [annotation] */ - __out_opt void **ppResource); - - HRESULT ( STDMETHODCALLTYPE *CheckFormatSupport )( - ID3D11Device * This, - /* [annotation] */ - __in DXGI_FORMAT Format, - /* [annotation] */ - __out UINT *pFormatSupport); - - HRESULT ( STDMETHODCALLTYPE *CheckMultisampleQualityLevels )( - ID3D11Device * This, - /* [annotation] */ - __in DXGI_FORMAT Format, - /* [annotation] */ - __in UINT SampleCount, - /* [annotation] */ - __out UINT *pNumQualityLevels); - - void ( STDMETHODCALLTYPE *CheckCounterInfo )( - ID3D11Device * This, - /* [annotation] */ - __out D3D11_COUNTER_INFO *pCounterInfo); - - HRESULT ( STDMETHODCALLTYPE *CheckCounter )( - ID3D11Device * This, - /* [annotation] */ - __in const D3D11_COUNTER_DESC *pDesc, - /* [annotation] */ - __out D3D11_COUNTER_TYPE *pType, - /* [annotation] */ - __out UINT *pActiveCounters, - /* [annotation] */ - __out_ecount_opt(*pNameLength) LPSTR szName, - /* [annotation] */ - __inout_opt UINT *pNameLength, - /* [annotation] */ - __out_ecount_opt(*pUnitsLength) LPSTR szUnits, - /* [annotation] */ - __inout_opt UINT *pUnitsLength, - /* [annotation] */ - __out_ecount_opt(*pDescriptionLength) LPSTR szDescription, - /* [annotation] */ - __inout_opt UINT *pDescriptionLength); - - HRESULT ( STDMETHODCALLTYPE *CheckFeatureSupport )( - ID3D11Device * This, - D3D11_FEATURE Feature, - /* [annotation] */ - __out_bcount(FeatureSupportDataSize) void *pFeatureSupportData, - UINT FeatureSupportDataSize); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - ID3D11Device * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __inout UINT *pDataSize, - /* [annotation] */ - __out_bcount_opt(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - ID3D11Device * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in UINT DataSize, - /* [annotation] */ - __in_bcount_opt(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - ID3D11Device * This, - /* [annotation] */ - __in REFGUID guid, - /* [annotation] */ - __in_opt const IUnknown *pData); - - D3D_FEATURE_LEVEL ( STDMETHODCALLTYPE *GetFeatureLevel )( - ID3D11Device * This); - - UINT ( STDMETHODCALLTYPE *GetCreationFlags )( - ID3D11Device * This); - - HRESULT ( STDMETHODCALLTYPE *GetDeviceRemovedReason )( - ID3D11Device * This); - - void ( STDMETHODCALLTYPE *GetImmediateContext )( - ID3D11Device * This, - /* [annotation] */ - __out ID3D11DeviceContext **ppImmediateContext); - - HRESULT ( STDMETHODCALLTYPE *SetExceptionMode )( - ID3D11Device * This, - UINT RaiseFlags); - - UINT ( STDMETHODCALLTYPE *GetExceptionMode )( - ID3D11Device * This); - - END_INTERFACE - } ID3D11DeviceVtbl; - - interface ID3D11Device - { - CONST_VTBL struct ID3D11DeviceVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11Device_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11Device_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11Device_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11Device_CreateBuffer(This,pDesc,pInitialData,ppBuffer) \ - ( (This)->lpVtbl -> CreateBuffer(This,pDesc,pInitialData,ppBuffer) ) - -#define ID3D11Device_CreateTexture1D(This,pDesc,pInitialData,ppTexture1D) \ - ( (This)->lpVtbl -> CreateTexture1D(This,pDesc,pInitialData,ppTexture1D) ) - -#define ID3D11Device_CreateTexture2D(This,pDesc,pInitialData,ppTexture2D) \ - ( (This)->lpVtbl -> CreateTexture2D(This,pDesc,pInitialData,ppTexture2D) ) - -#define ID3D11Device_CreateTexture3D(This,pDesc,pInitialData,ppTexture3D) \ - ( (This)->lpVtbl -> CreateTexture3D(This,pDesc,pInitialData,ppTexture3D) ) - -#define ID3D11Device_CreateShaderResourceView(This,pResource,pDesc,ppSRView) \ - ( (This)->lpVtbl -> CreateShaderResourceView(This,pResource,pDesc,ppSRView) ) - -#define ID3D11Device_CreateUnorderedAccessView(This,pResource,pDesc,ppUAView) \ - ( (This)->lpVtbl -> CreateUnorderedAccessView(This,pResource,pDesc,ppUAView) ) - -#define ID3D11Device_CreateRenderTargetView(This,pResource,pDesc,ppRTView) \ - ( (This)->lpVtbl -> CreateRenderTargetView(This,pResource,pDesc,ppRTView) ) - -#define ID3D11Device_CreateDepthStencilView(This,pResource,pDesc,ppDepthStencilView) \ - ( (This)->lpVtbl -> CreateDepthStencilView(This,pResource,pDesc,ppDepthStencilView) ) - -#define ID3D11Device_CreateInputLayout(This,pInputElementDescs,NumElements,pShaderBytecodeWithInputSignature,BytecodeLength,ppInputLayout) \ - ( (This)->lpVtbl -> CreateInputLayout(This,pInputElementDescs,NumElements,pShaderBytecodeWithInputSignature,BytecodeLength,ppInputLayout) ) - -#define ID3D11Device_CreateVertexShader(This,pShaderBytecode,BytecodeLength,pClassLinkage,ppVertexShader) \ - ( (This)->lpVtbl -> CreateVertexShader(This,pShaderBytecode,BytecodeLength,pClassLinkage,ppVertexShader) ) - -#define ID3D11Device_CreateGeometryShader(This,pShaderBytecode,BytecodeLength,pClassLinkage,ppGeometryShader) \ - ( (This)->lpVtbl -> CreateGeometryShader(This,pShaderBytecode,BytecodeLength,pClassLinkage,ppGeometryShader) ) - -#define ID3D11Device_CreateGeometryShaderWithStreamOutput(This,pShaderBytecode,BytecodeLength,pSODeclaration,NumEntries,pBufferStrides,NumStrides,RasterizedStream,pClassLinkage,ppGeometryShader) \ - ( (This)->lpVtbl -> CreateGeometryShaderWithStreamOutput(This,pShaderBytecode,BytecodeLength,pSODeclaration,NumEntries,pBufferStrides,NumStrides,RasterizedStream,pClassLinkage,ppGeometryShader) ) - -#define ID3D11Device_CreatePixelShader(This,pShaderBytecode,BytecodeLength,pClassLinkage,ppPixelShader) \ - ( (This)->lpVtbl -> CreatePixelShader(This,pShaderBytecode,BytecodeLength,pClassLinkage,ppPixelShader) ) - -#define ID3D11Device_CreateHullShader(This,pShaderBytecode,BytecodeLength,pClassLinkage,ppHullShader) \ - ( (This)->lpVtbl -> CreateHullShader(This,pShaderBytecode,BytecodeLength,pClassLinkage,ppHullShader) ) - -#define ID3D11Device_CreateDomainShader(This,pShaderBytecode,BytecodeLength,pClassLinkage,ppDomainShader) \ - ( (This)->lpVtbl -> CreateDomainShader(This,pShaderBytecode,BytecodeLength,pClassLinkage,ppDomainShader) ) - -#define ID3D11Device_CreateComputeShader(This,pShaderBytecode,BytecodeLength,pClassLinkage,ppComputeShader) \ - ( (This)->lpVtbl -> CreateComputeShader(This,pShaderBytecode,BytecodeLength,pClassLinkage,ppComputeShader) ) - -#define ID3D11Device_CreateClassLinkage(This,ppLinkage) \ - ( (This)->lpVtbl -> CreateClassLinkage(This,ppLinkage) ) - -#define ID3D11Device_CreateBlendState(This,pBlendStateDesc,ppBlendState) \ - ( (This)->lpVtbl -> CreateBlendState(This,pBlendStateDesc,ppBlendState) ) - -#define ID3D11Device_CreateDepthStencilState(This,pDepthStencilDesc,ppDepthStencilState) \ - ( (This)->lpVtbl -> CreateDepthStencilState(This,pDepthStencilDesc,ppDepthStencilState) ) - -#define ID3D11Device_CreateRasterizerState(This,pRasterizerDesc,ppRasterizerState) \ - ( (This)->lpVtbl -> CreateRasterizerState(This,pRasterizerDesc,ppRasterizerState) ) - -#define ID3D11Device_CreateSamplerState(This,pSamplerDesc,ppSamplerState) \ - ( (This)->lpVtbl -> CreateSamplerState(This,pSamplerDesc,ppSamplerState) ) - -#define ID3D11Device_CreateQuery(This,pQueryDesc,ppQuery) \ - ( (This)->lpVtbl -> CreateQuery(This,pQueryDesc,ppQuery) ) - -#define ID3D11Device_CreatePredicate(This,pPredicateDesc,ppPredicate) \ - ( (This)->lpVtbl -> CreatePredicate(This,pPredicateDesc,ppPredicate) ) - -#define ID3D11Device_CreateCounter(This,pCounterDesc,ppCounter) \ - ( (This)->lpVtbl -> CreateCounter(This,pCounterDesc,ppCounter) ) - -#define ID3D11Device_CreateDeferredContext(This,ContextFlags,ppDeferredContext) \ - ( (This)->lpVtbl -> CreateDeferredContext(This,ContextFlags,ppDeferredContext) ) - -#define ID3D11Device_OpenSharedResource(This,hResource,ReturnedInterface,ppResource) \ - ( (This)->lpVtbl -> OpenSharedResource(This,hResource,ReturnedInterface,ppResource) ) - -#define ID3D11Device_CheckFormatSupport(This,Format,pFormatSupport) \ - ( (This)->lpVtbl -> CheckFormatSupport(This,Format,pFormatSupport) ) - -#define ID3D11Device_CheckMultisampleQualityLevels(This,Format,SampleCount,pNumQualityLevels) \ - ( (This)->lpVtbl -> CheckMultisampleQualityLevels(This,Format,SampleCount,pNumQualityLevels) ) - -#define ID3D11Device_CheckCounterInfo(This,pCounterInfo) \ - ( (This)->lpVtbl -> CheckCounterInfo(This,pCounterInfo) ) - -#define ID3D11Device_CheckCounter(This,pDesc,pType,pActiveCounters,szName,pNameLength,szUnits,pUnitsLength,szDescription,pDescriptionLength) \ - ( (This)->lpVtbl -> CheckCounter(This,pDesc,pType,pActiveCounters,szName,pNameLength,szUnits,pUnitsLength,szDescription,pDescriptionLength) ) - -#define ID3D11Device_CheckFeatureSupport(This,Feature,pFeatureSupportData,FeatureSupportDataSize) \ - ( (This)->lpVtbl -> CheckFeatureSupport(This,Feature,pFeatureSupportData,FeatureSupportDataSize) ) - -#define ID3D11Device_GetPrivateData(This,guid,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,guid,pDataSize,pData) ) - -#define ID3D11Device_SetPrivateData(This,guid,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,guid,DataSize,pData) ) - -#define ID3D11Device_SetPrivateDataInterface(This,guid,pData) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,guid,pData) ) - -#define ID3D11Device_GetFeatureLevel(This) \ - ( (This)->lpVtbl -> GetFeatureLevel(This) ) - -#define ID3D11Device_GetCreationFlags(This) \ - ( (This)->lpVtbl -> GetCreationFlags(This) ) - -#define ID3D11Device_GetDeviceRemovedReason(This) \ - ( (This)->lpVtbl -> GetDeviceRemovedReason(This) ) - -#define ID3D11Device_GetImmediateContext(This,ppImmediateContext) \ - ( (This)->lpVtbl -> GetImmediateContext(This,ppImmediateContext) ) - -#define ID3D11Device_SetExceptionMode(This,RaiseFlags) \ - ( (This)->lpVtbl -> SetExceptionMode(This,RaiseFlags) ) - -#define ID3D11Device_GetExceptionMode(This) \ - ( (This)->lpVtbl -> GetExceptionMode(This) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11Device_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d11_0000_0031 */ -/* [local] */ - -typedef -enum D3D11_CREATE_DEVICE_FLAG - { D3D11_CREATE_DEVICE_SINGLETHREADED = 0x1, - D3D11_CREATE_DEVICE_DEBUG = 0x2, - D3D11_CREATE_DEVICE_SWITCH_TO_REF = 0x4, - D3D11_CREATE_DEVICE_PREVENT_INTERNAL_THREADING_OPTIMIZATIONS = 0x8, - D3D11_CREATE_DEVICE_BGRA_SUPPORT = 0x20 - } D3D11_CREATE_DEVICE_FLAG; - -#define D3D11_SDK_VERSION ( 7 ) - -#include "d3d10_1.h" -#if !defined( D3D11_IGNORE_SDK_LAYERS ) -#include "d3d11sdklayers.h" -#endif -#include "d3d10misc.h" -#include "d3d10shader.h" -#include "d3d10effect.h" -#include "d3d10_1shader.h" - -/////////////////////////////////////////////////////////////////////////// -// D3D11CreateDevice -// ------------------ -// -// pAdapter -// If NULL, D3D11CreateDevice will choose the primary adapter and -// create a new instance from a temporarily created IDXGIFactory. -// If non-NULL, D3D11CreateDevice will register the appropriate -// device, if necessary (via IDXGIAdapter::RegisterDrver), before -// creating the device. -// DriverType -// Specifies the driver type to be created: hardware, reference or -// null. -// Software -// HMODULE of a DLL implementing a software rasterizer. Must be NULL for -// non-Software driver types. -// Flags -// Any of those documented for D3D11CreateDeviceAndSwapChain. -// pFeatureLevels -// Any of those documented for D3D11CreateDeviceAndSwapChain. -// FeatureLevels -// Size of feature levels array. -// SDKVersion -// SDK version. Use the D3D11_SDK_VERSION macro. -// ppDevice -// Pointer to returned interface. May be NULL. -// pFeatureLevel -// Pointer to returned feature level. May be NULL. -// ppImmediateContext -// Pointer to returned interface. May be NULL. -// -// Return Values -// Any of those documented for -// CreateDXGIFactory1 -// IDXGIFactory::EnumAdapters -// IDXGIAdapter::RegisterDriver -// D3D11CreateDevice -// -/////////////////////////////////////////////////////////////////////////// -typedef HRESULT (WINAPI* PFN_D3D11_CREATE_DEVICE)( __in_opt IDXGIAdapter*, - D3D_DRIVER_TYPE, HMODULE, UINT, - __in_ecount_opt( FeatureLevels ) CONST D3D_FEATURE_LEVEL*, - UINT FeatureLevels, UINT, __out_opt ID3D11Device**, - __out_opt D3D_FEATURE_LEVEL*, __out_opt ID3D11DeviceContext** ); - -HRESULT WINAPI D3D11CreateDevice( - __in_opt IDXGIAdapter* pAdapter, - D3D_DRIVER_TYPE DriverType, - HMODULE Software, - UINT Flags, - __in_ecount_opt( FeatureLevels ) CONST D3D_FEATURE_LEVEL* pFeatureLevels, - UINT FeatureLevels, - UINT SDKVersion, - __out_opt ID3D11Device** ppDevice, - __out_opt D3D_FEATURE_LEVEL* pFeatureLevel, - __out_opt ID3D11DeviceContext** ppImmediateContext ); - -/////////////////////////////////////////////////////////////////////////// -// D3D11CreateDeviceAndSwapChain -// ------------------------------ -// -// ppAdapter -// If NULL, D3D11CreateDevice will choose the primary adapter and -// create a new instance from a temporarily created IDXGIFactory. -// If non-NULL, D3D11CreateDevice will register the appropriate -// device, if necessary (via IDXGIAdapter::RegisterDrver), before -// creating the device. -// DriverType -// Specifies the driver type to be created: hardware, reference or -// null. -// Software -// HMODULE of a DLL implementing a software rasterizer. Must be NULL for -// non-Software driver types. -// Flags -// Any of those documented for D3D11CreateDevice. -// pFeatureLevels -// Array of any of the following: -// D3D_FEATURE_LEVEL_11_0 -// D3D_FEATURE_LEVEL_10_1 -// D3D_FEATURE_LEVEL_10_0 -// D3D_FEATURE_LEVEL_9_3 -// D3D_FEATURE_LEVEL_9_2 -// D3D_FEATURE_LEVEL_9_1 -// Order indicates sequence in which instantiation will be attempted. If -// NULL, then the implied order is the same as previously listed (i.e. -// prefer most features available). -// FeatureLevels -// Size of feature levels array. -// SDKVersion -// SDK version. Use the D3D11_SDK_VERSION macro. -// pSwapChainDesc -// Swap chain description, may be NULL. -// ppSwapChain -// Pointer to returned interface. May be NULL. -// ppDevice -// Pointer to returned interface. May be NULL. -// pFeatureLevel -// Pointer to returned feature level. May be NULL. -// ppImmediateContext -// Pointer to returned interface. May be NULL. -// -// Return Values -// Any of those documented for -// CreateDXGIFactory1 -// IDXGIFactory::EnumAdapters -// IDXGIAdapter::RegisterDriver -// D3D11CreateDevice -// IDXGIFactory::CreateSwapChain -// -/////////////////////////////////////////////////////////////////////////// -typedef HRESULT (WINAPI* PFN_D3D11_CREATE_DEVICE_AND_SWAP_CHAIN)( __in_opt IDXGIAdapter*, - D3D_DRIVER_TYPE, HMODULE, UINT, - __in_ecount_opt( FeatureLevels ) CONST D3D_FEATURE_LEVEL*, - UINT FeatureLevels, UINT, __in_opt CONST DXGI_SWAP_CHAIN_DESC*, - __out_opt IDXGISwapChain**, __out_opt ID3D11Device**, - __out_opt D3D_FEATURE_LEVEL*, __out_opt ID3D11DeviceContext** ); - -HRESULT WINAPI D3D11CreateDeviceAndSwapChain( - __in_opt IDXGIAdapter* pAdapter, - D3D_DRIVER_TYPE DriverType, - HMODULE Software, - UINT Flags, - __in_ecount_opt( FeatureLevels ) CONST D3D_FEATURE_LEVEL* pFeatureLevels, - UINT FeatureLevels, - UINT SDKVersion, - __in_opt CONST DXGI_SWAP_CHAIN_DESC* pSwapChainDesc, - __out_opt IDXGISwapChain** ppSwapChain, - __out_opt ID3D11Device** ppDevice, - __out_opt D3D_FEATURE_LEVEL* pFeatureLevel, - __out_opt ID3D11DeviceContext** ppImmediateContext ); - -DEFINE_GUID(IID_ID3D11DeviceChild,0x1841e5c8,0x16b0,0x489b,0xbc,0xc8,0x44,0xcf,0xb0,0xd5,0xde,0xae); -DEFINE_GUID(IID_ID3D11DepthStencilState,0x03823efb,0x8d8f,0x4e1c,0x9a,0xa2,0xf6,0x4b,0xb2,0xcb,0xfd,0xf1); -DEFINE_GUID(IID_ID3D11BlendState,0x75b68faa,0x347d,0x4159,0x8f,0x45,0xa0,0x64,0x0f,0x01,0xcd,0x9a); -DEFINE_GUID(IID_ID3D11RasterizerState,0x9bb4ab81,0xab1a,0x4d8f,0xb5,0x06,0xfc,0x04,0x20,0x0b,0x6e,0xe7); -DEFINE_GUID(IID_ID3D11Resource,0xdc8e63f3,0xd12b,0x4952,0xb4,0x7b,0x5e,0x45,0x02,0x6a,0x86,0x2d); -DEFINE_GUID(IID_ID3D11Buffer,0x48570b85,0xd1ee,0x4fcd,0xa2,0x50,0xeb,0x35,0x07,0x22,0xb0,0x37); -DEFINE_GUID(IID_ID3D11Texture1D,0xf8fb5c27,0xc6b3,0x4f75,0xa4,0xc8,0x43,0x9a,0xf2,0xef,0x56,0x4c); -DEFINE_GUID(IID_ID3D11Texture2D,0x6f15aaf2,0xd208,0x4e89,0x9a,0xb4,0x48,0x95,0x35,0xd3,0x4f,0x9c); -DEFINE_GUID(IID_ID3D11Texture3D,0x037e866e,0xf56d,0x4357,0xa8,0xaf,0x9d,0xab,0xbe,0x6e,0x25,0x0e); -DEFINE_GUID(IID_ID3D11View,0x839d1216,0xbb2e,0x412b,0xb7,0xf4,0xa9,0xdb,0xeb,0xe0,0x8e,0xd1); -DEFINE_GUID(IID_ID3D11ShaderResourceView,0xb0e06fe0,0x8192,0x4e1a,0xb1,0xca,0x36,0xd7,0x41,0x47,0x10,0xb2); -DEFINE_GUID(IID_ID3D11RenderTargetView,0xdfdba067,0x0b8d,0x4865,0x87,0x5b,0xd7,0xb4,0x51,0x6c,0xc1,0x64); -DEFINE_GUID(IID_ID3D11DepthStencilView,0x9fdac92a,0x1876,0x48c3,0xaf,0xad,0x25,0xb9,0x4f,0x84,0xa9,0xb6); -DEFINE_GUID(IID_ID3D11UnorderedAccessView,0x28acf509,0x7f5c,0x48f6,0x86,0x11,0xf3,0x16,0x01,0x0a,0x63,0x80); -DEFINE_GUID(IID_ID3D11VertexShader,0x3b301d64,0xd678,0x4289,0x88,0x97,0x22,0xf8,0x92,0x8b,0x72,0xf3); -DEFINE_GUID(IID_ID3D11HullShader,0x8e5c6061,0x628a,0x4c8e,0x82,0x64,0xbb,0xe4,0x5c,0xb3,0xd5,0xdd); -DEFINE_GUID(IID_ID3D11DomainShader,0xf582c508,0x0f36,0x490c,0x99,0x77,0x31,0xee,0xce,0x26,0x8c,0xfa); -DEFINE_GUID(IID_ID3D11GeometryShader,0x38325b96,0xeffb,0x4022,0xba,0x02,0x2e,0x79,0x5b,0x70,0x27,0x5c); -DEFINE_GUID(IID_ID3D11PixelShader,0xea82e40d,0x51dc,0x4f33,0x93,0xd4,0xdb,0x7c,0x91,0x25,0xae,0x8c); -DEFINE_GUID(IID_ID3D11ComputeShader,0x4f5b196e,0xc2bd,0x495e,0xbd,0x01,0x1f,0xde,0xd3,0x8e,0x49,0x69); -DEFINE_GUID(IID_ID3D11InputLayout,0xe4819ddc,0x4cf0,0x4025,0xbd,0x26,0x5d,0xe8,0x2a,0x3e,0x07,0xb7); -DEFINE_GUID(IID_ID3D11SamplerState,0xda6fea51,0x564c,0x4487,0x98,0x10,0xf0,0xd0,0xf9,0xb4,0xe3,0xa5); -DEFINE_GUID(IID_ID3D11Asynchronous,0x4b35d0cd,0x1e15,0x4258,0x9c,0x98,0x1b,0x13,0x33,0xf6,0xdd,0x3b); -DEFINE_GUID(IID_ID3D11Query,0xd6c00747,0x87b7,0x425e,0xb8,0x4d,0x44,0xd1,0x08,0x56,0x0a,0xfd); -DEFINE_GUID(IID_ID3D11Predicate,0x9eb576dd,0x9f77,0x4d86,0x81,0xaa,0x8b,0xab,0x5f,0xe4,0x90,0xe2); -DEFINE_GUID(IID_ID3D11Counter,0x6e8c49fb,0xa371,0x4770,0xb4,0x40,0x29,0x08,0x60,0x22,0xb7,0x41); -DEFINE_GUID(IID_ID3D11ClassInstance,0xa6cd7faa,0xb0b7,0x4a2f,0x94,0x36,0x86,0x62,0xa6,0x57,0x97,0xcb); -DEFINE_GUID(IID_ID3D11ClassLinkage,0xddf57cba,0x9543,0x46e4,0xa1,0x2b,0xf2,0x07,0xa0,0xfe,0x7f,0xed); -DEFINE_GUID(IID_ID3D11CommandList,0xa24bc4d1,0x769e,0x43f7,0x80,0x13,0x98,0xff,0x56,0x6c,0x18,0xe2); -DEFINE_GUID(IID_ID3D11DeviceContext,0xc0bfa96c,0xe089,0x44fb,0x8e,0xaf,0x26,0xf8,0x79,0x61,0x90,0xda); -DEFINE_GUID(IID_ID3D11Device,0xdb6f6ddb,0xac77,0x4e88,0x82,0x53,0x81,0x9d,0xf9,0xbb,0xf1,0x40); - - -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0031_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d11_0000_0031_v0_0_s_ifspec; - -/* Additional Prototypes for ALL interfaces */ - -/* end of Additional Prototypes */ - -#ifdef __cplusplus -} -#endif - -#endif - - diff --git a/SDK/Include/D3D11SDKLayers.h b/SDK/Include/D3D11SDKLayers.h deleted file mode 100644 index 5970f81..0000000 --- a/SDK/Include/D3D11SDKLayers.h +++ /dev/null @@ -1,1669 +0,0 @@ - - -/* this ALWAYS GENERATED file contains the definitions for the interfaces */ - - - /* File created by MIDL compiler version 7.00.0555 */ -/* Compiler settings for d3d11sdklayers.idl: - Oicf, W1, Zp8, env=Win64 (32b run), target_arch=AMD64 7.00.0555 - protocol : all , ms_ext, c_ext, robust - error checks: allocation ref bounds_check enum stub_data - VC __declspec() decoration level: - __declspec(uuid()), __declspec(selectany), __declspec(novtable) - DECLSPEC_UUID(), MIDL_INTERFACE() -*/ -/* @@MIDL_FILE_HEADING( ) */ - -#pragma warning( disable: 4049 ) /* more than 64k source lines */ - - -/* verify that the version is high enough to compile this file*/ -#ifndef __REQUIRED_RPCNDR_H_VERSION__ -#define __REQUIRED_RPCNDR_H_VERSION__ 475 -#endif - -/* verify that the version is high enough to compile this file*/ -#ifndef __REQUIRED_RPCSAL_H_VERSION__ -#define __REQUIRED_RPCSAL_H_VERSION__ 100 -#endif - -#include "rpc.h" -#include "rpcndr.h" - -#ifndef __RPCNDR_H_VERSION__ -#error this stub requires an updated version of -#endif // __RPCNDR_H_VERSION__ - -#ifndef COM_NO_WINDOWS_H -#include "windows.h" -#include "ole2.h" -#endif /*COM_NO_WINDOWS_H*/ - -#ifndef __d3d11sdklayers_h__ -#define __d3d11sdklayers_h__ - -#if defined(_MSC_VER) && (_MSC_VER >= 1020) -#pragma once -#endif - -/* Forward Declarations */ - -#ifndef __ID3D11Debug_FWD_DEFINED__ -#define __ID3D11Debug_FWD_DEFINED__ -typedef interface ID3D11Debug ID3D11Debug; -#endif /* __ID3D11Debug_FWD_DEFINED__ */ - - -#ifndef __ID3D11SwitchToRef_FWD_DEFINED__ -#define __ID3D11SwitchToRef_FWD_DEFINED__ -typedef interface ID3D11SwitchToRef ID3D11SwitchToRef; -#endif /* __ID3D11SwitchToRef_FWD_DEFINED__ */ - - -#ifndef __ID3D11InfoQueue_FWD_DEFINED__ -#define __ID3D11InfoQueue_FWD_DEFINED__ -typedef interface ID3D11InfoQueue ID3D11InfoQueue; -#endif /* __ID3D11InfoQueue_FWD_DEFINED__ */ - - -/* header files for imported files */ -#include "oaidl.h" -#include "ocidl.h" -#include "d3d11.h" - -#ifdef __cplusplus -extern "C"{ -#endif - - -/* interface __MIDL_itf_d3d11sdklayers_0000_0000 */ -/* [local] */ - -#define D3D11_SDK_LAYERS_VERSION ( 1 ) - -#define D3D11_DEBUG_FEATURE_FLUSH_PER_RENDER_OP ( 0x1 ) - -#define D3D11_DEBUG_FEATURE_FINISH_PER_RENDER_OP ( 0x2 ) - -#define D3D11_DEBUG_FEATURE_PRESENT_PER_RENDER_OP ( 0x4 ) - -typedef -enum D3D11_RLDO_FLAGS - { D3D11_RLDO_SUMMARY = 0x1, - D3D11_RLDO_DETAIL = 0x2 - } D3D11_RLDO_FLAGS; - -#if !defined( D3D11_NO_HELPERS ) && defined( __cplusplus ) -} -inline D3D11_RLDO_FLAGS operator~( D3D11_RLDO_FLAGS a ) -{ return D3D11_RLDO_FLAGS( ~UINT( a ) ); } -inline D3D11_RLDO_FLAGS operator&( D3D11_RLDO_FLAGS a, D3D11_RLDO_FLAGS b ) -{ return D3D11_RLDO_FLAGS( UINT( a ) & UINT( b ) ); } -inline D3D11_RLDO_FLAGS operator|( D3D11_RLDO_FLAGS a, D3D11_RLDO_FLAGS b ) -{ return D3D11_RLDO_FLAGS( UINT( a ) | UINT( b ) ); } -inline D3D11_RLDO_FLAGS operator^( D3D11_RLDO_FLAGS a, D3D11_RLDO_FLAGS b ) -{ return D3D11_RLDO_FLAGS( UINT( a ) ^ UINT( b ) ); } -inline D3D11_RLDO_FLAGS& operator&=( D3D11_RLDO_FLAGS& a, D3D11_RLDO_FLAGS b ) -{ a = a & b; return a; } -inline D3D11_RLDO_FLAGS& operator|=( D3D11_RLDO_FLAGS& a, D3D11_RLDO_FLAGS b ) -{ a = a | b; return a; } -inline D3D11_RLDO_FLAGS& operator^=( D3D11_RLDO_FLAGS& a, D3D11_RLDO_FLAGS b ) -{ a = a ^ b; return a; } -extern "C"{ -#endif - - -extern RPC_IF_HANDLE __MIDL_itf_d3d11sdklayers_0000_0000_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d11sdklayers_0000_0000_v0_0_s_ifspec; - -#ifndef __ID3D11Debug_INTERFACE_DEFINED__ -#define __ID3D11Debug_INTERFACE_DEFINED__ - -/* interface ID3D11Debug */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11Debug; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("79cf2233-7536-4948-9d36-1e4692dc5760") - ID3D11Debug : public IUnknown - { - public: - virtual HRESULT STDMETHODCALLTYPE SetFeatureMask( - UINT Mask) = 0; - - virtual UINT STDMETHODCALLTYPE GetFeatureMask( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE SetPresentPerRenderOpDelay( - UINT Milliseconds) = 0; - - virtual UINT STDMETHODCALLTYPE GetPresentPerRenderOpDelay( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE SetSwapChain( - /* [annotation] */ - __in_opt IDXGISwapChain *pSwapChain) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetSwapChain( - /* [annotation] */ - __out IDXGISwapChain **ppSwapChain) = 0; - - virtual HRESULT STDMETHODCALLTYPE ValidateContext( - /* [annotation] */ - __in ID3D11DeviceContext *pContext) = 0; - - virtual HRESULT STDMETHODCALLTYPE ReportLiveDeviceObjects( - D3D11_RLDO_FLAGS Flags) = 0; - - virtual HRESULT STDMETHODCALLTYPE ValidateContextForDispatch( - /* [annotation] */ - __in ID3D11DeviceContext *pContext) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D11DebugVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11Debug * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11Debug * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11Debug * This); - - HRESULT ( STDMETHODCALLTYPE *SetFeatureMask )( - ID3D11Debug * This, - UINT Mask); - - UINT ( STDMETHODCALLTYPE *GetFeatureMask )( - ID3D11Debug * This); - - HRESULT ( STDMETHODCALLTYPE *SetPresentPerRenderOpDelay )( - ID3D11Debug * This, - UINT Milliseconds); - - UINT ( STDMETHODCALLTYPE *GetPresentPerRenderOpDelay )( - ID3D11Debug * This); - - HRESULT ( STDMETHODCALLTYPE *SetSwapChain )( - ID3D11Debug * This, - /* [annotation] */ - __in_opt IDXGISwapChain *pSwapChain); - - HRESULT ( STDMETHODCALLTYPE *GetSwapChain )( - ID3D11Debug * This, - /* [annotation] */ - __out IDXGISwapChain **ppSwapChain); - - HRESULT ( STDMETHODCALLTYPE *ValidateContext )( - ID3D11Debug * This, - /* [annotation] */ - __in ID3D11DeviceContext *pContext); - - HRESULT ( STDMETHODCALLTYPE *ReportLiveDeviceObjects )( - ID3D11Debug * This, - D3D11_RLDO_FLAGS Flags); - - HRESULT ( STDMETHODCALLTYPE *ValidateContextForDispatch )( - ID3D11Debug * This, - /* [annotation] */ - __in ID3D11DeviceContext *pContext); - - END_INTERFACE - } ID3D11DebugVtbl; - - interface ID3D11Debug - { - CONST_VTBL struct ID3D11DebugVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11Debug_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11Debug_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11Debug_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11Debug_SetFeatureMask(This,Mask) \ - ( (This)->lpVtbl -> SetFeatureMask(This,Mask) ) - -#define ID3D11Debug_GetFeatureMask(This) \ - ( (This)->lpVtbl -> GetFeatureMask(This) ) - -#define ID3D11Debug_SetPresentPerRenderOpDelay(This,Milliseconds) \ - ( (This)->lpVtbl -> SetPresentPerRenderOpDelay(This,Milliseconds) ) - -#define ID3D11Debug_GetPresentPerRenderOpDelay(This) \ - ( (This)->lpVtbl -> GetPresentPerRenderOpDelay(This) ) - -#define ID3D11Debug_SetSwapChain(This,pSwapChain) \ - ( (This)->lpVtbl -> SetSwapChain(This,pSwapChain) ) - -#define ID3D11Debug_GetSwapChain(This,ppSwapChain) \ - ( (This)->lpVtbl -> GetSwapChain(This,ppSwapChain) ) - -#define ID3D11Debug_ValidateContext(This,pContext) \ - ( (This)->lpVtbl -> ValidateContext(This,pContext) ) - -#define ID3D11Debug_ReportLiveDeviceObjects(This,Flags) \ - ( (This)->lpVtbl -> ReportLiveDeviceObjects(This,Flags) ) - -#define ID3D11Debug_ValidateContextForDispatch(This,pContext) \ - ( (This)->lpVtbl -> ValidateContextForDispatch(This,pContext) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11Debug_INTERFACE_DEFINED__ */ - - -#ifndef __ID3D11SwitchToRef_INTERFACE_DEFINED__ -#define __ID3D11SwitchToRef_INTERFACE_DEFINED__ - -/* interface ID3D11SwitchToRef */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11SwitchToRef; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("1ef337e3-58e7-4f83-a692-db221f5ed47e") - ID3D11SwitchToRef : public IUnknown - { - public: - virtual BOOL STDMETHODCALLTYPE SetUseRef( - BOOL UseRef) = 0; - - virtual BOOL STDMETHODCALLTYPE GetUseRef( void) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D11SwitchToRefVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11SwitchToRef * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11SwitchToRef * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11SwitchToRef * This); - - BOOL ( STDMETHODCALLTYPE *SetUseRef )( - ID3D11SwitchToRef * This, - BOOL UseRef); - - BOOL ( STDMETHODCALLTYPE *GetUseRef )( - ID3D11SwitchToRef * This); - - END_INTERFACE - } ID3D11SwitchToRefVtbl; - - interface ID3D11SwitchToRef - { - CONST_VTBL struct ID3D11SwitchToRefVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11SwitchToRef_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11SwitchToRef_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11SwitchToRef_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11SwitchToRef_SetUseRef(This,UseRef) \ - ( (This)->lpVtbl -> SetUseRef(This,UseRef) ) - -#define ID3D11SwitchToRef_GetUseRef(This) \ - ( (This)->lpVtbl -> GetUseRef(This) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11SwitchToRef_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d11sdklayers_0000_0002 */ -/* [local] */ - -typedef -enum D3D11_MESSAGE_CATEGORY - { D3D11_MESSAGE_CATEGORY_APPLICATION_DEFINED = 0, - D3D11_MESSAGE_CATEGORY_MISCELLANEOUS = ( D3D11_MESSAGE_CATEGORY_APPLICATION_DEFINED + 1 ) , - D3D11_MESSAGE_CATEGORY_INITIALIZATION = ( D3D11_MESSAGE_CATEGORY_MISCELLANEOUS + 1 ) , - D3D11_MESSAGE_CATEGORY_CLEANUP = ( D3D11_MESSAGE_CATEGORY_INITIALIZATION + 1 ) , - D3D11_MESSAGE_CATEGORY_COMPILATION = ( D3D11_MESSAGE_CATEGORY_CLEANUP + 1 ) , - D3D11_MESSAGE_CATEGORY_STATE_CREATION = ( D3D11_MESSAGE_CATEGORY_COMPILATION + 1 ) , - D3D11_MESSAGE_CATEGORY_STATE_SETTING = ( D3D11_MESSAGE_CATEGORY_STATE_CREATION + 1 ) , - D3D11_MESSAGE_CATEGORY_STATE_GETTING = ( D3D11_MESSAGE_CATEGORY_STATE_SETTING + 1 ) , - D3D11_MESSAGE_CATEGORY_RESOURCE_MANIPULATION = ( D3D11_MESSAGE_CATEGORY_STATE_GETTING + 1 ) , - D3D11_MESSAGE_CATEGORY_EXECUTION = ( D3D11_MESSAGE_CATEGORY_RESOURCE_MANIPULATION + 1 ) - } D3D11_MESSAGE_CATEGORY; - -typedef -enum D3D11_MESSAGE_SEVERITY - { D3D11_MESSAGE_SEVERITY_CORRUPTION = 0, - D3D11_MESSAGE_SEVERITY_ERROR = ( D3D11_MESSAGE_SEVERITY_CORRUPTION + 1 ) , - D3D11_MESSAGE_SEVERITY_WARNING = ( D3D11_MESSAGE_SEVERITY_ERROR + 1 ) , - D3D11_MESSAGE_SEVERITY_INFO = ( D3D11_MESSAGE_SEVERITY_WARNING + 1 ) - } D3D11_MESSAGE_SEVERITY; - -typedef -enum D3D11_MESSAGE_ID - { D3D11_MESSAGE_ID_UNKNOWN = 0, - D3D11_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_HAZARD = ( D3D11_MESSAGE_ID_UNKNOWN + 1 ) , - D3D11_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_HAZARD = ( D3D11_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_HAZARD + 1 ) , - D3D11_MESSAGE_ID_DEVICE_VSSETSHADERRESOURCES_HAZARD = ( D3D11_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_HAZARD + 1 ) , - D3D11_MESSAGE_ID_DEVICE_VSSETCONSTANTBUFFERS_HAZARD = ( D3D11_MESSAGE_ID_DEVICE_VSSETSHADERRESOURCES_HAZARD + 1 ) , - D3D11_MESSAGE_ID_DEVICE_GSSETSHADERRESOURCES_HAZARD = ( D3D11_MESSAGE_ID_DEVICE_VSSETCONSTANTBUFFERS_HAZARD + 1 ) , - D3D11_MESSAGE_ID_DEVICE_GSSETCONSTANTBUFFERS_HAZARD = ( D3D11_MESSAGE_ID_DEVICE_GSSETSHADERRESOURCES_HAZARD + 1 ) , - D3D11_MESSAGE_ID_DEVICE_PSSETSHADERRESOURCES_HAZARD = ( D3D11_MESSAGE_ID_DEVICE_GSSETCONSTANTBUFFERS_HAZARD + 1 ) , - D3D11_MESSAGE_ID_DEVICE_PSSETCONSTANTBUFFERS_HAZARD = ( D3D11_MESSAGE_ID_DEVICE_PSSETSHADERRESOURCES_HAZARD + 1 ) , - D3D11_MESSAGE_ID_DEVICE_OMSETRENDERTARGETS_HAZARD = ( D3D11_MESSAGE_ID_DEVICE_PSSETCONSTANTBUFFERS_HAZARD + 1 ) , - D3D11_MESSAGE_ID_DEVICE_SOSETTARGETS_HAZARD = ( D3D11_MESSAGE_ID_DEVICE_OMSETRENDERTARGETS_HAZARD + 1 ) , - D3D11_MESSAGE_ID_STRING_FROM_APPLICATION = ( D3D11_MESSAGE_ID_DEVICE_SOSETTARGETS_HAZARD + 1 ) , - D3D11_MESSAGE_ID_CORRUPTED_THIS = ( D3D11_MESSAGE_ID_STRING_FROM_APPLICATION + 1 ) , - D3D11_MESSAGE_ID_CORRUPTED_PARAMETER1 = ( D3D11_MESSAGE_ID_CORRUPTED_THIS + 1 ) , - D3D11_MESSAGE_ID_CORRUPTED_PARAMETER2 = ( D3D11_MESSAGE_ID_CORRUPTED_PARAMETER1 + 1 ) , - D3D11_MESSAGE_ID_CORRUPTED_PARAMETER3 = ( D3D11_MESSAGE_ID_CORRUPTED_PARAMETER2 + 1 ) , - D3D11_MESSAGE_ID_CORRUPTED_PARAMETER4 = ( D3D11_MESSAGE_ID_CORRUPTED_PARAMETER3 + 1 ) , - D3D11_MESSAGE_ID_CORRUPTED_PARAMETER5 = ( D3D11_MESSAGE_ID_CORRUPTED_PARAMETER4 + 1 ) , - D3D11_MESSAGE_ID_CORRUPTED_PARAMETER6 = ( D3D11_MESSAGE_ID_CORRUPTED_PARAMETER5 + 1 ) , - D3D11_MESSAGE_ID_CORRUPTED_PARAMETER7 = ( D3D11_MESSAGE_ID_CORRUPTED_PARAMETER6 + 1 ) , - D3D11_MESSAGE_ID_CORRUPTED_PARAMETER8 = ( D3D11_MESSAGE_ID_CORRUPTED_PARAMETER7 + 1 ) , - D3D11_MESSAGE_ID_CORRUPTED_PARAMETER9 = ( D3D11_MESSAGE_ID_CORRUPTED_PARAMETER8 + 1 ) , - D3D11_MESSAGE_ID_CORRUPTED_PARAMETER10 = ( D3D11_MESSAGE_ID_CORRUPTED_PARAMETER9 + 1 ) , - D3D11_MESSAGE_ID_CORRUPTED_PARAMETER11 = ( D3D11_MESSAGE_ID_CORRUPTED_PARAMETER10 + 1 ) , - D3D11_MESSAGE_ID_CORRUPTED_PARAMETER12 = ( D3D11_MESSAGE_ID_CORRUPTED_PARAMETER11 + 1 ) , - D3D11_MESSAGE_ID_CORRUPTED_PARAMETER13 = ( D3D11_MESSAGE_ID_CORRUPTED_PARAMETER12 + 1 ) , - D3D11_MESSAGE_ID_CORRUPTED_PARAMETER14 = ( D3D11_MESSAGE_ID_CORRUPTED_PARAMETER13 + 1 ) , - D3D11_MESSAGE_ID_CORRUPTED_PARAMETER15 = ( D3D11_MESSAGE_ID_CORRUPTED_PARAMETER14 + 1 ) , - D3D11_MESSAGE_ID_CORRUPTED_MULTITHREADING = ( D3D11_MESSAGE_ID_CORRUPTED_PARAMETER15 + 1 ) , - D3D11_MESSAGE_ID_MESSAGE_REPORTING_OUTOFMEMORY = ( D3D11_MESSAGE_ID_CORRUPTED_MULTITHREADING + 1 ) , - D3D11_MESSAGE_ID_IASETINPUTLAYOUT_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_MESSAGE_REPORTING_OUTOFMEMORY + 1 ) , - D3D11_MESSAGE_ID_IASETVERTEXBUFFERS_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_IASETINPUTLAYOUT_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_IASETINDEXBUFFER_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_IASETVERTEXBUFFERS_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_VSSETSHADER_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_IASETINDEXBUFFER_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_VSSETSHADERRESOURCES_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_VSSETSHADER_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_VSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_VSSETSHADERRESOURCES_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_VSSETSAMPLERS_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_VSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_GSSETSHADER_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_VSSETSAMPLERS_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_GSSETSHADERRESOURCES_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_GSSETSHADER_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_GSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_GSSETSHADERRESOURCES_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_GSSETSAMPLERS_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_GSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_SOSETTARGETS_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_GSSETSAMPLERS_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_PSSETSHADER_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_SOSETTARGETS_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_PSSETSHADERRESOURCES_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_PSSETSHADER_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_PSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_PSSETSHADERRESOURCES_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_PSSETSAMPLERS_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_PSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_RSSETSTATE_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_PSSETSAMPLERS_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_OMSETBLENDSTATE_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_RSSETSTATE_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_OMSETDEPTHSTENCILSTATE_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_OMSETBLENDSTATE_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_OMSETRENDERTARGETS_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_OMSETDEPTHSTENCILSTATE_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_SETPREDICATION_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_OMSETRENDERTARGETS_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_GETPRIVATEDATA_MOREDATA = ( D3D11_MESSAGE_ID_SETPREDICATION_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_SETPRIVATEDATA_INVALIDFREEDATA = ( D3D11_MESSAGE_ID_GETPRIVATEDATA_MOREDATA + 1 ) , - D3D11_MESSAGE_ID_SETPRIVATEDATA_INVALIDIUNKNOWN = ( D3D11_MESSAGE_ID_SETPRIVATEDATA_INVALIDFREEDATA + 1 ) , - D3D11_MESSAGE_ID_SETPRIVATEDATA_INVALIDFLAGS = ( D3D11_MESSAGE_ID_SETPRIVATEDATA_INVALIDIUNKNOWN + 1 ) , - D3D11_MESSAGE_ID_SETPRIVATEDATA_CHANGINGPARAMS = ( D3D11_MESSAGE_ID_SETPRIVATEDATA_INVALIDFLAGS + 1 ) , - D3D11_MESSAGE_ID_SETPRIVATEDATA_OUTOFMEMORY = ( D3D11_MESSAGE_ID_SETPRIVATEDATA_CHANGINGPARAMS + 1 ) , - D3D11_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDFORMAT = ( D3D11_MESSAGE_ID_SETPRIVATEDATA_OUTOFMEMORY + 1 ) , - D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDSAMPLES = ( D3D11_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDFORMAT + 1 ) , - D3D11_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDUSAGE = ( D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDSAMPLES + 1 ) , - D3D11_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDBINDFLAGS = ( D3D11_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDUSAGE + 1 ) , - D3D11_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDCPUACCESSFLAGS = ( D3D11_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDBINDFLAGS + 1 ) , - D3D11_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDMISCFLAGS = ( D3D11_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDCPUACCESSFLAGS + 1 ) , - D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDCPUACCESSFLAGS = ( D3D11_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDMISCFLAGS + 1 ) , - D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDBINDFLAGS = ( D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDCPUACCESSFLAGS + 1 ) , - D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDINITIALDATA = ( D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDBINDFLAGS + 1 ) , - D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDDIMENSIONS = ( D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDINITIALDATA + 1 ) , - D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDMIPLEVELS = ( D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDDIMENSIONS + 1 ) , - D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDMISCFLAGS = ( D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDMIPLEVELS + 1 ) , - D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDARG_RETURN = ( D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDMISCFLAGS + 1 ) , - D3D11_MESSAGE_ID_CREATEBUFFER_OUTOFMEMORY_RETURN = ( D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDARG_RETURN + 1 ) , - D3D11_MESSAGE_ID_CREATEBUFFER_NULLDESC = ( D3D11_MESSAGE_ID_CREATEBUFFER_OUTOFMEMORY_RETURN + 1 ) , - D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDCONSTANTBUFFERBINDINGS = ( D3D11_MESSAGE_ID_CREATEBUFFER_NULLDESC + 1 ) , - D3D11_MESSAGE_ID_CREATEBUFFER_LARGEALLOCATION = ( D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDCONSTANTBUFFERBINDINGS + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDFORMAT = ( D3D11_MESSAGE_ID_CREATEBUFFER_LARGEALLOCATION + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE1D_UNSUPPORTEDFORMAT = ( D3D11_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDFORMAT + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDSAMPLES = ( D3D11_MESSAGE_ID_CREATETEXTURE1D_UNSUPPORTEDFORMAT + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDUSAGE = ( D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDSAMPLES + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDBINDFLAGS = ( D3D11_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDUSAGE + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDCPUACCESSFLAGS = ( D3D11_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDBINDFLAGS + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDMISCFLAGS = ( D3D11_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDCPUACCESSFLAGS + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDCPUACCESSFLAGS = ( D3D11_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDMISCFLAGS + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDBINDFLAGS = ( D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDCPUACCESSFLAGS + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDINITIALDATA = ( D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDBINDFLAGS + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDDIMENSIONS = ( D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDINITIALDATA + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDMIPLEVELS = ( D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDDIMENSIONS + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDMISCFLAGS = ( D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDMIPLEVELS + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDARG_RETURN = ( D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDMISCFLAGS + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE1D_OUTOFMEMORY_RETURN = ( D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDARG_RETURN + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE1D_NULLDESC = ( D3D11_MESSAGE_ID_CREATETEXTURE1D_OUTOFMEMORY_RETURN + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE1D_LARGEALLOCATION = ( D3D11_MESSAGE_ID_CREATETEXTURE1D_NULLDESC + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDFORMAT = ( D3D11_MESSAGE_ID_CREATETEXTURE1D_LARGEALLOCATION + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE2D_UNSUPPORTEDFORMAT = ( D3D11_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDFORMAT + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDSAMPLES = ( D3D11_MESSAGE_ID_CREATETEXTURE2D_UNSUPPORTEDFORMAT + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDUSAGE = ( D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDSAMPLES + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDBINDFLAGS = ( D3D11_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDUSAGE + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDCPUACCESSFLAGS = ( D3D11_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDBINDFLAGS + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDMISCFLAGS = ( D3D11_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDCPUACCESSFLAGS + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDCPUACCESSFLAGS = ( D3D11_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDMISCFLAGS + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDBINDFLAGS = ( D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDCPUACCESSFLAGS + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDINITIALDATA = ( D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDBINDFLAGS + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDDIMENSIONS = ( D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDINITIALDATA + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDMIPLEVELS = ( D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDDIMENSIONS + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDMISCFLAGS = ( D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDMIPLEVELS + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDARG_RETURN = ( D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDMISCFLAGS + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE2D_OUTOFMEMORY_RETURN = ( D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDARG_RETURN + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE2D_NULLDESC = ( D3D11_MESSAGE_ID_CREATETEXTURE2D_OUTOFMEMORY_RETURN + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE2D_LARGEALLOCATION = ( D3D11_MESSAGE_ID_CREATETEXTURE2D_NULLDESC + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDFORMAT = ( D3D11_MESSAGE_ID_CREATETEXTURE2D_LARGEALLOCATION + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE3D_UNSUPPORTEDFORMAT = ( D3D11_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDFORMAT + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDSAMPLES = ( D3D11_MESSAGE_ID_CREATETEXTURE3D_UNSUPPORTEDFORMAT + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDUSAGE = ( D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDSAMPLES + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDBINDFLAGS = ( D3D11_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDUSAGE + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDCPUACCESSFLAGS = ( D3D11_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDBINDFLAGS + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDMISCFLAGS = ( D3D11_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDCPUACCESSFLAGS + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDCPUACCESSFLAGS = ( D3D11_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDMISCFLAGS + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDBINDFLAGS = ( D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDCPUACCESSFLAGS + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDINITIALDATA = ( D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDBINDFLAGS + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDDIMENSIONS = ( D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDINITIALDATA + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDMIPLEVELS = ( D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDDIMENSIONS + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDMISCFLAGS = ( D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDMIPLEVELS + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDARG_RETURN = ( D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDMISCFLAGS + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE3D_OUTOFMEMORY_RETURN = ( D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDARG_RETURN + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE3D_NULLDESC = ( D3D11_MESSAGE_ID_CREATETEXTURE3D_OUTOFMEMORY_RETURN + 1 ) , - D3D11_MESSAGE_ID_CREATETEXTURE3D_LARGEALLOCATION = ( D3D11_MESSAGE_ID_CREATETEXTURE3D_NULLDESC + 1 ) , - D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_UNRECOGNIZEDFORMAT = ( D3D11_MESSAGE_ID_CREATETEXTURE3D_LARGEALLOCATION + 1 ) , - D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDESC = ( D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_UNRECOGNIZEDFORMAT + 1 ) , - D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDFORMAT = ( D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDESC + 1 ) , - D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDIMENSIONS = ( D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDFORMAT + 1 ) , - D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDRESOURCE = ( D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDIMENSIONS + 1 ) , - D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_TOOMANYOBJECTS = ( D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDRESOURCE + 1 ) , - D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDARG_RETURN = ( D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_TOOMANYOBJECTS + 1 ) , - D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_OUTOFMEMORY_RETURN = ( D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDARG_RETURN + 1 ) , - D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_UNRECOGNIZEDFORMAT = ( D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_OUTOFMEMORY_RETURN + 1 ) , - D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_UNSUPPORTEDFORMAT = ( D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_UNRECOGNIZEDFORMAT + 1 ) , - D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDESC = ( D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_UNSUPPORTEDFORMAT + 1 ) , - D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDFORMAT = ( D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDESC + 1 ) , - D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDIMENSIONS = ( D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDFORMAT + 1 ) , - D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDRESOURCE = ( D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDIMENSIONS + 1 ) , - D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_TOOMANYOBJECTS = ( D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDRESOURCE + 1 ) , - D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDARG_RETURN = ( D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_TOOMANYOBJECTS + 1 ) , - D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_OUTOFMEMORY_RETURN = ( D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDARG_RETURN + 1 ) , - D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_UNRECOGNIZEDFORMAT = ( D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_OUTOFMEMORY_RETURN + 1 ) , - D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDESC = ( D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_UNRECOGNIZEDFORMAT + 1 ) , - D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDFORMAT = ( D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDESC + 1 ) , - D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDIMENSIONS = ( D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDFORMAT + 1 ) , - D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDRESOURCE = ( D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDIMENSIONS + 1 ) , - D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_TOOMANYOBJECTS = ( D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDRESOURCE + 1 ) , - D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDARG_RETURN = ( D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_TOOMANYOBJECTS + 1 ) , - D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_OUTOFMEMORY_RETURN = ( D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDARG_RETURN + 1 ) , - D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_OUTOFMEMORY = ( D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_OUTOFMEMORY_RETURN + 1 ) , - D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_TOOMANYELEMENTS = ( D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_OUTOFMEMORY + 1 ) , - D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDFORMAT = ( D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_TOOMANYELEMENTS + 1 ) , - D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INCOMPATIBLEFORMAT = ( D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDFORMAT + 1 ) , - D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOT = ( D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INCOMPATIBLEFORMAT + 1 ) , - D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDINPUTSLOTCLASS = ( D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOT + 1 ) , - D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_STEPRATESLOTCLASSMISMATCH = ( D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDINPUTSLOTCLASS + 1 ) , - D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOTCLASSCHANGE = ( D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_STEPRATESLOTCLASSMISMATCH + 1 ) , - D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSTEPRATECHANGE = ( D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOTCLASSCHANGE + 1 ) , - D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDALIGNMENT = ( D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSTEPRATECHANGE + 1 ) , - D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_DUPLICATESEMANTIC = ( D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDALIGNMENT + 1 ) , - D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_UNPARSEABLEINPUTSIGNATURE = ( D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_DUPLICATESEMANTIC + 1 ) , - D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_NULLSEMANTIC = ( D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_UNPARSEABLEINPUTSIGNATURE + 1 ) , - D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_MISSINGELEMENT = ( D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_NULLSEMANTIC + 1 ) , - D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_NULLDESC = ( D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_MISSINGELEMENT + 1 ) , - D3D11_MESSAGE_ID_CREATEVERTEXSHADER_OUTOFMEMORY = ( D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_NULLDESC + 1 ) , - D3D11_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERBYTECODE = ( D3D11_MESSAGE_ID_CREATEVERTEXSHADER_OUTOFMEMORY + 1 ) , - D3D11_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERTYPE = ( D3D11_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERBYTECODE + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADER_OUTOFMEMORY = ( D3D11_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERTYPE + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERBYTECODE = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADER_OUTOFMEMORY + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERTYPE = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERBYTECODE + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTOFMEMORY = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERTYPE + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERBYTECODE = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTOFMEMORY + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERTYPE = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERBYTECODE + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMENTRIES = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERTYPE + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSTREAMSTRIDEUNUSED = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMENTRIES + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDDECL = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSTREAMSTRIDEUNUSED + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_EXPECTEDDECL = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDDECL + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSLOT0EXPECTED = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_EXPECTEDDECL + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSLOT = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSLOT0EXPECTED + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_ONLYONEELEMENTPERSLOT = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSLOT + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDCOMPONENTCOUNT = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_ONLYONEELEMENTPERSLOT + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTARTCOMPONENTANDCOMPONENTCOUNT = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDCOMPONENTCOUNT + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDGAPDEFINITION = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTARTCOMPONENTANDCOMPONENTCOUNT + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_REPEATEDOUTPUT = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDGAPDEFINITION + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSTREAMSTRIDE = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_REPEATEDOUTPUT + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGSEMANTIC = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSTREAMSTRIDE + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MASKMISMATCH = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGSEMANTIC + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_CANTHAVEONLYGAPS = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MASKMISMATCH + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DECLTOOCOMPLEX = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_CANTHAVEONLYGAPS + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGOUTPUTSIGNATURE = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DECLTOOCOMPLEX + 1 ) , - D3D11_MESSAGE_ID_CREATEPIXELSHADER_OUTOFMEMORY = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGOUTPUTSIGNATURE + 1 ) , - D3D11_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERBYTECODE = ( D3D11_MESSAGE_ID_CREATEPIXELSHADER_OUTOFMEMORY + 1 ) , - D3D11_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERTYPE = ( D3D11_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERBYTECODE + 1 ) , - D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDFILLMODE = ( D3D11_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERTYPE + 1 ) , - D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDCULLMODE = ( D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDFILLMODE + 1 ) , - D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDDEPTHBIASCLAMP = ( D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDCULLMODE + 1 ) , - D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDSLOPESCALEDDEPTHBIAS = ( D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDDEPTHBIASCLAMP + 1 ) , - D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_TOOMANYOBJECTS = ( D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDSLOPESCALEDDEPTHBIAS + 1 ) , - D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_NULLDESC = ( D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_TOOMANYOBJECTS + 1 ) , - D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHWRITEMASK = ( D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_NULLDESC + 1 ) , - D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHFUNC = ( D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHWRITEMASK + 1 ) , - D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFAILOP = ( D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHFUNC + 1 ) , - D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILZFAILOP = ( D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFAILOP + 1 ) , - D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILPASSOP = ( D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILZFAILOP + 1 ) , - D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFUNC = ( D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILPASSOP + 1 ) , - D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFAILOP = ( D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFUNC + 1 ) , - D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILZFAILOP = ( D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFAILOP + 1 ) , - D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILPASSOP = ( D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILZFAILOP + 1 ) , - D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFUNC = ( D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILPASSOP + 1 ) , - D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_TOOMANYOBJECTS = ( D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFUNC + 1 ) , - D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_NULLDESC = ( D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_TOOMANYOBJECTS + 1 ) , - D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLEND = ( D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_NULLDESC + 1 ) , - D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLEND = ( D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLEND + 1 ) , - D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOP = ( D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLEND + 1 ) , - D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLENDALPHA = ( D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOP + 1 ) , - D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLENDALPHA = ( D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLENDALPHA + 1 ) , - D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOPALPHA = ( D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLENDALPHA + 1 ) , - D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDRENDERTARGETWRITEMASK = ( D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOPALPHA + 1 ) , - D3D11_MESSAGE_ID_CREATEBLENDSTATE_TOOMANYOBJECTS = ( D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDRENDERTARGETWRITEMASK + 1 ) , - D3D11_MESSAGE_ID_CREATEBLENDSTATE_NULLDESC = ( D3D11_MESSAGE_ID_CREATEBLENDSTATE_TOOMANYOBJECTS + 1 ) , - D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDFILTER = ( D3D11_MESSAGE_ID_CREATEBLENDSTATE_NULLDESC + 1 ) , - D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSU = ( D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDFILTER + 1 ) , - D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSV = ( D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSU + 1 ) , - D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSW = ( D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSV + 1 ) , - D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMIPLODBIAS = ( D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSW + 1 ) , - D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMAXANISOTROPY = ( D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMIPLODBIAS + 1 ) , - D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDCOMPARISONFUNC = ( D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMAXANISOTROPY + 1 ) , - D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMINLOD = ( D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDCOMPARISONFUNC + 1 ) , - D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMAXLOD = ( D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMINLOD + 1 ) , - D3D11_MESSAGE_ID_CREATESAMPLERSTATE_TOOMANYOBJECTS = ( D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMAXLOD + 1 ) , - D3D11_MESSAGE_ID_CREATESAMPLERSTATE_NULLDESC = ( D3D11_MESSAGE_ID_CREATESAMPLERSTATE_TOOMANYOBJECTS + 1 ) , - D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_INVALIDQUERY = ( D3D11_MESSAGE_ID_CREATESAMPLERSTATE_NULLDESC + 1 ) , - D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_INVALIDMISCFLAGS = ( D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_INVALIDQUERY + 1 ) , - D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_UNEXPECTEDMISCFLAG = ( D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_INVALIDMISCFLAGS + 1 ) , - D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_NULLDESC = ( D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_UNEXPECTEDMISCFLAG + 1 ) , - D3D11_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_TOPOLOGY_UNRECOGNIZED = ( D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_NULLDESC + 1 ) , - D3D11_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_TOPOLOGY_UNDEFINED = ( D3D11_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_TOPOLOGY_UNRECOGNIZED + 1 ) , - D3D11_MESSAGE_ID_IASETVERTEXBUFFERS_INVALIDBUFFER = ( D3D11_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_TOPOLOGY_UNDEFINED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_OFFSET_TOO_LARGE = ( D3D11_MESSAGE_ID_IASETVERTEXBUFFERS_INVALIDBUFFER + 1 ) , - D3D11_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_BUFFERS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_OFFSET_TOO_LARGE + 1 ) , - D3D11_MESSAGE_ID_IASETINDEXBUFFER_INVALIDBUFFER = ( D3D11_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_BUFFERS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_FORMAT_INVALID = ( D3D11_MESSAGE_ID_IASETINDEXBUFFER_INVALIDBUFFER + 1 ) , - D3D11_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_OFFSET_TOO_LARGE = ( D3D11_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_FORMAT_INVALID + 1 ) , - D3D11_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_OFFSET_UNALIGNED = ( D3D11_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_OFFSET_TOO_LARGE + 1 ) , - D3D11_MESSAGE_ID_DEVICE_VSSETSHADERRESOURCES_VIEWS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_OFFSET_UNALIGNED + 1 ) , - D3D11_MESSAGE_ID_VSSETCONSTANTBUFFERS_INVALIDBUFFER = ( D3D11_MESSAGE_ID_DEVICE_VSSETSHADERRESOURCES_VIEWS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_VSSETCONSTANTBUFFERS_BUFFERS_EMPTY = ( D3D11_MESSAGE_ID_VSSETCONSTANTBUFFERS_INVALIDBUFFER + 1 ) , - D3D11_MESSAGE_ID_DEVICE_VSSETSAMPLERS_SAMPLERS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_VSSETCONSTANTBUFFERS_BUFFERS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_GSSETSHADERRESOURCES_VIEWS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_VSSETSAMPLERS_SAMPLERS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_GSSETCONSTANTBUFFERS_INVALIDBUFFER = ( D3D11_MESSAGE_ID_DEVICE_GSSETSHADERRESOURCES_VIEWS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_GSSETCONSTANTBUFFERS_BUFFERS_EMPTY = ( D3D11_MESSAGE_ID_GSSETCONSTANTBUFFERS_INVALIDBUFFER + 1 ) , - D3D11_MESSAGE_ID_DEVICE_GSSETSAMPLERS_SAMPLERS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_GSSETCONSTANTBUFFERS_BUFFERS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_SOSETTARGETS_INVALIDBUFFER = ( D3D11_MESSAGE_ID_DEVICE_GSSETSAMPLERS_SAMPLERS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_SOSETTARGETS_OFFSET_UNALIGNED = ( D3D11_MESSAGE_ID_SOSETTARGETS_INVALIDBUFFER + 1 ) , - D3D11_MESSAGE_ID_DEVICE_PSSETSHADERRESOURCES_VIEWS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_SOSETTARGETS_OFFSET_UNALIGNED + 1 ) , - D3D11_MESSAGE_ID_PSSETCONSTANTBUFFERS_INVALIDBUFFER = ( D3D11_MESSAGE_ID_DEVICE_PSSETSHADERRESOURCES_VIEWS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_PSSETCONSTANTBUFFERS_BUFFERS_EMPTY = ( D3D11_MESSAGE_ID_PSSETCONSTANTBUFFERS_INVALIDBUFFER + 1 ) , - D3D11_MESSAGE_ID_DEVICE_PSSETSAMPLERS_SAMPLERS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_PSSETCONSTANTBUFFERS_BUFFERS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_INVALIDVIEWPORT = ( D3D11_MESSAGE_ID_DEVICE_PSSETSAMPLERS_SAMPLERS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_INVALIDSCISSOR = ( D3D11_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_INVALIDVIEWPORT + 1 ) , - D3D11_MESSAGE_ID_CLEARRENDERTARGETVIEW_DENORMFLUSH = ( D3D11_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_INVALIDSCISSOR + 1 ) , - D3D11_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_DENORMFLUSH = ( D3D11_MESSAGE_ID_CLEARRENDERTARGETVIEW_DENORMFLUSH + 1 ) , - D3D11_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_INVALID = ( D3D11_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_DENORMFLUSH + 1 ) , - D3D11_MESSAGE_ID_DEVICE_IAGETVERTEXBUFFERS_BUFFERS_EMPTY = ( D3D11_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_INVALID + 1 ) , - D3D11_MESSAGE_ID_DEVICE_VSGETSHADERRESOURCES_VIEWS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_IAGETVERTEXBUFFERS_BUFFERS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_VSGETCONSTANTBUFFERS_BUFFERS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_VSGETSHADERRESOURCES_VIEWS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_VSGETSAMPLERS_SAMPLERS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_VSGETCONSTANTBUFFERS_BUFFERS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_GSGETSHADERRESOURCES_VIEWS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_VSGETSAMPLERS_SAMPLERS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_GSGETCONSTANTBUFFERS_BUFFERS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_GSGETSHADERRESOURCES_VIEWS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_GSGETSAMPLERS_SAMPLERS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_GSGETCONSTANTBUFFERS_BUFFERS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_SOGETTARGETS_BUFFERS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_GSGETSAMPLERS_SAMPLERS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_PSGETSHADERRESOURCES_VIEWS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_SOGETTARGETS_BUFFERS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_PSGETCONSTANTBUFFERS_BUFFERS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_PSGETSHADERRESOURCES_VIEWS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_PSGETSAMPLERS_SAMPLERS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_PSGETCONSTANTBUFFERS_BUFFERS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_RSGETVIEWPORTS_VIEWPORTS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_PSGETSAMPLERS_SAMPLERS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_RSGETSCISSORRECTS_RECTS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_RSGETVIEWPORTS_VIEWPORTS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_GENERATEMIPS_RESOURCE_INVALID = ( D3D11_MESSAGE_ID_DEVICE_RSGETSCISSORRECTS_RECTS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDDESTINATIONSUBRESOURCE = ( D3D11_MESSAGE_ID_DEVICE_GENERATEMIPS_RESOURCE_INVALID + 1 ) , - D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCESUBRESOURCE = ( D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDDESTINATIONSUBRESOURCE + 1 ) , - D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCEBOX = ( D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCESUBRESOURCE + 1 ) , - D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCE = ( D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCEBOX + 1 ) , - D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDDESTINATIONSTATE = ( D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCE + 1 ) , - D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCESTATE = ( D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDDESTINATIONSTATE + 1 ) , - D3D11_MESSAGE_ID_COPYRESOURCE_INVALIDSOURCE = ( D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCESTATE + 1 ) , - D3D11_MESSAGE_ID_COPYRESOURCE_INVALIDDESTINATIONSTATE = ( D3D11_MESSAGE_ID_COPYRESOURCE_INVALIDSOURCE + 1 ) , - D3D11_MESSAGE_ID_COPYRESOURCE_INVALIDSOURCESTATE = ( D3D11_MESSAGE_ID_COPYRESOURCE_INVALIDDESTINATIONSTATE + 1 ) , - D3D11_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONSUBRESOURCE = ( D3D11_MESSAGE_ID_COPYRESOURCE_INVALIDSOURCESTATE + 1 ) , - D3D11_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONBOX = ( D3D11_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONSUBRESOURCE + 1 ) , - D3D11_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONSTATE = ( D3D11_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONBOX + 1 ) , - D3D11_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_DESTINATION_INVALID = ( D3D11_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONSTATE + 1 ) , - D3D11_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_DESTINATION_SUBRESOURCE_INVALID = ( D3D11_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_DESTINATION_INVALID + 1 ) , - D3D11_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_SOURCE_INVALID = ( D3D11_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_DESTINATION_SUBRESOURCE_INVALID + 1 ) , - D3D11_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_SOURCE_SUBRESOURCE_INVALID = ( D3D11_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_SOURCE_INVALID + 1 ) , - D3D11_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_FORMAT_INVALID = ( D3D11_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_SOURCE_SUBRESOURCE_INVALID + 1 ) , - D3D11_MESSAGE_ID_BUFFER_MAP_INVALIDMAPTYPE = ( D3D11_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_FORMAT_INVALID + 1 ) , - D3D11_MESSAGE_ID_BUFFER_MAP_INVALIDFLAGS = ( D3D11_MESSAGE_ID_BUFFER_MAP_INVALIDMAPTYPE + 1 ) , - D3D11_MESSAGE_ID_BUFFER_MAP_ALREADYMAPPED = ( D3D11_MESSAGE_ID_BUFFER_MAP_INVALIDFLAGS + 1 ) , - D3D11_MESSAGE_ID_BUFFER_MAP_DEVICEREMOVED_RETURN = ( D3D11_MESSAGE_ID_BUFFER_MAP_ALREADYMAPPED + 1 ) , - D3D11_MESSAGE_ID_BUFFER_UNMAP_NOTMAPPED = ( D3D11_MESSAGE_ID_BUFFER_MAP_DEVICEREMOVED_RETURN + 1 ) , - D3D11_MESSAGE_ID_TEXTURE1D_MAP_INVALIDMAPTYPE = ( D3D11_MESSAGE_ID_BUFFER_UNMAP_NOTMAPPED + 1 ) , - D3D11_MESSAGE_ID_TEXTURE1D_MAP_INVALIDSUBRESOURCE = ( D3D11_MESSAGE_ID_TEXTURE1D_MAP_INVALIDMAPTYPE + 1 ) , - D3D11_MESSAGE_ID_TEXTURE1D_MAP_INVALIDFLAGS = ( D3D11_MESSAGE_ID_TEXTURE1D_MAP_INVALIDSUBRESOURCE + 1 ) , - D3D11_MESSAGE_ID_TEXTURE1D_MAP_ALREADYMAPPED = ( D3D11_MESSAGE_ID_TEXTURE1D_MAP_INVALIDFLAGS + 1 ) , - D3D11_MESSAGE_ID_TEXTURE1D_MAP_DEVICEREMOVED_RETURN = ( D3D11_MESSAGE_ID_TEXTURE1D_MAP_ALREADYMAPPED + 1 ) , - D3D11_MESSAGE_ID_TEXTURE1D_UNMAP_INVALIDSUBRESOURCE = ( D3D11_MESSAGE_ID_TEXTURE1D_MAP_DEVICEREMOVED_RETURN + 1 ) , - D3D11_MESSAGE_ID_TEXTURE1D_UNMAP_NOTMAPPED = ( D3D11_MESSAGE_ID_TEXTURE1D_UNMAP_INVALIDSUBRESOURCE + 1 ) , - D3D11_MESSAGE_ID_TEXTURE2D_MAP_INVALIDMAPTYPE = ( D3D11_MESSAGE_ID_TEXTURE1D_UNMAP_NOTMAPPED + 1 ) , - D3D11_MESSAGE_ID_TEXTURE2D_MAP_INVALIDSUBRESOURCE = ( D3D11_MESSAGE_ID_TEXTURE2D_MAP_INVALIDMAPTYPE + 1 ) , - D3D11_MESSAGE_ID_TEXTURE2D_MAP_INVALIDFLAGS = ( D3D11_MESSAGE_ID_TEXTURE2D_MAP_INVALIDSUBRESOURCE + 1 ) , - D3D11_MESSAGE_ID_TEXTURE2D_MAP_ALREADYMAPPED = ( D3D11_MESSAGE_ID_TEXTURE2D_MAP_INVALIDFLAGS + 1 ) , - D3D11_MESSAGE_ID_TEXTURE2D_MAP_DEVICEREMOVED_RETURN = ( D3D11_MESSAGE_ID_TEXTURE2D_MAP_ALREADYMAPPED + 1 ) , - D3D11_MESSAGE_ID_TEXTURE2D_UNMAP_INVALIDSUBRESOURCE = ( D3D11_MESSAGE_ID_TEXTURE2D_MAP_DEVICEREMOVED_RETURN + 1 ) , - D3D11_MESSAGE_ID_TEXTURE2D_UNMAP_NOTMAPPED = ( D3D11_MESSAGE_ID_TEXTURE2D_UNMAP_INVALIDSUBRESOURCE + 1 ) , - D3D11_MESSAGE_ID_TEXTURE3D_MAP_INVALIDMAPTYPE = ( D3D11_MESSAGE_ID_TEXTURE2D_UNMAP_NOTMAPPED + 1 ) , - D3D11_MESSAGE_ID_TEXTURE3D_MAP_INVALIDSUBRESOURCE = ( D3D11_MESSAGE_ID_TEXTURE3D_MAP_INVALIDMAPTYPE + 1 ) , - D3D11_MESSAGE_ID_TEXTURE3D_MAP_INVALIDFLAGS = ( D3D11_MESSAGE_ID_TEXTURE3D_MAP_INVALIDSUBRESOURCE + 1 ) , - D3D11_MESSAGE_ID_TEXTURE3D_MAP_ALREADYMAPPED = ( D3D11_MESSAGE_ID_TEXTURE3D_MAP_INVALIDFLAGS + 1 ) , - D3D11_MESSAGE_ID_TEXTURE3D_MAP_DEVICEREMOVED_RETURN = ( D3D11_MESSAGE_ID_TEXTURE3D_MAP_ALREADYMAPPED + 1 ) , - D3D11_MESSAGE_ID_TEXTURE3D_UNMAP_INVALIDSUBRESOURCE = ( D3D11_MESSAGE_ID_TEXTURE3D_MAP_DEVICEREMOVED_RETURN + 1 ) , - D3D11_MESSAGE_ID_TEXTURE3D_UNMAP_NOTMAPPED = ( D3D11_MESSAGE_ID_TEXTURE3D_UNMAP_INVALIDSUBRESOURCE + 1 ) , - D3D11_MESSAGE_ID_CHECKFORMATSUPPORT_FORMAT_DEPRECATED = ( D3D11_MESSAGE_ID_TEXTURE3D_UNMAP_NOTMAPPED + 1 ) , - D3D11_MESSAGE_ID_CHECKMULTISAMPLEQUALITYLEVELS_FORMAT_DEPRECATED = ( D3D11_MESSAGE_ID_CHECKFORMATSUPPORT_FORMAT_DEPRECATED + 1 ) , - D3D11_MESSAGE_ID_SETEXCEPTIONMODE_UNRECOGNIZEDFLAGS = ( D3D11_MESSAGE_ID_CHECKMULTISAMPLEQUALITYLEVELS_FORMAT_DEPRECATED + 1 ) , - D3D11_MESSAGE_ID_SETEXCEPTIONMODE_INVALIDARG_RETURN = ( D3D11_MESSAGE_ID_SETEXCEPTIONMODE_UNRECOGNIZEDFLAGS + 1 ) , - D3D11_MESSAGE_ID_SETEXCEPTIONMODE_DEVICEREMOVED_RETURN = ( D3D11_MESSAGE_ID_SETEXCEPTIONMODE_INVALIDARG_RETURN + 1 ) , - D3D11_MESSAGE_ID_REF_SIMULATING_INFINITELY_FAST_HARDWARE = ( D3D11_MESSAGE_ID_SETEXCEPTIONMODE_DEVICEREMOVED_RETURN + 1 ) , - D3D11_MESSAGE_ID_REF_THREADING_MODE = ( D3D11_MESSAGE_ID_REF_SIMULATING_INFINITELY_FAST_HARDWARE + 1 ) , - D3D11_MESSAGE_ID_REF_UMDRIVER_EXCEPTION = ( D3D11_MESSAGE_ID_REF_THREADING_MODE + 1 ) , - D3D11_MESSAGE_ID_REF_KMDRIVER_EXCEPTION = ( D3D11_MESSAGE_ID_REF_UMDRIVER_EXCEPTION + 1 ) , - D3D11_MESSAGE_ID_REF_HARDWARE_EXCEPTION = ( D3D11_MESSAGE_ID_REF_KMDRIVER_EXCEPTION + 1 ) , - D3D11_MESSAGE_ID_REF_ACCESSING_INDEXABLE_TEMP_OUT_OF_RANGE = ( D3D11_MESSAGE_ID_REF_HARDWARE_EXCEPTION + 1 ) , - D3D11_MESSAGE_ID_REF_PROBLEM_PARSING_SHADER = ( D3D11_MESSAGE_ID_REF_ACCESSING_INDEXABLE_TEMP_OUT_OF_RANGE + 1 ) , - D3D11_MESSAGE_ID_REF_OUT_OF_MEMORY = ( D3D11_MESSAGE_ID_REF_PROBLEM_PARSING_SHADER + 1 ) , - D3D11_MESSAGE_ID_REF_INFO = ( D3D11_MESSAGE_ID_REF_OUT_OF_MEMORY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEXPOS_OVERFLOW = ( D3D11_MESSAGE_ID_REF_INFO + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAWINDEXED_INDEXPOS_OVERFLOW = ( D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEXPOS_OVERFLOW + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAWINSTANCED_VERTEXPOS_OVERFLOW = ( D3D11_MESSAGE_ID_DEVICE_DRAWINDEXED_INDEXPOS_OVERFLOW + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAWINSTANCED_INSTANCEPOS_OVERFLOW = ( D3D11_MESSAGE_ID_DEVICE_DRAWINSTANCED_VERTEXPOS_OVERFLOW + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAWINDEXEDINSTANCED_INSTANCEPOS_OVERFLOW = ( D3D11_MESSAGE_ID_DEVICE_DRAWINSTANCED_INSTANCEPOS_OVERFLOW + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAWINDEXEDINSTANCED_INDEXPOS_OVERFLOW = ( D3D11_MESSAGE_ID_DEVICE_DRAWINDEXEDINSTANCED_INSTANCEPOS_OVERFLOW + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_SHADER_NOT_SET = ( D3D11_MESSAGE_ID_DEVICE_DRAWINDEXEDINSTANCED_INDEXPOS_OVERFLOW + 1 ) , - D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_SEMANTICNAME_NOT_FOUND = ( D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_SHADER_NOT_SET + 1 ) , - D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_REGISTERINDEX = ( D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_SEMANTICNAME_NOT_FOUND + 1 ) , - D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_COMPONENTTYPE = ( D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_REGISTERINDEX + 1 ) , - D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_REGISTERMASK = ( D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_COMPONENTTYPE + 1 ) , - D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_SYSTEMVALUE = ( D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_REGISTERMASK + 1 ) , - D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_NEVERWRITTEN_ALWAYSREADS = ( D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_SYSTEMVALUE + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_NOT_SET = ( D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_NEVERWRITTEN_ALWAYSREADS + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_INPUTLAYOUT_NOT_SET = ( D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_NOT_SET + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_CONSTANT_BUFFER_NOT_SET = ( D3D11_MESSAGE_ID_DEVICE_DRAW_INPUTLAYOUT_NOT_SET + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_CONSTANT_BUFFER_TOO_SMALL = ( D3D11_MESSAGE_ID_DEVICE_DRAW_CONSTANT_BUFFER_NOT_SET + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_SAMPLER_NOT_SET = ( D3D11_MESSAGE_ID_DEVICE_DRAW_CONSTANT_BUFFER_TOO_SMALL + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_SHADERRESOURCEVIEW_NOT_SET = ( D3D11_MESSAGE_ID_DEVICE_DRAW_SAMPLER_NOT_SET + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_VIEW_DIMENSION_MISMATCH = ( D3D11_MESSAGE_ID_DEVICE_DRAW_SHADERRESOURCEVIEW_NOT_SET + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_STRIDE_TOO_SMALL = ( D3D11_MESSAGE_ID_DEVICE_DRAW_VIEW_DIMENSION_MISMATCH + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_TOO_SMALL = ( D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_STRIDE_TOO_SMALL + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_NOT_SET = ( D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_TOO_SMALL + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_FORMAT_INVALID = ( D3D11_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_NOT_SET + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_TOO_SMALL = ( D3D11_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_FORMAT_INVALID + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_GS_INPUT_PRIMITIVE_MISMATCH = ( D3D11_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_TOO_SMALL + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_RETURN_TYPE_MISMATCH = ( D3D11_MESSAGE_ID_DEVICE_DRAW_GS_INPUT_PRIMITIVE_MISMATCH + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_POSITION_NOT_PRESENT = ( D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_RETURN_TYPE_MISMATCH + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_OUTPUT_STREAM_NOT_SET = ( D3D11_MESSAGE_ID_DEVICE_DRAW_POSITION_NOT_PRESENT + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_BOUND_RESOURCE_MAPPED = ( D3D11_MESSAGE_ID_DEVICE_DRAW_OUTPUT_STREAM_NOT_SET + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_INVALID_PRIMITIVETOPOLOGY = ( D3D11_MESSAGE_ID_DEVICE_DRAW_BOUND_RESOURCE_MAPPED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_OFFSET_UNALIGNED = ( D3D11_MESSAGE_ID_DEVICE_DRAW_INVALID_PRIMITIVETOPOLOGY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_STRIDE_UNALIGNED = ( D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_OFFSET_UNALIGNED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_INDEX_OFFSET_UNALIGNED = ( D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_STRIDE_UNALIGNED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_OUTPUT_STREAM_OFFSET_UNALIGNED = ( D3D11_MESSAGE_ID_DEVICE_DRAW_INDEX_OFFSET_UNALIGNED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_LD_UNSUPPORTED = ( D3D11_MESSAGE_ID_DEVICE_DRAW_OUTPUT_STREAM_OFFSET_UNALIGNED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_SAMPLE_UNSUPPORTED = ( D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_LD_UNSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_SAMPLE_C_UNSUPPORTED = ( D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_SAMPLE_UNSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_MULTISAMPLE_UNSUPPORTED = ( D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_SAMPLE_C_UNSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_SO_TARGETS_BOUND_WITHOUT_SOURCE = ( D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_MULTISAMPLE_UNSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_SO_STRIDE_LARGER_THAN_BUFFER = ( D3D11_MESSAGE_ID_DEVICE_DRAW_SO_TARGETS_BOUND_WITHOUT_SOURCE + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_OM_RENDER_TARGET_DOES_NOT_SUPPORT_BLENDING = ( D3D11_MESSAGE_ID_DEVICE_DRAW_SO_STRIDE_LARGER_THAN_BUFFER + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_OM_DUAL_SOURCE_BLENDING_CAN_ONLY_HAVE_RENDER_TARGET_0 = ( D3D11_MESSAGE_ID_DEVICE_DRAW_OM_RENDER_TARGET_DOES_NOT_SUPPORT_BLENDING + 1 ) , - D3D11_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_AT_FAULT = ( D3D11_MESSAGE_ID_DEVICE_DRAW_OM_DUAL_SOURCE_BLENDING_CAN_ONLY_HAVE_RENDER_TARGET_0 + 1 ) , - D3D11_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_POSSIBLY_AT_FAULT = ( D3D11_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_AT_FAULT + 1 ) , - D3D11_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_NOT_AT_FAULT = ( D3D11_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_POSSIBLY_AT_FAULT + 1 ) , - D3D11_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_INVALIDARG_RETURN = ( D3D11_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_NOT_AT_FAULT + 1 ) , - D3D11_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_OUTOFMEMORY_RETURN = ( D3D11_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_INVALIDARG_RETURN + 1 ) , - D3D11_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_BADINTERFACE_RETURN = ( D3D11_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_OUTOFMEMORY_RETURN + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_VIEWPORT_NOT_SET = ( D3D11_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_BADINTERFACE_RETURN + 1 ) , - D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_TRAILING_DIGIT_IN_SEMANTIC = ( D3D11_MESSAGE_ID_DEVICE_DRAW_VIEWPORT_NOT_SET + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_TRAILING_DIGIT_IN_SEMANTIC = ( D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_TRAILING_DIGIT_IN_SEMANTIC + 1 ) , - D3D11_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_DENORMFLUSH = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_TRAILING_DIGIT_IN_SEMANTIC + 1 ) , - D3D11_MESSAGE_ID_OMSETRENDERTARGETS_INVALIDVIEW = ( D3D11_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_DENORMFLUSH + 1 ) , - D3D11_MESSAGE_ID_DEVICE_SETTEXTFILTERSIZE_INVALIDDIMENSIONS = ( D3D11_MESSAGE_ID_OMSETRENDERTARGETS_INVALIDVIEW + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_SAMPLER_MISMATCH = ( D3D11_MESSAGE_ID_DEVICE_SETTEXTFILTERSIZE_INVALIDDIMENSIONS + 1 ) , - D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_TYPE_MISMATCH = ( D3D11_MESSAGE_ID_DEVICE_DRAW_SAMPLER_MISMATCH + 1 ) , - D3D11_MESSAGE_ID_BLENDSTATE_GETDESC_LEGACY = ( D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_TYPE_MISMATCH + 1 ) , - D3D11_MESSAGE_ID_SHADERRESOURCEVIEW_GETDESC_LEGACY = ( D3D11_MESSAGE_ID_BLENDSTATE_GETDESC_LEGACY + 1 ) , - D3D11_MESSAGE_ID_CREATEQUERY_OUTOFMEMORY_RETURN = ( D3D11_MESSAGE_ID_SHADERRESOURCEVIEW_GETDESC_LEGACY + 1 ) , - D3D11_MESSAGE_ID_CREATEPREDICATE_OUTOFMEMORY_RETURN = ( D3D11_MESSAGE_ID_CREATEQUERY_OUTOFMEMORY_RETURN + 1 ) , - D3D11_MESSAGE_ID_CREATECOUNTER_OUTOFRANGE_COUNTER = ( D3D11_MESSAGE_ID_CREATEPREDICATE_OUTOFMEMORY_RETURN + 1 ) , - D3D11_MESSAGE_ID_CREATECOUNTER_SIMULTANEOUS_ACTIVE_COUNTERS_EXHAUSTED = ( D3D11_MESSAGE_ID_CREATECOUNTER_OUTOFRANGE_COUNTER + 1 ) , - D3D11_MESSAGE_ID_CREATECOUNTER_UNSUPPORTED_WELLKNOWN_COUNTER = ( D3D11_MESSAGE_ID_CREATECOUNTER_SIMULTANEOUS_ACTIVE_COUNTERS_EXHAUSTED + 1 ) , - D3D11_MESSAGE_ID_CREATECOUNTER_OUTOFMEMORY_RETURN = ( D3D11_MESSAGE_ID_CREATECOUNTER_UNSUPPORTED_WELLKNOWN_COUNTER + 1 ) , - D3D11_MESSAGE_ID_CREATECOUNTER_NONEXCLUSIVE_RETURN = ( D3D11_MESSAGE_ID_CREATECOUNTER_OUTOFMEMORY_RETURN + 1 ) , - D3D11_MESSAGE_ID_CREATECOUNTER_NULLDESC = ( D3D11_MESSAGE_ID_CREATECOUNTER_NONEXCLUSIVE_RETURN + 1 ) , - D3D11_MESSAGE_ID_CHECKCOUNTER_OUTOFRANGE_COUNTER = ( D3D11_MESSAGE_ID_CREATECOUNTER_NULLDESC + 1 ) , - D3D11_MESSAGE_ID_CHECKCOUNTER_UNSUPPORTED_WELLKNOWN_COUNTER = ( D3D11_MESSAGE_ID_CHECKCOUNTER_OUTOFRANGE_COUNTER + 1 ) , - D3D11_MESSAGE_ID_SETPREDICATION_INVALID_PREDICATE_STATE = ( D3D11_MESSAGE_ID_CHECKCOUNTER_UNSUPPORTED_WELLKNOWN_COUNTER + 1 ) , - D3D11_MESSAGE_ID_QUERY_BEGIN_UNSUPPORTED = ( D3D11_MESSAGE_ID_SETPREDICATION_INVALID_PREDICATE_STATE + 1 ) , - D3D11_MESSAGE_ID_PREDICATE_BEGIN_DURING_PREDICATION = ( D3D11_MESSAGE_ID_QUERY_BEGIN_UNSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_QUERY_BEGIN_DUPLICATE = ( D3D11_MESSAGE_ID_PREDICATE_BEGIN_DURING_PREDICATION + 1 ) , - D3D11_MESSAGE_ID_QUERY_BEGIN_ABANDONING_PREVIOUS_RESULTS = ( D3D11_MESSAGE_ID_QUERY_BEGIN_DUPLICATE + 1 ) , - D3D11_MESSAGE_ID_PREDICATE_END_DURING_PREDICATION = ( D3D11_MESSAGE_ID_QUERY_BEGIN_ABANDONING_PREVIOUS_RESULTS + 1 ) , - D3D11_MESSAGE_ID_QUERY_END_ABANDONING_PREVIOUS_RESULTS = ( D3D11_MESSAGE_ID_PREDICATE_END_DURING_PREDICATION + 1 ) , - D3D11_MESSAGE_ID_QUERY_END_WITHOUT_BEGIN = ( D3D11_MESSAGE_ID_QUERY_END_ABANDONING_PREVIOUS_RESULTS + 1 ) , - D3D11_MESSAGE_ID_QUERY_GETDATA_INVALID_DATASIZE = ( D3D11_MESSAGE_ID_QUERY_END_WITHOUT_BEGIN + 1 ) , - D3D11_MESSAGE_ID_QUERY_GETDATA_INVALID_FLAGS = ( D3D11_MESSAGE_ID_QUERY_GETDATA_INVALID_DATASIZE + 1 ) , - D3D11_MESSAGE_ID_QUERY_GETDATA_INVALID_CALL = ( D3D11_MESSAGE_ID_QUERY_GETDATA_INVALID_FLAGS + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_PS_OUTPUT_TYPE_MISMATCH = ( D3D11_MESSAGE_ID_QUERY_GETDATA_INVALID_CALL + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_GATHER_UNSUPPORTED = ( D3D11_MESSAGE_ID_DEVICE_DRAW_PS_OUTPUT_TYPE_MISMATCH + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_INVALID_USE_OF_CENTER_MULTISAMPLE_PATTERN = ( D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_GATHER_UNSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_STRIDE_TOO_LARGE = ( D3D11_MESSAGE_ID_DEVICE_DRAW_INVALID_USE_OF_CENTER_MULTISAMPLE_PATTERN + 1 ) , - D3D11_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_INVALIDRANGE = ( D3D11_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_STRIDE_TOO_LARGE + 1 ) , - D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_EMPTY_LAYOUT = ( D3D11_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_INVALIDRANGE + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_SAMPLE_COUNT_MISMATCH = ( D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_EMPTY_LAYOUT + 1 ) , - D3D11_MESSAGE_ID_D3D10_MESSAGES_END = ( D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_SAMPLE_COUNT_MISMATCH + 1 ) , - D3D11_MESSAGE_ID_D3D10L9_MESSAGES_START = 0x100000, - D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_STENCIL_NO_TWO_SIDED = ( D3D11_MESSAGE_ID_D3D10L9_MESSAGES_START + 1 ) , - D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_DepthBiasClamp_NOT_SUPPORTED = ( D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_STENCIL_NO_TWO_SIDED + 1 ) , - D3D11_MESSAGE_ID_CREATESAMPLERSTATE_NO_COMPARISON_SUPPORT = ( D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_DepthBiasClamp_NOT_SUPPORTED + 1 ) , - D3D11_MESSAGE_ID_CREATESAMPLERSTATE_EXCESSIVE_ANISOTROPY = ( D3D11_MESSAGE_ID_CREATESAMPLERSTATE_NO_COMPARISON_SUPPORT + 1 ) , - D3D11_MESSAGE_ID_CREATESAMPLERSTATE_BORDER_OUT_OF_RANGE = ( D3D11_MESSAGE_ID_CREATESAMPLERSTATE_EXCESSIVE_ANISOTROPY + 1 ) , - D3D11_MESSAGE_ID_VSSETSAMPLERS_NOT_SUPPORTED = ( D3D11_MESSAGE_ID_CREATESAMPLERSTATE_BORDER_OUT_OF_RANGE + 1 ) , - D3D11_MESSAGE_ID_VSSETSAMPLERS_TOO_MANY_SAMPLERS = ( D3D11_MESSAGE_ID_VSSETSAMPLERS_NOT_SUPPORTED + 1 ) , - D3D11_MESSAGE_ID_PSSETSAMPLERS_TOO_MANY_SAMPLERS = ( D3D11_MESSAGE_ID_VSSETSAMPLERS_TOO_MANY_SAMPLERS + 1 ) , - D3D11_MESSAGE_ID_CREATERESOURCE_NO_ARRAYS = ( D3D11_MESSAGE_ID_PSSETSAMPLERS_TOO_MANY_SAMPLERS + 1 ) , - D3D11_MESSAGE_ID_CREATERESOURCE_NO_VB_AND_IB_BIND = ( D3D11_MESSAGE_ID_CREATERESOURCE_NO_ARRAYS + 1 ) , - D3D11_MESSAGE_ID_CREATERESOURCE_NO_TEXTURE_1D = ( D3D11_MESSAGE_ID_CREATERESOURCE_NO_VB_AND_IB_BIND + 1 ) , - D3D11_MESSAGE_ID_CREATERESOURCE_DIMENSION_OUT_OF_RANGE = ( D3D11_MESSAGE_ID_CREATERESOURCE_NO_TEXTURE_1D + 1 ) , - D3D11_MESSAGE_ID_CREATERESOURCE_NOT_BINDABLE_AS_SHADER_RESOURCE = ( D3D11_MESSAGE_ID_CREATERESOURCE_DIMENSION_OUT_OF_RANGE + 1 ) , - D3D11_MESSAGE_ID_OMSETRENDERTARGETS_TOO_MANY_RENDER_TARGETS = ( D3D11_MESSAGE_ID_CREATERESOURCE_NOT_BINDABLE_AS_SHADER_RESOURCE + 1 ) , - D3D11_MESSAGE_ID_OMSETRENDERTARGETS_NO_DIFFERING_BIT_DEPTHS = ( D3D11_MESSAGE_ID_OMSETRENDERTARGETS_TOO_MANY_RENDER_TARGETS + 1 ) , - D3D11_MESSAGE_ID_IASETVERTEXBUFFERS_BAD_BUFFER_INDEX = ( D3D11_MESSAGE_ID_OMSETRENDERTARGETS_NO_DIFFERING_BIT_DEPTHS + 1 ) , - D3D11_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_TOO_MANY_VIEWPORTS = ( D3D11_MESSAGE_ID_IASETVERTEXBUFFERS_BAD_BUFFER_INDEX + 1 ) , - D3D11_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_ADJACENCY_UNSUPPORTED = ( D3D11_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_TOO_MANY_VIEWPORTS + 1 ) , - D3D11_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_TOO_MANY_SCISSORS = ( D3D11_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_ADJACENCY_UNSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_COPYRESOURCE_ONLY_TEXTURE_2D_WITHIN_GPU_MEMORY = ( D3D11_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_TOO_MANY_SCISSORS + 1 ) , - D3D11_MESSAGE_ID_COPYRESOURCE_NO_TEXTURE_3D_READBACK = ( D3D11_MESSAGE_ID_COPYRESOURCE_ONLY_TEXTURE_2D_WITHIN_GPU_MEMORY + 1 ) , - D3D11_MESSAGE_ID_COPYRESOURCE_NO_TEXTURE_ONLY_READBACK = ( D3D11_MESSAGE_ID_COPYRESOURCE_NO_TEXTURE_3D_READBACK + 1 ) , - D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_UNSUPPORTED_FORMAT = ( D3D11_MESSAGE_ID_COPYRESOURCE_NO_TEXTURE_ONLY_READBACK + 1 ) , - D3D11_MESSAGE_ID_CREATEBLENDSTATE_NO_ALPHA_TO_COVERAGE = ( D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_UNSUPPORTED_FORMAT + 1 ) , - D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_DepthClipEnable_MUST_BE_TRUE = ( D3D11_MESSAGE_ID_CREATEBLENDSTATE_NO_ALPHA_TO_COVERAGE + 1 ) , - D3D11_MESSAGE_ID_DRAWINDEXED_STARTINDEXLOCATION_MUST_BE_POSITIVE = ( D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_DepthClipEnable_MUST_BE_TRUE + 1 ) , - D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_MUST_USE_LOWEST_LOD = ( D3D11_MESSAGE_ID_DRAWINDEXED_STARTINDEXLOCATION_MUST_BE_POSITIVE + 1 ) , - D3D11_MESSAGE_ID_CREATESAMPLERSTATE_MINLOD_MUST_NOT_BE_FRACTIONAL = ( D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_MUST_USE_LOWEST_LOD + 1 ) , - D3D11_MESSAGE_ID_CREATESAMPLERSTATE_MAXLOD_MUST_BE_FLT_MAX = ( D3D11_MESSAGE_ID_CREATESAMPLERSTATE_MINLOD_MUST_NOT_BE_FRACTIONAL + 1 ) , - D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_FIRSTARRAYSLICE_MUST_BE_ZERO = ( D3D11_MESSAGE_ID_CREATESAMPLERSTATE_MAXLOD_MUST_BE_FLT_MAX + 1 ) , - D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_CUBES_MUST_HAVE_6_SIDES = ( D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_FIRSTARRAYSLICE_MUST_BE_ZERO + 1 ) , - D3D11_MESSAGE_ID_CREATERESOURCE_NOT_BINDABLE_AS_RENDER_TARGET = ( D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_CUBES_MUST_HAVE_6_SIDES + 1 ) , - D3D11_MESSAGE_ID_CREATERESOURCE_NO_DWORD_INDEX_BUFFER = ( D3D11_MESSAGE_ID_CREATERESOURCE_NOT_BINDABLE_AS_RENDER_TARGET + 1 ) , - D3D11_MESSAGE_ID_CREATERESOURCE_MSAA_PRECLUDES_SHADER_RESOURCE = ( D3D11_MESSAGE_ID_CREATERESOURCE_NO_DWORD_INDEX_BUFFER + 1 ) , - D3D11_MESSAGE_ID_CREATERESOURCE_PRESENTATION_PRECLUDES_SHADER_RESOURCE = ( D3D11_MESSAGE_ID_CREATERESOURCE_MSAA_PRECLUDES_SHADER_RESOURCE + 1 ) , - D3D11_MESSAGE_ID_CREATEBLENDSTATE_NO_INDEPENDENT_BLEND_ENABLE = ( D3D11_MESSAGE_ID_CREATERESOURCE_PRESENTATION_PRECLUDES_SHADER_RESOURCE + 1 ) , - D3D11_MESSAGE_ID_CREATEBLENDSTATE_NO_INDEPENDENT_WRITE_MASKS = ( D3D11_MESSAGE_ID_CREATEBLENDSTATE_NO_INDEPENDENT_BLEND_ENABLE + 1 ) , - D3D11_MESSAGE_ID_CREATERESOURCE_NO_STREAM_OUT = ( D3D11_MESSAGE_ID_CREATEBLENDSTATE_NO_INDEPENDENT_WRITE_MASKS + 1 ) , - D3D11_MESSAGE_ID_CREATERESOURCE_ONLY_VB_IB_FOR_BUFFERS = ( D3D11_MESSAGE_ID_CREATERESOURCE_NO_STREAM_OUT + 1 ) , - D3D11_MESSAGE_ID_CREATERESOURCE_NO_AUTOGEN_FOR_VOLUMES = ( D3D11_MESSAGE_ID_CREATERESOURCE_ONLY_VB_IB_FOR_BUFFERS + 1 ) , - D3D11_MESSAGE_ID_CREATERESOURCE_DXGI_FORMAT_R8G8B8A8_CANNOT_BE_SHARED = ( D3D11_MESSAGE_ID_CREATERESOURCE_NO_AUTOGEN_FOR_VOLUMES + 1 ) , - D3D11_MESSAGE_ID_VSSHADERRESOURCES_NOT_SUPPORTED = ( D3D11_MESSAGE_ID_CREATERESOURCE_DXGI_FORMAT_R8G8B8A8_CANNOT_BE_SHARED + 1 ) , - D3D11_MESSAGE_ID_GEOMETRY_SHADER_NOT_SUPPORTED = ( D3D11_MESSAGE_ID_VSSHADERRESOURCES_NOT_SUPPORTED + 1 ) , - D3D11_MESSAGE_ID_STREAM_OUT_NOT_SUPPORTED = ( D3D11_MESSAGE_ID_GEOMETRY_SHADER_NOT_SUPPORTED + 1 ) , - D3D11_MESSAGE_ID_TEXT_FILTER_NOT_SUPPORTED = ( D3D11_MESSAGE_ID_STREAM_OUT_NOT_SUPPORTED + 1 ) , - D3D11_MESSAGE_ID_CREATEBLENDSTATE_NO_SEPARATE_ALPHA_BLEND = ( D3D11_MESSAGE_ID_TEXT_FILTER_NOT_SUPPORTED + 1 ) , - D3D11_MESSAGE_ID_CREATEBLENDSTATE_NO_MRT_BLEND = ( D3D11_MESSAGE_ID_CREATEBLENDSTATE_NO_SEPARATE_ALPHA_BLEND + 1 ) , - D3D11_MESSAGE_ID_CREATEBLENDSTATE_OPERATION_NOT_SUPPORTED = ( D3D11_MESSAGE_ID_CREATEBLENDSTATE_NO_MRT_BLEND + 1 ) , - D3D11_MESSAGE_ID_CREATESAMPLERSTATE_NO_MIRRORONCE = ( D3D11_MESSAGE_ID_CREATEBLENDSTATE_OPERATION_NOT_SUPPORTED + 1 ) , - D3D11_MESSAGE_ID_DRAWINSTANCED_NOT_SUPPORTED = ( D3D11_MESSAGE_ID_CREATESAMPLERSTATE_NO_MIRRORONCE + 1 ) , - D3D11_MESSAGE_ID_DRAWINDEXEDINSTANCED_NOT_SUPPORTED_BELOW_9_3 = ( D3D11_MESSAGE_ID_DRAWINSTANCED_NOT_SUPPORTED + 1 ) , - D3D11_MESSAGE_ID_DRAWINDEXED_POINTLIST_UNSUPPORTED = ( D3D11_MESSAGE_ID_DRAWINDEXEDINSTANCED_NOT_SUPPORTED_BELOW_9_3 + 1 ) , - D3D11_MESSAGE_ID_SETBLENDSTATE_SAMPLE_MASK_CANNOT_BE_ZERO = ( D3D11_MESSAGE_ID_DRAWINDEXED_POINTLIST_UNSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_CREATERESOURCE_DIMENSION_EXCEEDS_FEATURE_LEVEL_DEFINITION = ( D3D11_MESSAGE_ID_SETBLENDSTATE_SAMPLE_MASK_CANNOT_BE_ZERO + 1 ) , - D3D11_MESSAGE_ID_CREATERESOURCE_ONLY_SINGLE_MIP_LEVEL_DEPTH_STENCIL_SUPPORTED = ( D3D11_MESSAGE_ID_CREATERESOURCE_DIMENSION_EXCEEDS_FEATURE_LEVEL_DEFINITION + 1 ) , - D3D11_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_NEGATIVESCISSOR = ( D3D11_MESSAGE_ID_CREATERESOURCE_ONLY_SINGLE_MIP_LEVEL_DEPTH_STENCIL_SUPPORTED + 1 ) , - D3D11_MESSAGE_ID_SLOT_ZERO_MUST_BE_D3D10_INPUT_PER_VERTEX_DATA = ( D3D11_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_NEGATIVESCISSOR + 1 ) , - D3D11_MESSAGE_ID_CREATERESOURCE_NON_POW_2_MIPMAP = ( D3D11_MESSAGE_ID_SLOT_ZERO_MUST_BE_D3D10_INPUT_PER_VERTEX_DATA + 1 ) , - D3D11_MESSAGE_ID_CREATESAMPLERSTATE_BORDER_NOT_SUPPORTED = ( D3D11_MESSAGE_ID_CREATERESOURCE_NON_POW_2_MIPMAP + 1 ) , - D3D11_MESSAGE_ID_OMSETRENDERTARGETS_NO_SRGB_MRT = ( D3D11_MESSAGE_ID_CREATESAMPLERSTATE_BORDER_NOT_SUPPORTED + 1 ) , - D3D11_MESSAGE_ID_D3D10L9_MESSAGES_END = ( D3D11_MESSAGE_ID_OMSETRENDERTARGETS_NO_SRGB_MRT + 1 ) , - D3D11_MESSAGE_ID_D3D11_MESSAGES_START = 0x200000, - D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDFLAGS = ( D3D11_MESSAGE_ID_D3D11_MESSAGES_START + 1 ) , - D3D11_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDCLASSLINKAGE = ( D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDFLAGS + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDCLASSLINKAGE = ( D3D11_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDCLASSLINKAGE + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMSTREAMS = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDCLASSLINKAGE + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTREAMTORASTERIZER = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMSTREAMS + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDSTREAMS = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTREAMTORASTERIZER + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDCLASSLINKAGE = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDSTREAMS + 1 ) , - D3D11_MESSAGE_ID_CREATEPIXELSHADER_INVALIDCLASSLINKAGE = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDCLASSLINKAGE + 1 ) , - D3D11_MESSAGE_ID_CREATEDEFERREDCONTEXT_INVALID_COMMANDLISTFLAGS = ( D3D11_MESSAGE_ID_CREATEPIXELSHADER_INVALIDCLASSLINKAGE + 1 ) , - D3D11_MESSAGE_ID_CREATEDEFERREDCONTEXT_SINGLETHREADED = ( D3D11_MESSAGE_ID_CREATEDEFERREDCONTEXT_INVALID_COMMANDLISTFLAGS + 1 ) , - D3D11_MESSAGE_ID_CREATEDEFERREDCONTEXT_INVALIDARG_RETURN = ( D3D11_MESSAGE_ID_CREATEDEFERREDCONTEXT_SINGLETHREADED + 1 ) , - D3D11_MESSAGE_ID_CREATEDEFERREDCONTEXT_INVALID_CALL_RETURN = ( D3D11_MESSAGE_ID_CREATEDEFERREDCONTEXT_INVALIDARG_RETURN + 1 ) , - D3D11_MESSAGE_ID_CREATEDEFERREDCONTEXT_OUTOFMEMORY_RETURN = ( D3D11_MESSAGE_ID_CREATEDEFERREDCONTEXT_INVALID_CALL_RETURN + 1 ) , - D3D11_MESSAGE_ID_FINISHDISPLAYLIST_ONIMMEDIATECONTEXT = ( D3D11_MESSAGE_ID_CREATEDEFERREDCONTEXT_OUTOFMEMORY_RETURN + 1 ) , - D3D11_MESSAGE_ID_FINISHDISPLAYLIST_OUTOFMEMORY_RETURN = ( D3D11_MESSAGE_ID_FINISHDISPLAYLIST_ONIMMEDIATECONTEXT + 1 ) , - D3D11_MESSAGE_ID_FINISHDISPLAYLIST_INVALID_CALL_RETURN = ( D3D11_MESSAGE_ID_FINISHDISPLAYLIST_OUTOFMEMORY_RETURN + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTREAM = ( D3D11_MESSAGE_ID_FINISHDISPLAYLIST_INVALID_CALL_RETURN + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDENTRIES = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTREAM + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDSTRIDES = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDENTRIES + 1 ) , - D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMSTRIDES = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDSTRIDES + 1 ) , - D3D11_MESSAGE_ID_DEVICE_HSSETSHADERRESOURCES_HAZARD = ( D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMSTRIDES + 1 ) , - D3D11_MESSAGE_ID_DEVICE_HSSETCONSTANTBUFFERS_HAZARD = ( D3D11_MESSAGE_ID_DEVICE_HSSETSHADERRESOURCES_HAZARD + 1 ) , - D3D11_MESSAGE_ID_HSSETSHADERRESOURCES_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_DEVICE_HSSETCONSTANTBUFFERS_HAZARD + 1 ) , - D3D11_MESSAGE_ID_HSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_HSSETSHADERRESOURCES_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_CREATEHULLSHADER_INVALIDCALL = ( D3D11_MESSAGE_ID_HSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_CREATEHULLSHADER_OUTOFMEMORY = ( D3D11_MESSAGE_ID_CREATEHULLSHADER_INVALIDCALL + 1 ) , - D3D11_MESSAGE_ID_CREATEHULLSHADER_INVALIDSHADERBYTECODE = ( D3D11_MESSAGE_ID_CREATEHULLSHADER_OUTOFMEMORY + 1 ) , - D3D11_MESSAGE_ID_CREATEHULLSHADER_INVALIDSHADERTYPE = ( D3D11_MESSAGE_ID_CREATEHULLSHADER_INVALIDSHADERBYTECODE + 1 ) , - D3D11_MESSAGE_ID_CREATEHULLSHADER_INVALIDCLASSLINKAGE = ( D3D11_MESSAGE_ID_CREATEHULLSHADER_INVALIDSHADERTYPE + 1 ) , - D3D11_MESSAGE_ID_DEVICE_HSSETSHADERRESOURCES_VIEWS_EMPTY = ( D3D11_MESSAGE_ID_CREATEHULLSHADER_INVALIDCLASSLINKAGE + 1 ) , - D3D11_MESSAGE_ID_HSSETCONSTANTBUFFERS_INVALIDBUFFER = ( D3D11_MESSAGE_ID_DEVICE_HSSETSHADERRESOURCES_VIEWS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_HSSETCONSTANTBUFFERS_BUFFERS_EMPTY = ( D3D11_MESSAGE_ID_HSSETCONSTANTBUFFERS_INVALIDBUFFER + 1 ) , - D3D11_MESSAGE_ID_DEVICE_HSSETSAMPLERS_SAMPLERS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_HSSETCONSTANTBUFFERS_BUFFERS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_HSGETSHADERRESOURCES_VIEWS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_HSSETSAMPLERS_SAMPLERS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_HSGETCONSTANTBUFFERS_BUFFERS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_HSGETSHADERRESOURCES_VIEWS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_HSGETSAMPLERS_SAMPLERS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_HSGETCONSTANTBUFFERS_BUFFERS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DSSETSHADERRESOURCES_HAZARD = ( D3D11_MESSAGE_ID_DEVICE_HSGETSAMPLERS_SAMPLERS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DSSETCONSTANTBUFFERS_HAZARD = ( D3D11_MESSAGE_ID_DEVICE_DSSETSHADERRESOURCES_HAZARD + 1 ) , - D3D11_MESSAGE_ID_DSSETSHADERRESOURCES_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_DEVICE_DSSETCONSTANTBUFFERS_HAZARD + 1 ) , - D3D11_MESSAGE_ID_DSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_DSSETSHADERRESOURCES_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDCALL = ( D3D11_MESSAGE_ID_DSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_CREATEDOMAINSHADER_OUTOFMEMORY = ( D3D11_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDCALL + 1 ) , - D3D11_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDSHADERBYTECODE = ( D3D11_MESSAGE_ID_CREATEDOMAINSHADER_OUTOFMEMORY + 1 ) , - D3D11_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDSHADERTYPE = ( D3D11_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDSHADERBYTECODE + 1 ) , - D3D11_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDCLASSLINKAGE = ( D3D11_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDSHADERTYPE + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DSSETSHADERRESOURCES_VIEWS_EMPTY = ( D3D11_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDCLASSLINKAGE + 1 ) , - D3D11_MESSAGE_ID_DSSETCONSTANTBUFFERS_INVALIDBUFFER = ( D3D11_MESSAGE_ID_DEVICE_DSSETSHADERRESOURCES_VIEWS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DSSETCONSTANTBUFFERS_BUFFERS_EMPTY = ( D3D11_MESSAGE_ID_DSSETCONSTANTBUFFERS_INVALIDBUFFER + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DSSETSAMPLERS_SAMPLERS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_DSSETCONSTANTBUFFERS_BUFFERS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DSGETSHADERRESOURCES_VIEWS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_DSSETSAMPLERS_SAMPLERS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DSGETCONSTANTBUFFERS_BUFFERS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_DSGETSHADERRESOURCES_VIEWS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DSGETSAMPLERS_SAMPLERS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_DSGETCONSTANTBUFFERS_BUFFERS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_HS_XOR_DS_MISMATCH = ( D3D11_MESSAGE_ID_DEVICE_DSGETSAMPLERS_SAMPLERS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEFERRED_CONTEXT_REMOVAL_PROCESS_AT_FAULT = ( D3D11_MESSAGE_ID_DEVICE_DRAW_HS_XOR_DS_MISMATCH + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAWINDIRECT_INVALID_ARG_BUFFER = ( D3D11_MESSAGE_ID_DEFERRED_CONTEXT_REMOVAL_PROCESS_AT_FAULT + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAWINDIRECT_OFFSET_UNALIGNED = ( D3D11_MESSAGE_ID_DEVICE_DRAWINDIRECT_INVALID_ARG_BUFFER + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAWINDIRECT_OFFSET_OVERFLOW = ( D3D11_MESSAGE_ID_DEVICE_DRAWINDIRECT_OFFSET_UNALIGNED + 1 ) , - D3D11_MESSAGE_ID_RESOURCE_MAP_INVALIDMAPTYPE = ( D3D11_MESSAGE_ID_DEVICE_DRAWINDIRECT_OFFSET_OVERFLOW + 1 ) , - D3D11_MESSAGE_ID_RESOURCE_MAP_INVALIDSUBRESOURCE = ( D3D11_MESSAGE_ID_RESOURCE_MAP_INVALIDMAPTYPE + 1 ) , - D3D11_MESSAGE_ID_RESOURCE_MAP_INVALIDFLAGS = ( D3D11_MESSAGE_ID_RESOURCE_MAP_INVALIDSUBRESOURCE + 1 ) , - D3D11_MESSAGE_ID_RESOURCE_MAP_ALREADYMAPPED = ( D3D11_MESSAGE_ID_RESOURCE_MAP_INVALIDFLAGS + 1 ) , - D3D11_MESSAGE_ID_RESOURCE_MAP_DEVICEREMOVED_RETURN = ( D3D11_MESSAGE_ID_RESOURCE_MAP_ALREADYMAPPED + 1 ) , - D3D11_MESSAGE_ID_RESOURCE_MAP_OUTOFMEMORY_RETURN = ( D3D11_MESSAGE_ID_RESOURCE_MAP_DEVICEREMOVED_RETURN + 1 ) , - D3D11_MESSAGE_ID_RESOURCE_MAP_WITHOUT_INITIAL_DISCARD = ( D3D11_MESSAGE_ID_RESOURCE_MAP_OUTOFMEMORY_RETURN + 1 ) , - D3D11_MESSAGE_ID_RESOURCE_UNMAP_INVALIDSUBRESOURCE = ( D3D11_MESSAGE_ID_RESOURCE_MAP_WITHOUT_INITIAL_DISCARD + 1 ) , - D3D11_MESSAGE_ID_RESOURCE_UNMAP_NOTMAPPED = ( D3D11_MESSAGE_ID_RESOURCE_UNMAP_INVALIDSUBRESOURCE + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_RASTERIZING_CONTROL_POINTS = ( D3D11_MESSAGE_ID_RESOURCE_UNMAP_NOTMAPPED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_TOPOLOGY_UNSUPPORTED = ( D3D11_MESSAGE_ID_DEVICE_DRAW_RASTERIZING_CONTROL_POINTS + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_HS_DS_SIGNATURE_MISMATCH = ( D3D11_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_TOPOLOGY_UNSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_HULL_SHADER_INPUT_TOPOLOGY_MISMATCH = ( D3D11_MESSAGE_ID_DEVICE_DRAW_HS_DS_SIGNATURE_MISMATCH + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_HS_DS_CONTROL_POINT_COUNT_MISMATCH = ( D3D11_MESSAGE_ID_DEVICE_DRAW_HULL_SHADER_INPUT_TOPOLOGY_MISMATCH + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_HS_DS_TESSELLATOR_DOMAIN_MISMATCH = ( D3D11_MESSAGE_ID_DEVICE_DRAW_HS_DS_CONTROL_POINT_COUNT_MISMATCH + 1 ) , - D3D11_MESSAGE_ID_CREATE_CONTEXT = ( D3D11_MESSAGE_ID_DEVICE_DRAW_HS_DS_TESSELLATOR_DOMAIN_MISMATCH + 1 ) , - D3D11_MESSAGE_ID_LIVE_CONTEXT = ( D3D11_MESSAGE_ID_CREATE_CONTEXT + 1 ) , - D3D11_MESSAGE_ID_DESTROY_CONTEXT = ( D3D11_MESSAGE_ID_LIVE_CONTEXT + 1 ) , - D3D11_MESSAGE_ID_CREATE_BUFFER = ( D3D11_MESSAGE_ID_DESTROY_CONTEXT + 1 ) , - D3D11_MESSAGE_ID_LIVE_BUFFER = ( D3D11_MESSAGE_ID_CREATE_BUFFER + 1 ) , - D3D11_MESSAGE_ID_DESTROY_BUFFER = ( D3D11_MESSAGE_ID_LIVE_BUFFER + 1 ) , - D3D11_MESSAGE_ID_CREATE_TEXTURE1D = ( D3D11_MESSAGE_ID_DESTROY_BUFFER + 1 ) , - D3D11_MESSAGE_ID_LIVE_TEXTURE1D = ( D3D11_MESSAGE_ID_CREATE_TEXTURE1D + 1 ) , - D3D11_MESSAGE_ID_DESTROY_TEXTURE1D = ( D3D11_MESSAGE_ID_LIVE_TEXTURE1D + 1 ) , - D3D11_MESSAGE_ID_CREATE_TEXTURE2D = ( D3D11_MESSAGE_ID_DESTROY_TEXTURE1D + 1 ) , - D3D11_MESSAGE_ID_LIVE_TEXTURE2D = ( D3D11_MESSAGE_ID_CREATE_TEXTURE2D + 1 ) , - D3D11_MESSAGE_ID_DESTROY_TEXTURE2D = ( D3D11_MESSAGE_ID_LIVE_TEXTURE2D + 1 ) , - D3D11_MESSAGE_ID_CREATE_TEXTURE3D = ( D3D11_MESSAGE_ID_DESTROY_TEXTURE2D + 1 ) , - D3D11_MESSAGE_ID_LIVE_TEXTURE3D = ( D3D11_MESSAGE_ID_CREATE_TEXTURE3D + 1 ) , - D3D11_MESSAGE_ID_DESTROY_TEXTURE3D = ( D3D11_MESSAGE_ID_LIVE_TEXTURE3D + 1 ) , - D3D11_MESSAGE_ID_CREATE_SHADERRESOURCEVIEW = ( D3D11_MESSAGE_ID_DESTROY_TEXTURE3D + 1 ) , - D3D11_MESSAGE_ID_LIVE_SHADERRESOURCEVIEW = ( D3D11_MESSAGE_ID_CREATE_SHADERRESOURCEVIEW + 1 ) , - D3D11_MESSAGE_ID_DESTROY_SHADERRESOURCEVIEW = ( D3D11_MESSAGE_ID_LIVE_SHADERRESOURCEVIEW + 1 ) , - D3D11_MESSAGE_ID_CREATE_RENDERTARGETVIEW = ( D3D11_MESSAGE_ID_DESTROY_SHADERRESOURCEVIEW + 1 ) , - D3D11_MESSAGE_ID_LIVE_RENDERTARGETVIEW = ( D3D11_MESSAGE_ID_CREATE_RENDERTARGETVIEW + 1 ) , - D3D11_MESSAGE_ID_DESTROY_RENDERTARGETVIEW = ( D3D11_MESSAGE_ID_LIVE_RENDERTARGETVIEW + 1 ) , - D3D11_MESSAGE_ID_CREATE_DEPTHSTENCILVIEW = ( D3D11_MESSAGE_ID_DESTROY_RENDERTARGETVIEW + 1 ) , - D3D11_MESSAGE_ID_LIVE_DEPTHSTENCILVIEW = ( D3D11_MESSAGE_ID_CREATE_DEPTHSTENCILVIEW + 1 ) , - D3D11_MESSAGE_ID_DESTROY_DEPTHSTENCILVIEW = ( D3D11_MESSAGE_ID_LIVE_DEPTHSTENCILVIEW + 1 ) , - D3D11_MESSAGE_ID_CREATE_VERTEXSHADER = ( D3D11_MESSAGE_ID_DESTROY_DEPTHSTENCILVIEW + 1 ) , - D3D11_MESSAGE_ID_LIVE_VERTEXSHADER = ( D3D11_MESSAGE_ID_CREATE_VERTEXSHADER + 1 ) , - D3D11_MESSAGE_ID_DESTROY_VERTEXSHADER = ( D3D11_MESSAGE_ID_LIVE_VERTEXSHADER + 1 ) , - D3D11_MESSAGE_ID_CREATE_HULLSHADER = ( D3D11_MESSAGE_ID_DESTROY_VERTEXSHADER + 1 ) , - D3D11_MESSAGE_ID_LIVE_HULLSHADER = ( D3D11_MESSAGE_ID_CREATE_HULLSHADER + 1 ) , - D3D11_MESSAGE_ID_DESTROY_HULLSHADER = ( D3D11_MESSAGE_ID_LIVE_HULLSHADER + 1 ) , - D3D11_MESSAGE_ID_CREATE_DOMAINSHADER = ( D3D11_MESSAGE_ID_DESTROY_HULLSHADER + 1 ) , - D3D11_MESSAGE_ID_LIVE_DOMAINSHADER = ( D3D11_MESSAGE_ID_CREATE_DOMAINSHADER + 1 ) , - D3D11_MESSAGE_ID_DESTROY_DOMAINSHADER = ( D3D11_MESSAGE_ID_LIVE_DOMAINSHADER + 1 ) , - D3D11_MESSAGE_ID_CREATE_GEOMETRYSHADER = ( D3D11_MESSAGE_ID_DESTROY_DOMAINSHADER + 1 ) , - D3D11_MESSAGE_ID_LIVE_GEOMETRYSHADER = ( D3D11_MESSAGE_ID_CREATE_GEOMETRYSHADER + 1 ) , - D3D11_MESSAGE_ID_DESTROY_GEOMETRYSHADER = ( D3D11_MESSAGE_ID_LIVE_GEOMETRYSHADER + 1 ) , - D3D11_MESSAGE_ID_CREATE_PIXELSHADER = ( D3D11_MESSAGE_ID_DESTROY_GEOMETRYSHADER + 1 ) , - D3D11_MESSAGE_ID_LIVE_PIXELSHADER = ( D3D11_MESSAGE_ID_CREATE_PIXELSHADER + 1 ) , - D3D11_MESSAGE_ID_DESTROY_PIXELSHADER = ( D3D11_MESSAGE_ID_LIVE_PIXELSHADER + 1 ) , - D3D11_MESSAGE_ID_CREATE_INPUTLAYOUT = ( D3D11_MESSAGE_ID_DESTROY_PIXELSHADER + 1 ) , - D3D11_MESSAGE_ID_LIVE_INPUTLAYOUT = ( D3D11_MESSAGE_ID_CREATE_INPUTLAYOUT + 1 ) , - D3D11_MESSAGE_ID_DESTROY_INPUTLAYOUT = ( D3D11_MESSAGE_ID_LIVE_INPUTLAYOUT + 1 ) , - D3D11_MESSAGE_ID_CREATE_SAMPLER = ( D3D11_MESSAGE_ID_DESTROY_INPUTLAYOUT + 1 ) , - D3D11_MESSAGE_ID_LIVE_SAMPLER = ( D3D11_MESSAGE_ID_CREATE_SAMPLER + 1 ) , - D3D11_MESSAGE_ID_DESTROY_SAMPLER = ( D3D11_MESSAGE_ID_LIVE_SAMPLER + 1 ) , - D3D11_MESSAGE_ID_CREATE_BLENDSTATE = ( D3D11_MESSAGE_ID_DESTROY_SAMPLER + 1 ) , - D3D11_MESSAGE_ID_LIVE_BLENDSTATE = ( D3D11_MESSAGE_ID_CREATE_BLENDSTATE + 1 ) , - D3D11_MESSAGE_ID_DESTROY_BLENDSTATE = ( D3D11_MESSAGE_ID_LIVE_BLENDSTATE + 1 ) , - D3D11_MESSAGE_ID_CREATE_DEPTHSTENCILSTATE = ( D3D11_MESSAGE_ID_DESTROY_BLENDSTATE + 1 ) , - D3D11_MESSAGE_ID_LIVE_DEPTHSTENCILSTATE = ( D3D11_MESSAGE_ID_CREATE_DEPTHSTENCILSTATE + 1 ) , - D3D11_MESSAGE_ID_DESTROY_DEPTHSTENCILSTATE = ( D3D11_MESSAGE_ID_LIVE_DEPTHSTENCILSTATE + 1 ) , - D3D11_MESSAGE_ID_CREATE_RASTERIZERSTATE = ( D3D11_MESSAGE_ID_DESTROY_DEPTHSTENCILSTATE + 1 ) , - D3D11_MESSAGE_ID_LIVE_RASTERIZERSTATE = ( D3D11_MESSAGE_ID_CREATE_RASTERIZERSTATE + 1 ) , - D3D11_MESSAGE_ID_DESTROY_RASTERIZERSTATE = ( D3D11_MESSAGE_ID_LIVE_RASTERIZERSTATE + 1 ) , - D3D11_MESSAGE_ID_CREATE_QUERY = ( D3D11_MESSAGE_ID_DESTROY_RASTERIZERSTATE + 1 ) , - D3D11_MESSAGE_ID_LIVE_QUERY = ( D3D11_MESSAGE_ID_CREATE_QUERY + 1 ) , - D3D11_MESSAGE_ID_DESTROY_QUERY = ( D3D11_MESSAGE_ID_LIVE_QUERY + 1 ) , - D3D11_MESSAGE_ID_CREATE_PREDICATE = ( D3D11_MESSAGE_ID_DESTROY_QUERY + 1 ) , - D3D11_MESSAGE_ID_LIVE_PREDICATE = ( D3D11_MESSAGE_ID_CREATE_PREDICATE + 1 ) , - D3D11_MESSAGE_ID_DESTROY_PREDICATE = ( D3D11_MESSAGE_ID_LIVE_PREDICATE + 1 ) , - D3D11_MESSAGE_ID_CREATE_COUNTER = ( D3D11_MESSAGE_ID_DESTROY_PREDICATE + 1 ) , - D3D11_MESSAGE_ID_LIVE_COUNTER = ( D3D11_MESSAGE_ID_CREATE_COUNTER + 1 ) , - D3D11_MESSAGE_ID_DESTROY_COUNTER = ( D3D11_MESSAGE_ID_LIVE_COUNTER + 1 ) , - D3D11_MESSAGE_ID_CREATE_COMMANDLIST = ( D3D11_MESSAGE_ID_DESTROY_COUNTER + 1 ) , - D3D11_MESSAGE_ID_LIVE_COMMANDLIST = ( D3D11_MESSAGE_ID_CREATE_COMMANDLIST + 1 ) , - D3D11_MESSAGE_ID_DESTROY_COMMANDLIST = ( D3D11_MESSAGE_ID_LIVE_COMMANDLIST + 1 ) , - D3D11_MESSAGE_ID_CREATE_CLASSINSTANCE = ( D3D11_MESSAGE_ID_DESTROY_COMMANDLIST + 1 ) , - D3D11_MESSAGE_ID_LIVE_CLASSINSTANCE = ( D3D11_MESSAGE_ID_CREATE_CLASSINSTANCE + 1 ) , - D3D11_MESSAGE_ID_DESTROY_CLASSINSTANCE = ( D3D11_MESSAGE_ID_LIVE_CLASSINSTANCE + 1 ) , - D3D11_MESSAGE_ID_CREATE_CLASSLINKAGE = ( D3D11_MESSAGE_ID_DESTROY_CLASSINSTANCE + 1 ) , - D3D11_MESSAGE_ID_LIVE_CLASSLINKAGE = ( D3D11_MESSAGE_ID_CREATE_CLASSLINKAGE + 1 ) , - D3D11_MESSAGE_ID_DESTROY_CLASSLINKAGE = ( D3D11_MESSAGE_ID_LIVE_CLASSLINKAGE + 1 ) , - D3D11_MESSAGE_ID_LIVE_DEVICE = ( D3D11_MESSAGE_ID_DESTROY_CLASSLINKAGE + 1 ) , - D3D11_MESSAGE_ID_LIVE_OBJECT_SUMMARY = ( D3D11_MESSAGE_ID_LIVE_DEVICE + 1 ) , - D3D11_MESSAGE_ID_CREATE_COMPUTESHADER = ( D3D11_MESSAGE_ID_LIVE_OBJECT_SUMMARY + 1 ) , - D3D11_MESSAGE_ID_LIVE_COMPUTESHADER = ( D3D11_MESSAGE_ID_CREATE_COMPUTESHADER + 1 ) , - D3D11_MESSAGE_ID_DESTROY_COMPUTESHADER = ( D3D11_MESSAGE_ID_LIVE_COMPUTESHADER + 1 ) , - D3D11_MESSAGE_ID_CREATE_UNORDEREDACCESSVIEW = ( D3D11_MESSAGE_ID_DESTROY_COMPUTESHADER + 1 ) , - D3D11_MESSAGE_ID_LIVE_UNORDEREDACCESSVIEW = ( D3D11_MESSAGE_ID_CREATE_UNORDEREDACCESSVIEW + 1 ) , - D3D11_MESSAGE_ID_DESTROY_UNORDEREDACCESSVIEW = ( D3D11_MESSAGE_ID_LIVE_UNORDEREDACCESSVIEW + 1 ) , - D3D11_MESSAGE_ID_DEVICE_SETSHADER_INTERFACES_FEATURELEVEL = ( D3D11_MESSAGE_ID_DESTROY_UNORDEREDACCESSVIEW + 1 ) , - D3D11_MESSAGE_ID_DEVICE_SETSHADER_INTERFACE_COUNT_MISMATCH = ( D3D11_MESSAGE_ID_DEVICE_SETSHADER_INTERFACES_FEATURELEVEL + 1 ) , - D3D11_MESSAGE_ID_DEVICE_SETSHADER_INVALID_INSTANCE = ( D3D11_MESSAGE_ID_DEVICE_SETSHADER_INTERFACE_COUNT_MISMATCH + 1 ) , - D3D11_MESSAGE_ID_DEVICE_SETSHADER_INVALID_INSTANCE_INDEX = ( D3D11_MESSAGE_ID_DEVICE_SETSHADER_INVALID_INSTANCE + 1 ) , - D3D11_MESSAGE_ID_DEVICE_SETSHADER_INVALID_INSTANCE_TYPE = ( D3D11_MESSAGE_ID_DEVICE_SETSHADER_INVALID_INSTANCE_INDEX + 1 ) , - D3D11_MESSAGE_ID_DEVICE_SETSHADER_INVALID_INSTANCE_DATA = ( D3D11_MESSAGE_ID_DEVICE_SETSHADER_INVALID_INSTANCE_TYPE + 1 ) , - D3D11_MESSAGE_ID_DEVICE_SETSHADER_UNBOUND_INSTANCE_DATA = ( D3D11_MESSAGE_ID_DEVICE_SETSHADER_INVALID_INSTANCE_DATA + 1 ) , - D3D11_MESSAGE_ID_DEVICE_SETSHADER_INSTANCE_DATA_BINDINGS = ( D3D11_MESSAGE_ID_DEVICE_SETSHADER_UNBOUND_INSTANCE_DATA + 1 ) , - D3D11_MESSAGE_ID_DEVICE_CREATESHADER_CLASSLINKAGE_FULL = ( D3D11_MESSAGE_ID_DEVICE_SETSHADER_INSTANCE_DATA_BINDINGS + 1 ) , - D3D11_MESSAGE_ID_DEVICE_CHECKFEATURESUPPORT_UNRECOGNIZED_FEATURE = ( D3D11_MESSAGE_ID_DEVICE_CREATESHADER_CLASSLINKAGE_FULL + 1 ) , - D3D11_MESSAGE_ID_DEVICE_CHECKFEATURESUPPORT_MISMATCHED_DATA_SIZE = ( D3D11_MESSAGE_ID_DEVICE_CHECKFEATURESUPPORT_UNRECOGNIZED_FEATURE + 1 ) , - D3D11_MESSAGE_ID_DEVICE_CHECKFEATURESUPPORT_INVALIDARG_RETURN = ( D3D11_MESSAGE_ID_DEVICE_CHECKFEATURESUPPORT_MISMATCHED_DATA_SIZE + 1 ) , - D3D11_MESSAGE_ID_DEVICE_CSSETSHADERRESOURCES_HAZARD = ( D3D11_MESSAGE_ID_DEVICE_CHECKFEATURESUPPORT_INVALIDARG_RETURN + 1 ) , - D3D11_MESSAGE_ID_DEVICE_CSSETCONSTANTBUFFERS_HAZARD = ( D3D11_MESSAGE_ID_DEVICE_CSSETSHADERRESOURCES_HAZARD + 1 ) , - D3D11_MESSAGE_ID_CSSETSHADERRESOURCES_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_DEVICE_CSSETCONSTANTBUFFERS_HAZARD + 1 ) , - D3D11_MESSAGE_ID_CSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_CSSETSHADERRESOURCES_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_CREATECOMPUTESHADER_INVALIDCALL = ( D3D11_MESSAGE_ID_CSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_CREATECOMPUTESHADER_OUTOFMEMORY = ( D3D11_MESSAGE_ID_CREATECOMPUTESHADER_INVALIDCALL + 1 ) , - D3D11_MESSAGE_ID_CREATECOMPUTESHADER_INVALIDSHADERBYTECODE = ( D3D11_MESSAGE_ID_CREATECOMPUTESHADER_OUTOFMEMORY + 1 ) , - D3D11_MESSAGE_ID_CREATECOMPUTESHADER_INVALIDSHADERTYPE = ( D3D11_MESSAGE_ID_CREATECOMPUTESHADER_INVALIDSHADERBYTECODE + 1 ) , - D3D11_MESSAGE_ID_CREATECOMPUTESHADER_INVALIDCLASSLINKAGE = ( D3D11_MESSAGE_ID_CREATECOMPUTESHADER_INVALIDSHADERTYPE + 1 ) , - D3D11_MESSAGE_ID_DEVICE_CSSETSHADERRESOURCES_VIEWS_EMPTY = ( D3D11_MESSAGE_ID_CREATECOMPUTESHADER_INVALIDCLASSLINKAGE + 1 ) , - D3D11_MESSAGE_ID_CSSETCONSTANTBUFFERS_INVALIDBUFFER = ( D3D11_MESSAGE_ID_DEVICE_CSSETSHADERRESOURCES_VIEWS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_CSSETCONSTANTBUFFERS_BUFFERS_EMPTY = ( D3D11_MESSAGE_ID_CSSETCONSTANTBUFFERS_INVALIDBUFFER + 1 ) , - D3D11_MESSAGE_ID_DEVICE_CSSETSAMPLERS_SAMPLERS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_CSSETCONSTANTBUFFERS_BUFFERS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_CSGETSHADERRESOURCES_VIEWS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_CSSETSAMPLERS_SAMPLERS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_CSGETCONSTANTBUFFERS_BUFFERS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_CSGETSHADERRESOURCES_VIEWS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_CSGETSAMPLERS_SAMPLERS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_CSGETCONSTANTBUFFERS_BUFFERS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_CREATEVERTEXSHADER_DOUBLEFLOATOPSNOTSUPPORTED = ( D3D11_MESSAGE_ID_DEVICE_CSGETSAMPLERS_SAMPLERS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_CREATEHULLSHADER_DOUBLEFLOATOPSNOTSUPPORTED = ( D3D11_MESSAGE_ID_DEVICE_CREATEVERTEXSHADER_DOUBLEFLOATOPSNOTSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_CREATEDOMAINSHADER_DOUBLEFLOATOPSNOTSUPPORTED = ( D3D11_MESSAGE_ID_DEVICE_CREATEHULLSHADER_DOUBLEFLOATOPSNOTSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADER_DOUBLEFLOATOPSNOTSUPPORTED = ( D3D11_MESSAGE_ID_DEVICE_CREATEDOMAINSHADER_DOUBLEFLOATOPSNOTSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DOUBLEFLOATOPSNOTSUPPORTED = ( D3D11_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADER_DOUBLEFLOATOPSNOTSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_CREATEPIXELSHADER_DOUBLEFLOATOPSNOTSUPPORTED = ( D3D11_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DOUBLEFLOATOPSNOTSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_CREATECOMPUTESHADER_DOUBLEFLOATOPSNOTSUPPORTED = ( D3D11_MESSAGE_ID_DEVICE_CREATEPIXELSHADER_DOUBLEFLOATOPSNOTSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDSTRUCTURESTRIDE = ( D3D11_MESSAGE_ID_DEVICE_CREATECOMPUTESHADER_DOUBLEFLOATOPSNOTSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDFLAGS = ( D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDSTRUCTURESTRIDE + 1 ) , - D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDRESOURCE = ( D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDFLAGS + 1 ) , - D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDDESC = ( D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDRESOURCE + 1 ) , - D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDFORMAT = ( D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDDESC + 1 ) , - D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDDIMENSIONS = ( D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDFORMAT + 1 ) , - D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_UNRECOGNIZEDFORMAT = ( D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDDIMENSIONS + 1 ) , - D3D11_MESSAGE_ID_DEVICE_OMSETRENDERTARGETSANDUNORDEREDACCESSVIEWS_HAZARD = ( D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_UNRECOGNIZEDFORMAT + 1 ) , - D3D11_MESSAGE_ID_DEVICE_OMSETRENDERTARGETSANDUNORDEREDACCESSVIEWS_OVERLAPPING_OLD_SLOTS = ( D3D11_MESSAGE_ID_DEVICE_OMSETRENDERTARGETSANDUNORDEREDACCESSVIEWS_HAZARD + 1 ) , - D3D11_MESSAGE_ID_DEVICE_OMSETRENDERTARGETSANDUNORDEREDACCESSVIEWS_NO_OP = ( D3D11_MESSAGE_ID_DEVICE_OMSETRENDERTARGETSANDUNORDEREDACCESSVIEWS_OVERLAPPING_OLD_SLOTS + 1 ) , - D3D11_MESSAGE_ID_CSSETUNORDEREDACCESSVIEWS_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_DEVICE_OMSETRENDERTARGETSANDUNORDEREDACCESSVIEWS_NO_OP + 1 ) , - D3D11_MESSAGE_ID_PSSETUNORDEREDACCESSVIEWS_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_CSSETUNORDEREDACCESSVIEWS_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDARG_RETURN = ( D3D11_MESSAGE_ID_PSSETUNORDEREDACCESSVIEWS_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_OUTOFMEMORY_RETURN = ( D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDARG_RETURN + 1 ) , - D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_TOOMANYOBJECTS = ( D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_OUTOFMEMORY_RETURN + 1 ) , - D3D11_MESSAGE_ID_DEVICE_CSSETUNORDEREDACCESSVIEWS_HAZARD = ( D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_TOOMANYOBJECTS + 1 ) , - D3D11_MESSAGE_ID_CLEARUNORDEREDACCESSVIEW_DENORMFLUSH = ( D3D11_MESSAGE_ID_DEVICE_CSSETUNORDEREDACCESSVIEWS_HAZARD + 1 ) , - D3D11_MESSAGE_ID_DEVICE_CSSETUNORDEREDACCESSS_VIEWS_EMPTY = ( D3D11_MESSAGE_ID_CLEARUNORDEREDACCESSVIEW_DENORMFLUSH + 1 ) , - D3D11_MESSAGE_ID_DEVICE_CSGETUNORDEREDACCESSS_VIEWS_EMPTY = ( D3D11_MESSAGE_ID_DEVICE_CSSETUNORDEREDACCESSS_VIEWS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDFLAGS = ( D3D11_MESSAGE_ID_DEVICE_CSGETUNORDEREDACCESSS_VIEWS_EMPTY + 1 ) , - D3D11_MESSAGE_ID_CREATESHADERRESESOURCEVIEW_TOOMANYOBJECTS = ( D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDFLAGS + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DISPATCHINDIRECT_INVALID_ARG_BUFFER = ( D3D11_MESSAGE_ID_CREATESHADERRESESOURCEVIEW_TOOMANYOBJECTS + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DISPATCHINDIRECT_OFFSET_UNALIGNED = ( D3D11_MESSAGE_ID_DEVICE_DISPATCHINDIRECT_INVALID_ARG_BUFFER + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DISPATCHINDIRECT_OFFSET_OVERFLOW = ( D3D11_MESSAGE_ID_DEVICE_DISPATCHINDIRECT_OFFSET_UNALIGNED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_SETRESOURCEMINLOD_INVALIDCONTEXT = ( D3D11_MESSAGE_ID_DEVICE_DISPATCHINDIRECT_OFFSET_OVERFLOW + 1 ) , - D3D11_MESSAGE_ID_DEVICE_SETRESOURCEMINLOD_INVALIDRESOURCE = ( D3D11_MESSAGE_ID_DEVICE_SETRESOURCEMINLOD_INVALIDCONTEXT + 1 ) , - D3D11_MESSAGE_ID_DEVICE_SETRESOURCEMINLOD_INVALIDMINLOD = ( D3D11_MESSAGE_ID_DEVICE_SETRESOURCEMINLOD_INVALIDRESOURCE + 1 ) , - D3D11_MESSAGE_ID_DEVICE_GETRESOURCEMINLOD_INVALIDCONTEXT = ( D3D11_MESSAGE_ID_DEVICE_SETRESOURCEMINLOD_INVALIDMINLOD + 1 ) , - D3D11_MESSAGE_ID_DEVICE_GETRESOURCEMINLOD_INVALIDRESOURCE = ( D3D11_MESSAGE_ID_DEVICE_GETRESOURCEMINLOD_INVALIDCONTEXT + 1 ) , - D3D11_MESSAGE_ID_OMSETDEPTHSTENCIL_UNBINDDELETINGOBJECT = ( D3D11_MESSAGE_ID_DEVICE_GETRESOURCEMINLOD_INVALIDRESOURCE + 1 ) , - D3D11_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_DEPTH_READONLY = ( D3D11_MESSAGE_ID_OMSETDEPTHSTENCIL_UNBINDDELETINGOBJECT + 1 ) , - D3D11_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_STENCIL_READONLY = ( D3D11_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_DEPTH_READONLY + 1 ) , - D3D11_MESSAGE_ID_CHECKFEATURESUPPORT_FORMAT_DEPRECATED = ( D3D11_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_STENCIL_READONLY + 1 ) , - D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_RETURN_TYPE_MISMATCH = ( D3D11_MESSAGE_ID_CHECKFEATURESUPPORT_FORMAT_DEPRECATED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_NOT_SET = ( D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_RETURN_TYPE_MISMATCH + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DRAW_UNORDEREDACCESSVIEW_RENDERTARGETVIEW_OVERLAP = ( D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_NOT_SET + 1 ) , - D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_DIMENSION_MISMATCH = ( D3D11_MESSAGE_ID_DEVICE_DRAW_UNORDEREDACCESSVIEW_RENDERTARGETVIEW_OVERLAP + 1 ) , - D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_APPEND_UNSUPPORTED = ( D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_DIMENSION_MISMATCH + 1 ) , - D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMICS_UNSUPPORTED = ( D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_APPEND_UNSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_STRUCTURE_STRIDE_MISMATCH = ( D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMICS_UNSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_BUFFER_TYPE_MISMATCH = ( D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_STRUCTURE_STRIDE_MISMATCH + 1 ) , - D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_RAW_UNSUPPORTED = ( D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_BUFFER_TYPE_MISMATCH + 1 ) , - D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_FORMAT_LD_UNSUPPORTED = ( D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_RAW_UNSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_FORMAT_STORE_UNSUPPORTED = ( D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_FORMAT_LD_UNSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_ADD_UNSUPPORTED = ( D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_FORMAT_STORE_UNSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_BITWISE_OPS_UNSUPPORTED = ( D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_ADD_UNSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_CMPSTORE_CMPEXCHANGE_UNSUPPORTED = ( D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_BITWISE_OPS_UNSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_EXCHANGE_UNSUPPORTED = ( D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_CMPSTORE_CMPEXCHANGE_UNSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_SIGNED_MINMAX_UNSUPPORTED = ( D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_EXCHANGE_UNSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_UNSIGNED_MINMAX_UNSUPPORTED = ( D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_SIGNED_MINMAX_UNSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DISPATCH_BOUND_RESOURCE_MAPPED = ( D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_UNSIGNED_MINMAX_UNSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DISPATCH_THREADGROUPCOUNT_OVERFLOW = ( D3D11_MESSAGE_ID_DEVICE_DISPATCH_BOUND_RESOURCE_MAPPED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DISPATCH_THREADGROUPCOUNT_ZERO = ( D3D11_MESSAGE_ID_DEVICE_DISPATCH_THREADGROUPCOUNT_OVERFLOW + 1 ) , - D3D11_MESSAGE_ID_DEVICE_SHADERRESOURCEVIEW_STRUCTURE_STRIDE_MISMATCH = ( D3D11_MESSAGE_ID_DEVICE_DISPATCH_THREADGROUPCOUNT_ZERO + 1 ) , - D3D11_MESSAGE_ID_DEVICE_SHADERRESOURCEVIEW_BUFFER_TYPE_MISMATCH = ( D3D11_MESSAGE_ID_DEVICE_SHADERRESOURCEVIEW_STRUCTURE_STRIDE_MISMATCH + 1 ) , - D3D11_MESSAGE_ID_DEVICE_SHADERRESOURCEVIEW_RAW_UNSUPPORTED = ( D3D11_MESSAGE_ID_DEVICE_SHADERRESOURCEVIEW_BUFFER_TYPE_MISMATCH + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DISPATCH_UNSUPPORTED = ( D3D11_MESSAGE_ID_DEVICE_SHADERRESOURCEVIEW_RAW_UNSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_DISPATCHINDIRECT_UNSUPPORTED = ( D3D11_MESSAGE_ID_DEVICE_DISPATCH_UNSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_COPYSTRUCTURECOUNT_INVALIDOFFSET = ( D3D11_MESSAGE_ID_DEVICE_DISPATCHINDIRECT_UNSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_COPYSTRUCTURECOUNT_LARGEOFFSET = ( D3D11_MESSAGE_ID_COPYSTRUCTURECOUNT_INVALIDOFFSET + 1 ) , - D3D11_MESSAGE_ID_COPYSTRUCTURECOUNT_INVALIDDESTINATIONSTATE = ( D3D11_MESSAGE_ID_COPYSTRUCTURECOUNT_LARGEOFFSET + 1 ) , - D3D11_MESSAGE_ID_COPYSTRUCTURECOUNT_INVALIDSOURCESTATE = ( D3D11_MESSAGE_ID_COPYSTRUCTURECOUNT_INVALIDDESTINATIONSTATE + 1 ) , - D3D11_MESSAGE_ID_CHECKFORMATSUPPORT_FORMAT_NOT_SUPPORTED = ( D3D11_MESSAGE_ID_COPYSTRUCTURECOUNT_INVALIDSOURCESTATE + 1 ) , - D3D11_MESSAGE_ID_DEVICE_CSSETUNORDEREDACCESSVIEWS_INVALIDVIEW = ( D3D11_MESSAGE_ID_CHECKFORMATSUPPORT_FORMAT_NOT_SUPPORTED + 1 ) , - D3D11_MESSAGE_ID_DEVICE_CSSETUNORDEREDACCESSVIEWS_INVALIDOFFSET = ( D3D11_MESSAGE_ID_DEVICE_CSSETUNORDEREDACCESSVIEWS_INVALIDVIEW + 1 ) , - D3D11_MESSAGE_ID_DEVICE_CSSETUNORDEREDACCESSVIEWS_TOOMANYVIEWS = ( D3D11_MESSAGE_ID_DEVICE_CSSETUNORDEREDACCESSVIEWS_INVALIDOFFSET + 1 ) , - D3D11_MESSAGE_ID_CLEARUNORDEREDACCESSVIEWFLOAT_INVALIDFORMAT = ( D3D11_MESSAGE_ID_DEVICE_CSSETUNORDEREDACCESSVIEWS_TOOMANYVIEWS + 1 ) , - D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_COUNTER_UNSUPPORTED = ( D3D11_MESSAGE_ID_CLEARUNORDEREDACCESSVIEWFLOAT_INVALIDFORMAT + 1 ) , - D3D11_MESSAGE_ID_REF_WARNING = ( D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_COUNTER_UNSUPPORTED + 1 ) , - D3D11_MESSAGE_ID_D3D11_MESSAGES_END = ( D3D11_MESSAGE_ID_REF_WARNING + 1 ) - } D3D11_MESSAGE_ID; - -typedef struct D3D11_MESSAGE - { - D3D11_MESSAGE_CATEGORY Category; - D3D11_MESSAGE_SEVERITY Severity; - D3D11_MESSAGE_ID ID; - const char *pDescription; - SIZE_T DescriptionByteLength; - } D3D11_MESSAGE; - -typedef struct D3D11_INFO_QUEUE_FILTER_DESC - { - UINT NumCategories; - D3D11_MESSAGE_CATEGORY *pCategoryList; - UINT NumSeverities; - D3D11_MESSAGE_SEVERITY *pSeverityList; - UINT NumIDs; - D3D11_MESSAGE_ID *pIDList; - } D3D11_INFO_QUEUE_FILTER_DESC; - -typedef struct D3D11_INFO_QUEUE_FILTER - { - D3D11_INFO_QUEUE_FILTER_DESC AllowList; - D3D11_INFO_QUEUE_FILTER_DESC DenyList; - } D3D11_INFO_QUEUE_FILTER; - -#define D3D11_INFO_QUEUE_DEFAULT_MESSAGE_COUNT_LIMIT 1024 - - -extern RPC_IF_HANDLE __MIDL_itf_d3d11sdklayers_0000_0002_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d11sdklayers_0000_0002_v0_0_s_ifspec; - -#ifndef __ID3D11InfoQueue_INTERFACE_DEFINED__ -#define __ID3D11InfoQueue_INTERFACE_DEFINED__ - -/* interface ID3D11InfoQueue */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D11InfoQueue; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("6543dbb6-1b48-42f5-ab82-e97ec74326f6") - ID3D11InfoQueue : public IUnknown - { - public: - virtual HRESULT STDMETHODCALLTYPE SetMessageCountLimit( - /* [annotation] */ - __in UINT64 MessageCountLimit) = 0; - - virtual void STDMETHODCALLTYPE ClearStoredMessages( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetMessage( - /* [annotation] */ - __in UINT64 MessageIndex, - /* [annotation] */ - __out_bcount_opt(*pMessageByteLength) D3D11_MESSAGE *pMessage, - /* [annotation] */ - __inout SIZE_T *pMessageByteLength) = 0; - - virtual UINT64 STDMETHODCALLTYPE GetNumMessagesAllowedByStorageFilter( void) = 0; - - virtual UINT64 STDMETHODCALLTYPE GetNumMessagesDeniedByStorageFilter( void) = 0; - - virtual UINT64 STDMETHODCALLTYPE GetNumStoredMessages( void) = 0; - - virtual UINT64 STDMETHODCALLTYPE GetNumStoredMessagesAllowedByRetrievalFilter( void) = 0; - - virtual UINT64 STDMETHODCALLTYPE GetNumMessagesDiscardedByMessageCountLimit( void) = 0; - - virtual UINT64 STDMETHODCALLTYPE GetMessageCountLimit( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE AddStorageFilterEntries( - /* [annotation] */ - __in D3D11_INFO_QUEUE_FILTER *pFilter) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetStorageFilter( - /* [annotation] */ - __out_bcount_opt(*pFilterByteLength) D3D11_INFO_QUEUE_FILTER *pFilter, - /* [annotation] */ - __inout SIZE_T *pFilterByteLength) = 0; - - virtual void STDMETHODCALLTYPE ClearStorageFilter( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE PushEmptyStorageFilter( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE PushCopyOfStorageFilter( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE PushStorageFilter( - /* [annotation] */ - __in D3D11_INFO_QUEUE_FILTER *pFilter) = 0; - - virtual void STDMETHODCALLTYPE PopStorageFilter( void) = 0; - - virtual UINT STDMETHODCALLTYPE GetStorageFilterStackSize( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE AddRetrievalFilterEntries( - /* [annotation] */ - __in D3D11_INFO_QUEUE_FILTER *pFilter) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetRetrievalFilter( - /* [annotation] */ - __out_bcount_opt(*pFilterByteLength) D3D11_INFO_QUEUE_FILTER *pFilter, - /* [annotation] */ - __inout SIZE_T *pFilterByteLength) = 0; - - virtual void STDMETHODCALLTYPE ClearRetrievalFilter( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE PushEmptyRetrievalFilter( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE PushCopyOfRetrievalFilter( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE PushRetrievalFilter( - /* [annotation] */ - __in D3D11_INFO_QUEUE_FILTER *pFilter) = 0; - - virtual void STDMETHODCALLTYPE PopRetrievalFilter( void) = 0; - - virtual UINT STDMETHODCALLTYPE GetRetrievalFilterStackSize( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE AddMessage( - /* [annotation] */ - __in D3D11_MESSAGE_CATEGORY Category, - /* [annotation] */ - __in D3D11_MESSAGE_SEVERITY Severity, - /* [annotation] */ - __in D3D11_MESSAGE_ID ID, - /* [annotation] */ - __in LPCSTR pDescription) = 0; - - virtual HRESULT STDMETHODCALLTYPE AddApplicationMessage( - /* [annotation] */ - __in D3D11_MESSAGE_SEVERITY Severity, - /* [annotation] */ - __in LPCSTR pDescription) = 0; - - virtual HRESULT STDMETHODCALLTYPE SetBreakOnCategory( - /* [annotation] */ - __in D3D11_MESSAGE_CATEGORY Category, - /* [annotation] */ - __in BOOL bEnable) = 0; - - virtual HRESULT STDMETHODCALLTYPE SetBreakOnSeverity( - /* [annotation] */ - __in D3D11_MESSAGE_SEVERITY Severity, - /* [annotation] */ - __in BOOL bEnable) = 0; - - virtual HRESULT STDMETHODCALLTYPE SetBreakOnID( - /* [annotation] */ - __in D3D11_MESSAGE_ID ID, - /* [annotation] */ - __in BOOL bEnable) = 0; - - virtual BOOL STDMETHODCALLTYPE GetBreakOnCategory( - /* [annotation] */ - __in D3D11_MESSAGE_CATEGORY Category) = 0; - - virtual BOOL STDMETHODCALLTYPE GetBreakOnSeverity( - /* [annotation] */ - __in D3D11_MESSAGE_SEVERITY Severity) = 0; - - virtual BOOL STDMETHODCALLTYPE GetBreakOnID( - /* [annotation] */ - __in D3D11_MESSAGE_ID ID) = 0; - - virtual void STDMETHODCALLTYPE SetMuteDebugOutput( - /* [annotation] */ - __in BOOL bMute) = 0; - - virtual BOOL STDMETHODCALLTYPE GetMuteDebugOutput( void) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D11InfoQueueVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D11InfoQueue * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D11InfoQueue * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D11InfoQueue * This); - - HRESULT ( STDMETHODCALLTYPE *SetMessageCountLimit )( - ID3D11InfoQueue * This, - /* [annotation] */ - __in UINT64 MessageCountLimit); - - void ( STDMETHODCALLTYPE *ClearStoredMessages )( - ID3D11InfoQueue * This); - - HRESULT ( STDMETHODCALLTYPE *GetMessage )( - ID3D11InfoQueue * This, - /* [annotation] */ - __in UINT64 MessageIndex, - /* [annotation] */ - __out_bcount_opt(*pMessageByteLength) D3D11_MESSAGE *pMessage, - /* [annotation] */ - __inout SIZE_T *pMessageByteLength); - - UINT64 ( STDMETHODCALLTYPE *GetNumMessagesAllowedByStorageFilter )( - ID3D11InfoQueue * This); - - UINT64 ( STDMETHODCALLTYPE *GetNumMessagesDeniedByStorageFilter )( - ID3D11InfoQueue * This); - - UINT64 ( STDMETHODCALLTYPE *GetNumStoredMessages )( - ID3D11InfoQueue * This); - - UINT64 ( STDMETHODCALLTYPE *GetNumStoredMessagesAllowedByRetrievalFilter )( - ID3D11InfoQueue * This); - - UINT64 ( STDMETHODCALLTYPE *GetNumMessagesDiscardedByMessageCountLimit )( - ID3D11InfoQueue * This); - - UINT64 ( STDMETHODCALLTYPE *GetMessageCountLimit )( - ID3D11InfoQueue * This); - - HRESULT ( STDMETHODCALLTYPE *AddStorageFilterEntries )( - ID3D11InfoQueue * This, - /* [annotation] */ - __in D3D11_INFO_QUEUE_FILTER *pFilter); - - HRESULT ( STDMETHODCALLTYPE *GetStorageFilter )( - ID3D11InfoQueue * This, - /* [annotation] */ - __out_bcount_opt(*pFilterByteLength) D3D11_INFO_QUEUE_FILTER *pFilter, - /* [annotation] */ - __inout SIZE_T *pFilterByteLength); - - void ( STDMETHODCALLTYPE *ClearStorageFilter )( - ID3D11InfoQueue * This); - - HRESULT ( STDMETHODCALLTYPE *PushEmptyStorageFilter )( - ID3D11InfoQueue * This); - - HRESULT ( STDMETHODCALLTYPE *PushCopyOfStorageFilter )( - ID3D11InfoQueue * This); - - HRESULT ( STDMETHODCALLTYPE *PushStorageFilter )( - ID3D11InfoQueue * This, - /* [annotation] */ - __in D3D11_INFO_QUEUE_FILTER *pFilter); - - void ( STDMETHODCALLTYPE *PopStorageFilter )( - ID3D11InfoQueue * This); - - UINT ( STDMETHODCALLTYPE *GetStorageFilterStackSize )( - ID3D11InfoQueue * This); - - HRESULT ( STDMETHODCALLTYPE *AddRetrievalFilterEntries )( - ID3D11InfoQueue * This, - /* [annotation] */ - __in D3D11_INFO_QUEUE_FILTER *pFilter); - - HRESULT ( STDMETHODCALLTYPE *GetRetrievalFilter )( - ID3D11InfoQueue * This, - /* [annotation] */ - __out_bcount_opt(*pFilterByteLength) D3D11_INFO_QUEUE_FILTER *pFilter, - /* [annotation] */ - __inout SIZE_T *pFilterByteLength); - - void ( STDMETHODCALLTYPE *ClearRetrievalFilter )( - ID3D11InfoQueue * This); - - HRESULT ( STDMETHODCALLTYPE *PushEmptyRetrievalFilter )( - ID3D11InfoQueue * This); - - HRESULT ( STDMETHODCALLTYPE *PushCopyOfRetrievalFilter )( - ID3D11InfoQueue * This); - - HRESULT ( STDMETHODCALLTYPE *PushRetrievalFilter )( - ID3D11InfoQueue * This, - /* [annotation] */ - __in D3D11_INFO_QUEUE_FILTER *pFilter); - - void ( STDMETHODCALLTYPE *PopRetrievalFilter )( - ID3D11InfoQueue * This); - - UINT ( STDMETHODCALLTYPE *GetRetrievalFilterStackSize )( - ID3D11InfoQueue * This); - - HRESULT ( STDMETHODCALLTYPE *AddMessage )( - ID3D11InfoQueue * This, - /* [annotation] */ - __in D3D11_MESSAGE_CATEGORY Category, - /* [annotation] */ - __in D3D11_MESSAGE_SEVERITY Severity, - /* [annotation] */ - __in D3D11_MESSAGE_ID ID, - /* [annotation] */ - __in LPCSTR pDescription); - - HRESULT ( STDMETHODCALLTYPE *AddApplicationMessage )( - ID3D11InfoQueue * This, - /* [annotation] */ - __in D3D11_MESSAGE_SEVERITY Severity, - /* [annotation] */ - __in LPCSTR pDescription); - - HRESULT ( STDMETHODCALLTYPE *SetBreakOnCategory )( - ID3D11InfoQueue * This, - /* [annotation] */ - __in D3D11_MESSAGE_CATEGORY Category, - /* [annotation] */ - __in BOOL bEnable); - - HRESULT ( STDMETHODCALLTYPE *SetBreakOnSeverity )( - ID3D11InfoQueue * This, - /* [annotation] */ - __in D3D11_MESSAGE_SEVERITY Severity, - /* [annotation] */ - __in BOOL bEnable); - - HRESULT ( STDMETHODCALLTYPE *SetBreakOnID )( - ID3D11InfoQueue * This, - /* [annotation] */ - __in D3D11_MESSAGE_ID ID, - /* [annotation] */ - __in BOOL bEnable); - - BOOL ( STDMETHODCALLTYPE *GetBreakOnCategory )( - ID3D11InfoQueue * This, - /* [annotation] */ - __in D3D11_MESSAGE_CATEGORY Category); - - BOOL ( STDMETHODCALLTYPE *GetBreakOnSeverity )( - ID3D11InfoQueue * This, - /* [annotation] */ - __in D3D11_MESSAGE_SEVERITY Severity); - - BOOL ( STDMETHODCALLTYPE *GetBreakOnID )( - ID3D11InfoQueue * This, - /* [annotation] */ - __in D3D11_MESSAGE_ID ID); - - void ( STDMETHODCALLTYPE *SetMuteDebugOutput )( - ID3D11InfoQueue * This, - /* [annotation] */ - __in BOOL bMute); - - BOOL ( STDMETHODCALLTYPE *GetMuteDebugOutput )( - ID3D11InfoQueue * This); - - END_INTERFACE - } ID3D11InfoQueueVtbl; - - interface ID3D11InfoQueue - { - CONST_VTBL struct ID3D11InfoQueueVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D11InfoQueue_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D11InfoQueue_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D11InfoQueue_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D11InfoQueue_SetMessageCountLimit(This,MessageCountLimit) \ - ( (This)->lpVtbl -> SetMessageCountLimit(This,MessageCountLimit) ) - -#define ID3D11InfoQueue_ClearStoredMessages(This) \ - ( (This)->lpVtbl -> ClearStoredMessages(This) ) - -#define ID3D11InfoQueue_GetMessage(This,MessageIndex,pMessage,pMessageByteLength) \ - ( (This)->lpVtbl -> GetMessage(This,MessageIndex,pMessage,pMessageByteLength) ) - -#define ID3D11InfoQueue_GetNumMessagesAllowedByStorageFilter(This) \ - ( (This)->lpVtbl -> GetNumMessagesAllowedByStorageFilter(This) ) - -#define ID3D11InfoQueue_GetNumMessagesDeniedByStorageFilter(This) \ - ( (This)->lpVtbl -> GetNumMessagesDeniedByStorageFilter(This) ) - -#define ID3D11InfoQueue_GetNumStoredMessages(This) \ - ( (This)->lpVtbl -> GetNumStoredMessages(This) ) - -#define ID3D11InfoQueue_GetNumStoredMessagesAllowedByRetrievalFilter(This) \ - ( (This)->lpVtbl -> GetNumStoredMessagesAllowedByRetrievalFilter(This) ) - -#define ID3D11InfoQueue_GetNumMessagesDiscardedByMessageCountLimit(This) \ - ( (This)->lpVtbl -> GetNumMessagesDiscardedByMessageCountLimit(This) ) - -#define ID3D11InfoQueue_GetMessageCountLimit(This) \ - ( (This)->lpVtbl -> GetMessageCountLimit(This) ) - -#define ID3D11InfoQueue_AddStorageFilterEntries(This,pFilter) \ - ( (This)->lpVtbl -> AddStorageFilterEntries(This,pFilter) ) - -#define ID3D11InfoQueue_GetStorageFilter(This,pFilter,pFilterByteLength) \ - ( (This)->lpVtbl -> GetStorageFilter(This,pFilter,pFilterByteLength) ) - -#define ID3D11InfoQueue_ClearStorageFilter(This) \ - ( (This)->lpVtbl -> ClearStorageFilter(This) ) - -#define ID3D11InfoQueue_PushEmptyStorageFilter(This) \ - ( (This)->lpVtbl -> PushEmptyStorageFilter(This) ) - -#define ID3D11InfoQueue_PushCopyOfStorageFilter(This) \ - ( (This)->lpVtbl -> PushCopyOfStorageFilter(This) ) - -#define ID3D11InfoQueue_PushStorageFilter(This,pFilter) \ - ( (This)->lpVtbl -> PushStorageFilter(This,pFilter) ) - -#define ID3D11InfoQueue_PopStorageFilter(This) \ - ( (This)->lpVtbl -> PopStorageFilter(This) ) - -#define ID3D11InfoQueue_GetStorageFilterStackSize(This) \ - ( (This)->lpVtbl -> GetStorageFilterStackSize(This) ) - -#define ID3D11InfoQueue_AddRetrievalFilterEntries(This,pFilter) \ - ( (This)->lpVtbl -> AddRetrievalFilterEntries(This,pFilter) ) - -#define ID3D11InfoQueue_GetRetrievalFilter(This,pFilter,pFilterByteLength) \ - ( (This)->lpVtbl -> GetRetrievalFilter(This,pFilter,pFilterByteLength) ) - -#define ID3D11InfoQueue_ClearRetrievalFilter(This) \ - ( (This)->lpVtbl -> ClearRetrievalFilter(This) ) - -#define ID3D11InfoQueue_PushEmptyRetrievalFilter(This) \ - ( (This)->lpVtbl -> PushEmptyRetrievalFilter(This) ) - -#define ID3D11InfoQueue_PushCopyOfRetrievalFilter(This) \ - ( (This)->lpVtbl -> PushCopyOfRetrievalFilter(This) ) - -#define ID3D11InfoQueue_PushRetrievalFilter(This,pFilter) \ - ( (This)->lpVtbl -> PushRetrievalFilter(This,pFilter) ) - -#define ID3D11InfoQueue_PopRetrievalFilter(This) \ - ( (This)->lpVtbl -> PopRetrievalFilter(This) ) - -#define ID3D11InfoQueue_GetRetrievalFilterStackSize(This) \ - ( (This)->lpVtbl -> GetRetrievalFilterStackSize(This) ) - -#define ID3D11InfoQueue_AddMessage(This,Category,Severity,ID,pDescription) \ - ( (This)->lpVtbl -> AddMessage(This,Category,Severity,ID,pDescription) ) - -#define ID3D11InfoQueue_AddApplicationMessage(This,Severity,pDescription) \ - ( (This)->lpVtbl -> AddApplicationMessage(This,Severity,pDescription) ) - -#define ID3D11InfoQueue_SetBreakOnCategory(This,Category,bEnable) \ - ( (This)->lpVtbl -> SetBreakOnCategory(This,Category,bEnable) ) - -#define ID3D11InfoQueue_SetBreakOnSeverity(This,Severity,bEnable) \ - ( (This)->lpVtbl -> SetBreakOnSeverity(This,Severity,bEnable) ) - -#define ID3D11InfoQueue_SetBreakOnID(This,ID,bEnable) \ - ( (This)->lpVtbl -> SetBreakOnID(This,ID,bEnable) ) - -#define ID3D11InfoQueue_GetBreakOnCategory(This,Category) \ - ( (This)->lpVtbl -> GetBreakOnCategory(This,Category) ) - -#define ID3D11InfoQueue_GetBreakOnSeverity(This,Severity) \ - ( (This)->lpVtbl -> GetBreakOnSeverity(This,Severity) ) - -#define ID3D11InfoQueue_GetBreakOnID(This,ID) \ - ( (This)->lpVtbl -> GetBreakOnID(This,ID) ) - -#define ID3D11InfoQueue_SetMuteDebugOutput(This,bMute) \ - ( (This)->lpVtbl -> SetMuteDebugOutput(This,bMute) ) - -#define ID3D11InfoQueue_GetMuteDebugOutput(This) \ - ( (This)->lpVtbl -> GetMuteDebugOutput(This) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D11InfoQueue_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d11sdklayers_0000_0003 */ -/* [local] */ - -#define D3D11_REGKEY_PATH __TEXT("Software\\Microsoft\\Direct3D") -#define D3D11_MUTE_DEBUG_OUTPUT __TEXT("MuteDebugOutput") -#define D3D11_ENABLE_BREAK_ON_MESSAGE __TEXT("EnableBreakOnMessage") -#define D3D11_INFOQUEUE_STORAGE_FILTER_OVERRIDE __TEXT("InfoQueueStorageFilterOverride") -#define D3D11_MUTE_CATEGORY __TEXT("Mute_CATEGORY_%s") -#define D3D11_MUTE_SEVERITY __TEXT("Mute_SEVERITY_%s") -#define D3D11_MUTE_ID_STRING __TEXT("Mute_ID_%s") -#define D3D11_MUTE_ID_DECIMAL __TEXT("Mute_ID_%d") -#define D3D11_UNMUTE_SEVERITY_INFO __TEXT("Unmute_SEVERITY_INFO") -#define D3D11_BREAKON_CATEGORY __TEXT("BreakOn_CATEGORY_%s") -#define D3D11_BREAKON_SEVERITY __TEXT("BreakOn_SEVERITY_%s") -#define D3D11_BREAKON_ID_STRING __TEXT("BreakOn_ID_%s") -#define D3D11_BREAKON_ID_DECIMAL __TEXT("BreakOn_ID_%d") -#define D3D11_APPSIZE_STRING __TEXT("Size") -#define D3D11_APPNAME_STRING __TEXT("Name") -DEFINE_GUID(IID_ID3D11Debug,0x79cf2233,0x7536,0x4948,0x9d,0x36,0x1e,0x46,0x92,0xdc,0x57,0x60); -DEFINE_GUID(IID_ID3D11SwitchToRef,0x1ef337e3,0x58e7,0x4f83,0xa6,0x92,0xdb,0x22,0x1f,0x5e,0xd4,0x7e); -DEFINE_GUID(IID_ID3D11InfoQueue,0x6543dbb6,0x1b48,0x42f5,0xab,0x82,0xe9,0x7e,0xc7,0x43,0x26,0xf6); - - -extern RPC_IF_HANDLE __MIDL_itf_d3d11sdklayers_0000_0003_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d11sdklayers_0000_0003_v0_0_s_ifspec; - -/* Additional Prototypes for ALL interfaces */ - -/* end of Additional Prototypes */ - -#ifdef __cplusplus -} -#endif - -#endif - - diff --git a/SDK/Include/D3D11Shader.h b/SDK/Include/D3D11Shader.h deleted file mode 100644 index f91897c..0000000 --- a/SDK/Include/D3D11Shader.h +++ /dev/null @@ -1,296 +0,0 @@ -////////////////////////////////////////////////////////////////////////////// -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// -// File: D3D11Shader.h -// Content: D3D11 Shader Types and APIs -// -////////////////////////////////////////////////////////////////////////////// - -#ifndef __D3D11SHADER_H__ -#define __D3D11SHADER_H__ - -#include "d3dcommon.h" - - -typedef enum D3D11_SHADER_VERSION_TYPE -{ - D3D11_SHVER_PIXEL_SHADER = 0, - D3D11_SHVER_VERTEX_SHADER = 1, - D3D11_SHVER_GEOMETRY_SHADER = 2, - - // D3D11 Shaders - D3D11_SHVER_HULL_SHADER = 3, - D3D11_SHVER_DOMAIN_SHADER = 4, - D3D11_SHVER_COMPUTE_SHADER = 5, -} D3D11_SHADER_VERSION_TYPE; - -#define D3D11_SHVER_GET_TYPE(_Version) \ - (((_Version) >> 16) & 0xffff) -#define D3D11_SHVER_GET_MAJOR(_Version) \ - (((_Version) >> 4) & 0xf) -#define D3D11_SHVER_GET_MINOR(_Version) \ - (((_Version) >> 0) & 0xf) - -typedef D3D_RESOURCE_RETURN_TYPE D3D11_RESOURCE_RETURN_TYPE; - -typedef D3D_CBUFFER_TYPE D3D11_CBUFFER_TYPE; - - -typedef struct _D3D11_SIGNATURE_PARAMETER_DESC -{ - LPCSTR SemanticName; // Name of the semantic - UINT SemanticIndex; // Index of the semantic - UINT Register; // Number of member variables - D3D_NAME SystemValueType;// A predefined system value, or D3D_NAME_UNDEFINED if not applicable - D3D_REGISTER_COMPONENT_TYPE ComponentType;// Scalar type (e.g. uint, float, etc.) - BYTE Mask; // Mask to indicate which components of the register - // are used (combination of D3D10_COMPONENT_MASK values) - BYTE ReadWriteMask; // Mask to indicate whether a given component is - // never written (if this is an output signature) or - // always read (if this is an input signature). - // (combination of D3D10_COMPONENT_MASK values) - UINT Stream; // Stream index -} D3D11_SIGNATURE_PARAMETER_DESC; - -typedef struct _D3D11_SHADER_BUFFER_DESC -{ - LPCSTR Name; // Name of the constant buffer - D3D_CBUFFER_TYPE Type; // Indicates type of buffer content - UINT Variables; // Number of member variables - UINT Size; // Size of CB (in bytes) - UINT uFlags; // Buffer description flags -} D3D11_SHADER_BUFFER_DESC; - -typedef struct _D3D11_SHADER_VARIABLE_DESC -{ - LPCSTR Name; // Name of the variable - UINT StartOffset; // Offset in constant buffer's backing store - UINT Size; // Size of variable (in bytes) - UINT uFlags; // Variable flags - LPVOID DefaultValue; // Raw pointer to default value - UINT StartTexture; // First texture index (or -1 if no textures used) - UINT TextureSize; // Number of texture slots possibly used. - UINT StartSampler; // First sampler index (or -1 if no textures used) - UINT SamplerSize; // Number of sampler slots possibly used. -} D3D11_SHADER_VARIABLE_DESC; - -typedef struct _D3D11_SHADER_TYPE_DESC -{ - D3D_SHADER_VARIABLE_CLASS Class; // Variable class (e.g. object, matrix, etc.) - D3D_SHADER_VARIABLE_TYPE Type; // Variable type (e.g. float, sampler, etc.) - UINT Rows; // Number of rows (for matrices, 1 for other numeric, 0 if not applicable) - UINT Columns; // Number of columns (for vectors & matrices, 1 for other numeric, 0 if not applicable) - UINT Elements; // Number of elements (0 if not an array) - UINT Members; // Number of members (0 if not a structure) - UINT Offset; // Offset from the start of structure (0 if not a structure member) - LPCSTR Name; // Name of type, can be NULL -} D3D11_SHADER_TYPE_DESC; - -typedef D3D_TESSELLATOR_DOMAIN D3D11_TESSELLATOR_DOMAIN; - -typedef D3D_TESSELLATOR_PARTITIONING D3D11_TESSELLATOR_PARTITIONING; - -typedef D3D_TESSELLATOR_OUTPUT_PRIMITIVE D3D11_TESSELLATOR_OUTPUT_PRIMITIVE; - -typedef struct _D3D11_SHADER_DESC -{ - UINT Version; // Shader version - LPCSTR Creator; // Creator string - UINT Flags; // Shader compilation/parse flags - - UINT ConstantBuffers; // Number of constant buffers - UINT BoundResources; // Number of bound resources - UINT InputParameters; // Number of parameters in the input signature - UINT OutputParameters; // Number of parameters in the output signature - - UINT InstructionCount; // Number of emitted instructions - UINT TempRegisterCount; // Number of temporary registers used - UINT TempArrayCount; // Number of temporary arrays used - UINT DefCount; // Number of constant defines - UINT DclCount; // Number of declarations (input + output) - UINT TextureNormalInstructions; // Number of non-categorized texture instructions - UINT TextureLoadInstructions; // Number of texture load instructions - UINT TextureCompInstructions; // Number of texture comparison instructions - UINT TextureBiasInstructions; // Number of texture bias instructions - UINT TextureGradientInstructions; // Number of texture gradient instructions - UINT FloatInstructionCount; // Number of floating point arithmetic instructions used - UINT IntInstructionCount; // Number of signed integer arithmetic instructions used - UINT UintInstructionCount; // Number of unsigned integer arithmetic instructions used - UINT StaticFlowControlCount; // Number of static flow control instructions used - UINT DynamicFlowControlCount; // Number of dynamic flow control instructions used - UINT MacroInstructionCount; // Number of macro instructions used - UINT ArrayInstructionCount; // Number of array instructions used - UINT CutInstructionCount; // Number of cut instructions used - UINT EmitInstructionCount; // Number of emit instructions used - D3D_PRIMITIVE_TOPOLOGY GSOutputTopology; // Geometry shader output topology - UINT GSMaxOutputVertexCount; // Geometry shader maximum output vertex count - D3D_PRIMITIVE InputPrimitive; // GS/HS input primitive - UINT PatchConstantParameters; // Number of parameters in the patch constant signature - UINT cGSInstanceCount; // Number of Geometry shader instances - UINT cControlPoints; // Number of control points in the HS->DS stage - D3D_TESSELLATOR_OUTPUT_PRIMITIVE HSOutputPrimitive; // Primitive output by the tessellator - D3D_TESSELLATOR_PARTITIONING HSPartitioning; // Partitioning mode of the tessellator - D3D_TESSELLATOR_DOMAIN TessellatorDomain; // Domain of the tessellator (quad, tri, isoline) - // instruction counts - UINT cBarrierInstructions; // Number of barrier instructions in a compute shader - UINT cInterlockedInstructions; // Number of interlocked instructions - UINT cTextureStoreInstructions; // Number of texture writes -} D3D11_SHADER_DESC; - -typedef struct _D3D11_SHADER_INPUT_BIND_DESC -{ - LPCSTR Name; // Name of the resource - D3D_SHADER_INPUT_TYPE Type; // Type of resource (e.g. texture, cbuffer, etc.) - UINT BindPoint; // Starting bind point - UINT BindCount; // Number of contiguous bind points (for arrays) - - UINT uFlags; // Input binding flags - D3D_RESOURCE_RETURN_TYPE ReturnType; // Return type (if texture) - D3D_SRV_DIMENSION Dimension; // Dimension (if texture) - UINT NumSamples; // Number of samples (0 if not MS texture) -} D3D11_SHADER_INPUT_BIND_DESC; - - -////////////////////////////////////////////////////////////////////////////// -// Interfaces //////////////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -typedef interface ID3D11ShaderReflectionType ID3D11ShaderReflectionType; -typedef interface ID3D11ShaderReflectionType *LPD3D11SHADERREFLECTIONTYPE; - -typedef interface ID3D11ShaderReflectionVariable ID3D11ShaderReflectionVariable; -typedef interface ID3D11ShaderReflectionVariable *LPD3D11SHADERREFLECTIONVARIABLE; - -typedef interface ID3D11ShaderReflectionConstantBuffer ID3D11ShaderReflectionConstantBuffer; -typedef interface ID3D11ShaderReflectionConstantBuffer *LPD3D11SHADERREFLECTIONCONSTANTBUFFER; - -typedef interface ID3D11ShaderReflection ID3D11ShaderReflection; -typedef interface ID3D11ShaderReflection *LPD3D11SHADERREFLECTION; - -// {6E6FFA6A-9BAE-4613-A51E-91652D508C21} -DEFINE_GUID(IID_ID3D11ShaderReflectionType, -0x6e6ffa6a, 0x9bae, 0x4613, 0xa5, 0x1e, 0x91, 0x65, 0x2d, 0x50, 0x8c, 0x21); - -#undef INTERFACE -#define INTERFACE ID3D11ShaderReflectionType - -DECLARE_INTERFACE(ID3D11ShaderReflectionType) -{ - STDMETHOD(GetDesc)(THIS_ __out D3D11_SHADER_TYPE_DESC *pDesc) PURE; - - STDMETHOD_(ID3D11ShaderReflectionType*, GetMemberTypeByIndex)(THIS_ __in UINT Index) PURE; - STDMETHOD_(ID3D11ShaderReflectionType*, GetMemberTypeByName)(THIS_ __in LPCSTR Name) PURE; - STDMETHOD_(LPCSTR, GetMemberTypeName)(THIS_ __in UINT Index) PURE; - - STDMETHOD(IsEqual)(THIS_ __in ID3D11ShaderReflectionType* pType) PURE; - STDMETHOD_(ID3D11ShaderReflectionType*, GetSubType)(THIS) PURE; - STDMETHOD_(ID3D11ShaderReflectionType*, GetBaseClass)(THIS) PURE; - STDMETHOD_(UINT, GetNumInterfaces)(THIS) PURE; - STDMETHOD_(ID3D11ShaderReflectionType*, GetInterfaceByIndex)(THIS_ __in UINT uIndex) PURE; - STDMETHOD(IsOfType)(THIS_ __in ID3D11ShaderReflectionType* pType) PURE; - STDMETHOD(ImplementsInterface)(THIS_ __in ID3D11ShaderReflectionType* pBase) PURE; -}; - -// {51F23923-F3E5-4BD1-91CB-606177D8DB4C} -DEFINE_GUID(IID_ID3D11ShaderReflectionVariable, -0x51f23923, 0xf3e5, 0x4bd1, 0x91, 0xcb, 0x60, 0x61, 0x77, 0xd8, 0xdb, 0x4c); - -#undef INTERFACE -#define INTERFACE ID3D11ShaderReflectionVariable - -DECLARE_INTERFACE(ID3D11ShaderReflectionVariable) -{ - STDMETHOD(GetDesc)(THIS_ __out D3D11_SHADER_VARIABLE_DESC *pDesc) PURE; - - STDMETHOD_(ID3D11ShaderReflectionType*, GetType)(THIS) PURE; - STDMETHOD_(ID3D11ShaderReflectionConstantBuffer*, GetBuffer)(THIS) PURE; - - STDMETHOD_(UINT, GetInterfaceSlot)(THIS_ __in UINT uArrayIndex) PURE; -}; - -// {EB62D63D-93DD-4318-8AE8-C6F83AD371B8} -DEFINE_GUID(IID_ID3D11ShaderReflectionConstantBuffer, -0xeb62d63d, 0x93dd, 0x4318, 0x8a, 0xe8, 0xc6, 0xf8, 0x3a, 0xd3, 0x71, 0xb8); - -#undef INTERFACE -#define INTERFACE ID3D11ShaderReflectionConstantBuffer - -DECLARE_INTERFACE(ID3D11ShaderReflectionConstantBuffer) -{ - STDMETHOD(GetDesc)(THIS_ D3D11_SHADER_BUFFER_DESC *pDesc) PURE; - - STDMETHOD_(ID3D11ShaderReflectionVariable*, GetVariableByIndex)(THIS_ __in UINT Index) PURE; - STDMETHOD_(ID3D11ShaderReflectionVariable*, GetVariableByName)(THIS_ __in LPCSTR Name) PURE; -}; - -// The ID3D11ShaderReflection IID may change from SDK version to SDK version -// if the reflection API changes. This prevents new code with the new API -// from working with an old binary. Recompiling with the new header -// will pick up the new IID. - -// 0a233719-3960-4578-9d7c-203b8b1d9cc1 -DEFINE_GUID(IID_ID3D11ShaderReflection, -0x0a233719, 0x3960, 0x4578, 0x9d, 0x7c, 0x20, 0x3b, 0x8b, 0x1d, 0x9c, 0xc1); - -#undef INTERFACE -#define INTERFACE ID3D11ShaderReflection - -DECLARE_INTERFACE_(ID3D11ShaderReflection, IUnknown) -{ - STDMETHOD(QueryInterface)(THIS_ __in REFIID iid, - __out LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - STDMETHOD(GetDesc)(THIS_ __out D3D11_SHADER_DESC *pDesc) PURE; - - STDMETHOD_(ID3D11ShaderReflectionConstantBuffer*, GetConstantBufferByIndex)(THIS_ __in UINT Index) PURE; - STDMETHOD_(ID3D11ShaderReflectionConstantBuffer*, GetConstantBufferByName)(THIS_ __in LPCSTR Name) PURE; - - STDMETHOD(GetResourceBindingDesc)(THIS_ __in UINT ResourceIndex, - __out D3D11_SHADER_INPUT_BIND_DESC *pDesc) PURE; - - STDMETHOD(GetInputParameterDesc)(THIS_ __in UINT ParameterIndex, - __out D3D11_SIGNATURE_PARAMETER_DESC *pDesc) PURE; - STDMETHOD(GetOutputParameterDesc)(THIS_ __in UINT ParameterIndex, - __out D3D11_SIGNATURE_PARAMETER_DESC *pDesc) PURE; - STDMETHOD(GetPatchConstantParameterDesc)(THIS_ __in UINT ParameterIndex, - __out D3D11_SIGNATURE_PARAMETER_DESC *pDesc) PURE; - - STDMETHOD_(ID3D11ShaderReflectionVariable*, GetVariableByName)(THIS_ __in LPCSTR Name) PURE; - - STDMETHOD(GetResourceBindingDescByName)(THIS_ __in LPCSTR Name, - __out D3D11_SHADER_INPUT_BIND_DESC *pDesc) PURE; - - STDMETHOD_(UINT, GetMovInstructionCount)(THIS) PURE; - STDMETHOD_(UINT, GetMovcInstructionCount)(THIS) PURE; - STDMETHOD_(UINT, GetConversionInstructionCount)(THIS) PURE; - STDMETHOD_(UINT, GetBitwiseInstructionCount)(THIS) PURE; - - STDMETHOD_(D3D_PRIMITIVE, GetGSInputPrimitive)(THIS) PURE; - STDMETHOD_(BOOL, IsSampleFrequencyShader)(THIS) PURE; - - STDMETHOD_(UINT, GetNumInterfaceSlots)(THIS) PURE; - STDMETHOD(GetMinFeatureLevel)(THIS_ __out enum D3D_FEATURE_LEVEL* pLevel) PURE; - - STDMETHOD_(UINT, GetThreadGroupSize)(THIS_ - __out_opt UINT* pSizeX, - __out_opt UINT* pSizeY, - __out_opt UINT* pSizeZ) PURE; -}; - -////////////////////////////////////////////////////////////////////////////// -// APIs ////////////////////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - -#ifdef __cplusplus -} -#endif //__cplusplus - -#endif //__D3D11SHADER_H__ - diff --git a/SDK/Include/D3DCSX.h b/SDK/Include/D3DCSX.h deleted file mode 100644 index 240cdbb..0000000 --- a/SDK/Include/D3DCSX.h +++ /dev/null @@ -1,409 +0,0 @@ - -////////////////////////////////////////////////////////////////////////////// -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// -// File: D3DX11GPGPU.h -// Content: D3DX11 General Purpose GPU computing algorithms -// -////////////////////////////////////////////////////////////////////////////// - -#include "d3dx11.h" - -#ifndef __D3DX11GPGPU_H__ -#define __D3DX11GPGPU_H__ - -// Current name of the DLL shipped in the same SDK as this header. - - -#define D3DCSX_DLL_W L"d3dcsx_43.dll" -#define D3DCSX_DLL_A "d3dcsx_43.dll" - -#ifdef UNICODE - #define D3DCSX_DLL D3DCSX_DLL_W -#else - #define D3DCSX_DLL D3DCSX_DLL_A -#endif - - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - - - - - - -////////////////////////////////////////////////////////////////////////////// - -typedef enum D3DX11_SCAN_DATA_TYPE -{ - D3DX11_SCAN_DATA_TYPE_FLOAT = 1, - D3DX11_SCAN_DATA_TYPE_INT, - D3DX11_SCAN_DATA_TYPE_UINT, -} D3DX11_SCAN_DATA_TYPE; - -typedef enum D3DX11_SCAN_OPCODE -{ - D3DX11_SCAN_OPCODE_ADD = 1, - D3DX11_SCAN_OPCODE_MIN, - D3DX11_SCAN_OPCODE_MAX, - D3DX11_SCAN_OPCODE_MUL, - D3DX11_SCAN_OPCODE_AND, - D3DX11_SCAN_OPCODE_OR, - D3DX11_SCAN_OPCODE_XOR, -} D3DX11_SCAN_OPCODE; - -typedef enum D3DX11_SCAN_DIRECTION -{ - D3DX11_SCAN_DIRECTION_FORWARD = 1, - D3DX11_SCAN_DIRECTION_BACKWARD, -} D3DX11_SCAN_DIRECTION; - - -////////////////////////////////////////////////////////////////////////////// -// ID3DX11Scan: -////////////////////////////////////////////////////////////////////////////// - -// {5089b68f-e71d-4d38-be8e-f363b95a9405} -DEFINE_GUID(IID_ID3DX11Scan, 0x5089b68f, 0xe71d, 0x4d38, 0xbe, 0x8e, 0xf3, 0x63, 0xb9, 0x5a, 0x94, 0x05); - -#undef INTERFACE -#define INTERFACE ID3DX11Scan - -DECLARE_INTERFACE_(ID3DX11Scan, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // ID3DX11Scan - - STDMETHOD(SetScanDirection)(THIS_ D3DX11_SCAN_DIRECTION Direction) PURE; - - //============================================================================= - // Performs an unsegmented scan of a sequence in-place or out-of-place - // ElementType element type - // OpCode binary operation - // Direction scan direction - // ElementScanSize size of scan, in elements - // pSrc input sequence on the device. pSrc==pDst for in-place scans - // pDst output sequence on the device - //============================================================================= - STDMETHOD(Scan)( THIS_ - D3DX11_SCAN_DATA_TYPE ElementType, - D3DX11_SCAN_OPCODE OpCode, - UINT ElementScanSize, - __in ID3D11UnorderedAccessView* pSrc, - __in ID3D11UnorderedAccessView* pDst - ) PURE; - - //============================================================================= - // Performs a multiscan of a sequence in-place or out-of-place - // ElementType element type - // OpCode binary operation - // Direction scan direction - // ElementScanSize size of scan, in elements - // ElementScanPitch pitch of the next scan, in elements - // ScanCount number of scans in a multiscan - // pSrc input sequence on the device. pSrc==pDst for in-place scans - // pDst output sequence on the device - //============================================================================= - STDMETHOD(Multiscan)( THIS_ - D3DX11_SCAN_DATA_TYPE ElementType, - D3DX11_SCAN_OPCODE OpCode, - UINT ElementScanSize, - UINT ElementScanPitch, - UINT ScanCount, - __in ID3D11UnorderedAccessView* pSrc, - __in ID3D11UnorderedAccessView* pDst - ) PURE; -}; - - -//============================================================================= -// Creates a scan context -// pDevice the device context -// MaxElementScanSize maximum single scan size, in elements (FLOAT, UINT, or INT) -// MaxScanCount maximum number of scans in multiscan -// ppScanContext new scan context -//============================================================================= -HRESULT WINAPI D3DX11CreateScan( - __in ID3D11DeviceContext* pDeviceContext, - UINT MaxElementScanSize, - UINT MaxScanCount, - __out ID3DX11Scan** ppScan ); - - - -////////////////////////////////////////////////////////////////////////////// -// ID3DX11SegmentedScan: -////////////////////////////////////////////////////////////////////////////// - -// {a915128c-d954-4c79-bfe1-64db923194d6} -DEFINE_GUID(IID_ID3DX11SegmentedScan, 0xa915128c, 0xd954, 0x4c79, 0xbf, 0xe1, 0x64, 0xdb, 0x92, 0x31, 0x94, 0xd6); - -#undef INTERFACE -#define INTERFACE ID3DX11SegmentedScan - -DECLARE_INTERFACE_(ID3DX11SegmentedScan, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // ID3DX11SegmentedScan - - STDMETHOD(SetScanDirection)(THIS_ D3DX11_SCAN_DIRECTION Direction) PURE; - - //============================================================================= - // Performs a segscan of a sequence in-place or out-of-place - // ElementType element type - // OpCode binary operation - // Direction scan direction - // pSrcElementFlags compact array of bits, one per element of pSrc. A set value - // indicates the start of a new segment. - // ElementScanSize size of scan, in elements - // pSrc input sequence on the device. pSrc==pDst for in-place scans - // pDst output sequence on the device - //============================================================================= - STDMETHOD(SegScan)( THIS_ - D3DX11_SCAN_DATA_TYPE ElementType, - D3DX11_SCAN_OPCODE OpCode, - UINT ElementScanSize, - __in_opt ID3D11UnorderedAccessView* pSrc, - __in ID3D11UnorderedAccessView* pSrcElementFlags, - __in ID3D11UnorderedAccessView* pDst - ) PURE; -}; - - -//============================================================================= -// Creates a segmented scan context -// pDevice the device context -// MaxElementScanSize maximum single scan size, in elements (FLOAT, UINT, or INT) -// ppScanContext new scan context -//============================================================================= -HRESULT WINAPI D3DX11CreateSegmentedScan( - __in ID3D11DeviceContext* pDeviceContext, - UINT MaxElementScanSize, - __out ID3DX11SegmentedScan** ppScan ); - - - -////////////////////////////////////////////////////////////////////////////// - -#define D3DX11_FFT_MAX_PRECOMPUTE_BUFFERS 4 -#define D3DX11_FFT_MAX_TEMP_BUFFERS 4 -#define D3DX11_FFT_MAX_DIMENSIONS 32 - - - -////////////////////////////////////////////////////////////////////////////// -// ID3DX11FFT: -////////////////////////////////////////////////////////////////////////////// - -// {b3f7a938-4c93-4310-a675-b30d6de50553} -DEFINE_GUID(IID_ID3DX11FFT, 0xb3f7a938, 0x4c93, 0x4310, 0xa6, 0x75, 0xb3, 0x0d, 0x6d, 0xe5, 0x05, 0x53); - -#undef INTERFACE -#define INTERFACE ID3DX11FFT - -DECLARE_INTERFACE_(ID3DX11FFT, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // ID3DX11FFT - - // scale for forward transform (defaults to 1 if set to 0) - STDMETHOD(SetForwardScale)(THIS_ FLOAT ForwardScale) PURE; - STDMETHOD_(FLOAT, GetForwardScale)(THIS) PURE; - - // scale for inverse transform (defaults to 1/N if set to 0, where N is - // the product of the transformed dimension lengths - STDMETHOD(SetInverseScale)(THIS_ FLOAT InverseScale) PURE; - STDMETHOD_(FLOAT, GetInverseScale)(THIS) PURE; - - //------------------------------------------------------------------------------ - // Attaches buffers to the context and performs any required precomputation. - // The buffers must be no smaller than the corresponding buffer sizes returned - // by D3DX11CreateFFT*(). Temp buffers may beshared between multiple contexts, - // though care should be taken to concurrently execute multiple FFTs which share - // temp buffers. - // - // NumTempBuffers number of buffers in ppTempBuffers - // ppTempBuffers temp buffers to attach - // NumPrecomputeBuffers number of buffers in ppPrecomputeBufferSizes - // ppPrecomputeBufferSizes buffers to hold precomputed data - STDMETHOD(AttachBuffersAndPrecompute)( THIS_ - __in_range(0,D3DX11_FFT_MAX_TEMP_BUFFERS) UINT NumTempBuffers, - __in_ecount(NumTempBuffers) ID3D11UnorderedAccessView*const* ppTempBuffers, - __in_range(0,D3DX11_FFT_MAX_PRECOMPUTE_BUFFERS) UINT NumPrecomputeBuffers, - __in_ecount(NumPrecomputeBuffers) ID3D11UnorderedAccessView*const* ppPrecomputeBufferSizes ) PURE; - - //------------------------------------------------------------------------------ - // Call after buffers have been attached to the context, pInput and *ppOuput can - // be one of the temp buffers. If *ppOutput == NULL, then the computation will ping-pong - // between temp buffers and the last buffer written to is stored at *ppOutput. - // Otherwise, *ppOutput is used as the output buffer (which may incur an extra copy). - // - // The format of complex data is interleaved components, e.g. (Real0, Imag0), - // (Real1, Imag1) ... etc. Data is stored in row major order - // - // pInputBuffer view onto input buffer - // ppOutpuBuffert pointer to view of output buffer - STDMETHOD(ForwardTransform)( THIS_ - __in const ID3D11UnorderedAccessView* pInputBuffer, - __inout ID3D11UnorderedAccessView** ppOutputBuffer ) PURE; - - STDMETHOD(InverseTransform)( THIS_ - __in const ID3D11UnorderedAccessView* pInputBuffer, - __inout ID3D11UnorderedAccessView** ppOutputBuffer ) PURE; -}; - - -////////////////////////////////////////////////////////////////////////////// -// ID3DX11FFT Creation Routines -////////////////////////////////////////////////////////////////////////////// - -typedef enum D3DX11_FFT_DATA_TYPE -{ - D3DX11_FFT_DATA_TYPE_REAL, - D3DX11_FFT_DATA_TYPE_COMPLEX, -} D3DX11_FFT_DATA_TYPE; - -typedef enum D3DX11_FFT_DIM_MASK -{ - D3DX11_FFT_DIM_MASK_1D = 0x1, - D3DX11_FFT_DIM_MASK_2D = 0x3, - D3DX11_FFT_DIM_MASK_3D = 0x7, -} D3DX11_FFT_DIM_MASK; - -typedef struct D3DX11_FFT_DESC -{ - UINT NumDimensions; // number of dimensions - UINT ElementLengths[D3DX11_FFT_MAX_DIMENSIONS]; // length of each dimension - UINT DimensionMask; // a bit set for each dimensions to transform - // (see D3DX11_FFT_DIM_MASK for common masks) - D3DX11_FFT_DATA_TYPE Type; // type of the elements in spatial domain -} D3DX11_FFT_DESC; - - -//------------------------------------------------------------------------------ -// NumTempBufferSizes Number of temporary buffers needed -// pTempBufferSizes Minimum sizes (in FLOATs) of temporary buffers -// NumPrecomputeBufferSizes Number of precompute buffers needed -// pPrecomputeBufferSizes minimum sizes (in FLOATs) for precompute buffers -//------------------------------------------------------------------------------ - -typedef struct D3DX11_FFT_BUFFER_INFO -{ - __range(0,D3DX11_FFT_MAX_TEMP_BUFFERS) UINT NumTempBufferSizes; - UINT TempBufferFloatSizes[D3DX11_FFT_MAX_TEMP_BUFFERS]; - __range(0,D3DX11_FFT_MAX_PRECOMPUTE_BUFFERS) UINT NumPrecomputeBufferSizes; - UINT PrecomputeBufferFloatSizes[D3DX11_FFT_MAX_PRECOMPUTE_BUFFERS]; -} D3DX11_FFT_BUFFER_INFO; - - -typedef enum D3DX11_FFT_CREATE_FLAG -{ - D3DX11_FFT_CREATE_FLAG_NO_PRECOMPUTE_BUFFERS = 0x01L, // do not precompute values and store into buffers -} D3DX11_FFT_CREATE_FLAG; - - -//------------------------------------------------------------------------------ -// Creates an ID3DX11FFT COM interface object and returns a pointer to it at *ppFFT. -// The descriptor describes the shape of the data as well as the scaling factors -// that should be used for forward and inverse transforms. -// The FFT computation may require temporaries that act as ping-pong buffers -// and for other purposes. aTempSizes is a list of the sizes required for -// temporaries. Likewise, some data may need to be precomputed and the sizes -// of those sizes are returned in aPrecomputedBufferSizes. -// -// To perform a computation, follow these steps: -// 1) Create the FFT context object -// 2) Precompute (and Attach temp working buffers of at least the required size) -// 3) Call Compute() on some input data -// -// Compute() may be called repeatedly with different inputs and transform -// directions. When finished with the FFT work, release the FFT interface() -// -// Device Direct3DDeviceContext to use in -// pDesc Descriptor for FFT transform in -// Count the number of 1D FFTs to perform in -// Flags See D3DX11_FFT_CREATE_FLAG in -// pBufferInfo Pointer to BUFFER_INFO struct, filled by funciton out -// ppFFT Pointer to returned context pointer out -//------------------------------------------------------------------------------ - -HRESULT WINAPI D3DX11CreateFFT( - ID3D11DeviceContext* pDeviceContext, - __in const D3DX11_FFT_DESC* pDesc, - UINT Flags, - __out D3DX11_FFT_BUFFER_INFO* pBufferInfo, - __out ID3DX11FFT** ppFFT - ); - -HRESULT WINAPI D3DX11CreateFFT1DReal( - ID3D11DeviceContext* pDeviceContext, - UINT X, - UINT Flags, - __out D3DX11_FFT_BUFFER_INFO* pBufferInfo, - __out ID3DX11FFT** ppFFT - ); -HRESULT WINAPI D3DX11CreateFFT1DComplex( - ID3D11DeviceContext* pDeviceContext, - UINT X, - UINT Flags, - __out D3DX11_FFT_BUFFER_INFO* pBufferInfo, - __out ID3DX11FFT** ppFFT - ); -HRESULT WINAPI D3DX11CreateFFT2DReal( - ID3D11DeviceContext* pDeviceContext, - UINT X, - UINT Y, - UINT Flags, - __out D3DX11_FFT_BUFFER_INFO* pBufferInfo, - __out ID3DX11FFT** ppFFT - ); -HRESULT WINAPI D3DX11CreateFFT2DComplex( - ID3D11DeviceContext* pDeviceContext, - UINT X, - UINT Y, - UINT Flags, - __out D3DX11_FFT_BUFFER_INFO* pBufferInfo, - __out ID3DX11FFT** ppFFT - ); -HRESULT WINAPI D3DX11CreateFFT3DReal( - ID3D11DeviceContext* pDeviceContext, - UINT X, - UINT Y, - UINT Z, - UINT Flags, - __out D3DX11_FFT_BUFFER_INFO* pBufferInfo, - __out ID3DX11FFT** ppFFT - ); -HRESULT WINAPI D3DX11CreateFFT3DComplex( - ID3D11DeviceContext* pDeviceContext, - UINT X, - UINT Y, - UINT Z, - UINT Flags, - __out D3DX11_FFT_BUFFER_INFO* pBufferInfo, - __out ID3DX11FFT** ppFFT - ); - - -#ifdef __cplusplus -} -#endif //__cplusplus - -#endif //__D3DX11GPGPU_H__ - - diff --git a/SDK/Include/D3DX10.h b/SDK/Include/D3DX10.h deleted file mode 100644 index 5cdcd51..0000000 --- a/SDK/Include/D3DX10.h +++ /dev/null @@ -1,72 +0,0 @@ -////////////////////////////////////////////////////////////////////////////// -// -// Copyright (C) Microsoft Corporation. All Rights Reserved. -// -// File: d3dx10.h -// Content: D3DX10 utility library -// -////////////////////////////////////////////////////////////////////////////// - -#ifdef __D3DX10_INTERNAL__ -#error Incorrect D3DX10 header used -#endif - -#ifndef __D3DX10_H__ -#define __D3DX10_H__ - - -// Defines -#include -#include - -#define D3DX10_DEFAULT ((UINT) -1) -#define D3DX10_FROM_FILE ((UINT) -3) -#define DXGI_FORMAT_FROM_FILE ((DXGI_FORMAT) -3) - -#ifndef D3DX10INLINE -#ifdef _MSC_VER - #if (_MSC_VER >= 1200) - #define D3DX10INLINE __forceinline - #else - #define D3DX10INLINE __inline - #endif -#else - #ifdef __cplusplus - #define D3DX10INLINE inline - #else - #define D3DX10INLINE - #endif -#endif -#endif - - - -// Includes -#include "d3d10.h" -#include "d3dx10.h" -#include "d3dx10math.h" -#include "d3dx10core.h" -#include "d3dx10tex.h" -#include "d3dx10mesh.h" -#include "d3dx10async.h" - - -// Errors -#define _FACDD 0x876 -#define MAKE_DDHRESULT( code ) MAKE_HRESULT( 1, _FACDD, code ) - -enum _D3DX10_ERR { - D3DX10_ERR_CANNOT_MODIFY_INDEX_BUFFER = MAKE_DDHRESULT(2900), - D3DX10_ERR_INVALID_MESH = MAKE_DDHRESULT(2901), - D3DX10_ERR_CANNOT_ATTR_SORT = MAKE_DDHRESULT(2902), - D3DX10_ERR_SKINNING_NOT_SUPPORTED = MAKE_DDHRESULT(2903), - D3DX10_ERR_TOO_MANY_INFLUENCES = MAKE_DDHRESULT(2904), - D3DX10_ERR_INVALID_DATA = MAKE_DDHRESULT(2905), - D3DX10_ERR_LOADED_MESH_HAS_NO_DATA = MAKE_DDHRESULT(2906), - D3DX10_ERR_DUPLICATE_NAMED_FRAGMENT = MAKE_DDHRESULT(2907), - D3DX10_ERR_CANNOT_REMOVE_LAST_ITEM = MAKE_DDHRESULT(2908), -}; - - -#endif //__D3DX10_H__ - diff --git a/SDK/Include/D3DX10core.h b/SDK/Include/D3DX10core.h deleted file mode 100644 index 290a004..0000000 --- a/SDK/Include/D3DX10core.h +++ /dev/null @@ -1,444 +0,0 @@ -/////////////////////////////////////////////////////////////////////////// -// -// Copyright (C) Microsoft Corporation. All Rights Reserved. -// -// File: d3dx10core.h -// Content: D3DX10 core types and functions -// -/////////////////////////////////////////////////////////////////////////// - -#include "d3dx10.h" - -#ifndef __D3DX10CORE_H__ -#define __D3DX10CORE_H__ - -// Current name of the DLL shipped in the same SDK as this header. - - -#define D3DX10_DLL_W L"d3dx10_43.dll" -#define D3DX10_DLL_A "d3dx10_43.dll" - -#ifdef UNICODE - #define D3DX10_DLL D3DX10_DLL_W -#else - #define D3DX10_DLL D3DX10_DLL_A -#endif - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - -/////////////////////////////////////////////////////////////////////////// -// D3DX10_SDK_VERSION: -// ----------------- -// This identifier is passed to D3DX10CheckVersion in order to ensure that an -// application was built against the correct header files and lib files. -// This number is incremented whenever a header (or other) change would -// require applications to be rebuilt. If the version doesn't match, -// D3DX10CreateVersion will return FALSE. (The number itself has no meaning.) -/////////////////////////////////////////////////////////////////////////// - - -#define D3DX10_SDK_VERSION 43 - - -/////////////////////////////////////////////////////////////////////////// -// D3DX10CreateDevice -// D3DX10CreateDeviceAndSwapChain -// D3DX10GetFeatureLevel1 -/////////////////////////////////////////////////////////////////////////// -HRESULT WINAPI D3DX10CreateDevice(IDXGIAdapter *pAdapter, - D3D10_DRIVER_TYPE DriverType, - HMODULE Software, - UINT Flags, - ID3D10Device **ppDevice); - -HRESULT WINAPI D3DX10CreateDeviceAndSwapChain(IDXGIAdapter *pAdapter, - D3D10_DRIVER_TYPE DriverType, - HMODULE Software, - UINT Flags, - DXGI_SWAP_CHAIN_DESC *pSwapChainDesc, - IDXGISwapChain **ppSwapChain, - ID3D10Device **ppDevice); - -typedef interface ID3D10Device1 ID3D10Device1; -HRESULT WINAPI D3DX10GetFeatureLevel1(ID3D10Device *pDevice, ID3D10Device1 **ppDevice1); - - -#ifdef D3D_DIAG_DLL -BOOL WINAPI D3DX10DebugMute(BOOL Mute); -#endif -HRESULT WINAPI D3DX10CheckVersion(UINT D3DSdkVersion, UINT D3DX10SdkVersion); - -#ifdef __cplusplus -} -#endif //__cplusplus - - -////////////////////////////////////////////////////////////////////////////// -// D3DX10_SPRITE flags: -// ----------------- -// D3DX10_SPRITE_SAVE_STATE -// Specifies device state should be saved and restored in Begin/End. -// D3DX10SPRITE_SORT_TEXTURE -// Sprites are sorted by texture prior to drawing. This is recommended when -// drawing non-overlapping sprites of uniform depth. For example, drawing -// screen-aligned text with ID3DX10Font. -// D3DX10SPRITE_SORT_DEPTH_FRONT_TO_BACK -// Sprites are sorted by depth front-to-back prior to drawing. This is -// recommended when drawing opaque sprites of varying depths. -// D3DX10SPRITE_SORT_DEPTH_BACK_TO_FRONT -// Sprites are sorted by depth back-to-front prior to drawing. This is -// recommended when drawing transparent sprites of varying depths. -// D3DX10SPRITE_ADDREF_TEXTURES -// AddRef/Release all textures passed in to DrawSpritesBuffered -////////////////////////////////////////////////////////////////////////////// - -typedef enum _D3DX10_SPRITE_FLAG -{ - D3DX10_SPRITE_SORT_TEXTURE = 0x01, - D3DX10_SPRITE_SORT_DEPTH_BACK_TO_FRONT = 0x02, - D3DX10_SPRITE_SORT_DEPTH_FRONT_TO_BACK = 0x04, - D3DX10_SPRITE_SAVE_STATE = 0x08, - D3DX10_SPRITE_ADDREF_TEXTURES = 0x10, -} D3DX10_SPRITE_FLAG; - -typedef struct _D3DX10_SPRITE -{ - D3DXMATRIX matWorld; - - D3DXVECTOR2 TexCoord; - D3DXVECTOR2 TexSize; - - D3DXCOLOR ColorModulate; - - ID3D10ShaderResourceView *pTexture; - UINT TextureIndex; -} D3DX10_SPRITE; - - -////////////////////////////////////////////////////////////////////////////// -// ID3DX10Sprite: -// ------------ -// This object intends to provide an easy way to drawing sprites using D3D. -// -// Begin - -// Prepares device for drawing sprites. -// -// Draw - -// Draws a sprite -// -// Flush - -// Forces all batched sprites to submitted to the device. -// -// End - -// Restores device state to how it was when Begin was called. -// -////////////////////////////////////////////////////////////////////////////// - -typedef interface ID3DX10Sprite ID3DX10Sprite; -typedef interface ID3DX10Sprite *LPD3DX10SPRITE; - - -// {BA0B762D-8D28-43ec-B9DC-2F84443B0614} -DEFINE_GUID(IID_ID3DX10Sprite, -0xba0b762d, 0x8d28, 0x43ec, 0xb9, 0xdc, 0x2f, 0x84, 0x44, 0x3b, 0x6, 0x14); - - -#undef INTERFACE -#define INTERFACE ID3DX10Sprite - -DECLARE_INTERFACE_(ID3DX10Sprite, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // ID3DX10Sprite - STDMETHOD(Begin)(THIS_ UINT flags) PURE; - - STDMETHOD(DrawSpritesBuffered)(THIS_ D3DX10_SPRITE *pSprites, UINT cSprites) PURE; - STDMETHOD(Flush)(THIS) PURE; - - STDMETHOD(DrawSpritesImmediate)(THIS_ D3DX10_SPRITE *pSprites, UINT cSprites, UINT cbSprite, UINT flags) PURE; - STDMETHOD(End)(THIS) PURE; - - STDMETHOD(GetViewTransform)(THIS_ D3DXMATRIX *pViewTransform) PURE; - STDMETHOD(SetViewTransform)(THIS_ D3DXMATRIX *pViewTransform) PURE; - STDMETHOD(GetProjectionTransform)(THIS_ D3DXMATRIX *pProjectionTransform) PURE; - STDMETHOD(SetProjectionTransform)(THIS_ D3DXMATRIX *pProjectionTransform) PURE; - - STDMETHOD(GetDevice)(THIS_ ID3D10Device** ppDevice) PURE; -}; - - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - -HRESULT WINAPI - D3DX10CreateSprite( - ID3D10Device* pDevice, - UINT cDeviceBufferSize, - LPD3DX10SPRITE* ppSprite); - -#ifdef __cplusplus -} -#endif //__cplusplus - - -////////////////////////////////////////////////////////////////////////////// -// ID3DX10ThreadPump: -////////////////////////////////////////////////////////////////////////////// - -#undef INTERFACE -#define INTERFACE ID3DX10DataLoader - -DECLARE_INTERFACE(ID3DX10DataLoader) -{ - STDMETHOD(Load)(THIS) PURE; - STDMETHOD(Decompress)(THIS_ void **ppData, SIZE_T *pcBytes) PURE; - STDMETHOD(Destroy)(THIS) PURE; -}; - -#undef INTERFACE -#define INTERFACE ID3DX10DataProcessor - -DECLARE_INTERFACE(ID3DX10DataProcessor) -{ - STDMETHOD(Process)(THIS_ void *pData, SIZE_T cBytes) PURE; - STDMETHOD(CreateDeviceObject)(THIS_ void **ppDataObject) PURE; - STDMETHOD(Destroy)(THIS) PURE; -}; - -// {C93FECFA-6967-478a-ABBC-402D90621FCB} -DEFINE_GUID(IID_ID3DX10ThreadPump, -0xc93fecfa, 0x6967, 0x478a, 0xab, 0xbc, 0x40, 0x2d, 0x90, 0x62, 0x1f, 0xcb); - -#undef INTERFACE -#define INTERFACE ID3DX10ThreadPump - -DECLARE_INTERFACE_(ID3DX10ThreadPump, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // ID3DX10ThreadPump - STDMETHOD(AddWorkItem)(THIS_ ID3DX10DataLoader *pDataLoader, ID3DX10DataProcessor *pDataProcessor, HRESULT *pHResult, void **ppDeviceObject) PURE; - STDMETHOD_(UINT, GetWorkItemCount)(THIS) PURE; - - STDMETHOD(WaitForAllItems)(THIS) PURE; - STDMETHOD(ProcessDeviceWorkItems)(THIS_ UINT iWorkItemCount); - - STDMETHOD(PurgeAllItems)(THIS) PURE; - STDMETHOD(GetQueueStatus)(THIS_ UINT *pIoQueue, UINT *pProcessQueue, UINT *pDeviceQueue) PURE; - -}; - -HRESULT WINAPI D3DX10CreateThreadPump(UINT cIoThreads, UINT cProcThreads, ID3DX10ThreadPump **ppThreadPump); - - -////////////////////////////////////////////////////////////////////////////// -// ID3DX10Font: -// ---------- -// Font objects contain the textures and resources needed to render a specific -// font on a specific device. -// -// GetGlyphData - -// Returns glyph cache data, for a given glyph. -// -// PreloadCharacters/PreloadGlyphs/PreloadText - -// Preloads glyphs into the glyph cache textures. -// -// DrawText - -// Draws formatted text on a D3D device. Some parameters are -// surprisingly similar to those of GDI's DrawText function. See GDI -// documentation for a detailed description of these parameters. -// If pSprite is NULL, an internal sprite object will be used. -// -////////////////////////////////////////////////////////////////////////////// - -typedef struct _D3DX10_FONT_DESCA -{ - INT Height; - UINT Width; - UINT Weight; - UINT MipLevels; - BOOL Italic; - BYTE CharSet; - BYTE OutputPrecision; - BYTE Quality; - BYTE PitchAndFamily; - CHAR FaceName[LF_FACESIZE]; - -} D3DX10_FONT_DESCA, *LPD3DX10_FONT_DESCA; - -typedef struct _D3DX10_FONT_DESCW -{ - INT Height; - UINT Width; - UINT Weight; - UINT MipLevels; - BOOL Italic; - BYTE CharSet; - BYTE OutputPrecision; - BYTE Quality; - BYTE PitchAndFamily; - WCHAR FaceName[LF_FACESIZE]; - -} D3DX10_FONT_DESCW, *LPD3DX10_FONT_DESCW; - -#ifdef UNICODE -typedef D3DX10_FONT_DESCW D3DX10_FONT_DESC; -typedef LPD3DX10_FONT_DESCW LPD3DX10_FONT_DESC; -#else -typedef D3DX10_FONT_DESCA D3DX10_FONT_DESC; -typedef LPD3DX10_FONT_DESCA LPD3DX10_FONT_DESC; -#endif - - -typedef interface ID3DX10Font ID3DX10Font; -typedef interface ID3DX10Font *LPD3DX10FONT; - - -// {D79DBB70-5F21-4d36-BBC2-FF525C213CDC} -DEFINE_GUID(IID_ID3DX10Font, -0xd79dbb70, 0x5f21, 0x4d36, 0xbb, 0xc2, 0xff, 0x52, 0x5c, 0x21, 0x3c, 0xdc); - - -#undef INTERFACE -#define INTERFACE ID3DX10Font - -DECLARE_INTERFACE_(ID3DX10Font, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // ID3DX10Font - STDMETHOD(GetDevice)(THIS_ ID3D10Device** ppDevice) PURE; - STDMETHOD(GetDescA)(THIS_ D3DX10_FONT_DESCA *pDesc) PURE; - STDMETHOD(GetDescW)(THIS_ D3DX10_FONT_DESCW *pDesc) PURE; - STDMETHOD_(BOOL, GetTextMetricsA)(THIS_ TEXTMETRICA *pTextMetrics) PURE; - STDMETHOD_(BOOL, GetTextMetricsW)(THIS_ TEXTMETRICW *pTextMetrics) PURE; - - STDMETHOD_(HDC, GetDC)(THIS) PURE; - STDMETHOD(GetGlyphData)(THIS_ UINT Glyph, ID3D10ShaderResourceView** ppTexture, RECT *pBlackBox, POINT *pCellInc) PURE; - - STDMETHOD(PreloadCharacters)(THIS_ UINT First, UINT Last) PURE; - STDMETHOD(PreloadGlyphs)(THIS_ UINT First, UINT Last) PURE; - STDMETHOD(PreloadTextA)(THIS_ LPCSTR pString, INT Count) PURE; - STDMETHOD(PreloadTextW)(THIS_ LPCWSTR pString, INT Count) PURE; - - STDMETHOD_(INT, DrawTextA)(THIS_ LPD3DX10SPRITE pSprite, LPCSTR pString, INT Count, LPRECT pRect, UINT Format, D3DXCOLOR Color) PURE; - STDMETHOD_(INT, DrawTextW)(THIS_ LPD3DX10SPRITE pSprite, LPCWSTR pString, INT Count, LPRECT pRect, UINT Format, D3DXCOLOR Color) PURE; - -#ifdef __cplusplus -#ifdef UNICODE - HRESULT WINAPI_INLINE GetDesc(D3DX10_FONT_DESCW *pDesc) { return GetDescW(pDesc); } - HRESULT WINAPI_INLINE PreloadText(LPCWSTR pString, INT Count) { return PreloadTextW(pString, Count); } -#else - HRESULT WINAPI_INLINE GetDesc(D3DX10_FONT_DESCA *pDesc) { return GetDescA(pDesc); } - HRESULT WINAPI_INLINE PreloadText(LPCSTR pString, INT Count) { return PreloadTextA(pString, Count); } -#endif -#endif //__cplusplus -}; - -#ifndef GetTextMetrics -#ifdef UNICODE -#define GetTextMetrics GetTextMetricsW -#else -#define GetTextMetrics GetTextMetricsA -#endif -#endif - -#ifndef DrawText -#ifdef UNICODE -#define DrawText DrawTextW -#else -#define DrawText DrawTextA -#endif -#endif - - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - - -HRESULT WINAPI - D3DX10CreateFontA( - ID3D10Device* pDevice, - INT Height, - UINT Width, - UINT Weight, - UINT MipLevels, - BOOL Italic, - UINT CharSet, - UINT OutputPrecision, - UINT Quality, - UINT PitchAndFamily, - LPCSTR pFaceName, - LPD3DX10FONT* ppFont); - -HRESULT WINAPI - D3DX10CreateFontW( - ID3D10Device* pDevice, - INT Height, - UINT Width, - UINT Weight, - UINT MipLevels, - BOOL Italic, - UINT CharSet, - UINT OutputPrecision, - UINT Quality, - UINT PitchAndFamily, - LPCWSTR pFaceName, - LPD3DX10FONT* ppFont); - -#ifdef UNICODE -#define D3DX10CreateFont D3DX10CreateFontW -#else -#define D3DX10CreateFont D3DX10CreateFontA -#endif - - -HRESULT WINAPI - D3DX10CreateFontIndirectA( - ID3D10Device* pDevice, - CONST D3DX10_FONT_DESCA* pDesc, - LPD3DX10FONT* ppFont); - -HRESULT WINAPI - D3DX10CreateFontIndirectW( - ID3D10Device* pDevice, - CONST D3DX10_FONT_DESCW* pDesc, - LPD3DX10FONT* ppFont); - -#ifdef UNICODE -#define D3DX10CreateFontIndirect D3DX10CreateFontIndirectW -#else -#define D3DX10CreateFontIndirect D3DX10CreateFontIndirectA -#endif - -HRESULT WINAPI D3DX10UnsetAllDeviceObjects(ID3D10Device *pDevice); - -#ifdef __cplusplus -} -#endif //__cplusplus - -/////////////////////////////////////////////////////////////////////////// - -#define _FACD3D 0x876 -#define MAKE_D3DHRESULT( code ) MAKE_HRESULT( 1, _FACD3D, code ) -#define MAKE_D3DSTATUS( code ) MAKE_HRESULT( 0, _FACD3D, code ) - -#define D3DERR_INVALIDCALL MAKE_D3DHRESULT(2156) -#define D3DERR_WASSTILLDRAWING MAKE_D3DHRESULT(540) - -#endif //__D3DX10CORE_H__ - diff --git a/SDK/Include/D3DX10math.h b/SDK/Include/D3DX10math.h deleted file mode 100644 index a4b8e2d..0000000 --- a/SDK/Include/D3DX10math.h +++ /dev/null @@ -1,1866 +0,0 @@ -////////////////////////////////////////////////////////////////////////////// -// -// Copyright (C) Microsoft Corporation. All Rights Reserved. -// -// File: D3DX10math.h -// Content: D3DX10 math types and functions -// -////////////////////////////////////////////////////////////////////////////// - -#include "D3DX10.h" - -// D3DX10 and D3DX9 math look the same. You can include either one into your project. -// We are intentionally using the header define from D3DX9 math to prevent double-inclusion. -#ifndef __D3DX9MATH_H__ -#define __D3DX9MATH_H__ - -#include -#if _MSC_VER >= 1200 -#pragma warning(push) -#endif -#pragma warning(disable:4201) // anonymous unions warning - -//=========================================================================== -// -// Type definitions from D3D9 -// -//=========================================================================== - -#ifndef D3DVECTOR_DEFINED -typedef struct _D3DVECTOR { - float x; - float y; - float z; -} D3DVECTOR; -#define D3DVECTOR_DEFINED -#endif - -#ifndef D3DMATRIX_DEFINED -typedef struct _D3DMATRIX { - union { - struct { - float _11, _12, _13, _14; - float _21, _22, _23, _24; - float _31, _32, _33, _34; - float _41, _42, _43, _44; - - }; - float m[4][4]; - }; -} D3DMATRIX; -#define D3DMATRIX_DEFINED -#endif - -//=========================================================================== -// -// General purpose utilities -// -//=========================================================================== -#define D3DX_PI (3.14159265358979323846) -#define D3DX_1BYPI ( 1.0 / D3DX_PI ) - -#define D3DXToRadian( degree ) ((degree) * (D3DX_PI / 180.0)) -#define D3DXToDegree( radian ) ((radian) * (180.0 / D3DX_PI)) - - - -//=========================================================================== -// -// 16 bit floating point numbers -// -//=========================================================================== - -#define D3DX_16F_DIG 3 // # of decimal digits of precision -#define D3DX_16F_EPSILON 4.8875809e-4f // smallest such that 1.0 + epsilon != 1.0 -#define D3DX_16F_MANT_DIG 11 // # of bits in mantissa -#define D3DX_16F_MAX 6.550400e+004 // max value -#define D3DX_16F_MAX_10_EXP 4 // max decimal exponent -#define D3DX_16F_MAX_EXP 15 // max binary exponent -#define D3DX_16F_MIN 6.1035156e-5f // min positive value -#define D3DX_16F_MIN_10_EXP (-4) // min decimal exponent -#define D3DX_16F_MIN_EXP (-14) // min binary exponent -#define D3DX_16F_RADIX 2 // exponent radix -#define D3DX_16F_ROUNDS 1 // addition rounding: near -#define D3DX_16F_SIGN_MASK 0x8000 -#define D3DX_16F_EXP_MASK 0x7C00 -#define D3DX_16F_FRAC_MASK 0x03FF - -typedef struct D3DXFLOAT16 -{ -#ifdef __cplusplus -public: - D3DXFLOAT16() {}; - D3DXFLOAT16( FLOAT ); - D3DXFLOAT16( CONST D3DXFLOAT16& ); - - // casting - operator FLOAT (); - - // binary operators - BOOL operator == ( CONST D3DXFLOAT16& ) const; - BOOL operator != ( CONST D3DXFLOAT16& ) const; - -protected: -#endif //__cplusplus - WORD value; -} D3DXFLOAT16, *LPD3DXFLOAT16; - - - -//=========================================================================== -// -// Vectors -// -//=========================================================================== - - -//-------------------------- -// 2D Vector -//-------------------------- -typedef struct D3DXVECTOR2 -{ -#ifdef __cplusplus -public: - D3DXVECTOR2() {}; - D3DXVECTOR2( CONST FLOAT * ); - D3DXVECTOR2( CONST D3DXFLOAT16 * ); - D3DXVECTOR2( FLOAT x, FLOAT y ); - - // casting - operator FLOAT* (); - operator CONST FLOAT* () const; - - // assignment operators - D3DXVECTOR2& operator += ( CONST D3DXVECTOR2& ); - D3DXVECTOR2& operator -= ( CONST D3DXVECTOR2& ); - D3DXVECTOR2& operator *= ( FLOAT ); - D3DXVECTOR2& operator /= ( FLOAT ); - - // unary operators - D3DXVECTOR2 operator + () const; - D3DXVECTOR2 operator - () const; - - // binary operators - D3DXVECTOR2 operator + ( CONST D3DXVECTOR2& ) const; - D3DXVECTOR2 operator - ( CONST D3DXVECTOR2& ) const; - D3DXVECTOR2 operator * ( FLOAT ) const; - D3DXVECTOR2 operator / ( FLOAT ) const; - - friend D3DXVECTOR2 operator * ( FLOAT, CONST D3DXVECTOR2& ); - - BOOL operator == ( CONST D3DXVECTOR2& ) const; - BOOL operator != ( CONST D3DXVECTOR2& ) const; - - -public: -#endif //__cplusplus - FLOAT x, y; -} D3DXVECTOR2, *LPD3DXVECTOR2; - - - -//-------------------------- -// 2D Vector (16 bit) -//-------------------------- - -typedef struct D3DXVECTOR2_16F -{ -#ifdef __cplusplus -public: - D3DXVECTOR2_16F() {}; - D3DXVECTOR2_16F( CONST FLOAT * ); - D3DXVECTOR2_16F( CONST D3DXFLOAT16 * ); - D3DXVECTOR2_16F( CONST D3DXFLOAT16 &x, CONST D3DXFLOAT16 &y ); - - // casting - operator D3DXFLOAT16* (); - operator CONST D3DXFLOAT16* () const; - - // binary operators - BOOL operator == ( CONST D3DXVECTOR2_16F& ) const; - BOOL operator != ( CONST D3DXVECTOR2_16F& ) const; - -public: -#endif //__cplusplus - D3DXFLOAT16 x, y; - -} D3DXVECTOR2_16F, *LPD3DXVECTOR2_16F; - - - -//-------------------------- -// 3D Vector -//-------------------------- -#ifdef __cplusplus -typedef struct D3DXVECTOR3 : public D3DVECTOR -{ -public: - D3DXVECTOR3() {}; - D3DXVECTOR3( CONST FLOAT * ); - D3DXVECTOR3( CONST D3DVECTOR& ); - D3DXVECTOR3( CONST D3DXFLOAT16 * ); - D3DXVECTOR3( FLOAT x, FLOAT y, FLOAT z ); - - // casting - operator FLOAT* (); - operator CONST FLOAT* () const; - - // assignment operators - D3DXVECTOR3& operator += ( CONST D3DXVECTOR3& ); - D3DXVECTOR3& operator -= ( CONST D3DXVECTOR3& ); - D3DXVECTOR3& operator *= ( FLOAT ); - D3DXVECTOR3& operator /= ( FLOAT ); - - // unary operators - D3DXVECTOR3 operator + () const; - D3DXVECTOR3 operator - () const; - - // binary operators - D3DXVECTOR3 operator + ( CONST D3DXVECTOR3& ) const; - D3DXVECTOR3 operator - ( CONST D3DXVECTOR3& ) const; - D3DXVECTOR3 operator * ( FLOAT ) const; - D3DXVECTOR3 operator / ( FLOAT ) const; - - friend D3DXVECTOR3 operator * ( FLOAT, CONST struct D3DXVECTOR3& ); - - BOOL operator == ( CONST D3DXVECTOR3& ) const; - BOOL operator != ( CONST D3DXVECTOR3& ) const; - -} D3DXVECTOR3, *LPD3DXVECTOR3; - -#else //!__cplusplus -typedef struct _D3DVECTOR D3DXVECTOR3, *LPD3DXVECTOR3; -#endif //!__cplusplus - - - -//-------------------------- -// 3D Vector (16 bit) -//-------------------------- -typedef struct D3DXVECTOR3_16F -{ -#ifdef __cplusplus -public: - D3DXVECTOR3_16F() {}; - D3DXVECTOR3_16F( CONST FLOAT * ); - D3DXVECTOR3_16F( CONST D3DVECTOR& ); - D3DXVECTOR3_16F( CONST D3DXFLOAT16 * ); - D3DXVECTOR3_16F( CONST D3DXFLOAT16 &x, CONST D3DXFLOAT16 &y, CONST D3DXFLOAT16 &z ); - - // casting - operator D3DXFLOAT16* (); - operator CONST D3DXFLOAT16* () const; - - // binary operators - BOOL operator == ( CONST D3DXVECTOR3_16F& ) const; - BOOL operator != ( CONST D3DXVECTOR3_16F& ) const; - -public: -#endif //__cplusplus - D3DXFLOAT16 x, y, z; - -} D3DXVECTOR3_16F, *LPD3DXVECTOR3_16F; - - - -//-------------------------- -// 4D Vector -//-------------------------- -typedef struct D3DXVECTOR4 -{ -#ifdef __cplusplus -public: - D3DXVECTOR4() {}; - D3DXVECTOR4( CONST FLOAT* ); - D3DXVECTOR4( CONST D3DXFLOAT16* ); - D3DXVECTOR4( CONST D3DVECTOR& xyz, FLOAT w ); - D3DXVECTOR4( FLOAT x, FLOAT y, FLOAT z, FLOAT w ); - - // casting - operator FLOAT* (); - operator CONST FLOAT* () const; - - // assignment operators - D3DXVECTOR4& operator += ( CONST D3DXVECTOR4& ); - D3DXVECTOR4& operator -= ( CONST D3DXVECTOR4& ); - D3DXVECTOR4& operator *= ( FLOAT ); - D3DXVECTOR4& operator /= ( FLOAT ); - - // unary operators - D3DXVECTOR4 operator + () const; - D3DXVECTOR4 operator - () const; - - // binary operators - D3DXVECTOR4 operator + ( CONST D3DXVECTOR4& ) const; - D3DXVECTOR4 operator - ( CONST D3DXVECTOR4& ) const; - D3DXVECTOR4 operator * ( FLOAT ) const; - D3DXVECTOR4 operator / ( FLOAT ) const; - - friend D3DXVECTOR4 operator * ( FLOAT, CONST D3DXVECTOR4& ); - - BOOL operator == ( CONST D3DXVECTOR4& ) const; - BOOL operator != ( CONST D3DXVECTOR4& ) const; - -public: -#endif //__cplusplus - FLOAT x, y, z, w; -} D3DXVECTOR4, *LPD3DXVECTOR4; - - -//-------------------------- -// 4D Vector (16 bit) -//-------------------------- -typedef struct D3DXVECTOR4_16F -{ -#ifdef __cplusplus -public: - D3DXVECTOR4_16F() {}; - D3DXVECTOR4_16F( CONST FLOAT * ); - D3DXVECTOR4_16F( CONST D3DXFLOAT16* ); - D3DXVECTOR4_16F( CONST D3DXVECTOR3_16F& xyz, CONST D3DXFLOAT16& w ); - D3DXVECTOR4_16F( CONST D3DXFLOAT16& x, CONST D3DXFLOAT16& y, CONST D3DXFLOAT16& z, CONST D3DXFLOAT16& w ); - - // casting - operator D3DXFLOAT16* (); - operator CONST D3DXFLOAT16* () const; - - // binary operators - BOOL operator == ( CONST D3DXVECTOR4_16F& ) const; - BOOL operator != ( CONST D3DXVECTOR4_16F& ) const; - -public: -#endif //__cplusplus - D3DXFLOAT16 x, y, z, w; - -} D3DXVECTOR4_16F, *LPD3DXVECTOR4_16F; - - - -//=========================================================================== -// -// Matrices -// -//=========================================================================== -#ifdef __cplusplus -typedef struct D3DXMATRIX : public D3DMATRIX -{ -public: - D3DXMATRIX() {}; - D3DXMATRIX( CONST FLOAT * ); - D3DXMATRIX( CONST D3DMATRIX& ); - D3DXMATRIX( CONST D3DXFLOAT16 * ); - D3DXMATRIX( FLOAT _11, FLOAT _12, FLOAT _13, FLOAT _14, - FLOAT _21, FLOAT _22, FLOAT _23, FLOAT _24, - FLOAT _31, FLOAT _32, FLOAT _33, FLOAT _34, - FLOAT _41, FLOAT _42, FLOAT _43, FLOAT _44 ); - - - // access grants - FLOAT& operator () ( UINT Row, UINT Col ); - FLOAT operator () ( UINT Row, UINT Col ) const; - - // casting operators - operator FLOAT* (); - operator CONST FLOAT* () const; - - // assignment operators - D3DXMATRIX& operator *= ( CONST D3DXMATRIX& ); - D3DXMATRIX& operator += ( CONST D3DXMATRIX& ); - D3DXMATRIX& operator -= ( CONST D3DXMATRIX& ); - D3DXMATRIX& operator *= ( FLOAT ); - D3DXMATRIX& operator /= ( FLOAT ); - - // unary operators - D3DXMATRIX operator + () const; - D3DXMATRIX operator - () const; - - // binary operators - D3DXMATRIX operator * ( CONST D3DXMATRIX& ) const; - D3DXMATRIX operator + ( CONST D3DXMATRIX& ) const; - D3DXMATRIX operator - ( CONST D3DXMATRIX& ) const; - D3DXMATRIX operator * ( FLOAT ) const; - D3DXMATRIX operator / ( FLOAT ) const; - - friend D3DXMATRIX operator * ( FLOAT, CONST D3DXMATRIX& ); - - BOOL operator == ( CONST D3DXMATRIX& ) const; - BOOL operator != ( CONST D3DXMATRIX& ) const; - -} D3DXMATRIX, *LPD3DXMATRIX; - -#else //!__cplusplus -typedef struct _D3DMATRIX D3DXMATRIX, *LPD3DXMATRIX; -#endif //!__cplusplus - - -//--------------------------------------------------------------------------- -// Aligned Matrices -// -// This class helps keep matrices 16-byte aligned as preferred by P4 cpus. -// It aligns matrices on the stack and on the heap or in global scope. -// It does this using __declspec(align(16)) which works on VC7 and on VC 6 -// with the processor pack. Unfortunately there is no way to detect the -// latter so this is turned on only on VC7. On other compilers this is the -// the same as D3DXMATRIX. -// -// Using this class on a compiler that does not actually do the alignment -// can be dangerous since it will not expose bugs that ignore alignment. -// E.g if an object of this class in inside a struct or class, and some code -// memcopys data in it assuming tight packing. This could break on a compiler -// that eventually start aligning the matrix. -//--------------------------------------------------------------------------- -#ifdef __cplusplus -typedef struct _D3DXMATRIXA16 : public D3DXMATRIX -{ - _D3DXMATRIXA16() {}; - _D3DXMATRIXA16( CONST FLOAT * ); - _D3DXMATRIXA16( CONST D3DMATRIX& ); - _D3DXMATRIXA16( CONST D3DXFLOAT16 * ); - _D3DXMATRIXA16( FLOAT _11, FLOAT _12, FLOAT _13, FLOAT _14, - FLOAT _21, FLOAT _22, FLOAT _23, FLOAT _24, - FLOAT _31, FLOAT _32, FLOAT _33, FLOAT _34, - FLOAT _41, FLOAT _42, FLOAT _43, FLOAT _44 ); - - // new operators - void* operator new ( size_t ); - void* operator new[] ( size_t ); - - // delete operators - void operator delete ( void* ); // These are NOT virtual; Do not - void operator delete[] ( void* ); // cast to D3DXMATRIX and delete. - - // assignment operators - _D3DXMATRIXA16& operator = ( CONST D3DXMATRIX& ); - -} _D3DXMATRIXA16; - -#else //!__cplusplus -typedef D3DXMATRIX _D3DXMATRIXA16; -#endif //!__cplusplus - - - -#if _MSC_VER >= 1300 // VC7 -#define D3DX_ALIGN16 __declspec(align(16)) -#else -#define D3DX_ALIGN16 // Earlier compiler may not understand this, do nothing. -#endif - -typedef D3DX_ALIGN16 _D3DXMATRIXA16 D3DXMATRIXA16, *LPD3DXMATRIXA16; - - - -//=========================================================================== -// -// Quaternions -// -//=========================================================================== -typedef struct D3DXQUATERNION -{ -#ifdef __cplusplus -public: - D3DXQUATERNION() {}; - D3DXQUATERNION( CONST FLOAT * ); - D3DXQUATERNION( CONST D3DXFLOAT16 * ); - D3DXQUATERNION( FLOAT x, FLOAT y, FLOAT z, FLOAT w ); - - // casting - operator FLOAT* (); - operator CONST FLOAT* () const; - - // assignment operators - D3DXQUATERNION& operator += ( CONST D3DXQUATERNION& ); - D3DXQUATERNION& operator -= ( CONST D3DXQUATERNION& ); - D3DXQUATERNION& operator *= ( CONST D3DXQUATERNION& ); - D3DXQUATERNION& operator *= ( FLOAT ); - D3DXQUATERNION& operator /= ( FLOAT ); - - // unary operators - D3DXQUATERNION operator + () const; - D3DXQUATERNION operator - () const; - - // binary operators - D3DXQUATERNION operator + ( CONST D3DXQUATERNION& ) const; - D3DXQUATERNION operator - ( CONST D3DXQUATERNION& ) const; - D3DXQUATERNION operator * ( CONST D3DXQUATERNION& ) const; - D3DXQUATERNION operator * ( FLOAT ) const; - D3DXQUATERNION operator / ( FLOAT ) const; - - friend D3DXQUATERNION operator * (FLOAT, CONST D3DXQUATERNION& ); - - BOOL operator == ( CONST D3DXQUATERNION& ) const; - BOOL operator != ( CONST D3DXQUATERNION& ) const; - -#endif //__cplusplus - FLOAT x, y, z, w; -} D3DXQUATERNION, *LPD3DXQUATERNION; - - -//=========================================================================== -// -// Planes -// -//=========================================================================== -typedef struct D3DXPLANE -{ -#ifdef __cplusplus -public: - D3DXPLANE() {}; - D3DXPLANE( CONST FLOAT* ); - D3DXPLANE( CONST D3DXFLOAT16* ); - D3DXPLANE( FLOAT a, FLOAT b, FLOAT c, FLOAT d ); - - // casting - operator FLOAT* (); - operator CONST FLOAT* () const; - - // assignment operators - D3DXPLANE& operator *= ( FLOAT ); - D3DXPLANE& operator /= ( FLOAT ); - - // unary operators - D3DXPLANE operator + () const; - D3DXPLANE operator - () const; - - // binary operators - D3DXPLANE operator * ( FLOAT ) const; - D3DXPLANE operator / ( FLOAT ) const; - - friend D3DXPLANE operator * ( FLOAT, CONST D3DXPLANE& ); - - BOOL operator == ( CONST D3DXPLANE& ) const; - BOOL operator != ( CONST D3DXPLANE& ) const; - -#endif //__cplusplus - FLOAT a, b, c, d; -} D3DXPLANE, *LPD3DXPLANE; - - -//=========================================================================== -// -// Colors -// -//=========================================================================== - -typedef struct D3DXCOLOR -{ -#ifdef __cplusplus -public: - D3DXCOLOR() {}; - D3DXCOLOR( UINT argb ); - D3DXCOLOR( CONST FLOAT * ); - D3DXCOLOR( CONST D3DXFLOAT16 * ); - D3DXCOLOR( FLOAT r, FLOAT g, FLOAT b, FLOAT a ); - - // casting - operator UINT () const; - - operator FLOAT* (); - operator CONST FLOAT* () const; - - // assignment operators - D3DXCOLOR& operator += ( CONST D3DXCOLOR& ); - D3DXCOLOR& operator -= ( CONST D3DXCOLOR& ); - D3DXCOLOR& operator *= ( FLOAT ); - D3DXCOLOR& operator /= ( FLOAT ); - - // unary operators - D3DXCOLOR operator + () const; - D3DXCOLOR operator - () const; - - // binary operators - D3DXCOLOR operator + ( CONST D3DXCOLOR& ) const; - D3DXCOLOR operator - ( CONST D3DXCOLOR& ) const; - D3DXCOLOR operator * ( FLOAT ) const; - D3DXCOLOR operator / ( FLOAT ) const; - - friend D3DXCOLOR operator * ( FLOAT, CONST D3DXCOLOR& ); - - BOOL operator == ( CONST D3DXCOLOR& ) const; - BOOL operator != ( CONST D3DXCOLOR& ) const; - -#endif //__cplusplus - FLOAT r, g, b, a; -} D3DXCOLOR, *LPD3DXCOLOR; - - - -//=========================================================================== -// -// D3DX math functions: -// -// NOTE: -// * All these functions can take the same object as in and out parameters. -// -// * Out parameters are typically also returned as return values, so that -// the output of one function may be used as a parameter to another. -// -//=========================================================================== - -//-------------------------- -// Float16 -//-------------------------- - -// non-inline -#ifdef __cplusplus -extern "C" { -#endif - -// Converts an array 32-bit floats to 16-bit floats -D3DXFLOAT16* WINAPI D3DXFloat32To16Array - ( D3DXFLOAT16 *pOut, CONST FLOAT *pIn, UINT n ); - -// Converts an array 16-bit floats to 32-bit floats -FLOAT* WINAPI D3DXFloat16To32Array - ( __out_ecount(n) FLOAT *pOut, __in_ecount(n) CONST D3DXFLOAT16 *pIn, UINT n ); - -#ifdef __cplusplus -} -#endif - - -//-------------------------- -// 2D Vector -//-------------------------- - -// inline - -FLOAT D3DXVec2Length - ( CONST D3DXVECTOR2 *pV ); - -FLOAT D3DXVec2LengthSq - ( CONST D3DXVECTOR2 *pV ); - -FLOAT D3DXVec2Dot - ( CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2 ); - -// Z component of ((x1,y1,0) cross (x2,y2,0)) -FLOAT D3DXVec2CCW - ( CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2 ); - -D3DXVECTOR2* D3DXVec2Add - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2 ); - -D3DXVECTOR2* D3DXVec2Subtract - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2 ); - -// Minimize each component. x = min(x1, x2), y = min(y1, y2) -D3DXVECTOR2* D3DXVec2Minimize - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2 ); - -// Maximize each component. x = max(x1, x2), y = max(y1, y2) -D3DXVECTOR2* D3DXVec2Maximize - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2 ); - -D3DXVECTOR2* D3DXVec2Scale - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV, FLOAT s ); - -// Linear interpolation. V1 + s(V2-V1) -D3DXVECTOR2* D3DXVec2Lerp - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2, - FLOAT s ); - -// non-inline -#ifdef __cplusplus -extern "C" { -#endif - -D3DXVECTOR2* WINAPI D3DXVec2Normalize - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV ); - -// Hermite interpolation between position V1, tangent T1 (when s == 0) -// and position V2, tangent T2 (when s == 1). -D3DXVECTOR2* WINAPI D3DXVec2Hermite - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pT1, - CONST D3DXVECTOR2 *pV2, CONST D3DXVECTOR2 *pT2, FLOAT s ); - -// CatmullRom interpolation between V1 (when s == 0) and V2 (when s == 1) -D3DXVECTOR2* WINAPI D3DXVec2CatmullRom - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV0, CONST D3DXVECTOR2 *pV1, - CONST D3DXVECTOR2 *pV2, CONST D3DXVECTOR2 *pV3, FLOAT s ); - -// Barycentric coordinates. V1 + f(V2-V1) + g(V3-V1) -D3DXVECTOR2* WINAPI D3DXVec2BaryCentric - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2, - CONST D3DXVECTOR2 *pV3, FLOAT f, FLOAT g); - -// Transform (x, y, 0, 1) by matrix. -D3DXVECTOR4* WINAPI D3DXVec2Transform - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR2 *pV, CONST D3DXMATRIX *pM ); - -// Transform (x, y, 0, 1) by matrix, project result back into w=1. -D3DXVECTOR2* WINAPI D3DXVec2TransformCoord - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV, CONST D3DXMATRIX *pM ); - -// Transform (x, y, 0, 0) by matrix. -D3DXVECTOR2* WINAPI D3DXVec2TransformNormal - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV, CONST D3DXMATRIX *pM ); - -// Transform Array (x, y, 0, 1) by matrix. -D3DXVECTOR4* WINAPI D3DXVec2TransformArray - ( D3DXVECTOR4 *pOut, UINT OutStride, CONST D3DXVECTOR2 *pV, UINT VStride, CONST D3DXMATRIX *pM, UINT n); - -// Transform Array (x, y, 0, 1) by matrix, project result back into w=1. -D3DXVECTOR2* WINAPI D3DXVec2TransformCoordArray - ( D3DXVECTOR2 *pOut, UINT OutStride, CONST D3DXVECTOR2 *pV, UINT VStride, CONST D3DXMATRIX *pM, UINT n ); - -// Transform Array (x, y, 0, 0) by matrix. -D3DXVECTOR2* WINAPI D3DXVec2TransformNormalArray - ( D3DXVECTOR2 *pOut, UINT OutStride, CONST D3DXVECTOR2 *pV, UINT VStride, CONST D3DXMATRIX *pM, UINT n ); - - - -#ifdef __cplusplus -} -#endif - - -//-------------------------- -// 3D Vector -//-------------------------- - -// inline - -FLOAT D3DXVec3Length - ( CONST D3DXVECTOR3 *pV ); - -FLOAT D3DXVec3LengthSq - ( CONST D3DXVECTOR3 *pV ); - -FLOAT D3DXVec3Dot - ( CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2 ); - -D3DXVECTOR3* D3DXVec3Cross - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2 ); - -D3DXVECTOR3* D3DXVec3Add - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2 ); - -D3DXVECTOR3* D3DXVec3Subtract - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2 ); - -// Minimize each component. x = min(x1, x2), y = min(y1, y2), ... -D3DXVECTOR3* D3DXVec3Minimize - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2 ); - -// Maximize each component. x = max(x1, x2), y = max(y1, y2), ... -D3DXVECTOR3* D3DXVec3Maximize - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2 ); - -D3DXVECTOR3* D3DXVec3Scale - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV, FLOAT s); - -// Linear interpolation. V1 + s(V2-V1) -D3DXVECTOR3* D3DXVec3Lerp - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2, - FLOAT s ); - -// non-inline -#ifdef __cplusplus -extern "C" { -#endif - -D3DXVECTOR3* WINAPI D3DXVec3Normalize - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV ); - -// Hermite interpolation between position V1, tangent T1 (when s == 0) -// and position V2, tangent T2 (when s == 1). -D3DXVECTOR3* WINAPI D3DXVec3Hermite - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pT1, - CONST D3DXVECTOR3 *pV2, CONST D3DXVECTOR3 *pT2, FLOAT s ); - -// CatmullRom interpolation between V1 (when s == 0) and V2 (when s == 1) -D3DXVECTOR3* WINAPI D3DXVec3CatmullRom - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV0, CONST D3DXVECTOR3 *pV1, - CONST D3DXVECTOR3 *pV2, CONST D3DXVECTOR3 *pV3, FLOAT s ); - -// Barycentric coordinates. V1 + f(V2-V1) + g(V3-V1) -D3DXVECTOR3* WINAPI D3DXVec3BaryCentric - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2, - CONST D3DXVECTOR3 *pV3, FLOAT f, FLOAT g); - -// Transform (x, y, z, 1) by matrix. -D3DXVECTOR4* WINAPI D3DXVec3Transform - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR3 *pV, CONST D3DXMATRIX *pM ); - -// Transform (x, y, z, 1) by matrix, project result back into w=1. -D3DXVECTOR3* WINAPI D3DXVec3TransformCoord - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV, CONST D3DXMATRIX *pM ); - -// Transform (x, y, z, 0) by matrix. If you transforming a normal by a -// non-affine matrix, the matrix you pass to this function should be the -// transpose of the inverse of the matrix you would use to transform a coord. -D3DXVECTOR3* WINAPI D3DXVec3TransformNormal - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV, CONST D3DXMATRIX *pM ); - - -// Transform Array (x, y, z, 1) by matrix. -D3DXVECTOR4* WINAPI D3DXVec3TransformArray - ( D3DXVECTOR4 *pOut, UINT OutStride, CONST D3DXVECTOR3 *pV, UINT VStride, CONST D3DXMATRIX *pM, UINT n ); - -// Transform Array (x, y, z, 1) by matrix, project result back into w=1. -D3DXVECTOR3* WINAPI D3DXVec3TransformCoordArray - ( D3DXVECTOR3 *pOut, UINT OutStride, CONST D3DXVECTOR3 *pV, UINT VStride, CONST D3DXMATRIX *pM, UINT n ); - -// Transform (x, y, z, 0) by matrix. If you transforming a normal by a -// non-affine matrix, the matrix you pass to this function should be the -// transpose of the inverse of the matrix you would use to transform a coord. -D3DXVECTOR3* WINAPI D3DXVec3TransformNormalArray - ( D3DXVECTOR3 *pOut, UINT OutStride, CONST D3DXVECTOR3 *pV, UINT VStride, CONST D3DXMATRIX *pM, UINT n ); - -// Project vector from object space into screen space -D3DXVECTOR3* WINAPI D3DXVec3Project - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV, CONST D3D10_VIEWPORT *pViewport, - CONST D3DXMATRIX *pProjection, CONST D3DXMATRIX *pView, CONST D3DXMATRIX *pWorld); - -// Project vector from screen space into object space -D3DXVECTOR3* WINAPI D3DXVec3Unproject - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV, CONST D3D10_VIEWPORT *pViewport, - CONST D3DXMATRIX *pProjection, CONST D3DXMATRIX *pView, CONST D3DXMATRIX *pWorld); - -// Project vector Array from object space into screen space -D3DXVECTOR3* WINAPI D3DXVec3ProjectArray - ( D3DXVECTOR3 *pOut, UINT OutStride,CONST D3DXVECTOR3 *pV, UINT VStride,CONST D3D10_VIEWPORT *pViewport, - CONST D3DXMATRIX *pProjection, CONST D3DXMATRIX *pView, CONST D3DXMATRIX *pWorld, UINT n); - -// Project vector Array from screen space into object space -D3DXVECTOR3* WINAPI D3DXVec3UnprojectArray - ( D3DXVECTOR3 *pOut, UINT OutStride, CONST D3DXVECTOR3 *pV, UINT VStride, CONST D3D10_VIEWPORT *pViewport, - CONST D3DXMATRIX *pProjection, CONST D3DXMATRIX *pView, CONST D3DXMATRIX *pWorld, UINT n); - - -#ifdef __cplusplus -} -#endif - - - -//-------------------------- -// 4D Vector -//-------------------------- - -// inline - -FLOAT D3DXVec4Length - ( CONST D3DXVECTOR4 *pV ); - -FLOAT D3DXVec4LengthSq - ( CONST D3DXVECTOR4 *pV ); - -FLOAT D3DXVec4Dot - ( CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pV2 ); - -D3DXVECTOR4* D3DXVec4Add - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pV2); - -D3DXVECTOR4* D3DXVec4Subtract - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pV2); - -// Minimize each component. x = min(x1, x2), y = min(y1, y2), ... -D3DXVECTOR4* D3DXVec4Minimize - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pV2); - -// Maximize each component. x = max(x1, x2), y = max(y1, y2), ... -D3DXVECTOR4* D3DXVec4Maximize - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pV2); - -D3DXVECTOR4* D3DXVec4Scale - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV, FLOAT s); - -// Linear interpolation. V1 + s(V2-V1) -D3DXVECTOR4* D3DXVec4Lerp - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pV2, - FLOAT s ); - -// non-inline -#ifdef __cplusplus -extern "C" { -#endif - -// Cross-product in 4 dimensions. -D3DXVECTOR4* WINAPI D3DXVec4Cross - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pV2, - CONST D3DXVECTOR4 *pV3); - -D3DXVECTOR4* WINAPI D3DXVec4Normalize - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV ); - -// Hermite interpolation between position V1, tangent T1 (when s == 0) -// and position V2, tangent T2 (when s == 1). -D3DXVECTOR4* WINAPI D3DXVec4Hermite - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pT1, - CONST D3DXVECTOR4 *pV2, CONST D3DXVECTOR4 *pT2, FLOAT s ); - -// CatmullRom interpolation between V1 (when s == 0) and V2 (when s == 1) -D3DXVECTOR4* WINAPI D3DXVec4CatmullRom - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV0, CONST D3DXVECTOR4 *pV1, - CONST D3DXVECTOR4 *pV2, CONST D3DXVECTOR4 *pV3, FLOAT s ); - -// Barycentric coordinates. V1 + f(V2-V1) + g(V3-V1) -D3DXVECTOR4* WINAPI D3DXVec4BaryCentric - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pV2, - CONST D3DXVECTOR4 *pV3, FLOAT f, FLOAT g); - -// Transform vector by matrix. -D3DXVECTOR4* WINAPI D3DXVec4Transform - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV, CONST D3DXMATRIX *pM ); - -// Transform vector array by matrix. -D3DXVECTOR4* WINAPI D3DXVec4TransformArray - ( D3DXVECTOR4 *pOut, UINT OutStride, CONST D3DXVECTOR4 *pV, UINT VStride, CONST D3DXMATRIX *pM, UINT n ); - -#ifdef __cplusplus -} -#endif - - -//-------------------------- -// 4D Matrix -//-------------------------- - -// inline - -D3DXMATRIX* D3DXMatrixIdentity - ( D3DXMATRIX *pOut ); - -BOOL D3DXMatrixIsIdentity - ( CONST D3DXMATRIX *pM ); - - -// non-inline -#ifdef __cplusplus -extern "C" { -#endif - -FLOAT WINAPI D3DXMatrixDeterminant - ( CONST D3DXMATRIX *pM ); - -HRESULT WINAPI D3DXMatrixDecompose - ( D3DXVECTOR3 *pOutScale, D3DXQUATERNION *pOutRotation, - D3DXVECTOR3 *pOutTranslation, CONST D3DXMATRIX *pM ); - -D3DXMATRIX* WINAPI D3DXMatrixTranspose - ( D3DXMATRIX *pOut, CONST D3DXMATRIX *pM ); - -// Matrix multiplication. The result represents the transformation M2 -// followed by the transformation M1. (Out = M1 * M2) -D3DXMATRIX* WINAPI D3DXMatrixMultiply - ( D3DXMATRIX *pOut, CONST D3DXMATRIX *pM1, CONST D3DXMATRIX *pM2 ); - -// Matrix multiplication, followed by a transpose. (Out = T(M1 * M2)) -D3DXMATRIX* WINAPI D3DXMatrixMultiplyTranspose - ( D3DXMATRIX *pOut, CONST D3DXMATRIX *pM1, CONST D3DXMATRIX *pM2 ); - -// Calculate inverse of matrix. Inversion my fail, in which case NULL will -// be returned. The determinant of pM is also returned it pfDeterminant -// is non-NULL. -D3DXMATRIX* WINAPI D3DXMatrixInverse - ( D3DXMATRIX *pOut, FLOAT *pDeterminant, CONST D3DXMATRIX *pM ); - -// Build a matrix which scales by (sx, sy, sz) -D3DXMATRIX* WINAPI D3DXMatrixScaling - ( D3DXMATRIX *pOut, FLOAT sx, FLOAT sy, FLOAT sz ); - -// Build a matrix which translates by (x, y, z) -D3DXMATRIX* WINAPI D3DXMatrixTranslation - ( D3DXMATRIX *pOut, FLOAT x, FLOAT y, FLOAT z ); - -// Build a matrix which rotates around the X axis -D3DXMATRIX* WINAPI D3DXMatrixRotationX - ( D3DXMATRIX *pOut, FLOAT Angle ); - -// Build a matrix which rotates around the Y axis -D3DXMATRIX* WINAPI D3DXMatrixRotationY - ( D3DXMATRIX *pOut, FLOAT Angle ); - -// Build a matrix which rotates around the Z axis -D3DXMATRIX* WINAPI D3DXMatrixRotationZ - ( D3DXMATRIX *pOut, FLOAT Angle ); - -// Build a matrix which rotates around an arbitrary axis -D3DXMATRIX* WINAPI D3DXMatrixRotationAxis - ( D3DXMATRIX *pOut, CONST D3DXVECTOR3 *pV, FLOAT Angle ); - -// Build a matrix from a quaternion -D3DXMATRIX* WINAPI D3DXMatrixRotationQuaternion - ( D3DXMATRIX *pOut, CONST D3DXQUATERNION *pQ); - -// Yaw around the Y axis, a pitch around the X axis, -// and a roll around the Z axis. -D3DXMATRIX* WINAPI D3DXMatrixRotationYawPitchRoll - ( D3DXMATRIX *pOut, FLOAT Yaw, FLOAT Pitch, FLOAT Roll ); - -// Build transformation matrix. NULL arguments are treated as identity. -// Mout = Msc-1 * Msr-1 * Ms * Msr * Msc * Mrc-1 * Mr * Mrc * Mt -D3DXMATRIX* WINAPI D3DXMatrixTransformation - ( D3DXMATRIX *pOut, CONST D3DXVECTOR3 *pScalingCenter, - CONST D3DXQUATERNION *pScalingRotation, CONST D3DXVECTOR3 *pScaling, - CONST D3DXVECTOR3 *pRotationCenter, CONST D3DXQUATERNION *pRotation, - CONST D3DXVECTOR3 *pTranslation); - -// Build 2D transformation matrix in XY plane. NULL arguments are treated as identity. -// Mout = Msc-1 * Msr-1 * Ms * Msr * Msc * Mrc-1 * Mr * Mrc * Mt -D3DXMATRIX* WINAPI D3DXMatrixTransformation2D - ( D3DXMATRIX *pOut, CONST D3DXVECTOR2* pScalingCenter, - FLOAT ScalingRotation, CONST D3DXVECTOR2* pScaling, - CONST D3DXVECTOR2* pRotationCenter, FLOAT Rotation, - CONST D3DXVECTOR2* pTranslation); - -// Build affine transformation matrix. NULL arguments are treated as identity. -// Mout = Ms * Mrc-1 * Mr * Mrc * Mt -D3DXMATRIX* WINAPI D3DXMatrixAffineTransformation - ( D3DXMATRIX *pOut, FLOAT Scaling, CONST D3DXVECTOR3 *pRotationCenter, - CONST D3DXQUATERNION *pRotation, CONST D3DXVECTOR3 *pTranslation); - -// Build 2D affine transformation matrix in XY plane. NULL arguments are treated as identity. -// Mout = Ms * Mrc-1 * Mr * Mrc * Mt -D3DXMATRIX* WINAPI D3DXMatrixAffineTransformation2D - ( D3DXMATRIX *pOut, FLOAT Scaling, CONST D3DXVECTOR2* pRotationCenter, - FLOAT Rotation, CONST D3DXVECTOR2* pTranslation); - -// Build a lookat matrix. (right-handed) -D3DXMATRIX* WINAPI D3DXMatrixLookAtRH - ( D3DXMATRIX *pOut, CONST D3DXVECTOR3 *pEye, CONST D3DXVECTOR3 *pAt, - CONST D3DXVECTOR3 *pUp ); - -// Build a lookat matrix. (left-handed) -D3DXMATRIX* WINAPI D3DXMatrixLookAtLH - ( D3DXMATRIX *pOut, CONST D3DXVECTOR3 *pEye, CONST D3DXVECTOR3 *pAt, - CONST D3DXVECTOR3 *pUp ); - -// Build a perspective projection matrix. (right-handed) -D3DXMATRIX* WINAPI D3DXMatrixPerspectiveRH - ( D3DXMATRIX *pOut, FLOAT w, FLOAT h, FLOAT zn, FLOAT zf ); - -// Build a perspective projection matrix. (left-handed) -D3DXMATRIX* WINAPI D3DXMatrixPerspectiveLH - ( D3DXMATRIX *pOut, FLOAT w, FLOAT h, FLOAT zn, FLOAT zf ); - -// Build a perspective projection matrix. (right-handed) -D3DXMATRIX* WINAPI D3DXMatrixPerspectiveFovRH - ( D3DXMATRIX *pOut, FLOAT fovy, FLOAT Aspect, FLOAT zn, FLOAT zf ); - -// Build a perspective projection matrix. (left-handed) -D3DXMATRIX* WINAPI D3DXMatrixPerspectiveFovLH - ( D3DXMATRIX *pOut, FLOAT fovy, FLOAT Aspect, FLOAT zn, FLOAT zf ); - -// Build a perspective projection matrix. (right-handed) -D3DXMATRIX* WINAPI D3DXMatrixPerspectiveOffCenterRH - ( D3DXMATRIX *pOut, FLOAT l, FLOAT r, FLOAT b, FLOAT t, FLOAT zn, - FLOAT zf ); - -// Build a perspective projection matrix. (left-handed) -D3DXMATRIX* WINAPI D3DXMatrixPerspectiveOffCenterLH - ( D3DXMATRIX *pOut, FLOAT l, FLOAT r, FLOAT b, FLOAT t, FLOAT zn, - FLOAT zf ); - -// Build an ortho projection matrix. (right-handed) -D3DXMATRIX* WINAPI D3DXMatrixOrthoRH - ( D3DXMATRIX *pOut, FLOAT w, FLOAT h, FLOAT zn, FLOAT zf ); - -// Build an ortho projection matrix. (left-handed) -D3DXMATRIX* WINAPI D3DXMatrixOrthoLH - ( D3DXMATRIX *pOut, FLOAT w, FLOAT h, FLOAT zn, FLOAT zf ); - -// Build an ortho projection matrix. (right-handed) -D3DXMATRIX* WINAPI D3DXMatrixOrthoOffCenterRH - ( D3DXMATRIX *pOut, FLOAT l, FLOAT r, FLOAT b, FLOAT t, FLOAT zn, - FLOAT zf ); - -// Build an ortho projection matrix. (left-handed) -D3DXMATRIX* WINAPI D3DXMatrixOrthoOffCenterLH - ( D3DXMATRIX *pOut, FLOAT l, FLOAT r, FLOAT b, FLOAT t, FLOAT zn, - FLOAT zf ); - -// Build a matrix which flattens geometry into a plane, as if casting -// a shadow from a light. -D3DXMATRIX* WINAPI D3DXMatrixShadow - ( D3DXMATRIX *pOut, CONST D3DXVECTOR4 *pLight, - CONST D3DXPLANE *pPlane ); - -// Build a matrix which reflects the coordinate system about a plane -D3DXMATRIX* WINAPI D3DXMatrixReflect - ( D3DXMATRIX *pOut, CONST D3DXPLANE *pPlane ); - -#ifdef __cplusplus -} -#endif - - -//-------------------------- -// Quaternion -//-------------------------- - -// inline - -FLOAT D3DXQuaternionLength - ( CONST D3DXQUATERNION *pQ ); - -// Length squared, or "norm" -FLOAT D3DXQuaternionLengthSq - ( CONST D3DXQUATERNION *pQ ); - -FLOAT D3DXQuaternionDot - ( CONST D3DXQUATERNION *pQ1, CONST D3DXQUATERNION *pQ2 ); - -// (0, 0, 0, 1) -D3DXQUATERNION* D3DXQuaternionIdentity - ( D3DXQUATERNION *pOut ); - -BOOL D3DXQuaternionIsIdentity - ( CONST D3DXQUATERNION *pQ ); - -// (-x, -y, -z, w) -D3DXQUATERNION* D3DXQuaternionConjugate - ( D3DXQUATERNION *pOut, CONST D3DXQUATERNION *pQ ); - - -// non-inline -#ifdef __cplusplus -extern "C" { -#endif - -// Compute a quaternin's axis and angle of rotation. Expects unit quaternions. -void WINAPI D3DXQuaternionToAxisAngle - ( CONST D3DXQUATERNION *pQ, D3DXVECTOR3 *pAxis, FLOAT *pAngle ); - -// Build a quaternion from a rotation matrix. -D3DXQUATERNION* WINAPI D3DXQuaternionRotationMatrix - ( D3DXQUATERNION *pOut, CONST D3DXMATRIX *pM); - -// Rotation about arbitrary axis. -D3DXQUATERNION* WINAPI D3DXQuaternionRotationAxis - ( D3DXQUATERNION *pOut, CONST D3DXVECTOR3 *pV, FLOAT Angle ); - -// Yaw around the Y axis, a pitch around the X axis, -// and a roll around the Z axis. -D3DXQUATERNION* WINAPI D3DXQuaternionRotationYawPitchRoll - ( D3DXQUATERNION *pOut, FLOAT Yaw, FLOAT Pitch, FLOAT Roll ); - -// Quaternion multiplication. The result represents the rotation Q2 -// followed by the rotation Q1. (Out = Q2 * Q1) -D3DXQUATERNION* WINAPI D3DXQuaternionMultiply - ( D3DXQUATERNION *pOut, CONST D3DXQUATERNION *pQ1, - CONST D3DXQUATERNION *pQ2 ); - -D3DXQUATERNION* WINAPI D3DXQuaternionNormalize - ( D3DXQUATERNION *pOut, CONST D3DXQUATERNION *pQ ); - -// Conjugate and re-norm -D3DXQUATERNION* WINAPI D3DXQuaternionInverse - ( D3DXQUATERNION *pOut, CONST D3DXQUATERNION *pQ ); - -// Expects unit quaternions. -// if q = (cos(theta), sin(theta) * v); ln(q) = (0, theta * v) -D3DXQUATERNION* WINAPI D3DXQuaternionLn - ( D3DXQUATERNION *pOut, CONST D3DXQUATERNION *pQ ); - -// Expects pure quaternions. (w == 0) w is ignored in calculation. -// if q = (0, theta * v); exp(q) = (cos(theta), sin(theta) * v) -D3DXQUATERNION* WINAPI D3DXQuaternionExp - ( D3DXQUATERNION *pOut, CONST D3DXQUATERNION *pQ ); - -// Spherical linear interpolation between Q1 (t == 0) and Q2 (t == 1). -// Expects unit quaternions. -D3DXQUATERNION* WINAPI D3DXQuaternionSlerp - ( D3DXQUATERNION *pOut, CONST D3DXQUATERNION *pQ1, - CONST D3DXQUATERNION *pQ2, FLOAT t ); - -// Spherical quadrangle interpolation. -// Slerp(Slerp(Q1, C, t), Slerp(A, B, t), 2t(1-t)) -D3DXQUATERNION* WINAPI D3DXQuaternionSquad - ( D3DXQUATERNION *pOut, CONST D3DXQUATERNION *pQ1, - CONST D3DXQUATERNION *pA, CONST D3DXQUATERNION *pB, - CONST D3DXQUATERNION *pC, FLOAT t ); - -// Setup control points for spherical quadrangle interpolation -// from Q1 to Q2. The control points are chosen in such a way -// to ensure the continuity of tangents with adjacent segments. -void WINAPI D3DXQuaternionSquadSetup - ( D3DXQUATERNION *pAOut, D3DXQUATERNION *pBOut, D3DXQUATERNION *pCOut, - CONST D3DXQUATERNION *pQ0, CONST D3DXQUATERNION *pQ1, - CONST D3DXQUATERNION *pQ2, CONST D3DXQUATERNION *pQ3 ); - -// Barycentric interpolation. -// Slerp(Slerp(Q1, Q2, f+g), Slerp(Q1, Q3, f+g), g/(f+g)) -D3DXQUATERNION* WINAPI D3DXQuaternionBaryCentric - ( D3DXQUATERNION *pOut, CONST D3DXQUATERNION *pQ1, - CONST D3DXQUATERNION *pQ2, CONST D3DXQUATERNION *pQ3, - FLOAT f, FLOAT g ); - -#ifdef __cplusplus -} -#endif - - -//-------------------------- -// Plane -//-------------------------- - -// inline - -// ax + by + cz + dw -FLOAT D3DXPlaneDot - ( CONST D3DXPLANE *pP, CONST D3DXVECTOR4 *pV); - -// ax + by + cz + d -FLOAT D3DXPlaneDotCoord - ( CONST D3DXPLANE *pP, CONST D3DXVECTOR3 *pV); - -// ax + by + cz -FLOAT D3DXPlaneDotNormal - ( CONST D3DXPLANE *pP, CONST D3DXVECTOR3 *pV); - -D3DXPLANE* D3DXPlaneScale - (D3DXPLANE *pOut, CONST D3DXPLANE *pP, FLOAT s); - -// non-inline -#ifdef __cplusplus -extern "C" { -#endif - -// Normalize plane (so that |a,b,c| == 1) -D3DXPLANE* WINAPI D3DXPlaneNormalize - ( D3DXPLANE *pOut, CONST D3DXPLANE *pP); - -// Find the intersection between a plane and a line. If the line is -// parallel to the plane, NULL is returned. -D3DXVECTOR3* WINAPI D3DXPlaneIntersectLine - ( D3DXVECTOR3 *pOut, CONST D3DXPLANE *pP, CONST D3DXVECTOR3 *pV1, - CONST D3DXVECTOR3 *pV2); - -// Construct a plane from a point and a normal -D3DXPLANE* WINAPI D3DXPlaneFromPointNormal - ( D3DXPLANE *pOut, CONST D3DXVECTOR3 *pPoint, CONST D3DXVECTOR3 *pNormal); - -// Construct a plane from 3 points -D3DXPLANE* WINAPI D3DXPlaneFromPoints - ( D3DXPLANE *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2, - CONST D3DXVECTOR3 *pV3); - -// Transform a plane by a matrix. The vector (a,b,c) must be normal. -// M should be the inverse transpose of the transformation desired. -D3DXPLANE* WINAPI D3DXPlaneTransform - ( D3DXPLANE *pOut, CONST D3DXPLANE *pP, CONST D3DXMATRIX *pM ); - -// Transform an array of planes by a matrix. The vectors (a,b,c) must be normal. -// M should be the inverse transpose of the transformation desired. -D3DXPLANE* WINAPI D3DXPlaneTransformArray - ( D3DXPLANE *pOut, UINT OutStride, CONST D3DXPLANE *pP, UINT PStride, CONST D3DXMATRIX *pM, UINT n ); - -#ifdef __cplusplus -} -#endif - - -//-------------------------- -// Color -//-------------------------- - -// inline - -// (1-r, 1-g, 1-b, a) -D3DXCOLOR* D3DXColorNegative - (D3DXCOLOR *pOut, CONST D3DXCOLOR *pC); - -D3DXCOLOR* D3DXColorAdd - (D3DXCOLOR *pOut, CONST D3DXCOLOR *pC1, CONST D3DXCOLOR *pC2); - -D3DXCOLOR* D3DXColorSubtract - (D3DXCOLOR *pOut, CONST D3DXCOLOR *pC1, CONST D3DXCOLOR *pC2); - -D3DXCOLOR* D3DXColorScale - (D3DXCOLOR *pOut, CONST D3DXCOLOR *pC, FLOAT s); - -// (r1*r2, g1*g2, b1*b2, a1*a2) -D3DXCOLOR* D3DXColorModulate - (D3DXCOLOR *pOut, CONST D3DXCOLOR *pC1, CONST D3DXCOLOR *pC2); - -// Linear interpolation of r,g,b, and a. C1 + s(C2-C1) -D3DXCOLOR* D3DXColorLerp - (D3DXCOLOR *pOut, CONST D3DXCOLOR *pC1, CONST D3DXCOLOR *pC2, FLOAT s); - -// non-inline -#ifdef __cplusplus -extern "C" { -#endif - -// Interpolate r,g,b between desaturated color and color. -// DesaturatedColor + s(Color - DesaturatedColor) -D3DXCOLOR* WINAPI D3DXColorAdjustSaturation - (D3DXCOLOR *pOut, CONST D3DXCOLOR *pC, FLOAT s); - -// Interpolate r,g,b between 50% grey and color. Grey + s(Color - Grey) -D3DXCOLOR* WINAPI D3DXColorAdjustContrast - (D3DXCOLOR *pOut, CONST D3DXCOLOR *pC, FLOAT c); - -#ifdef __cplusplus -} -#endif - - - - -//-------------------------- -// Misc -//-------------------------- - -#ifdef __cplusplus -extern "C" { -#endif - -// Calculate Fresnel term given the cosine of theta (likely obtained by -// taking the dot of two normals), and the refraction index of the material. -FLOAT WINAPI D3DXFresnelTerm - (FLOAT CosTheta, FLOAT RefractionIndex); - -#ifdef __cplusplus -} -#endif - - - -//=========================================================================== -// -// Matrix Stack -// -//=========================================================================== - -typedef interface ID3DXMatrixStack ID3DXMatrixStack; -typedef interface ID3DXMatrixStack *LPD3DXMATRIXSTACK; - -// {C7885BA7-F990-4fe7-922D-8515E477DD85} -DEFINE_GUID(IID_ID3DXMatrixStack, -0xc7885ba7, 0xf990, 0x4fe7, 0x92, 0x2d, 0x85, 0x15, 0xe4, 0x77, 0xdd, 0x85); - - -#undef INTERFACE -#define INTERFACE ID3DXMatrixStack - -DECLARE_INTERFACE_(ID3DXMatrixStack, IUnknown) -{ - // - // IUnknown methods - // - STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID * ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - // - // ID3DXMatrixStack methods - // - - // Pops the top of the stack, returns the current top - // *after* popping the top. - STDMETHOD(Pop)(THIS) PURE; - - // Pushes the stack by one, duplicating the current matrix. - STDMETHOD(Push)(THIS) PURE; - - // Loads identity in the current matrix. - STDMETHOD(LoadIdentity)(THIS) PURE; - - // Loads the given matrix into the current matrix - STDMETHOD(LoadMatrix)(THIS_ CONST D3DXMATRIX* pM ) PURE; - - // Right-Multiplies the given matrix to the current matrix. - // (transformation is about the current world origin) - STDMETHOD(MultMatrix)(THIS_ CONST D3DXMATRIX* pM ) PURE; - - // Left-Multiplies the given matrix to the current matrix - // (transformation is about the local origin of the object) - STDMETHOD(MultMatrixLocal)(THIS_ CONST D3DXMATRIX* pM ) PURE; - - // Right multiply the current matrix with the computed rotation - // matrix, counterclockwise about the given axis with the given angle. - // (rotation is about the current world origin) - STDMETHOD(RotateAxis) - (THIS_ CONST D3DXVECTOR3* pV, FLOAT Angle) PURE; - - // Left multiply the current matrix with the computed rotation - // matrix, counterclockwise about the given axis with the given angle. - // (rotation is about the local origin of the object) - STDMETHOD(RotateAxisLocal) - (THIS_ CONST D3DXVECTOR3* pV, FLOAT Angle) PURE; - - // Right multiply the current matrix with the computed rotation - // matrix. All angles are counterclockwise. (rotation is about the - // current world origin) - - // The rotation is composed of a yaw around the Y axis, a pitch around - // the X axis, and a roll around the Z axis. - STDMETHOD(RotateYawPitchRoll) - (THIS_ FLOAT Yaw, FLOAT Pitch, FLOAT Roll) PURE; - - // Left multiply the current matrix with the computed rotation - // matrix. All angles are counterclockwise. (rotation is about the - // local origin of the object) - - // The rotation is composed of a yaw around the Y axis, a pitch around - // the X axis, and a roll around the Z axis. - STDMETHOD(RotateYawPitchRollLocal) - (THIS_ FLOAT Yaw, FLOAT Pitch, FLOAT Roll) PURE; - - // Right multiply the current matrix with the computed scale - // matrix. (transformation is about the current world origin) - STDMETHOD(Scale)(THIS_ FLOAT x, FLOAT y, FLOAT z) PURE; - - // Left multiply the current matrix with the computed scale - // matrix. (transformation is about the local origin of the object) - STDMETHOD(ScaleLocal)(THIS_ FLOAT x, FLOAT y, FLOAT z) PURE; - - // Right multiply the current matrix with the computed translation - // matrix. (transformation is about the current world origin) - STDMETHOD(Translate)(THIS_ FLOAT x, FLOAT y, FLOAT z ) PURE; - - // Left multiply the current matrix with the computed translation - // matrix. (transformation is about the local origin of the object) - STDMETHOD(TranslateLocal)(THIS_ FLOAT x, FLOAT y, FLOAT z) PURE; - - // Obtain the current matrix at the top of the stack - STDMETHOD_(D3DXMATRIX*, GetTop)(THIS) PURE; -}; - -#ifdef __cplusplus -extern "C" { -#endif - -HRESULT WINAPI - D3DXCreateMatrixStack( - UINT Flags, - LPD3DXMATRIXSTACK* ppStack); - -#ifdef __cplusplus -} -#endif - -// non-inline -#ifdef __cplusplus -extern "C" { -#endif - -//============================================================================ -// -// Basic Spherical Harmonic math routines -// -//============================================================================ - -#define D3DXSH_MINORDER 2 -#define D3DXSH_MAXORDER 6 - -//============================================================================ -// -// D3DXSHEvalDirection: -// -------------------- -// Evaluates the Spherical Harmonic basis functions -// -// Parameters: -// pOut -// Output SH coefficients - basis function Ylm is stored at l*l + m+l -// This is the pointer that is returned. -// Order -// Order of the SH evaluation, generates Order^2 coefs, degree is Order-1 -// pDir -// Direction to evaluate in - assumed to be normalized -// -//============================================================================ - -FLOAT* WINAPI D3DXSHEvalDirection - ( FLOAT *pOut, UINT Order, CONST D3DXVECTOR3 *pDir ); - -//============================================================================ -// -// D3DXSHRotate: -// -------------------- -// Rotates SH vector by a rotation matrix -// -// Parameters: -// pOut -// Output SH coefficients - basis function Ylm is stored at l*l + m+l -// This is the pointer that is returned (should not alias with pIn.) -// Order -// Order of the SH evaluation, generates Order^2 coefs, degree is Order-1 -// pMatrix -// Matrix used for rotation - rotation sub matrix should be orthogonal -// and have a unit determinant. -// pIn -// Input SH coeffs (rotated), incorect results if this is also output. -// -//============================================================================ - -FLOAT* WINAPI D3DXSHRotate - ( __out_ecount(Order*Order) FLOAT *pOut, UINT Order, CONST D3DXMATRIX *pMatrix, CONST FLOAT *pIn ); - -//============================================================================ -// -// D3DXSHRotateZ: -// -------------------- -// Rotates the SH vector in the Z axis by an angle -// -// Parameters: -// pOut -// Output SH coefficients - basis function Ylm is stored at l*l + m+l -// This is the pointer that is returned (should not alias with pIn.) -// Order -// Order of the SH evaluation, generates Order^2 coefs, degree is Order-1 -// Angle -// Angle in radians to rotate around the Z axis. -// pIn -// Input SH coeffs (rotated), incorect results if this is also output. -// -//============================================================================ - - -FLOAT* WINAPI D3DXSHRotateZ - ( FLOAT *pOut, UINT Order, FLOAT Angle, CONST FLOAT *pIn ); - -//============================================================================ -// -// D3DXSHAdd: -// -------------------- -// Adds two SH vectors, pOut[i] = pA[i] + pB[i]; -// -// Parameters: -// pOut -// Output SH coefficients - basis function Ylm is stored at l*l + m+l -// This is the pointer that is returned. -// Order -// Order of the SH evaluation, generates Order^2 coefs, degree is Order-1 -// pA -// Input SH coeffs. -// pB -// Input SH coeffs (second vector.) -// -//============================================================================ - -FLOAT* WINAPI D3DXSHAdd - ( __out_ecount(Order*Order) FLOAT *pOut, UINT Order, CONST FLOAT *pA, CONST FLOAT *pB ); - -//============================================================================ -// -// D3DXSHScale: -// -------------------- -// Adds two SH vectors, pOut[i] = pA[i]*Scale; -// -// Parameters: -// pOut -// Output SH coefficients - basis function Ylm is stored at l*l + m+l -// This is the pointer that is returned. -// Order -// Order of the SH evaluation, generates Order^2 coefs, degree is Order-1 -// pIn -// Input SH coeffs. -// Scale -// Scale factor. -// -//============================================================================ - -FLOAT* WINAPI D3DXSHScale - ( __out_ecount(Order*Order) FLOAT *pOut, UINT Order, CONST FLOAT *pIn, CONST FLOAT Scale ); - -//============================================================================ -// -// D3DXSHDot: -// -------------------- -// Computes the dot product of two SH vectors -// -// Parameters: -// Order -// Order of the SH evaluation, generates Order^2 coefs, degree is Order-1 -// pA -// Input SH coeffs. -// pB -// Second set of input SH coeffs. -// -//============================================================================ - -FLOAT WINAPI D3DXSHDot - ( UINT Order, CONST FLOAT *pA, CONST FLOAT *pB ); - -//============================================================================ -// -// D3DXSHMultiply[O]: -// -------------------- -// Computes the product of two functions represented using SH (f and g), where: -// pOut[i] = int(y_i(s) * f(s) * g(s)), where y_i(s) is the ith SH basis -// function, f(s) and g(s) are SH functions (sum_i(y_i(s)*c_i)). The order O -// determines the lengths of the arrays, where there should always be O^2 -// coefficients. In general the product of two SH functions of order O generates -// and SH function of order 2*O - 1, but we truncate the result. This means -// that the product commutes (f*g == g*f) but doesn't associate -// (f*(g*h) != (f*g)*h. -// -// Parameters: -// pOut -// Output SH coefficients - basis function Ylm is stored at l*l + m+l -// This is the pointer that is returned. -// pF -// Input SH coeffs for first function. -// pG -// Second set of input SH coeffs. -// -//============================================================================ - -__out_ecount(4) FLOAT* WINAPI D3DXSHMultiply2(__out_ecount(4) FLOAT *pOut,__in_ecount(4) CONST FLOAT *pF,__in_ecount(4) CONST FLOAT *pG); -__out_ecount(9) FLOAT* WINAPI D3DXSHMultiply3(__out_ecount(9) FLOAT *pOut,__in_ecount(9) CONST FLOAT *pF,__in_ecount(9) CONST FLOAT *pG); -__out_ecount(16) FLOAT* WINAPI D3DXSHMultiply4(__out_ecount(16) FLOAT *pOut,__in_ecount(16) CONST FLOAT *pF,__in_ecount(16) CONST FLOAT *pG); -__out_ecount(25) FLOAT* WINAPI D3DXSHMultiply5(__out_ecount(25) FLOAT *pOut,__in_ecount(25) CONST FLOAT *pF,__in_ecount(25) CONST FLOAT *pG); -__out_ecount(36) FLOAT* WINAPI D3DXSHMultiply6(__out_ecount(36) FLOAT *pOut,__in_ecount(36) CONST FLOAT *pF,__in_ecount(36) CONST FLOAT *pG); - - -//============================================================================ -// -// Basic Spherical Harmonic lighting routines -// -//============================================================================ - -//============================================================================ -// -// D3DXSHEvalDirectionalLight: -// -------------------- -// Evaluates a directional light and returns spectral SH data. The output -// vector is computed so that if the intensity of R/G/B is unit the resulting -// exit radiance of a point directly under the light on a diffuse object with -// an albedo of 1 would be 1.0. This will compute 3 spectral samples, pROut -// has to be specified, while pGout and pBout are optional. -// -// Parameters: -// Order -// Order of the SH evaluation, generates Order^2 coefs, degree is Order-1 -// pDir -// Direction light is coming from (assumed to be normalized.) -// RIntensity -// Red intensity of light. -// GIntensity -// Green intensity of light. -// BIntensity -// Blue intensity of light. -// pROut -// Output SH vector for Red. -// pGOut -// Output SH vector for Green (optional.) -// pBOut -// Output SH vector for Blue (optional.) -// -//============================================================================ - -HRESULT WINAPI D3DXSHEvalDirectionalLight - ( UINT Order, CONST D3DXVECTOR3 *pDir, - FLOAT RIntensity, FLOAT GIntensity, FLOAT BIntensity, - __out_ecount_opt(Order*Order) FLOAT *pROut, - __out_ecount_opt(Order*Order) FLOAT *pGOut, - __out_ecount_opt(Order*Order) FLOAT *pBOut ); - -//============================================================================ -// -// D3DXSHEvalSphericalLight: -// -------------------- -// Evaluates a spherical light and returns spectral SH data. There is no -// normalization of the intensity of the light like there is for directional -// lights, care has to be taken when specifiying the intensities. This will -// compute 3 spectral samples, pROut has to be specified, while pGout and -// pBout are optional. -// -// Parameters: -// Order -// Order of the SH evaluation, generates Order^2 coefs, degree is Order-1 -// pPos -// Position of light - reciever is assumed to be at the origin. -// Radius -// Radius of the spherical light source. -// RIntensity -// Red intensity of light. -// GIntensity -// Green intensity of light. -// BIntensity -// Blue intensity of light. -// pROut -// Output SH vector for Red. -// pGOut -// Output SH vector for Green (optional.) -// pBOut -// Output SH vector for Blue (optional.) -// -//============================================================================ - -HRESULT WINAPI D3DXSHEvalSphericalLight - ( UINT Order, CONST D3DXVECTOR3 *pPos, FLOAT Radius, - FLOAT RIntensity, FLOAT GIntensity, FLOAT BIntensity, - __out_ecount_opt(Order*Order) FLOAT *pROut, - __out_ecount_opt(Order*Order) FLOAT *pGOut, - __out_ecount_opt(Order*Order) FLOAT *pBOut ); - -//============================================================================ -// -// D3DXSHEvalConeLight: -// -------------------- -// Evaluates a light that is a cone of constant intensity and returns spectral -// SH data. The output vector is computed so that if the intensity of R/G/B is -// unit the resulting exit radiance of a point directly under the light oriented -// in the cone direction on a diffuse object with an albedo of 1 would be 1.0. -// This will compute 3 spectral samples, pROut has to be specified, while pGout -// and pBout are optional. -// -// Parameters: -// Order -// Order of the SH evaluation, generates Order^2 coefs, degree is Order-1 -// pDir -// Direction light is coming from (assumed to be normalized.) -// Radius -// Radius of cone in radians. -// RIntensity -// Red intensity of light. -// GIntensity -// Green intensity of light. -// BIntensity -// Blue intensity of light. -// pROut -// Output SH vector for Red. -// pGOut -// Output SH vector for Green (optional.) -// pBOut -// Output SH vector for Blue (optional.) -// -//============================================================================ - -HRESULT WINAPI D3DXSHEvalConeLight - ( UINT Order, CONST D3DXVECTOR3 *pDir, FLOAT Radius, - FLOAT RIntensity, FLOAT GIntensity, FLOAT BIntensity, - __out_ecount_opt(Order*Order) FLOAT *pROut, - __out_ecount_opt(Order*Order) FLOAT *pGOut, - __out_ecount_opt(Order*Order) FLOAT *pBOut ); - -//============================================================================ -// -// D3DXSHEvalHemisphereLight: -// -------------------- -// Evaluates a light that is a linear interpolant between two colors over the -// sphere. The interpolant is linear along the axis of the two points, not -// over the surface of the sphere (ie: if the axis was (0,0,1) it is linear in -// Z, not in the azimuthal angle.) The resulting spherical lighting function -// is normalized so that a point on a perfectly diffuse surface with no -// shadowing and a normal pointed in the direction pDir would result in exit -// radiance with a value of 1 if the top color was white and the bottom color -// was black. This is a very simple model where Top represents the intensity -// of the "sky" and Bottom represents the intensity of the "ground". -// -// Parameters: -// Order -// Order of the SH evaluation, generates Order^2 coefs, degree is Order-1 -// pDir -// Axis of the hemisphere. -// Top -// Color of the upper hemisphere. -// Bottom -// Color of the lower hemisphere. -// pROut -// Output SH vector for Red. -// pGOut -// Output SH vector for Green -// pBOut -// Output SH vector for Blue -// -//============================================================================ - -HRESULT WINAPI D3DXSHEvalHemisphereLight - ( UINT Order, CONST D3DXVECTOR3 *pDir, D3DXCOLOR Top, D3DXCOLOR Bottom, - __out_ecount_opt(Order*Order) FLOAT *pROut, - __out_ecount_opt(Order*Order) FLOAT *pGOut, - __out_ecount_opt(Order*Order) FLOAT *pBOut ); - -// Math intersection functions - -BOOL WINAPI D3DXIntersectTri -( - CONST D3DXVECTOR3 *p0, // Triangle vertex 0 position - CONST D3DXVECTOR3 *p1, // Triangle vertex 1 position - CONST D3DXVECTOR3 *p2, // Triangle vertex 2 position - CONST D3DXVECTOR3 *pRayPos, // Ray origin - CONST D3DXVECTOR3 *pRayDir, // Ray direction - FLOAT *pU, // Barycentric Hit Coordinates - FLOAT *pV, // Barycentric Hit Coordinates - FLOAT *pDist); // Ray-Intersection Parameter Distance - -BOOL WINAPI - D3DXSphereBoundProbe( - CONST D3DXVECTOR3 *pCenter, - FLOAT Radius, - CONST D3DXVECTOR3 *pRayPosition, - CONST D3DXVECTOR3 *pRayDirection); - -BOOL WINAPI - D3DXBoxBoundProbe( - CONST D3DXVECTOR3 *pMin, - CONST D3DXVECTOR3 *pMax, - CONST D3DXVECTOR3 *pRayPosition, - CONST D3DXVECTOR3 *pRayDirection); - -HRESULT WINAPI - D3DXComputeBoundingSphere( - CONST D3DXVECTOR3 *pFirstPosition, // pointer to first position - DWORD NumVertices, - DWORD dwStride, // count in bytes to subsequent position vectors - D3DXVECTOR3 *pCenter, - FLOAT *pRadius); - -HRESULT WINAPI - D3DXComputeBoundingBox( - CONST D3DXVECTOR3 *pFirstPosition, // pointer to first position - DWORD NumVertices, - DWORD dwStride, // count in bytes to subsequent position vectors - D3DXVECTOR3 *pMin, - D3DXVECTOR3 *pMax); - - -/////////////////////////////////////////////////////////////////////////// -// CPU Optimization: -/////////////////////////////////////////////////////////////////////////// - -//------------------------------------------------------------------------- -// D3DX_CPU_OPTIMIZATION flags: -// ---------------------------- -// D3DX_NOT_OPTIMIZED Use Intel Pentium optimizations -// D3DX_3DNOW_OPTIMIZED Use AMD 3DNow optimizations -// D3DX_SSE_OPTIMIZED Use Intel Pentium III SSE optimizations -// D3DX_SSE2_OPTIMIZED Use Intel Pentium IV SSE2 optimizations -//------------------------------------------------------------------------- - - -typedef enum _D3DX_CPU_OPTIMIZATION -{ - D3DX_NOT_OPTIMIZED = 0, - D3DX_3DNOW_OPTIMIZED, - D3DX_SSE2_OPTIMIZED, - D3DX_SSE_OPTIMIZED -} D3DX_CPU_OPTIMIZATION; - - -//------------------------------------------------------------------------- -// D3DXCpuOptimizations: -// --------------------- -// Enables or disables CPU optimizations. Returns the type of CPU, which -// was detected, and for which optimizations exist. -// -// Parameters: -// Enable -// TRUE to enable CPU optimizations. FALSE to disable. -//------------------------------------------------------------------------- - -D3DX_CPU_OPTIMIZATION WINAPI - D3DXCpuOptimizations(BOOL Enable); - -#ifdef __cplusplus -} -#endif - - -#include "D3DX10math.inl" - -#if _MSC_VER >= 1200 -#pragma warning(pop) -#else -#pragma warning(default:4201) -#endif - -#endif // __D3DX9MATH_H__ - diff --git a/SDK/Include/D3DX10math.inl b/SDK/Include/D3DX10math.inl deleted file mode 100644 index 56f1163..0000000 --- a/SDK/Include/D3DX10math.inl +++ /dev/null @@ -1,2228 +0,0 @@ -////////////////////////////////////////////////////////////////////////////// -// -// Copyright (C) Microsoft Corporation. All Rights Reserved. -// -// File: d3dx10math.inl -// Content: D3DX10 math inline functions -// -////////////////////////////////////////////////////////////////////////////// - -#ifndef __D3DXMATH_INL__ -#define __D3DXMATH_INL__ - - -//=========================================================================== -// -// Inline Class Methods -// -//=========================================================================== - -#ifdef __cplusplus - -//-------------------------- -// Float16 -//-------------------------- - -D3DX10INLINE -D3DXFLOAT16::D3DXFLOAT16( FLOAT f ) -{ - D3DXFloat32To16Array(this, &f, 1); -} - -D3DX10INLINE -D3DXFLOAT16::D3DXFLOAT16( CONST D3DXFLOAT16& f ) -{ - value = f.value; -} - -// casting -D3DX10INLINE -D3DXFLOAT16::operator FLOAT () -{ - FLOAT f; - D3DXFloat16To32Array(&f, this, 1); - return f; -} - -// binary operators -D3DX10INLINE BOOL -D3DXFLOAT16::operator == ( CONST D3DXFLOAT16& f ) const -{ - // At least one is NaN - if(((value & D3DX_16F_EXP_MASK) == D3DX_16F_EXP_MASK && (value & D3DX_16F_FRAC_MASK)) - || ((f.value & D3DX_16F_EXP_MASK) == D3DX_16F_EXP_MASK && (f.value & D3DX_16F_FRAC_MASK))) - return false; - // +/- Zero - else if((value & ~D3DX_16F_SIGN_MASK) == 0 && (f.value & ~D3DX_16F_SIGN_MASK) == 0) - return true; - else - return value == f.value; -} - -D3DX10INLINE BOOL -D3DXFLOAT16::operator != ( CONST D3DXFLOAT16& f ) const -{ - // At least one is NaN - if(((value & D3DX_16F_EXP_MASK) == D3DX_16F_EXP_MASK && (value & D3DX_16F_FRAC_MASK)) - || ((f.value & D3DX_16F_EXP_MASK) == D3DX_16F_EXP_MASK && (f.value & D3DX_16F_FRAC_MASK))) - return true; - // +/- Zero - else if((value & ~D3DX_16F_SIGN_MASK) == 0 && (f.value & ~D3DX_16F_SIGN_MASK) == 0) - return false; - else - return value != f.value; -} - - -//-------------------------- -// 2D Vector -//-------------------------- - -D3DX10INLINE -D3DXVECTOR2::D3DXVECTOR2( CONST FLOAT *pf ) -{ -#ifdef D3DX10_DEBUG - if(!pf) - return; -#endif - - x = pf[0]; - y = pf[1]; -} - -D3DX10INLINE -D3DXVECTOR2::D3DXVECTOR2( CONST D3DXFLOAT16 *pf ) -{ -#ifdef D3DX10_DEBUG - if(!pf) - return; -#endif - - D3DXFloat16To32Array(&x, pf, 2); -} - -D3DX10INLINE -D3DXVECTOR2::D3DXVECTOR2( FLOAT fx, FLOAT fy ) -{ - x = fx; - y = fy; -} - - -// casting -D3DX10INLINE -D3DXVECTOR2::operator FLOAT* () -{ - return (FLOAT *) &x; -} - -D3DX10INLINE -D3DXVECTOR2::operator CONST FLOAT* () const -{ - return (CONST FLOAT *) &x; -} - - -// assignment operators -D3DX10INLINE D3DXVECTOR2& -D3DXVECTOR2::operator += ( CONST D3DXVECTOR2& v ) -{ - x += v.x; - y += v.y; - return *this; -} - -D3DX10INLINE D3DXVECTOR2& -D3DXVECTOR2::operator -= ( CONST D3DXVECTOR2& v ) -{ - x -= v.x; - y -= v.y; - return *this; -} - -D3DX10INLINE D3DXVECTOR2& -D3DXVECTOR2::operator *= ( FLOAT f ) -{ - x *= f; - y *= f; - return *this; -} - -D3DX10INLINE D3DXVECTOR2& -D3DXVECTOR2::operator /= ( FLOAT f ) -{ - FLOAT fInv = 1.0f / f; - x *= fInv; - y *= fInv; - return *this; -} - - -// unary operators -D3DX10INLINE D3DXVECTOR2 -D3DXVECTOR2::operator + () const -{ - return *this; -} - -D3DX10INLINE D3DXVECTOR2 -D3DXVECTOR2::operator - () const -{ - return D3DXVECTOR2(-x, -y); -} - - -// binary operators -D3DX10INLINE D3DXVECTOR2 -D3DXVECTOR2::operator + ( CONST D3DXVECTOR2& v ) const -{ - return D3DXVECTOR2(x + v.x, y + v.y); -} - -D3DX10INLINE D3DXVECTOR2 -D3DXVECTOR2::operator - ( CONST D3DXVECTOR2& v ) const -{ - return D3DXVECTOR2(x - v.x, y - v.y); -} - -D3DX10INLINE D3DXVECTOR2 -D3DXVECTOR2::operator * ( FLOAT f ) const -{ - return D3DXVECTOR2(x * f, y * f); -} - -D3DX10INLINE D3DXVECTOR2 -D3DXVECTOR2::operator / ( FLOAT f ) const -{ - FLOAT fInv = 1.0f / f; - return D3DXVECTOR2(x * fInv, y * fInv); -} - -D3DX10INLINE D3DXVECTOR2 -operator * ( FLOAT f, CONST D3DXVECTOR2& v ) -{ - return D3DXVECTOR2(f * v.x, f * v.y); -} - -D3DX10INLINE BOOL -D3DXVECTOR2::operator == ( CONST D3DXVECTOR2& v ) const -{ - return x == v.x && y == v.y; -} - -D3DX10INLINE BOOL -D3DXVECTOR2::operator != ( CONST D3DXVECTOR2& v ) const -{ - return x != v.x || y != v.y; -} - - - -//-------------------------- -// 2D Vector (16 bit) -//-------------------------- - -D3DX10INLINE -D3DXVECTOR2_16F::D3DXVECTOR2_16F( CONST FLOAT *pf ) -{ -#ifdef D3DX10_DEBUG - if(!pf) - return; -#endif - - D3DXFloat32To16Array(&x, pf, 2); -} - -D3DX10INLINE -D3DXVECTOR2_16F::D3DXVECTOR2_16F( CONST D3DXFLOAT16 *pf ) -{ -#ifdef D3DX10_DEBUG - if(!pf) - return; -#endif - - *((UINT *) &x) = *((UINT *) &pf[0]); -} - -D3DX10INLINE -D3DXVECTOR2_16F::D3DXVECTOR2_16F( CONST D3DXFLOAT16 &fx, CONST D3DXFLOAT16 &fy ) -{ - x = fx; - y = fy; -} - - -// casting -D3DX10INLINE -D3DXVECTOR2_16F::operator D3DXFLOAT16* () -{ - return (D3DXFLOAT16*) &x; -} - -D3DX10INLINE -D3DXVECTOR2_16F::operator CONST D3DXFLOAT16* () const -{ - return (CONST D3DXFLOAT16*) &x; -} - - -// binary operators -D3DX10INLINE BOOL -D3DXVECTOR2_16F::operator == ( CONST D3DXVECTOR2_16F &v ) const -{ - return x == v.x && y == v.y; -} - -D3DX10INLINE BOOL -D3DXVECTOR2_16F::operator != ( CONST D3DXVECTOR2_16F &v ) const -{ - return x != v.x || y != v.y; -} - - -//-------------------------- -// 3D Vector -//-------------------------- -D3DX10INLINE -D3DXVECTOR3::D3DXVECTOR3( CONST FLOAT *pf ) -{ -#ifdef D3DX10_DEBUG - if(!pf) - return; -#endif - - x = pf[0]; - y = pf[1]; - z = pf[2]; -} - -D3DX10INLINE -D3DXVECTOR3::D3DXVECTOR3( CONST D3DVECTOR& v ) -{ - x = v.x; - y = v.y; - z = v.z; -} - -D3DX10INLINE -D3DXVECTOR3::D3DXVECTOR3( CONST D3DXFLOAT16 *pf ) -{ -#ifdef D3DX10_DEBUG - if(!pf) - return; -#endif - - D3DXFloat16To32Array(&x, pf, 3); -} - -D3DX10INLINE -D3DXVECTOR3::D3DXVECTOR3( FLOAT fx, FLOAT fy, FLOAT fz ) -{ - x = fx; - y = fy; - z = fz; -} - - -// casting -D3DX10INLINE -D3DXVECTOR3::operator FLOAT* () -{ - return (FLOAT *) &x; -} - -D3DX10INLINE -D3DXVECTOR3::operator CONST FLOAT* () const -{ - return (CONST FLOAT *) &x; -} - - -// assignment operators -D3DX10INLINE D3DXVECTOR3& -D3DXVECTOR3::operator += ( CONST D3DXVECTOR3& v ) -{ - x += v.x; - y += v.y; - z += v.z; - return *this; -} - -D3DX10INLINE D3DXVECTOR3& -D3DXVECTOR3::operator -= ( CONST D3DXVECTOR3& v ) -{ - x -= v.x; - y -= v.y; - z -= v.z; - return *this; -} - -D3DX10INLINE D3DXVECTOR3& -D3DXVECTOR3::operator *= ( FLOAT f ) -{ - x *= f; - y *= f; - z *= f; - return *this; -} - -D3DX10INLINE D3DXVECTOR3& -D3DXVECTOR3::operator /= ( FLOAT f ) -{ - FLOAT fInv = 1.0f / f; - x *= fInv; - y *= fInv; - z *= fInv; - return *this; -} - - -// unary operators -D3DX10INLINE D3DXVECTOR3 -D3DXVECTOR3::operator + () const -{ - return *this; -} - -D3DX10INLINE D3DXVECTOR3 -D3DXVECTOR3::operator - () const -{ - return D3DXVECTOR3(-x, -y, -z); -} - - -// binary operators -D3DX10INLINE D3DXVECTOR3 -D3DXVECTOR3::operator + ( CONST D3DXVECTOR3& v ) const -{ - return D3DXVECTOR3(x + v.x, y + v.y, z + v.z); -} - -D3DX10INLINE D3DXVECTOR3 -D3DXVECTOR3::operator - ( CONST D3DXVECTOR3& v ) const -{ - return D3DXVECTOR3(x - v.x, y - v.y, z - v.z); -} - -D3DX10INLINE D3DXVECTOR3 -D3DXVECTOR3::operator * ( FLOAT f ) const -{ - return D3DXVECTOR3(x * f, y * f, z * f); -} - -D3DX10INLINE D3DXVECTOR3 -D3DXVECTOR3::operator / ( FLOAT f ) const -{ - FLOAT fInv = 1.0f / f; - return D3DXVECTOR3(x * fInv, y * fInv, z * fInv); -} - - -D3DX10INLINE D3DXVECTOR3 -operator * ( FLOAT f, CONST struct D3DXVECTOR3& v ) -{ - return D3DXVECTOR3(f * v.x, f * v.y, f * v.z); -} - - -D3DX10INLINE BOOL -D3DXVECTOR3::operator == ( CONST D3DXVECTOR3& v ) const -{ - return x == v.x && y == v.y && z == v.z; -} - -D3DX10INLINE BOOL -D3DXVECTOR3::operator != ( CONST D3DXVECTOR3& v ) const -{ - return x != v.x || y != v.y || z != v.z; -} - - - -//-------------------------- -// 3D Vector (16 bit) -//-------------------------- - -D3DX10INLINE -D3DXVECTOR3_16F::D3DXVECTOR3_16F( CONST FLOAT *pf ) -{ -#ifdef D3DX10_DEBUG - if(!pf) - return; -#endif - - D3DXFloat32To16Array(&x, pf, 3); -} - -D3DX10INLINE -D3DXVECTOR3_16F::D3DXVECTOR3_16F( CONST D3DVECTOR& v ) -{ - D3DXFloat32To16Array(&x, &v.x, 1); - D3DXFloat32To16Array(&y, &v.y, 1); - D3DXFloat32To16Array(&z, &v.z, 1); -} - -D3DX10INLINE -D3DXVECTOR3_16F::D3DXVECTOR3_16F( CONST D3DXFLOAT16 *pf ) -{ -#ifdef D3DX10_DEBUG - if(!pf) - return; -#endif - - *((UINT *) &x) = *((UINT *) &pf[0]); - *((WORD *) &z) = *((WORD *) &pf[2]); -} - -D3DX10INLINE -D3DXVECTOR3_16F::D3DXVECTOR3_16F( CONST D3DXFLOAT16 &fx, CONST D3DXFLOAT16 &fy, CONST D3DXFLOAT16 &fz ) -{ - x = fx; - y = fy; - z = fz; -} - - -// casting -D3DX10INLINE -D3DXVECTOR3_16F::operator D3DXFLOAT16* () -{ - return (D3DXFLOAT16*) &x; -} - -D3DX10INLINE -D3DXVECTOR3_16F::operator CONST D3DXFLOAT16* () const -{ - return (CONST D3DXFLOAT16*) &x; -} - - -// binary operators -D3DX10INLINE BOOL -D3DXVECTOR3_16F::operator == ( CONST D3DXVECTOR3_16F &v ) const -{ - return x == v.x && y == v.y && z == v.z; -} - -D3DX10INLINE BOOL -D3DXVECTOR3_16F::operator != ( CONST D3DXVECTOR3_16F &v ) const -{ - return x != v.x || y != v.y || z != v.z; -} - - -//-------------------------- -// 4D Vector -//-------------------------- -D3DX10INLINE -D3DXVECTOR4::D3DXVECTOR4( CONST FLOAT *pf ) -{ -#ifdef D3DX10_DEBUG - if(!pf) - return; -#endif - - x = pf[0]; - y = pf[1]; - z = pf[2]; - w = pf[3]; -} - -D3DX10INLINE -D3DXVECTOR4::D3DXVECTOR4( CONST D3DXFLOAT16 *pf ) -{ -#ifdef D3DX10_DEBUG - if(!pf) - return; -#endif - - D3DXFloat16To32Array(&x, pf, 4); -} - -D3DX10INLINE -D3DXVECTOR4::D3DXVECTOR4( CONST D3DVECTOR& v, FLOAT f ) -{ - x = v.x; - y = v.y; - z = v.z; - w = f; -} - -D3DX10INLINE -D3DXVECTOR4::D3DXVECTOR4( FLOAT fx, FLOAT fy, FLOAT fz, FLOAT fw ) -{ - x = fx; - y = fy; - z = fz; - w = fw; -} - - -// casting -D3DX10INLINE -D3DXVECTOR4::operator FLOAT* () -{ - return (FLOAT *) &x; -} - -D3DX10INLINE -D3DXVECTOR4::operator CONST FLOAT* () const -{ - return (CONST FLOAT *) &x; -} - - -// assignment operators -D3DX10INLINE D3DXVECTOR4& -D3DXVECTOR4::operator += ( CONST D3DXVECTOR4& v ) -{ - x += v.x; - y += v.y; - z += v.z; - w += v.w; - return *this; -} - -D3DX10INLINE D3DXVECTOR4& -D3DXVECTOR4::operator -= ( CONST D3DXVECTOR4& v ) -{ - x -= v.x; - y -= v.y; - z -= v.z; - w -= v.w; - return *this; -} - -D3DX10INLINE D3DXVECTOR4& -D3DXVECTOR4::operator *= ( FLOAT f ) -{ - x *= f; - y *= f; - z *= f; - w *= f; - return *this; -} - -D3DX10INLINE D3DXVECTOR4& -D3DXVECTOR4::operator /= ( FLOAT f ) -{ - FLOAT fInv = 1.0f / f; - x *= fInv; - y *= fInv; - z *= fInv; - w *= fInv; - return *this; -} - - -// unary operators -D3DX10INLINE D3DXVECTOR4 -D3DXVECTOR4::operator + () const -{ - return *this; -} - -D3DX10INLINE D3DXVECTOR4 -D3DXVECTOR4::operator - () const -{ - return D3DXVECTOR4(-x, -y, -z, -w); -} - - -// binary operators -D3DX10INLINE D3DXVECTOR4 -D3DXVECTOR4::operator + ( CONST D3DXVECTOR4& v ) const -{ - return D3DXVECTOR4(x + v.x, y + v.y, z + v.z, w + v.w); -} - -D3DX10INLINE D3DXVECTOR4 -D3DXVECTOR4::operator - ( CONST D3DXVECTOR4& v ) const -{ - return D3DXVECTOR4(x - v.x, y - v.y, z - v.z, w - v.w); -} - -D3DX10INLINE D3DXVECTOR4 -D3DXVECTOR4::operator * ( FLOAT f ) const -{ - return D3DXVECTOR4(x * f, y * f, z * f, w * f); -} - -D3DX10INLINE D3DXVECTOR4 -D3DXVECTOR4::operator / ( FLOAT f ) const -{ - FLOAT fInv = 1.0f / f; - return D3DXVECTOR4(x * fInv, y * fInv, z * fInv, w * fInv); -} - -D3DX10INLINE D3DXVECTOR4 -operator * ( FLOAT f, CONST D3DXVECTOR4& v ) -{ - return D3DXVECTOR4(f * v.x, f * v.y, f * v.z, f * v.w); -} - - -D3DX10INLINE BOOL -D3DXVECTOR4::operator == ( CONST D3DXVECTOR4& v ) const -{ - return x == v.x && y == v.y && z == v.z && w == v.w; -} - -D3DX10INLINE BOOL -D3DXVECTOR4::operator != ( CONST D3DXVECTOR4& v ) const -{ - return x != v.x || y != v.y || z != v.z || w != v.w; -} - - - -//-------------------------- -// 4D Vector (16 bit) -//-------------------------- - -D3DX10INLINE -D3DXVECTOR4_16F::D3DXVECTOR4_16F( CONST FLOAT *pf ) -{ -#ifdef D3DX10_DEBUG - if(!pf) - return; -#endif - - D3DXFloat32To16Array(&x, pf, 4); -} - -D3DX10INLINE -D3DXVECTOR4_16F::D3DXVECTOR4_16F( CONST D3DXFLOAT16 *pf ) -{ -#ifdef D3DX10_DEBUG - if(!pf) - return; -#endif - - *((UINT *) &x) = *((UINT *) &pf[0]); - *((UINT *) &z) = *((UINT *) &pf[2]); -} - -D3DX10INLINE -D3DXVECTOR4_16F::D3DXVECTOR4_16F( CONST D3DXVECTOR3_16F& v, CONST D3DXFLOAT16& f ) -{ - x = v.x; - y = v.y; - z = v.z; - w = f; -} - -D3DX10INLINE -D3DXVECTOR4_16F::D3DXVECTOR4_16F( CONST D3DXFLOAT16 &fx, CONST D3DXFLOAT16 &fy, CONST D3DXFLOAT16 &fz, CONST D3DXFLOAT16 &fw ) -{ - x = fx; - y = fy; - z = fz; - w = fw; -} - - -// casting -D3DX10INLINE -D3DXVECTOR4_16F::operator D3DXFLOAT16* () -{ - return (D3DXFLOAT16*) &x; -} - -D3DX10INLINE -D3DXVECTOR4_16F::operator CONST D3DXFLOAT16* () const -{ - return (CONST D3DXFLOAT16*) &x; -} - - -// binary operators -D3DX10INLINE BOOL -D3DXVECTOR4_16F::operator == ( CONST D3DXVECTOR4_16F &v ) const -{ - return x == v.x && y == v.y && z == v.z && w == v.w; -} - -D3DX10INLINE BOOL -D3DXVECTOR4_16F::operator != ( CONST D3DXVECTOR4_16F &v ) const -{ - return x != v.x || y != v.y || z != v.z || w != v.w; -} - - -//-------------------------- -// Matrix -//-------------------------- -D3DX10INLINE -D3DXMATRIX::D3DXMATRIX( CONST FLOAT* pf ) -{ -#ifdef D3DX10_DEBUG - if(!pf) - return; -#endif - - memcpy(&_11, pf, sizeof(D3DXMATRIX)); -} - -D3DX10INLINE -D3DXMATRIX::D3DXMATRIX( CONST D3DMATRIX& mat ) -{ - memcpy(&_11, &mat, sizeof(D3DXMATRIX)); -} - -D3DX10INLINE -D3DXMATRIX::D3DXMATRIX( CONST D3DXFLOAT16* pf ) -{ -#ifdef D3DX10_DEBUG - if(!pf) - return; -#endif - - D3DXFloat16To32Array(&_11, pf, 16); -} - -D3DX10INLINE -D3DXMATRIX::D3DXMATRIX( FLOAT f11, FLOAT f12, FLOAT f13, FLOAT f14, - FLOAT f21, FLOAT f22, FLOAT f23, FLOAT f24, - FLOAT f31, FLOAT f32, FLOAT f33, FLOAT f34, - FLOAT f41, FLOAT f42, FLOAT f43, FLOAT f44 ) -{ - _11 = f11; _12 = f12; _13 = f13; _14 = f14; - _21 = f21; _22 = f22; _23 = f23; _24 = f24; - _31 = f31; _32 = f32; _33 = f33; _34 = f34; - _41 = f41; _42 = f42; _43 = f43; _44 = f44; -} - - - -// access grants -D3DX10INLINE FLOAT& -D3DXMATRIX::operator () ( UINT iRow, UINT iCol ) -{ - return m[iRow][iCol]; -} - -D3DX10INLINE FLOAT -D3DXMATRIX::operator () ( UINT iRow, UINT iCol ) const -{ - return m[iRow][iCol]; -} - - -// casting operators -D3DX10INLINE -D3DXMATRIX::operator FLOAT* () -{ - return (FLOAT *) &_11; -} - -D3DX10INLINE -D3DXMATRIX::operator CONST FLOAT* () const -{ - return (CONST FLOAT *) &_11; -} - - -// assignment operators -D3DX10INLINE D3DXMATRIX& -D3DXMATRIX::operator *= ( CONST D3DXMATRIX& mat ) -{ - D3DXMatrixMultiply(this, this, &mat); - return *this; -} - -D3DX10INLINE D3DXMATRIX& -D3DXMATRIX::operator += ( CONST D3DXMATRIX& mat ) -{ - _11 += mat._11; _12 += mat._12; _13 += mat._13; _14 += mat._14; - _21 += mat._21; _22 += mat._22; _23 += mat._23; _24 += mat._24; - _31 += mat._31; _32 += mat._32; _33 += mat._33; _34 += mat._34; - _41 += mat._41; _42 += mat._42; _43 += mat._43; _44 += mat._44; - return *this; -} - -D3DX10INLINE D3DXMATRIX& -D3DXMATRIX::operator -= ( CONST D3DXMATRIX& mat ) -{ - _11 -= mat._11; _12 -= mat._12; _13 -= mat._13; _14 -= mat._14; - _21 -= mat._21; _22 -= mat._22; _23 -= mat._23; _24 -= mat._24; - _31 -= mat._31; _32 -= mat._32; _33 -= mat._33; _34 -= mat._34; - _41 -= mat._41; _42 -= mat._42; _43 -= mat._43; _44 -= mat._44; - return *this; -} - -D3DX10INLINE D3DXMATRIX& -D3DXMATRIX::operator *= ( FLOAT f ) -{ - _11 *= f; _12 *= f; _13 *= f; _14 *= f; - _21 *= f; _22 *= f; _23 *= f; _24 *= f; - _31 *= f; _32 *= f; _33 *= f; _34 *= f; - _41 *= f; _42 *= f; _43 *= f; _44 *= f; - return *this; -} - -D3DX10INLINE D3DXMATRIX& -D3DXMATRIX::operator /= ( FLOAT f ) -{ - FLOAT fInv = 1.0f / f; - _11 *= fInv; _12 *= fInv; _13 *= fInv; _14 *= fInv; - _21 *= fInv; _22 *= fInv; _23 *= fInv; _24 *= fInv; - _31 *= fInv; _32 *= fInv; _33 *= fInv; _34 *= fInv; - _41 *= fInv; _42 *= fInv; _43 *= fInv; _44 *= fInv; - return *this; -} - - -// unary operators -D3DX10INLINE D3DXMATRIX -D3DXMATRIX::operator + () const -{ - return *this; -} - -D3DX10INLINE D3DXMATRIX -D3DXMATRIX::operator - () const -{ - return D3DXMATRIX(-_11, -_12, -_13, -_14, - -_21, -_22, -_23, -_24, - -_31, -_32, -_33, -_34, - -_41, -_42, -_43, -_44); -} - - -// binary operators -D3DX10INLINE D3DXMATRIX -D3DXMATRIX::operator * ( CONST D3DXMATRIX& mat ) const -{ - D3DXMATRIX matT; - D3DXMatrixMultiply(&matT, this, &mat); - return matT; -} - -D3DX10INLINE D3DXMATRIX -D3DXMATRIX::operator + ( CONST D3DXMATRIX& mat ) const -{ - return D3DXMATRIX(_11 + mat._11, _12 + mat._12, _13 + mat._13, _14 + mat._14, - _21 + mat._21, _22 + mat._22, _23 + mat._23, _24 + mat._24, - _31 + mat._31, _32 + mat._32, _33 + mat._33, _34 + mat._34, - _41 + mat._41, _42 + mat._42, _43 + mat._43, _44 + mat._44); -} - -D3DX10INLINE D3DXMATRIX -D3DXMATRIX::operator - ( CONST D3DXMATRIX& mat ) const -{ - return D3DXMATRIX(_11 - mat._11, _12 - mat._12, _13 - mat._13, _14 - mat._14, - _21 - mat._21, _22 - mat._22, _23 - mat._23, _24 - mat._24, - _31 - mat._31, _32 - mat._32, _33 - mat._33, _34 - mat._34, - _41 - mat._41, _42 - mat._42, _43 - mat._43, _44 - mat._44); -} - -D3DX10INLINE D3DXMATRIX -D3DXMATRIX::operator * ( FLOAT f ) const -{ - return D3DXMATRIX(_11 * f, _12 * f, _13 * f, _14 * f, - _21 * f, _22 * f, _23 * f, _24 * f, - _31 * f, _32 * f, _33 * f, _34 * f, - _41 * f, _42 * f, _43 * f, _44 * f); -} - -D3DX10INLINE D3DXMATRIX -D3DXMATRIX::operator / ( FLOAT f ) const -{ - FLOAT fInv = 1.0f / f; - return D3DXMATRIX(_11 * fInv, _12 * fInv, _13 * fInv, _14 * fInv, - _21 * fInv, _22 * fInv, _23 * fInv, _24 * fInv, - _31 * fInv, _32 * fInv, _33 * fInv, _34 * fInv, - _41 * fInv, _42 * fInv, _43 * fInv, _44 * fInv); -} - - -D3DX10INLINE D3DXMATRIX -operator * ( FLOAT f, CONST D3DXMATRIX& mat ) -{ - return D3DXMATRIX(f * mat._11, f * mat._12, f * mat._13, f * mat._14, - f * mat._21, f * mat._22, f * mat._23, f * mat._24, - f * mat._31, f * mat._32, f * mat._33, f * mat._34, - f * mat._41, f * mat._42, f * mat._43, f * mat._44); -} - - -D3DX10INLINE BOOL -D3DXMATRIX::operator == ( CONST D3DXMATRIX& mat ) const -{ - return 0 == memcmp(this, &mat, sizeof(D3DXMATRIX)); -} - -D3DX10INLINE BOOL -D3DXMATRIX::operator != ( CONST D3DXMATRIX& mat ) const -{ - return 0 != memcmp(this, &mat, sizeof(D3DXMATRIX)); -} - - - -//-------------------------- -// Aligned Matrices -//-------------------------- - -D3DX10INLINE -_D3DXMATRIXA16::_D3DXMATRIXA16( CONST FLOAT* f ) : - D3DXMATRIX( f ) -{ -} - -D3DX10INLINE -_D3DXMATRIXA16::_D3DXMATRIXA16( CONST D3DMATRIX& m ) : - D3DXMATRIX( m ) -{ -} - -D3DX10INLINE -_D3DXMATRIXA16::_D3DXMATRIXA16( CONST D3DXFLOAT16* f ) : - D3DXMATRIX( f ) -{ -} - -D3DX10INLINE -_D3DXMATRIXA16::_D3DXMATRIXA16( FLOAT _11, FLOAT _12, FLOAT _13, FLOAT _14, - FLOAT _21, FLOAT _22, FLOAT _23, FLOAT _24, - FLOAT _31, FLOAT _32, FLOAT _33, FLOAT _34, - FLOAT _41, FLOAT _42, FLOAT _43, FLOAT _44 ) : - D3DXMATRIX(_11, _12, _13, _14, - _21, _22, _23, _24, - _31, _32, _33, _34, - _41, _42, _43, _44) -{ -} - -#ifndef SIZE_MAX -#define SIZE_MAX ((SIZE_T)-1) -#endif - -D3DX10INLINE void* -_D3DXMATRIXA16::operator new( size_t s ) -{ - if (s > (SIZE_MAX-16)) - return NULL; - LPBYTE p = ::new BYTE[s + 16]; - if (p) - { - BYTE offset = (BYTE)(16 - ((UINT_PTR)p & 15)); - p += offset; - p[-1] = offset; - } - return p; -} - -D3DX10INLINE void* -_D3DXMATRIXA16::operator new[]( size_t s ) -{ - if (s > (SIZE_MAX-16)) - return NULL; - LPBYTE p = ::new BYTE[s + 16]; - if (p) - { - BYTE offset = (BYTE)(16 - ((UINT_PTR)p & 15)); - p += offset; - p[-1] = offset; - } - return p; -} - -D3DX10INLINE void -_D3DXMATRIXA16::operator delete(void* p) -{ - if(p) - { - BYTE* pb = static_cast(p); - pb -= pb[-1]; - ::delete [] pb; - } -} - -D3DX10INLINE void -_D3DXMATRIXA16::operator delete[](void* p) -{ - if(p) - { - BYTE* pb = static_cast(p); - pb -= pb[-1]; - ::delete [] pb; - } -} - -D3DX10INLINE _D3DXMATRIXA16& -_D3DXMATRIXA16::operator=(CONST D3DXMATRIX& rhs) -{ - memcpy(&_11, &rhs, sizeof(D3DXMATRIX)); - return *this; -} - - -//-------------------------- -// Quaternion -//-------------------------- - -D3DX10INLINE -D3DXQUATERNION::D3DXQUATERNION( CONST FLOAT* pf ) -{ -#ifdef D3DX10_DEBUG - if(!pf) - return; -#endif - - x = pf[0]; - y = pf[1]; - z = pf[2]; - w = pf[3]; -} - -D3DX10INLINE -D3DXQUATERNION::D3DXQUATERNION( CONST D3DXFLOAT16* pf ) -{ -#ifdef D3DX10_DEBUG - if(!pf) - return; -#endif - - D3DXFloat16To32Array(&x, pf, 4); -} - -D3DX10INLINE -D3DXQUATERNION::D3DXQUATERNION( FLOAT fx, FLOAT fy, FLOAT fz, FLOAT fw ) -{ - x = fx; - y = fy; - z = fz; - w = fw; -} - - -// casting -D3DX10INLINE -D3DXQUATERNION::operator FLOAT* () -{ - return (FLOAT *) &x; -} - -D3DX10INLINE -D3DXQUATERNION::operator CONST FLOAT* () const -{ - return (CONST FLOAT *) &x; -} - - -// assignment operators -D3DX10INLINE D3DXQUATERNION& -D3DXQUATERNION::operator += ( CONST D3DXQUATERNION& q ) -{ - x += q.x; - y += q.y; - z += q.z; - w += q.w; - return *this; -} - -D3DX10INLINE D3DXQUATERNION& -D3DXQUATERNION::operator -= ( CONST D3DXQUATERNION& q ) -{ - x -= q.x; - y -= q.y; - z -= q.z; - w -= q.w; - return *this; -} - -D3DX10INLINE D3DXQUATERNION& -D3DXQUATERNION::operator *= ( CONST D3DXQUATERNION& q ) -{ - D3DXQuaternionMultiply(this, this, &q); - return *this; -} - -D3DX10INLINE D3DXQUATERNION& -D3DXQUATERNION::operator *= ( FLOAT f ) -{ - x *= f; - y *= f; - z *= f; - w *= f; - return *this; -} - -D3DX10INLINE D3DXQUATERNION& -D3DXQUATERNION::operator /= ( FLOAT f ) -{ - FLOAT fInv = 1.0f / f; - x *= fInv; - y *= fInv; - z *= fInv; - w *= fInv; - return *this; -} - - -// unary operators -D3DX10INLINE D3DXQUATERNION -D3DXQUATERNION::operator + () const -{ - return *this; -} - -D3DX10INLINE D3DXQUATERNION -D3DXQUATERNION::operator - () const -{ - return D3DXQUATERNION(-x, -y, -z, -w); -} - - -// binary operators -D3DX10INLINE D3DXQUATERNION -D3DXQUATERNION::operator + ( CONST D3DXQUATERNION& q ) const -{ - return D3DXQUATERNION(x + q.x, y + q.y, z + q.z, w + q.w); -} - -D3DX10INLINE D3DXQUATERNION -D3DXQUATERNION::operator - ( CONST D3DXQUATERNION& q ) const -{ - return D3DXQUATERNION(x - q.x, y - q.y, z - q.z, w - q.w); -} - -D3DX10INLINE D3DXQUATERNION -D3DXQUATERNION::operator * ( CONST D3DXQUATERNION& q ) const -{ - D3DXQUATERNION qT; - D3DXQuaternionMultiply(&qT, this, &q); - return qT; -} - -D3DX10INLINE D3DXQUATERNION -D3DXQUATERNION::operator * ( FLOAT f ) const -{ - return D3DXQUATERNION(x * f, y * f, z * f, w * f); -} - -D3DX10INLINE D3DXQUATERNION -D3DXQUATERNION::operator / ( FLOAT f ) const -{ - FLOAT fInv = 1.0f / f; - return D3DXQUATERNION(x * fInv, y * fInv, z * fInv, w * fInv); -} - - -D3DX10INLINE D3DXQUATERNION -operator * (FLOAT f, CONST D3DXQUATERNION& q ) -{ - return D3DXQUATERNION(f * q.x, f * q.y, f * q.z, f * q.w); -} - - -D3DX10INLINE BOOL -D3DXQUATERNION::operator == ( CONST D3DXQUATERNION& q ) const -{ - return x == q.x && y == q.y && z == q.z && w == q.w; -} - -D3DX10INLINE BOOL -D3DXQUATERNION::operator != ( CONST D3DXQUATERNION& q ) const -{ - return x != q.x || y != q.y || z != q.z || w != q.w; -} - - - -//-------------------------- -// Plane -//-------------------------- - -D3DX10INLINE -D3DXPLANE::D3DXPLANE( CONST FLOAT* pf ) -{ -#ifdef D3DX10_DEBUG - if(!pf) - return; -#endif - - a = pf[0]; - b = pf[1]; - c = pf[2]; - d = pf[3]; -} - -D3DX10INLINE -D3DXPLANE::D3DXPLANE( CONST D3DXFLOAT16* pf ) -{ -#ifdef D3DX10_DEBUG - if(!pf) - return; -#endif - - D3DXFloat16To32Array(&a, pf, 4); -} - -D3DX10INLINE -D3DXPLANE::D3DXPLANE( FLOAT fa, FLOAT fb, FLOAT fc, FLOAT fd ) -{ - a = fa; - b = fb; - c = fc; - d = fd; -} - - -// casting -D3DX10INLINE -D3DXPLANE::operator FLOAT* () -{ - return (FLOAT *) &a; -} - -D3DX10INLINE -D3DXPLANE::operator CONST FLOAT* () const -{ - return (CONST FLOAT *) &a; -} - - -// assignment operators -D3DX10INLINE D3DXPLANE& -D3DXPLANE::operator *= ( FLOAT f ) -{ - a *= f; - b *= f; - c *= f; - d *= f; - return *this; -} - -D3DX10INLINE D3DXPLANE& -D3DXPLANE::operator /= ( FLOAT f ) -{ - FLOAT fInv = 1.0f / f; - a *= fInv; - b *= fInv; - c *= fInv; - d *= fInv; - return *this; -} - - -// unary operators -D3DX10INLINE D3DXPLANE -D3DXPLANE::operator + () const -{ - return *this; -} - -D3DX10INLINE D3DXPLANE -D3DXPLANE::operator - () const -{ - return D3DXPLANE(-a, -b, -c, -d); -} - - -// binary operators -D3DX10INLINE D3DXPLANE -D3DXPLANE::operator * ( FLOAT f ) const -{ - return D3DXPLANE(a * f, b * f, c * f, d * f); -} - -D3DX10INLINE D3DXPLANE -D3DXPLANE::operator / ( FLOAT f ) const -{ - FLOAT fInv = 1.0f / f; - return D3DXPLANE(a * fInv, b * fInv, c * fInv, d * fInv); -} - -D3DX10INLINE D3DXPLANE -operator * (FLOAT f, CONST D3DXPLANE& p ) -{ - return D3DXPLANE(f * p.a, f * p.b, f * p.c, f * p.d); -} - -D3DX10INLINE BOOL -D3DXPLANE::operator == ( CONST D3DXPLANE& p ) const -{ - return a == p.a && b == p.b && c == p.c && d == p.d; -} - -D3DX10INLINE BOOL -D3DXPLANE::operator != ( CONST D3DXPLANE& p ) const -{ - return a != p.a || b != p.b || c != p.c || d != p.d; -} - - - - -//-------------------------- -// Color -//-------------------------- - -D3DX10INLINE -D3DXCOLOR::D3DXCOLOR( UINT dw ) -{ - CONST FLOAT f = 1.0f / 255.0f; - r = f * (FLOAT) (unsigned char) (dw >> 16); - g = f * (FLOAT) (unsigned char) (dw >> 8); - b = f * (FLOAT) (unsigned char) (dw >> 0); - a = f * (FLOAT) (unsigned char) (dw >> 24); -} - -D3DX10INLINE -D3DXCOLOR::D3DXCOLOR( CONST FLOAT* pf ) -{ -#ifdef D3DX10_DEBUG - if(!pf) - return; -#endif - - r = pf[0]; - g = pf[1]; - b = pf[2]; - a = pf[3]; -} - -D3DX10INLINE -D3DXCOLOR::D3DXCOLOR( CONST D3DXFLOAT16* pf ) -{ -#ifdef D3DX10_DEBUG - if(!pf) - return; -#endif - - D3DXFloat16To32Array(&r, pf, 4); -} - -D3DX10INLINE -D3DXCOLOR::D3DXCOLOR( FLOAT fr, FLOAT fg, FLOAT fb, FLOAT fa ) -{ - r = fr; - g = fg; - b = fb; - a = fa; -} - - -// casting -D3DX10INLINE -D3DXCOLOR::operator UINT () const -{ - UINT dwR = r >= 1.0f ? 0xff : r <= 0.0f ? 0x00 : (UINT) (r * 255.0f + 0.5f); - UINT dwG = g >= 1.0f ? 0xff : g <= 0.0f ? 0x00 : (UINT) (g * 255.0f + 0.5f); - UINT dwB = b >= 1.0f ? 0xff : b <= 0.0f ? 0x00 : (UINT) (b * 255.0f + 0.5f); - UINT dwA = a >= 1.0f ? 0xff : a <= 0.0f ? 0x00 : (UINT) (a * 255.0f + 0.5f); - - return (dwA << 24) | (dwR << 16) | (dwG << 8) | (dwB << 0); -} - - -D3DX10INLINE -D3DXCOLOR::operator FLOAT * () -{ - return (FLOAT *) &r; -} - -D3DX10INLINE -D3DXCOLOR::operator CONST FLOAT * () const -{ - return (CONST FLOAT *) &r; -} - -// assignment operators -D3DX10INLINE D3DXCOLOR& -D3DXCOLOR::operator += ( CONST D3DXCOLOR& c ) -{ - r += c.r; - g += c.g; - b += c.b; - a += c.a; - return *this; -} - -D3DX10INLINE D3DXCOLOR& -D3DXCOLOR::operator -= ( CONST D3DXCOLOR& c ) -{ - r -= c.r; - g -= c.g; - b -= c.b; - a -= c.a; - return *this; -} - -D3DX10INLINE D3DXCOLOR& -D3DXCOLOR::operator *= ( FLOAT f ) -{ - r *= f; - g *= f; - b *= f; - a *= f; - return *this; -} - -D3DX10INLINE D3DXCOLOR& -D3DXCOLOR::operator /= ( FLOAT f ) -{ - FLOAT fInv = 1.0f / f; - r *= fInv; - g *= fInv; - b *= fInv; - a *= fInv; - return *this; -} - - -// unary operators -D3DX10INLINE D3DXCOLOR -D3DXCOLOR::operator + () const -{ - return *this; -} - -D3DX10INLINE D3DXCOLOR -D3DXCOLOR::operator - () const -{ - return D3DXCOLOR(-r, -g, -b, -a); -} - - -// binary operators -D3DX10INLINE D3DXCOLOR -D3DXCOLOR::operator + ( CONST D3DXCOLOR& c ) const -{ - return D3DXCOLOR(r + c.r, g + c.g, b + c.b, a + c.a); -} - -D3DX10INLINE D3DXCOLOR -D3DXCOLOR::operator - ( CONST D3DXCOLOR& c ) const -{ - return D3DXCOLOR(r - c.r, g - c.g, b - c.b, a - c.a); -} - -D3DX10INLINE D3DXCOLOR -D3DXCOLOR::operator * ( FLOAT f ) const -{ - return D3DXCOLOR(r * f, g * f, b * f, a * f); -} - -D3DX10INLINE D3DXCOLOR -D3DXCOLOR::operator / ( FLOAT f ) const -{ - FLOAT fInv = 1.0f / f; - return D3DXCOLOR(r * fInv, g * fInv, b * fInv, a * fInv); -} - - -D3DX10INLINE D3DXCOLOR -operator * (FLOAT f, CONST D3DXCOLOR& c ) -{ - return D3DXCOLOR(f * c.r, f * c.g, f * c.b, f * c.a); -} - - -D3DX10INLINE BOOL -D3DXCOLOR::operator == ( CONST D3DXCOLOR& c ) const -{ - return r == c.r && g == c.g && b == c.b && a == c.a; -} - -D3DX10INLINE BOOL -D3DXCOLOR::operator != ( CONST D3DXCOLOR& c ) const -{ - return r != c.r || g != c.g || b != c.b || a != c.a; -} - - -#endif //__cplusplus - - - -//=========================================================================== -// -// Inline functions -// -//=========================================================================== - - -//-------------------------- -// 2D Vector -//-------------------------- - -D3DX10INLINE FLOAT D3DXVec2Length - ( CONST D3DXVECTOR2 *pV ) -{ -#ifdef D3DX10_DEBUG - if(!pV) - return 0.0f; -#endif - -#ifdef __cplusplus - return sqrtf(pV->x * pV->x + pV->y * pV->y); -#else - return (FLOAT) sqrt(pV->x * pV->x + pV->y * pV->y); -#endif -} - -D3DX10INLINE FLOAT D3DXVec2LengthSq - ( CONST D3DXVECTOR2 *pV ) -{ -#ifdef D3DX10_DEBUG - if(!pV) - return 0.0f; -#endif - - return pV->x * pV->x + pV->y * pV->y; -} - -D3DX10INLINE FLOAT D3DXVec2Dot - ( CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2 ) -{ -#ifdef D3DX10_DEBUG - if(!pV1 || !pV2) - return 0.0f; -#endif - - return pV1->x * pV2->x + pV1->y * pV2->y; -} - -D3DX10INLINE FLOAT D3DXVec2CCW - ( CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2 ) -{ -#ifdef D3DX10_DEBUG - if(!pV1 || !pV2) - return 0.0f; -#endif - - return pV1->x * pV2->y - pV1->y * pV2->x; -} - -D3DX10INLINE D3DXVECTOR2* D3DXVec2Add - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2 ) -{ -#ifdef D3DX10_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x + pV2->x; - pOut->y = pV1->y + pV2->y; - return pOut; -} - -D3DX10INLINE D3DXVECTOR2* D3DXVec2Subtract - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2 ) -{ -#ifdef D3DX10_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x - pV2->x; - pOut->y = pV1->y - pV2->y; - return pOut; -} - -D3DX10INLINE D3DXVECTOR2* D3DXVec2Minimize - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2 ) -{ -#ifdef D3DX10_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x < pV2->x ? pV1->x : pV2->x; - pOut->y = pV1->y < pV2->y ? pV1->y : pV2->y; - return pOut; -} - -D3DX10INLINE D3DXVECTOR2* D3DXVec2Maximize - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2 ) -{ -#ifdef D3DX10_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x > pV2->x ? pV1->x : pV2->x; - pOut->y = pV1->y > pV2->y ? pV1->y : pV2->y; - return pOut; -} - -D3DX10INLINE D3DXVECTOR2* D3DXVec2Scale - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV, FLOAT s ) -{ -#ifdef D3DX10_DEBUG - if(!pOut || !pV) - return NULL; -#endif - - pOut->x = pV->x * s; - pOut->y = pV->y * s; - return pOut; -} - -D3DX10INLINE D3DXVECTOR2* D3DXVec2Lerp - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2, - FLOAT s ) -{ -#ifdef D3DX10_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x + s * (pV2->x - pV1->x); - pOut->y = pV1->y + s * (pV2->y - pV1->y); - return pOut; -} - - -//-------------------------- -// 3D Vector -//-------------------------- - -D3DX10INLINE FLOAT D3DXVec3Length - ( CONST D3DXVECTOR3 *pV ) -{ -#ifdef D3DX10_DEBUG - if(!pV) - return 0.0f; -#endif - -#ifdef __cplusplus - return sqrtf(pV->x * pV->x + pV->y * pV->y + pV->z * pV->z); -#else - return (FLOAT) sqrt(pV->x * pV->x + pV->y * pV->y + pV->z * pV->z); -#endif -} - -D3DX10INLINE FLOAT D3DXVec3LengthSq - ( CONST D3DXVECTOR3 *pV ) -{ -#ifdef D3DX10_DEBUG - if(!pV) - return 0.0f; -#endif - - return pV->x * pV->x + pV->y * pV->y + pV->z * pV->z; -} - -D3DX10INLINE FLOAT D3DXVec3Dot - ( CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2 ) -{ -#ifdef D3DX10_DEBUG - if(!pV1 || !pV2) - return 0.0f; -#endif - - return pV1->x * pV2->x + pV1->y * pV2->y + pV1->z * pV2->z; -} - -D3DX10INLINE D3DXVECTOR3* D3DXVec3Cross - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2 ) -{ - D3DXVECTOR3 v; - -#ifdef D3DX10_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - v.x = pV1->y * pV2->z - pV1->z * pV2->y; - v.y = pV1->z * pV2->x - pV1->x * pV2->z; - v.z = pV1->x * pV2->y - pV1->y * pV2->x; - - *pOut = v; - return pOut; -} - -D3DX10INLINE D3DXVECTOR3* D3DXVec3Add - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2 ) -{ -#ifdef D3DX10_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x + pV2->x; - pOut->y = pV1->y + pV2->y; - pOut->z = pV1->z + pV2->z; - return pOut; -} - -D3DX10INLINE D3DXVECTOR3* D3DXVec3Subtract - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2 ) -{ -#ifdef D3DX10_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x - pV2->x; - pOut->y = pV1->y - pV2->y; - pOut->z = pV1->z - pV2->z; - return pOut; -} - -D3DX10INLINE D3DXVECTOR3* D3DXVec3Minimize - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2 ) -{ -#ifdef D3DX10_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x < pV2->x ? pV1->x : pV2->x; - pOut->y = pV1->y < pV2->y ? pV1->y : pV2->y; - pOut->z = pV1->z < pV2->z ? pV1->z : pV2->z; - return pOut; -} - -D3DX10INLINE D3DXVECTOR3* D3DXVec3Maximize - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2 ) -{ -#ifdef D3DX10_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x > pV2->x ? pV1->x : pV2->x; - pOut->y = pV1->y > pV2->y ? pV1->y : pV2->y; - pOut->z = pV1->z > pV2->z ? pV1->z : pV2->z; - return pOut; -} - -D3DX10INLINE D3DXVECTOR3* D3DXVec3Scale - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV, FLOAT s) -{ -#ifdef D3DX10_DEBUG - if(!pOut || !pV) - return NULL; -#endif - - pOut->x = pV->x * s; - pOut->y = pV->y * s; - pOut->z = pV->z * s; - return pOut; -} - -D3DX10INLINE D3DXVECTOR3* D3DXVec3Lerp - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2, - FLOAT s ) -{ -#ifdef D3DX10_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x + s * (pV2->x - pV1->x); - pOut->y = pV1->y + s * (pV2->y - pV1->y); - pOut->z = pV1->z + s * (pV2->z - pV1->z); - return pOut; -} - - -//-------------------------- -// 4D Vector -//-------------------------- - -D3DX10INLINE FLOAT D3DXVec4Length - ( CONST D3DXVECTOR4 *pV ) -{ -#ifdef D3DX10_DEBUG - if(!pV) - return 0.0f; -#endif - -#ifdef __cplusplus - return sqrtf(pV->x * pV->x + pV->y * pV->y + pV->z * pV->z + pV->w * pV->w); -#else - return (FLOAT) sqrt(pV->x * pV->x + pV->y * pV->y + pV->z * pV->z + pV->w * pV->w); -#endif -} - -D3DX10INLINE FLOAT D3DXVec4LengthSq - ( CONST D3DXVECTOR4 *pV ) -{ -#ifdef D3DX10_DEBUG - if(!pV) - return 0.0f; -#endif - - return pV->x * pV->x + pV->y * pV->y + pV->z * pV->z + pV->w * pV->w; -} - -D3DX10INLINE FLOAT D3DXVec4Dot - ( CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pV2 ) -{ -#ifdef D3DX10_DEBUG - if(!pV1 || !pV2) - return 0.0f; -#endif - - return pV1->x * pV2->x + pV1->y * pV2->y + pV1->z * pV2->z + pV1->w * pV2->w; -} - -D3DX10INLINE D3DXVECTOR4* D3DXVec4Add - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pV2) -{ -#ifdef D3DX10_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x + pV2->x; - pOut->y = pV1->y + pV2->y; - pOut->z = pV1->z + pV2->z; - pOut->w = pV1->w + pV2->w; - return pOut; -} - -D3DX10INLINE D3DXVECTOR4* D3DXVec4Subtract - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pV2) -{ -#ifdef D3DX10_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x - pV2->x; - pOut->y = pV1->y - pV2->y; - pOut->z = pV1->z - pV2->z; - pOut->w = pV1->w - pV2->w; - return pOut; -} - -D3DX10INLINE D3DXVECTOR4* D3DXVec4Minimize - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pV2) -{ -#ifdef D3DX10_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x < pV2->x ? pV1->x : pV2->x; - pOut->y = pV1->y < pV2->y ? pV1->y : pV2->y; - pOut->z = pV1->z < pV2->z ? pV1->z : pV2->z; - pOut->w = pV1->w < pV2->w ? pV1->w : pV2->w; - return pOut; -} - -D3DX10INLINE D3DXVECTOR4* D3DXVec4Maximize - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pV2) -{ -#ifdef D3DX10_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x > pV2->x ? pV1->x : pV2->x; - pOut->y = pV1->y > pV2->y ? pV1->y : pV2->y; - pOut->z = pV1->z > pV2->z ? pV1->z : pV2->z; - pOut->w = pV1->w > pV2->w ? pV1->w : pV2->w; - return pOut; -} - -D3DX10INLINE D3DXVECTOR4* D3DXVec4Scale - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV, FLOAT s) -{ -#ifdef D3DX10_DEBUG - if(!pOut || !pV) - return NULL; -#endif - - pOut->x = pV->x * s; - pOut->y = pV->y * s; - pOut->z = pV->z * s; - pOut->w = pV->w * s; - return pOut; -} - -D3DX10INLINE D3DXVECTOR4* D3DXVec4Lerp - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pV2, - FLOAT s ) -{ -#ifdef D3DX10_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x + s * (pV2->x - pV1->x); - pOut->y = pV1->y + s * (pV2->y - pV1->y); - pOut->z = pV1->z + s * (pV2->z - pV1->z); - pOut->w = pV1->w + s * (pV2->w - pV1->w); - return pOut; -} - - -//-------------------------- -// 4D Matrix -//-------------------------- - -D3DX10INLINE D3DXMATRIX* D3DXMatrixIdentity - ( D3DXMATRIX *pOut ) -{ -#ifdef D3DX10_DEBUG - if(!pOut) - return NULL; -#endif - - pOut->m[0][1] = pOut->m[0][2] = pOut->m[0][3] = - pOut->m[1][0] = pOut->m[1][2] = pOut->m[1][3] = - pOut->m[2][0] = pOut->m[2][1] = pOut->m[2][3] = - pOut->m[3][0] = pOut->m[3][1] = pOut->m[3][2] = 0.0f; - - pOut->m[0][0] = pOut->m[1][1] = pOut->m[2][2] = pOut->m[3][3] = 1.0f; - return pOut; -} - - -D3DX10INLINE BOOL D3DXMatrixIsIdentity - ( CONST D3DXMATRIX *pM ) -{ -#ifdef D3DX10_DEBUG - if(!pM) - return FALSE; -#endif - - return pM->m[0][0] == 1.0f && pM->m[0][1] == 0.0f && pM->m[0][2] == 0.0f && pM->m[0][3] == 0.0f && - pM->m[1][0] == 0.0f && pM->m[1][1] == 1.0f && pM->m[1][2] == 0.0f && pM->m[1][3] == 0.0f && - pM->m[2][0] == 0.0f && pM->m[2][1] == 0.0f && pM->m[2][2] == 1.0f && pM->m[2][3] == 0.0f && - pM->m[3][0] == 0.0f && pM->m[3][1] == 0.0f && pM->m[3][2] == 0.0f && pM->m[3][3] == 1.0f; -} - - -//-------------------------- -// Quaternion -//-------------------------- - -D3DX10INLINE FLOAT D3DXQuaternionLength - ( CONST D3DXQUATERNION *pQ ) -{ -#ifdef D3DX10_DEBUG - if(!pQ) - return 0.0f; -#endif - -#ifdef __cplusplus - return sqrtf(pQ->x * pQ->x + pQ->y * pQ->y + pQ->z * pQ->z + pQ->w * pQ->w); -#else - return (FLOAT) sqrt(pQ->x * pQ->x + pQ->y * pQ->y + pQ->z * pQ->z + pQ->w * pQ->w); -#endif -} - -D3DX10INLINE FLOAT D3DXQuaternionLengthSq - ( CONST D3DXQUATERNION *pQ ) -{ -#ifdef D3DX10_DEBUG - if(!pQ) - return 0.0f; -#endif - - return pQ->x * pQ->x + pQ->y * pQ->y + pQ->z * pQ->z + pQ->w * pQ->w; -} - -D3DX10INLINE FLOAT D3DXQuaternionDot - ( CONST D3DXQUATERNION *pQ1, CONST D3DXQUATERNION *pQ2 ) -{ -#ifdef D3DX10_DEBUG - if(!pQ1 || !pQ2) - return 0.0f; -#endif - - return pQ1->x * pQ2->x + pQ1->y * pQ2->y + pQ1->z * pQ2->z + pQ1->w * pQ2->w; -} - - -D3DX10INLINE D3DXQUATERNION* D3DXQuaternionIdentity - ( D3DXQUATERNION *pOut ) -{ -#ifdef D3DX10_DEBUG - if(!pOut) - return NULL; -#endif - - pOut->x = pOut->y = pOut->z = 0.0f; - pOut->w = 1.0f; - return pOut; -} - -D3DX10INLINE BOOL D3DXQuaternionIsIdentity - ( CONST D3DXQUATERNION *pQ ) -{ -#ifdef D3DX10_DEBUG - if(!pQ) - return FALSE; -#endif - - return pQ->x == 0.0f && pQ->y == 0.0f && pQ->z == 0.0f && pQ->w == 1.0f; -} - - -D3DX10INLINE D3DXQUATERNION* D3DXQuaternionConjugate - ( D3DXQUATERNION *pOut, CONST D3DXQUATERNION *pQ ) -{ -#ifdef D3DX10_DEBUG - if(!pOut || !pQ) - return NULL; -#endif - - pOut->x = -pQ->x; - pOut->y = -pQ->y; - pOut->z = -pQ->z; - pOut->w = pQ->w; - return pOut; -} - - -//-------------------------- -// Plane -//-------------------------- - -D3DX10INLINE FLOAT D3DXPlaneDot - ( CONST D3DXPLANE *pP, CONST D3DXVECTOR4 *pV) -{ -#ifdef D3DX10_DEBUG - if(!pP || !pV) - return 0.0f; -#endif - - return pP->a * pV->x + pP->b * pV->y + pP->c * pV->z + pP->d * pV->w; -} - -D3DX10INLINE FLOAT D3DXPlaneDotCoord - ( CONST D3DXPLANE *pP, CONST D3DXVECTOR3 *pV) -{ -#ifdef D3DX10_DEBUG - if(!pP || !pV) - return 0.0f; -#endif - - return pP->a * pV->x + pP->b * pV->y + pP->c * pV->z + pP->d; -} - -D3DX10INLINE FLOAT D3DXPlaneDotNormal - ( CONST D3DXPLANE *pP, CONST D3DXVECTOR3 *pV) -{ -#ifdef D3DX10_DEBUG - if(!pP || !pV) - return 0.0f; -#endif - - return pP->a * pV->x + pP->b * pV->y + pP->c * pV->z; -} - -D3DX10INLINE D3DXPLANE* D3DXPlaneScale - (D3DXPLANE *pOut, CONST D3DXPLANE *pP, FLOAT s) -{ -#ifdef D3DX10_DEBUG - if(!pOut || !pP) - return NULL; -#endif - - pOut->a = pP->a * s; - pOut->b = pP->b * s; - pOut->c = pP->c * s; - pOut->d = pP->d * s; - return pOut; -} - - -//-------------------------- -// Color -//-------------------------- - -D3DX10INLINE D3DXCOLOR* D3DXColorNegative - (D3DXCOLOR *pOut, CONST D3DXCOLOR *pC) -{ -#ifdef D3DX10_DEBUG - if(!pOut || !pC) - return NULL; -#endif - - pOut->r = 1.0f - pC->r; - pOut->g = 1.0f - pC->g; - pOut->b = 1.0f - pC->b; - pOut->a = pC->a; - return pOut; -} - -D3DX10INLINE D3DXCOLOR* D3DXColorAdd - (D3DXCOLOR *pOut, CONST D3DXCOLOR *pC1, CONST D3DXCOLOR *pC2) -{ -#ifdef D3DX10_DEBUG - if(!pOut || !pC1 || !pC2) - return NULL; -#endif - - pOut->r = pC1->r + pC2->r; - pOut->g = pC1->g + pC2->g; - pOut->b = pC1->b + pC2->b; - pOut->a = pC1->a + pC2->a; - return pOut; -} - -D3DX10INLINE D3DXCOLOR* D3DXColorSubtract - (D3DXCOLOR *pOut, CONST D3DXCOLOR *pC1, CONST D3DXCOLOR *pC2) -{ -#ifdef D3DX10_DEBUG - if(!pOut || !pC1 || !pC2) - return NULL; -#endif - - pOut->r = pC1->r - pC2->r; - pOut->g = pC1->g - pC2->g; - pOut->b = pC1->b - pC2->b; - pOut->a = pC1->a - pC2->a; - return pOut; -} - -D3DX10INLINE D3DXCOLOR* D3DXColorScale - (D3DXCOLOR *pOut, CONST D3DXCOLOR *pC, FLOAT s) -{ -#ifdef D3DX10_DEBUG - if(!pOut || !pC) - return NULL; -#endif - - pOut->r = pC->r * s; - pOut->g = pC->g * s; - pOut->b = pC->b * s; - pOut->a = pC->a * s; - return pOut; -} - -D3DX10INLINE D3DXCOLOR* D3DXColorModulate - (D3DXCOLOR *pOut, CONST D3DXCOLOR *pC1, CONST D3DXCOLOR *pC2) -{ -#ifdef D3DX10_DEBUG - if(!pOut || !pC1 || !pC2) - return NULL; -#endif - - pOut->r = pC1->r * pC2->r; - pOut->g = pC1->g * pC2->g; - pOut->b = pC1->b * pC2->b; - pOut->a = pC1->a * pC2->a; - return pOut; -} - -D3DX10INLINE D3DXCOLOR* D3DXColorLerp - (D3DXCOLOR *pOut, CONST D3DXCOLOR *pC1, CONST D3DXCOLOR *pC2, FLOAT s) -{ -#ifdef D3DX10_DEBUG - if(!pOut || !pC1 || !pC2) - return NULL; -#endif - - pOut->r = pC1->r + s * (pC2->r - pC1->r); - pOut->g = pC1->g + s * (pC2->g - pC1->g); - pOut->b = pC1->b + s * (pC2->b - pC1->b); - pOut->a = pC1->a + s * (pC2->a - pC1->a); - return pOut; -} - - -#endif // __D3DXMATH_INL__ - diff --git a/SDK/Include/D3DX10mesh.h b/SDK/Include/D3DX10mesh.h deleted file mode 100644 index e5fed8f..0000000 --- a/SDK/Include/D3DX10mesh.h +++ /dev/null @@ -1,286 +0,0 @@ -////////////////////////////////////////////////////////////////////////////// -// -// Copyright (C) Microsoft Corporation. All Rights Reserved. -// -// File: d3dx10mesh.h -// Content: D3DX10 mesh types and functions -// -////////////////////////////////////////////////////////////////////////////// - -#include "d3dx10.h" - -#ifndef __D3DX10MESH_H__ -#define __D3DX10MESH_H__ - -// {7ED943DD-52E8-40b5-A8D8-76685C406330} -DEFINE_GUID(IID_ID3DX10BaseMesh, -0x7ed943dd, 0x52e8, 0x40b5, 0xa8, 0xd8, 0x76, 0x68, 0x5c, 0x40, 0x63, 0x30); - -// {04B0D117-1041-46b1-AA8A-3952848BA22E} -DEFINE_GUID(IID_ID3DX10MeshBuffer, -0x4b0d117, 0x1041, 0x46b1, 0xaa, 0x8a, 0x39, 0x52, 0x84, 0x8b, 0xa2, 0x2e); - -// {4020E5C2-1403-4929-883F-E2E849FAC195} -DEFINE_GUID(IID_ID3DX10Mesh, -0x4020e5c2, 0x1403, 0x4929, 0x88, 0x3f, 0xe2, 0xe8, 0x49, 0xfa, 0xc1, 0x95); - -// {8875769A-D579-4088-AAEB-534D1AD84E96} -DEFINE_GUID(IID_ID3DX10PMesh, -0x8875769a, 0xd579, 0x4088, 0xaa, 0xeb, 0x53, 0x4d, 0x1a, 0xd8, 0x4e, 0x96); - -// {667EA4C7-F1CD-4386-B523-7C0290B83CC5} -DEFINE_GUID(IID_ID3DX10SPMesh, -0x667ea4c7, 0xf1cd, 0x4386, 0xb5, 0x23, 0x7c, 0x2, 0x90, 0xb8, 0x3c, 0xc5); - -// {3CE6CC22-DBF2-44f4-894D-F9C34A337139} -DEFINE_GUID(IID_ID3DX10PatchMesh, -0x3ce6cc22, 0xdbf2, 0x44f4, 0x89, 0x4d, 0xf9, 0xc3, 0x4a, 0x33, 0x71, 0x39); - - -// Mesh options - lower 3 bytes only, upper byte used by _D3DX10MESHOPT option flags -enum _D3DX10_MESH { - D3DX10_MESH_32_BIT = 0x001, // If set, then use 32 bit indices, if not set use 16 bit indices. - D3DX10_MESH_GS_ADJACENCY = 0x004, // If set, mesh contains GS adjacency info. Not valid on input. - -}; - -typedef struct _D3DX10_ATTRIBUTE_RANGE -{ - UINT AttribId; - UINT FaceStart; - UINT FaceCount; - UINT VertexStart; - UINT VertexCount; -} D3DX10_ATTRIBUTE_RANGE; - -typedef D3DX10_ATTRIBUTE_RANGE* LPD3DX10_ATTRIBUTE_RANGE; - -typedef enum _D3DX10_MESH_DISCARD_FLAGS -{ - D3DX10_MESH_DISCARD_ATTRIBUTE_BUFFER = 0x01, - D3DX10_MESH_DISCARD_ATTRIBUTE_TABLE = 0x02, - D3DX10_MESH_DISCARD_POINTREPS = 0x04, - D3DX10_MESH_DISCARD_ADJACENCY = 0x08, - D3DX10_MESH_DISCARD_DEVICE_BUFFERS = 0x10, - -} D3DX10_MESH_DISCARD_FLAGS; - -typedef struct _D3DX10_WELD_EPSILONS -{ - FLOAT Position; // NOTE: This does NOT replace the epsilon in GenerateAdjacency - // in general, it should be the same value or greater than the one passed to GeneratedAdjacency - FLOAT BlendWeights; - FLOAT Normal; - FLOAT PSize; - FLOAT Specular; - FLOAT Diffuse; - FLOAT Texcoord[8]; - FLOAT Tangent; - FLOAT Binormal; - FLOAT TessFactor; -} D3DX10_WELD_EPSILONS; - -typedef D3DX10_WELD_EPSILONS* LPD3DX10_WELD_EPSILONS; - -typedef struct _D3DX10_INTERSECT_INFO -{ - UINT FaceIndex; // index of face intersected - FLOAT U; // Barycentric Hit Coordinates - FLOAT V; // Barycentric Hit Coordinates - FLOAT Dist; // Ray-Intersection Parameter Distance -} D3DX10_INTERSECT_INFO, *LPD3DX10_INTERSECT_INFO; - -// ID3DX10MeshBuffer is used by D3DX10Mesh vertex and index buffers -#undef INTERFACE -#define INTERFACE ID3DX10MeshBuffer - -DECLARE_INTERFACE_(ID3DX10MeshBuffer, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // ID3DX10MeshBuffer - STDMETHOD(Map)(THIS_ void **ppData, SIZE_T *pSize) PURE; - STDMETHOD(Unmap)(THIS) PURE; - STDMETHOD_(SIZE_T, GetSize)(THIS) PURE; -}; - -// D3DX10 Mesh interfaces -#undef INTERFACE -#define INTERFACE ID3DX10Mesh - -DECLARE_INTERFACE_(ID3DX10Mesh, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // ID3DX10Mesh - STDMETHOD_(UINT, GetFaceCount)(THIS) PURE; - STDMETHOD_(UINT, GetVertexCount)(THIS) PURE; - STDMETHOD_(UINT, GetVertexBufferCount)(THIS) PURE; - STDMETHOD_(UINT, GetFlags)(THIS) PURE; - STDMETHOD(GetVertexDescription)(THIS_ CONST D3D10_INPUT_ELEMENT_DESC **ppDesc, UINT *pDeclCount) PURE; - - STDMETHOD(SetVertexData)(THIS_ UINT iBuffer, CONST void *pData) PURE; - STDMETHOD(GetVertexBuffer)(THIS_ UINT iBuffer, ID3DX10MeshBuffer **ppVertexBuffer) PURE; - - STDMETHOD(SetIndexData)(THIS_ CONST void *pData, UINT cIndices) PURE; - STDMETHOD(GetIndexBuffer)(THIS_ ID3DX10MeshBuffer **ppIndexBuffer) PURE; - - STDMETHOD(SetAttributeData)(THIS_ CONST UINT *pData) PURE; - STDMETHOD(GetAttributeBuffer)(THIS_ ID3DX10MeshBuffer **ppAttributeBuffer) PURE; - - STDMETHOD(SetAttributeTable)(THIS_ CONST D3DX10_ATTRIBUTE_RANGE *pAttribTable, UINT cAttribTableSize) PURE; - STDMETHOD(GetAttributeTable)(THIS_ D3DX10_ATTRIBUTE_RANGE *pAttribTable, UINT *pAttribTableSize) PURE; - - STDMETHOD(GenerateAdjacencyAndPointReps)(THIS_ FLOAT Epsilon) PURE; - STDMETHOD(GenerateGSAdjacency)(THIS) PURE; - - STDMETHOD(SetAdjacencyData)(THIS_ CONST UINT *pAdjacency) PURE; - STDMETHOD(GetAdjacencyBuffer)(THIS_ ID3DX10MeshBuffer **ppAdjacency) PURE; - - STDMETHOD(SetPointRepData)(THIS_ CONST UINT *pPointReps) PURE; - STDMETHOD(GetPointRepBuffer)(THIS_ ID3DX10MeshBuffer **ppPointReps) PURE; - - STDMETHOD(Discard)(THIS_ D3DX10_MESH_DISCARD_FLAGS dwDiscard) PURE; - STDMETHOD(CloneMesh)(THIS_ UINT Flags, LPCSTR pPosSemantic, CONST D3D10_INPUT_ELEMENT_DESC *pDesc, UINT DeclCount, ID3DX10Mesh** ppCloneMesh) PURE; - - STDMETHOD(Optimize)(THIS_ UINT Flags, UINT * pFaceRemap, LPD3D10BLOB *ppVertexRemap) PURE; - STDMETHOD(GenerateAttributeBufferFromTable)(THIS) PURE; - - STDMETHOD(Intersect)(THIS_ D3DXVECTOR3 *pRayPos, D3DXVECTOR3 *pRayDir, - UINT *pHitCount, UINT *pFaceIndex, float *pU, float *pV, float *pDist, ID3D10Blob **ppAllHits); - STDMETHOD(IntersectSubset)(THIS_ UINT AttribId, D3DXVECTOR3 *pRayPos, D3DXVECTOR3 *pRayDir, - UINT *pHitCount, UINT *pFaceIndex, float *pU, float *pV, float *pDist, ID3D10Blob **ppAllHits); - - // ID3DX10Mesh - Device functions - STDMETHOD(CommitToDevice)(THIS) PURE; - STDMETHOD(DrawSubset)(THIS_ UINT AttribId) PURE; - STDMETHOD(DrawSubsetInstanced)(THIS_ UINT AttribId, UINT InstanceCount, UINT StartInstanceLocation) PURE; - - STDMETHOD(GetDeviceVertexBuffer)(THIS_ UINT iBuffer, ID3D10Buffer **ppVertexBuffer) PURE; - STDMETHOD(GetDeviceIndexBuffer)(THIS_ ID3D10Buffer **ppIndexBuffer) PURE; -}; - - -// Flat API -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - -HRESULT WINAPI - D3DX10CreateMesh( - ID3D10Device *pDevice, - CONST D3D10_INPUT_ELEMENT_DESC *pDeclaration, - UINT DeclCount, - LPCSTR pPositionSemantic, - UINT VertexCount, - UINT FaceCount, - UINT Options, - ID3DX10Mesh **ppMesh); - -#ifdef __cplusplus -} -#endif //__cplusplus - - -// ID3DX10Mesh::Optimize options - upper byte only, lower 3 bytes used from _D3DX10MESH option flags -enum _D3DX10_MESHOPT { - D3DX10_MESHOPT_COMPACT = 0x01000000, - D3DX10_MESHOPT_ATTR_SORT = 0x02000000, - D3DX10_MESHOPT_VERTEX_CACHE = 0x04000000, - D3DX10_MESHOPT_STRIP_REORDER = 0x08000000, - D3DX10_MESHOPT_IGNORE_VERTS = 0x10000000, // optimize faces only, don't touch vertices - D3DX10_MESHOPT_DO_NOT_SPLIT = 0x20000000, // do not split vertices shared between attribute groups when attribute sorting - D3DX10_MESHOPT_DEVICE_INDEPENDENT = 0x00400000, // Only affects VCache. uses a static known good cache size for all cards - - // D3DX10_MESHOPT_SHAREVB has been removed, please use D3DX10MESH_VB_SHARE instead - -}; - - -////////////////////////////////////////////////////////////////////////// -// ID3DXSkinInfo -////////////////////////////////////////////////////////////////////////// - -// {420BD604-1C76-4a34-A466-E45D0658A32C} -DEFINE_GUID(IID_ID3DX10SkinInfo, -0x420bd604, 0x1c76, 0x4a34, 0xa4, 0x66, 0xe4, 0x5d, 0x6, 0x58, 0xa3, 0x2c); - -// scaling modes for ID3DX10SkinInfo::Compact() & ID3DX10SkinInfo::UpdateMesh() -#define D3DX10_SKININFO_NO_SCALING 0 -#define D3DX10_SKININFO_SCALE_TO_1 1 -#define D3DX10_SKININFO_SCALE_TO_TOTAL 2 - -typedef struct _D3DX10_SKINNING_CHANNEL -{ - UINT SrcOffset; - UINT DestOffset; - BOOL IsNormal; -} D3DX10_SKINNING_CHANNEL; - -#undef INTERFACE -#define INTERFACE ID3DX10SkinInfo - -typedef struct ID3DX10SkinInfo *LPD3DX10SKININFO; - -DECLARE_INTERFACE_(ID3DX10SkinInfo, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - STDMETHOD_(UINT , GetNumVertices)(THIS) PURE; - STDMETHOD_(UINT , GetNumBones)(THIS) PURE; - STDMETHOD_(UINT , GetMaxBoneInfluences)(THIS) PURE; - - STDMETHOD(AddVertices)(THIS_ UINT Count) PURE; - STDMETHOD(RemapVertices)(THIS_ UINT NewVertexCount, UINT *pVertexRemap) PURE; - - STDMETHOD(AddBones)(THIS_ UINT Count) PURE; - STDMETHOD(RemoveBone)(THIS_ UINT Index) PURE; - STDMETHOD(RemapBones)(THIS_ UINT NewBoneCount, UINT *pBoneRemap) PURE; - - STDMETHOD(AddBoneInfluences)(THIS_ UINT BoneIndex, UINT InfluenceCount, UINT *pIndices, float *pWeights) PURE; - STDMETHOD(ClearBoneInfluences)(THIS_ UINT BoneIndex) PURE; - STDMETHOD_(UINT , GetBoneInfluenceCount)(THIS_ UINT BoneIndex) PURE; - STDMETHOD(GetBoneInfluences)(THIS_ UINT BoneIndex, UINT Offset, UINT Count, UINT *pDestIndices, float *pDestWeights) PURE; - STDMETHOD(FindBoneInfluenceIndex)(THIS_ UINT BoneIndex, UINT VertexIndex, UINT *pInfluenceIndex) PURE; - STDMETHOD(SetBoneInfluence)(THIS_ UINT BoneIndex, UINT InfluenceIndex, float Weight) PURE; - STDMETHOD(GetBoneInfluence)(THIS_ UINT BoneIndex, UINT InfluenceIndex, float *pWeight) PURE; - - STDMETHOD(Compact)(THIS_ UINT MaxPerVertexInfluences, UINT ScaleMode, float MinWeight) PURE; - STDMETHOD(DoSoftwareSkinning)(UINT StartVertex, UINT VertexCount, void *pSrcVertices, UINT SrcStride, void *pDestVertices, UINT DestStride, D3DXMATRIX *pBoneMatrices, D3DXMATRIX *pInverseTransposeBoneMatrices, D3DX10_SKINNING_CHANNEL *pChannelDescs, UINT NumChannels) PURE; -}; - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - -HRESULT WINAPI - D3DX10CreateSkinInfo(LPD3DX10SKININFO* ppSkinInfo); - -#ifdef __cplusplus -} -#endif //__cplusplus - -typedef struct _D3DX10_ATTRIBUTE_WEIGHTS -{ - FLOAT Position; - FLOAT Boundary; - FLOAT Normal; - FLOAT Diffuse; - FLOAT Specular; - FLOAT Texcoord[8]; - FLOAT Tangent; - FLOAT Binormal; -} D3DX10_ATTRIBUTE_WEIGHTS, *LPD3DX10_ATTRIBUTE_WEIGHTS; - -#endif //__D3DX10MESH_H__ - - diff --git a/SDK/Include/D3DX10tex.h b/SDK/Include/D3DX10tex.h deleted file mode 100644 index a6d8bb9..0000000 --- a/SDK/Include/D3DX10tex.h +++ /dev/null @@ -1,766 +0,0 @@ -////////////////////////////////////////////////////////////////////////////// -// -// Copyright (C) Microsoft Corporation. All Rights Reserved. -// -// File: d3dx10tex.h -// Content: D3DX10 texturing APIs -// -////////////////////////////////////////////////////////////////////////////// - -#include "d3dx10.h" - -#ifndef __D3DX10TEX_H__ -#define __D3DX10TEX_H__ - - -//---------------------------------------------------------------------------- -// D3DX10_FILTER flags: -// ------------------ -// -// A valid filter must contain one of these values: -// -// D3DX10_FILTER_NONE -// No scaling or filtering will take place. Pixels outside the bounds -// of the source image are assumed to be transparent black. -// D3DX10_FILTER_POINT -// Each destination pixel is computed by sampling the nearest pixel -// from the source image. -// D3DX10_FILTER_LINEAR -// Each destination pixel is computed by linearly interpolating between -// the nearest pixels in the source image. This filter works best -// when the scale on each axis is less than 2. -// D3DX10_FILTER_TRIANGLE -// Every pixel in the source image contributes equally to the -// destination image. This is the slowest of all the filters. -// D3DX10_FILTER_BOX -// Each pixel is computed by averaging a 2x2(x2) box pixels from -// the source image. Only works when the dimensions of the -// destination are half those of the source. (as with mip maps) -// -// And can be OR'd with any of these optional flags: -// -// D3DX10_FILTER_MIRROR_U -// Indicates that pixels off the edge of the texture on the U-axis -// should be mirrored, not wraped. -// D3DX10_FILTER_MIRROR_V -// Indicates that pixels off the edge of the texture on the V-axis -// should be mirrored, not wraped. -// D3DX10_FILTER_MIRROR_W -// Indicates that pixels off the edge of the texture on the W-axis -// should be mirrored, not wraped. -// D3DX10_FILTER_MIRROR -// Same as specifying D3DX10_FILTER_MIRROR_U | D3DX10_FILTER_MIRROR_V | -// D3DX10_FILTER_MIRROR_V -// D3DX10_FILTER_DITHER -// Dithers the resulting image using a 4x4 order dither pattern. -// D3DX10_FILTER_SRGB_IN -// Denotes that the input data is in sRGB (gamma 2.2) colorspace. -// D3DX10_FILTER_SRGB_OUT -// Denotes that the output data is in sRGB (gamma 2.2) colorspace. -// D3DX10_FILTER_SRGB -// Same as specifying D3DX10_FILTER_SRGB_IN | D3DX10_FILTER_SRGB_OUT -// -//---------------------------------------------------------------------------- - -typedef enum D3DX10_FILTER_FLAG -{ - D3DX10_FILTER_NONE = (1 << 0), - D3DX10_FILTER_POINT = (2 << 0), - D3DX10_FILTER_LINEAR = (3 << 0), - D3DX10_FILTER_TRIANGLE = (4 << 0), - D3DX10_FILTER_BOX = (5 << 0), - - D3DX10_FILTER_MIRROR_U = (1 << 16), - D3DX10_FILTER_MIRROR_V = (2 << 16), - D3DX10_FILTER_MIRROR_W = (4 << 16), - D3DX10_FILTER_MIRROR = (7 << 16), - - D3DX10_FILTER_DITHER = (1 << 19), - D3DX10_FILTER_DITHER_DIFFUSION= (2 << 19), - - D3DX10_FILTER_SRGB_IN = (1 << 21), - D3DX10_FILTER_SRGB_OUT = (2 << 21), - D3DX10_FILTER_SRGB = (3 << 21), -} D3DX10_FILTER_FLAG; - -//---------------------------------------------------------------------------- -// D3DX10_NORMALMAP flags: -// --------------------- -// These flags are used to control how D3DX10ComputeNormalMap generates normal -// maps. Any number of these flags may be OR'd together in any combination. -// -// D3DX10_NORMALMAP_MIRROR_U -// Indicates that pixels off the edge of the texture on the U-axis -// should be mirrored, not wraped. -// D3DX10_NORMALMAP_MIRROR_V -// Indicates that pixels off the edge of the texture on the V-axis -// should be mirrored, not wraped. -// D3DX10_NORMALMAP_MIRROR -// Same as specifying D3DX10_NORMALMAP_MIRROR_U | D3DX10_NORMALMAP_MIRROR_V -// D3DX10_NORMALMAP_INVERTSIGN -// Inverts the direction of each normal -// D3DX10_NORMALMAP_COMPUTE_OCCLUSION -// Compute the per pixel Occlusion term and encodes it into the alpha. -// An Alpha of 1 means that the pixel is not obscured in anyway, and -// an alpha of 0 would mean that the pixel is completly obscured. -// -//---------------------------------------------------------------------------- - -typedef enum D3DX10_NORMALMAP_FLAG -{ - D3DX10_NORMALMAP_MIRROR_U = (1 << 16), - D3DX10_NORMALMAP_MIRROR_V = (2 << 16), - D3DX10_NORMALMAP_MIRROR = (3 << 16), - D3DX10_NORMALMAP_INVERTSIGN = (8 << 16), - D3DX10_NORMALMAP_COMPUTE_OCCLUSION = (16 << 16), -} D3DX10_NORMALMAP_FLAG; - -//---------------------------------------------------------------------------- -// D3DX10_CHANNEL flags: -// ------------------- -// These flags are used by functions which operate on or more channels -// in a texture. -// -// D3DX10_CHANNEL_RED -// Indicates the red channel should be used -// D3DX10_CHANNEL_BLUE -// Indicates the blue channel should be used -// D3DX10_CHANNEL_GREEN -// Indicates the green channel should be used -// D3DX10_CHANNEL_ALPHA -// Indicates the alpha channel should be used -// D3DX10_CHANNEL_LUMINANCE -// Indicates the luminaces of the red green and blue channels should be -// used. -// -//---------------------------------------------------------------------------- - -typedef enum D3DX10_CHANNEL_FLAG -{ - D3DX10_CHANNEL_RED = (1 << 0), - D3DX10_CHANNEL_BLUE = (1 << 1), - D3DX10_CHANNEL_GREEN = (1 << 2), - D3DX10_CHANNEL_ALPHA = (1 << 3), - D3DX10_CHANNEL_LUMINANCE = (1 << 4), -} D3DX10_CHANNEL_FLAG; - - - -//---------------------------------------------------------------------------- -// D3DX10_IMAGE_FILE_FORMAT: -// --------------------- -// This enum is used to describe supported image file formats. -// -//---------------------------------------------------------------------------- - -typedef enum D3DX10_IMAGE_FILE_FORMAT -{ - D3DX10_IFF_BMP = 0, - D3DX10_IFF_JPG = 1, - D3DX10_IFF_PNG = 3, - D3DX10_IFF_DDS = 4, - D3DX10_IFF_TIFF = 10, - D3DX10_IFF_GIF = 11, - D3DX10_IFF_WMP = 12, - D3DX10_IFF_FORCE_DWORD = 0x7fffffff - -} D3DX10_IMAGE_FILE_FORMAT; - - -//---------------------------------------------------------------------------- -// D3DX10_SAVE_TEXTURE_FLAG: -// --------------------- -// This enum is used to support texture saving options. -// -//---------------------------------------------------------------------------- - -typedef enum D3DX10_SAVE_TEXTURE_FLAG -{ - D3DX10_STF_USEINPUTBLOB = 0x0001, -} D3DX10_SAVE_TEXTURE_FLAG; - - - -//---------------------------------------------------------------------------- -// D3DX10_IMAGE_INFO: -// --------------- -// This structure is used to return a rough description of what the -// the original contents of an image file looked like. -// -// Width -// Width of original image in pixels -// Height -// Height of original image in pixels -// Depth -// Depth of original image in pixels -// ArraySize -// Array size in textures -// MipLevels -// Number of mip levels in original image -// MiscFlags -// Miscellaneous flags -// Format -// D3D format which most closely describes the data in original image -// ResourceDimension -// D3D10_RESOURCE_DIMENSION representing the dimension of texture stored in the file. -// D3D10_RESOURCE_DIMENSION_TEXTURE1D, 2D, 3D -// ImageFileFormat -// D3DX10_IMAGE_FILE_FORMAT representing the format of the image file. -//---------------------------------------------------------------------------- - -typedef struct D3DX10_IMAGE_INFO -{ - UINT Width; - UINT Height; - UINT Depth; - UINT ArraySize; - UINT MipLevels; - UINT MiscFlags; - DXGI_FORMAT Format; - D3D10_RESOURCE_DIMENSION ResourceDimension; - D3DX10_IMAGE_FILE_FORMAT ImageFileFormat; -} D3DX10_IMAGE_INFO; - - - - - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - - - -////////////////////////////////////////////////////////////////////////////// -// Image File APIs /////////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -//---------------------------------------------------------------------------- -// D3DX10_IMAGE_LOAD_INFO: -// --------------- -// This structure can be optionally passed in to texture loader APIs to -// control how textures get loaded. Pass in D3DX10_DEFAULT for any of these -// to have D3DX automatically pick defaults based on the source file. -// -// Width -// Rescale texture to Width texels wide -// Height -// Rescale texture to Height texels high -// Depth -// Rescale texture to Depth texels deep -// FirstMipLevel -// First mip level to load -// MipLevels -// Number of mip levels to load after the first level -// Usage -// D3D10_USAGE flag for the new texture -// BindFlags -// D3D10 Bind flags for the new texture -// CpuAccessFlags -// D3D10 CPU Access flags for the new texture -// MiscFlags -// Reserved. Must be 0 -// Format -// Resample texture to the specified format -// Filter -// Filter the texture using the specified filter (only when resampling) -// MipFilter -// Filter the texture mip levels using the specified filter (only if -// generating mips) -// pSrcInfo -// (optional) pointer to a D3DX10_IMAGE_INFO structure that will get -// populated with source image information -//---------------------------------------------------------------------------- - - -typedef struct D3DX10_IMAGE_LOAD_INFO -{ - UINT Width; - UINT Height; - UINT Depth; - UINT FirstMipLevel; - UINT MipLevels; - D3D10_USAGE Usage; - UINT BindFlags; - UINT CpuAccessFlags; - UINT MiscFlags; - DXGI_FORMAT Format; - UINT Filter; - UINT MipFilter; - D3DX10_IMAGE_INFO* pSrcInfo; - -#ifdef __cplusplus - D3DX10_IMAGE_LOAD_INFO() - { - Width = D3DX10_DEFAULT; - Height = D3DX10_DEFAULT; - Depth = D3DX10_DEFAULT; - FirstMipLevel = D3DX10_DEFAULT; - MipLevels = D3DX10_DEFAULT; - Usage = (D3D10_USAGE) D3DX10_DEFAULT; - BindFlags = D3DX10_DEFAULT; - CpuAccessFlags = D3DX10_DEFAULT; - MiscFlags = D3DX10_DEFAULT; - Format = DXGI_FORMAT_FROM_FILE; - Filter = D3DX10_DEFAULT; - MipFilter = D3DX10_DEFAULT; - pSrcInfo = NULL; - } -#endif - -} D3DX10_IMAGE_LOAD_INFO; - -//------------------------------------------------------------------------------- -// GetImageInfoFromFile/Resource/Memory: -// ------------------------------ -// Fills in a D3DX10_IMAGE_INFO struct with information about an image file. -// -// Parameters: -// pSrcFile -// File name of the source image. -// pSrcModule -// Module where resource is located, or NULL for module associated -// with image the os used to create the current process. -// pSrcResource -// Resource name. -// pSrcData -// Pointer to file in memory. -// SrcDataSize -// Size in bytes of file in memory. -// pPump -// Optional pointer to a thread pump object to use. -// pSrcInfo -// Pointer to a D3DX10_IMAGE_INFO structure to be filled in with the -// description of the data in the source image file. -// pHResult -// Pointer to a memory location to receive the return value upon completion. -// Maybe NULL if not needed. -// If pPump != NULL, pHResult must be a valid memory location until the -// the asynchronous execution completes. -//------------------------------------------------------------------------------- - -HRESULT WINAPI - D3DX10GetImageInfoFromFileA( - LPCSTR pSrcFile, - ID3DX10ThreadPump* pPump, - D3DX10_IMAGE_INFO* pSrcInfo, - HRESULT* pHResult); - -HRESULT WINAPI - D3DX10GetImageInfoFromFileW( - LPCWSTR pSrcFile, - ID3DX10ThreadPump* pPump, - D3DX10_IMAGE_INFO* pSrcInfo, - HRESULT* pHResult); - -#ifdef UNICODE -#define D3DX10GetImageInfoFromFile D3DX10GetImageInfoFromFileW -#else -#define D3DX10GetImageInfoFromFile D3DX10GetImageInfoFromFileA -#endif - - -HRESULT WINAPI - D3DX10GetImageInfoFromResourceA( - HMODULE hSrcModule, - LPCSTR pSrcResource, - ID3DX10ThreadPump* pPump, - D3DX10_IMAGE_INFO* pSrcInfo, - HRESULT* pHResult); - -HRESULT WINAPI - D3DX10GetImageInfoFromResourceW( - HMODULE hSrcModule, - LPCWSTR pSrcResource, - ID3DX10ThreadPump* pPump, - D3DX10_IMAGE_INFO* pSrcInfo, - HRESULT* pHResult); - -#ifdef UNICODE -#define D3DX10GetImageInfoFromResource D3DX10GetImageInfoFromResourceW -#else -#define D3DX10GetImageInfoFromResource D3DX10GetImageInfoFromResourceA -#endif - - -HRESULT WINAPI - D3DX10GetImageInfoFromMemory( - LPCVOID pSrcData, - SIZE_T SrcDataSize, - ID3DX10ThreadPump* pPump, - D3DX10_IMAGE_INFO* pSrcInfo, - HRESULT* pHResult); - - -////////////////////////////////////////////////////////////////////////////// -// Create/Save Texture APIs ////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -//---------------------------------------------------------------------------- -// D3DX10CreateTextureFromFile/Resource/Memory: -// D3DX10CreateShaderResourceViewFromFile/Resource/Memory: -// ----------------------------------- -// Create a texture object from a file or resource. -// -// Parameters: -// -// pDevice -// The D3D device with which the texture is going to be used. -// pSrcFile -// File name. -// hSrcModule -// Module handle. if NULL, current module will be used. -// pSrcResource -// Resource name in module -// pvSrcData -// Pointer to file in memory. -// SrcDataSize -// Size in bytes of file in memory. -// pLoadInfo -// Optional pointer to a D3DX10_IMAGE_LOAD_INFO structure that -// contains additional loader parameters. -// pPump -// Optional pointer to a thread pump object to use. -// ppTexture -// [out] Created texture object. -// ppShaderResourceView -// [out] Shader resource view object created. -// pHResult -// Pointer to a memory location to receive the return value upon completion. -// Maybe NULL if not needed. -// If pPump != NULL, pHResult must be a valid memory location until the -// the asynchronous execution completes. -// -//---------------------------------------------------------------------------- - - -// FromFile - -HRESULT WINAPI - D3DX10CreateShaderResourceViewFromFileA( - ID3D10Device* pDevice, - LPCSTR pSrcFile, - D3DX10_IMAGE_LOAD_INFO *pLoadInfo, - ID3DX10ThreadPump* pPump, - ID3D10ShaderResourceView** ppShaderResourceView, - HRESULT* pHResult); - -HRESULT WINAPI - D3DX10CreateShaderResourceViewFromFileW( - ID3D10Device* pDevice, - LPCWSTR pSrcFile, - D3DX10_IMAGE_LOAD_INFO *pLoadInfo, - ID3DX10ThreadPump* pPump, - ID3D10ShaderResourceView** ppShaderResourceView, - HRESULT* pHResult); - -#ifdef UNICODE -#define D3DX10CreateShaderResourceViewFromFile D3DX10CreateShaderResourceViewFromFileW -#else -#define D3DX10CreateShaderResourceViewFromFile D3DX10CreateShaderResourceViewFromFileA -#endif - -HRESULT WINAPI - D3DX10CreateTextureFromFileA( - ID3D10Device* pDevice, - LPCSTR pSrcFile, - D3DX10_IMAGE_LOAD_INFO *pLoadInfo, - ID3DX10ThreadPump* pPump, - ID3D10Resource** ppTexture, - HRESULT* pHResult); - -HRESULT WINAPI - D3DX10CreateTextureFromFileW( - ID3D10Device* pDevice, - LPCWSTR pSrcFile, - D3DX10_IMAGE_LOAD_INFO *pLoadInfo, - ID3DX10ThreadPump* pPump, - ID3D10Resource** ppTexture, - HRESULT* pHResult); - -#ifdef UNICODE -#define D3DX10CreateTextureFromFile D3DX10CreateTextureFromFileW -#else -#define D3DX10CreateTextureFromFile D3DX10CreateTextureFromFileA -#endif - - -// FromResource (resources in dll/exes) - -HRESULT WINAPI - D3DX10CreateShaderResourceViewFromResourceA( - ID3D10Device* pDevice, - HMODULE hSrcModule, - LPCSTR pSrcResource, - D3DX10_IMAGE_LOAD_INFO* pLoadInfo, - ID3DX10ThreadPump* pPump, - ID3D10ShaderResourceView** ppShaderResourceView, - HRESULT* pHResult); - -HRESULT WINAPI - D3DX10CreateShaderResourceViewFromResourceW( - ID3D10Device* pDevice, - HMODULE hSrcModule, - LPCWSTR pSrcResource, - D3DX10_IMAGE_LOAD_INFO* pLoadInfo, - ID3DX10ThreadPump* pPump, - ID3D10ShaderResourceView** ppShaderResourceView, - HRESULT* pHResult); - -#ifdef UNICODE -#define D3DX10CreateShaderResourceViewFromResource D3DX10CreateShaderResourceViewFromResourceW -#else -#define D3DX10CreateShaderResourceViewFromResource D3DX10CreateShaderResourceViewFromResourceA -#endif - -HRESULT WINAPI - D3DX10CreateTextureFromResourceA( - ID3D10Device* pDevice, - HMODULE hSrcModule, - LPCSTR pSrcResource, - D3DX10_IMAGE_LOAD_INFO *pLoadInfo, - ID3DX10ThreadPump* pPump, - ID3D10Resource** ppTexture, - HRESULT* pHResult); - -HRESULT WINAPI - D3DX10CreateTextureFromResourceW( - ID3D10Device* pDevice, - HMODULE hSrcModule, - LPCWSTR pSrcResource, - D3DX10_IMAGE_LOAD_INFO* pLoadInfo, - ID3DX10ThreadPump* pPump, - ID3D10Resource** ppTexture, - HRESULT* pHResult); - -#ifdef UNICODE -#define D3DX10CreateTextureFromResource D3DX10CreateTextureFromResourceW -#else -#define D3DX10CreateTextureFromResource D3DX10CreateTextureFromResourceA -#endif - - -// FromFileInMemory - -HRESULT WINAPI - D3DX10CreateShaderResourceViewFromMemory( - ID3D10Device* pDevice, - LPCVOID pSrcData, - SIZE_T SrcDataSize, - D3DX10_IMAGE_LOAD_INFO* pLoadInfo, - ID3DX10ThreadPump* pPump, - ID3D10ShaderResourceView** ppShaderResourceView, - HRESULT* pHResult); - -HRESULT WINAPI - D3DX10CreateTextureFromMemory( - ID3D10Device* pDevice, - LPCVOID pSrcData, - SIZE_T SrcDataSize, - D3DX10_IMAGE_LOAD_INFO* pLoadInfo, - ID3DX10ThreadPump* pPump, - ID3D10Resource** ppTexture, - HRESULT* pHResult); - - -////////////////////////////////////////////////////////////////////////////// -// Misc Texture APIs ///////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -//---------------------------------------------------------------------------- -// D3DX10_TEXTURE_LOAD_INFO: -// ------------------------ -// -//---------------------------------------------------------------------------- - -typedef struct _D3DX10_TEXTURE_LOAD_INFO -{ - D3D10_BOX *pSrcBox; - D3D10_BOX *pDstBox; - UINT SrcFirstMip; - UINT DstFirstMip; - UINT NumMips; - UINT SrcFirstElement; - UINT DstFirstElement; - UINT NumElements; - UINT Filter; - UINT MipFilter; - -#ifdef __cplusplus - _D3DX10_TEXTURE_LOAD_INFO() - { - pSrcBox = NULL; - pDstBox = NULL; - SrcFirstMip = 0; - DstFirstMip = 0; - NumMips = D3DX10_DEFAULT; - SrcFirstElement = 0; - DstFirstElement = 0; - NumElements = D3DX10_DEFAULT; - Filter = D3DX10_DEFAULT; - MipFilter = D3DX10_DEFAULT; - } -#endif - -} D3DX10_TEXTURE_LOAD_INFO; - - -//---------------------------------------------------------------------------- -// D3DX10LoadTextureFromTexture: -// ---------------------------- -// Load a texture from a texture. -// -// Parameters: -// -//---------------------------------------------------------------------------- - - -HRESULT WINAPI - D3DX10LoadTextureFromTexture( - ID3D10Resource *pSrcTexture, - D3DX10_TEXTURE_LOAD_INFO *pLoadInfo, - ID3D10Resource *pDstTexture); - - -//---------------------------------------------------------------------------- -// D3DX10FilterTexture: -// ------------------ -// Filters mipmaps levels of a texture. -// -// Parameters: -// pBaseTexture -// The texture object to be filtered -// SrcLevel -// The level whose image is used to generate the subsequent levels. -// MipFilter -// D3DX10_FILTER flags controlling how each miplevel is filtered. -// Or D3DX10_DEFAULT for D3DX10_FILTER_BOX, -// -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DX10FilterTexture( - ID3D10Resource *pTexture, - UINT SrcLevel, - UINT MipFilter); - - -//---------------------------------------------------------------------------- -// D3DX10SaveTextureToFile: -// ---------------------- -// Save a texture to a file. -// -// Parameters: -// pDestFile -// File name of the destination file -// DestFormat -// D3DX10_IMAGE_FILE_FORMAT specifying file format to use when saving. -// pSrcTexture -// Source texture, containing the image to be saved -// -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DX10SaveTextureToFileA( - ID3D10Resource *pSrcTexture, - D3DX10_IMAGE_FILE_FORMAT DestFormat, - LPCSTR pDestFile); - -HRESULT WINAPI - D3DX10SaveTextureToFileW( - ID3D10Resource *pSrcTexture, - D3DX10_IMAGE_FILE_FORMAT DestFormat, - LPCWSTR pDestFile); - -#ifdef UNICODE -#define D3DX10SaveTextureToFile D3DX10SaveTextureToFileW -#else -#define D3DX10SaveTextureToFile D3DX10SaveTextureToFileA -#endif - - -//---------------------------------------------------------------------------- -// D3DX10SaveTextureToMemory: -// ---------------------- -// Save a texture to a blob. -// -// Parameters: -// pSrcTexture -// Source texture, containing the image to be saved -// DestFormat -// D3DX10_IMAGE_FILE_FORMAT specifying file format to use when saving. -// ppDestBuf -// address of a d3dxbuffer pointer to return the image data -// Flags -// optional flags -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DX10SaveTextureToMemory( - ID3D10Resource* pSrcTexture, - D3DX10_IMAGE_FILE_FORMAT DestFormat, - LPD3D10BLOB* ppDestBuf, - UINT Flags); - - -//---------------------------------------------------------------------------- -// D3DX10ComputeNormalMap: -// --------------------- -// Converts a height map into a normal map. The (x,y,z) components of each -// normal are mapped to the (r,g,b) channels of the output texture. -// -// Parameters -// pSrcTexture -// Pointer to the source heightmap texture -// Flags -// D3DX10_NORMALMAP flags -// Channel -// D3DX10_CHANNEL specifying source of height information -// Amplitude -// The constant value which the height information is multiplied by. -// pDestTexture -// Pointer to the destination texture -//--------------------------------------------------------------------------- - -HRESULT WINAPI - D3DX10ComputeNormalMap( - ID3D10Texture2D *pSrcTexture, - UINT Flags, - UINT Channel, - FLOAT Amplitude, - ID3D10Texture2D *pDestTexture); - - -//---------------------------------------------------------------------------- -// D3DX10SHProjectCubeMap: -// ---------------------- -// Projects a function represented in a cube map into spherical harmonics. -// -// Parameters: -// Order -// Order of the SH evaluation, generates Order^2 coefs, degree is Order-1 -// pCubeMap -// CubeMap that is going to be projected into spherical harmonics -// pROut -// Output SH vector for Red. -// pGOut -// Output SH vector for Green -// pBOut -// Output SH vector for Blue -// -//--------------------------------------------------------------------------- - -HRESULT WINAPI - D3DX10SHProjectCubeMap( - __in_range(2,6) UINT Order, - ID3D10Texture2D *pCubeMap, - __out_ecount(Order*Order) FLOAT *pROut, - __out_ecount_opt(Order*Order) FLOAT *pGOut, - __out_ecount_opt(Order*Order) FLOAT *pBOut); - -#ifdef __cplusplus -} -#endif //__cplusplus - -#endif //__D3DX10TEX_H__ - diff --git a/SDK/Include/D3DX11.h b/SDK/Include/D3DX11.h deleted file mode 100644 index 103c782..0000000 --- a/SDK/Include/D3DX11.h +++ /dev/null @@ -1,74 +0,0 @@ -////////////////////////////////////////////////////////////////////////////// -// -// Copyright (C) Microsoft Corporation. All Rights Reserved. -// -// File: d3dx11.h -// Content: D3DX11 utility library -// -////////////////////////////////////////////////////////////////////////////// - -#ifdef __D3DX11_INTERNAL__ -#error Incorrect D3DX11 header used -#endif - -#ifndef __D3DX11_H__ -#define __D3DX11_H__ - - -// Defines -#include -#include - -#ifdef ALLOW_THROWING_NEW -#include -#endif - -#define D3DX11_DEFAULT ((UINT) -1) -#define D3DX11_FROM_FILE ((UINT) -3) -#define DXGI_FORMAT_FROM_FILE ((DXGI_FORMAT) -3) - -#ifndef D3DX11INLINE -#ifdef _MSC_VER - #if (_MSC_VER >= 1200) - #define D3DX11INLINE __forceinline - #else - #define D3DX11INLINE __inline - #endif -#else - #ifdef __cplusplus - #define D3DX11INLINE inline - #else - #define D3DX11INLINE - #endif -#endif -#endif - - - -// Includes -#include "d3d11.h" -#include "d3dx11.h" -#include "d3dx11core.h" -#include "d3dx11tex.h" -#include "d3dx11async.h" - - -// Errors -#define _FACDD 0x876 -#define MAKE_DDHRESULT( code ) MAKE_HRESULT( 1, _FACDD, code ) - -enum _D3DX11_ERR { - D3DX11_ERR_CANNOT_MODIFY_INDEX_BUFFER = MAKE_DDHRESULT(2900), - D3DX11_ERR_INVALID_MESH = MAKE_DDHRESULT(2901), - D3DX11_ERR_CANNOT_ATTR_SORT = MAKE_DDHRESULT(2902), - D3DX11_ERR_SKINNING_NOT_SUPPORTED = MAKE_DDHRESULT(2903), - D3DX11_ERR_TOO_MANY_INFLUENCES = MAKE_DDHRESULT(2904), - D3DX11_ERR_INVALID_DATA = MAKE_DDHRESULT(2905), - D3DX11_ERR_LOADED_MESH_HAS_NO_DATA = MAKE_DDHRESULT(2906), - D3DX11_ERR_DUPLICATE_NAMED_FRAGMENT = MAKE_DDHRESULT(2907), - D3DX11_ERR_CANNOT_REMOVE_LAST_ITEM = MAKE_DDHRESULT(2908), -}; - - -#endif //__D3DX11_H__ - diff --git a/SDK/Include/D3DX11async.h b/SDK/Include/D3DX11async.h deleted file mode 100644 index 4586c55..0000000 --- a/SDK/Include/D3DX11async.h +++ /dev/null @@ -1,164 +0,0 @@ - -////////////////////////////////////////////////////////////////////////////// -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// -// File: D3DX11Async.h -// Content: D3DX11 Asynchronous Shader loaders / compilers -// -////////////////////////////////////////////////////////////////////////////// - -#ifndef __D3DX11ASYNC_H__ -#define __D3DX11ASYNC_H__ - -#include "d3dx11.h" - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - - -//---------------------------------------------------------------------------- -// D3DX11Compile: -// ------------------ -// Compiles an effect or shader. -// -// Parameters: -// pSrcFile -// Source file name. -// hSrcModule -// Module handle. if NULL, current module will be used. -// pSrcResource -// Resource name in module. -// pSrcData -// Pointer to source code. -// SrcDataLen -// Size of source code, in bytes. -// pDefines -// Optional NULL-terminated array of preprocessor macro definitions. -// pInclude -// Optional interface pointer to use for handling #include directives. -// If this parameter is NULL, #includes will be honored when compiling -// from file, and will error when compiling from resource or memory. -// pFunctionName -// Name of the entrypoint function where execution should begin. -// pProfile -// Instruction set to be used when generating code. Currently supported -// profiles are "vs_1_1", "vs_2_0", "vs_2_a", "vs_2_sw", "vs_3_0", -// "vs_3_sw", "vs_4_0", "vs_4_1", -// "ps_2_0", "ps_2_a", "ps_2_b", "ps_2_sw", "ps_3_0", -// "ps_3_sw", "ps_4_0", "ps_4_1", -// "gs_4_0", "gs_4_1", -// "tx_1_0", -// "fx_4_0", "fx_4_1" -// Note that this entrypoint does not compile fx_2_0 targets, for that -// you need to use the D3DX9 function. -// Flags1 -// See D3D10_SHADER_xxx flags. -// Flags2 -// See D3D10_EFFECT_xxx flags. -// ppShader -// Returns a buffer containing the created shader. This buffer contains -// the compiled shader code, as well as any embedded debug and symbol -// table info. (See D3D10GetShaderConstantTable) -// ppErrorMsgs -// Returns a buffer containing a listing of errors and warnings that were -// encountered during the compile. If you are running in a debugger, -// these are the same messages you will see in your debug output. -// pHResult -// Pointer to a memory location to receive the return value upon completion. -// Maybe NULL if not needed. -// If pPump != NULL, pHResult must be a valid memory location until the -// the asynchronous execution completes. -//---------------------------------------------------------------------------- - -HRESULT WINAPI D3DX11CompileFromFileA(LPCSTR pSrcFile,CONST D3D10_SHADER_MACRO* pDefines, LPD3D10INCLUDE pInclude, - LPCSTR pFunctionName, LPCSTR pProfile, UINT Flags1, UINT Flags2, ID3DX11ThreadPump* pPump, ID3D10Blob** ppShader, ID3D10Blob** ppErrorMsgs, HRESULT* pHResult); - -HRESULT WINAPI D3DX11CompileFromFileW(LPCWSTR pSrcFile, CONST D3D10_SHADER_MACRO* pDefines, LPD3D10INCLUDE pInclude, - LPCSTR pFunctionName, LPCSTR pProfile, UINT Flags1, UINT Flags2, ID3DX11ThreadPump* pPump, ID3D10Blob** ppShader, ID3D10Blob** ppErrorMsgs, HRESULT* pHResult); - -#ifdef UNICODE -#define D3DX11CompileFromFile D3DX11CompileFromFileW -#else -#define D3DX11CompileFromFile D3DX11CompileFromFileA -#endif - -HRESULT WINAPI D3DX11CompileFromResourceA(HMODULE hSrcModule, LPCSTR pSrcResource, LPCSTR pSrcFileName, CONST D3D10_SHADER_MACRO* pDefines, - LPD3D10INCLUDE pInclude, LPCSTR pFunctionName, LPCSTR pProfile, UINT Flags1, UINT Flags2, ID3DX11ThreadPump* pPump, ID3D10Blob** ppShader, ID3D10Blob** ppErrorMsgs, HRESULT* pHResult); - -HRESULT WINAPI D3DX11CompileFromResourceW(HMODULE hSrcModule, LPCWSTR pSrcResource, LPCWSTR pSrcFileName, CONST D3D10_SHADER_MACRO* pDefines, - LPD3D10INCLUDE pInclude, LPCSTR pFunctionName, LPCSTR pProfile, UINT Flags1, UINT Flags2, ID3DX11ThreadPump* pPump, ID3D10Blob** ppShader, ID3D10Blob** ppErrorMsgs, HRESULT* pHResult); - -#ifdef UNICODE -#define D3DX11CompileFromResource D3DX11CompileFromResourceW -#else -#define D3DX11CompileFromResource D3DX11CompileFromResourceA -#endif - -HRESULT WINAPI D3DX11CompileFromMemory(LPCSTR pSrcData, SIZE_T SrcDataLen, LPCSTR pFileName, CONST D3D10_SHADER_MACRO* pDefines, LPD3D10INCLUDE pInclude, - LPCSTR pFunctionName, LPCSTR pProfile, UINT Flags1, UINT Flags2, ID3DX11ThreadPump* pPump, ID3D10Blob** ppShader, ID3D10Blob** ppErrorMsgs, HRESULT* pHResult); - -HRESULT WINAPI D3DX11PreprocessShaderFromFileA(LPCSTR pFileName, CONST D3D10_SHADER_MACRO* pDefines, - LPD3D10INCLUDE pInclude, ID3DX11ThreadPump *pPump, ID3D10Blob** ppShaderText, ID3D10Blob** ppErrorMsgs, HRESULT* pHResult); - -HRESULT WINAPI D3DX11PreprocessShaderFromFileW(LPCWSTR pFileName, CONST D3D10_SHADER_MACRO* pDefines, - LPD3D10INCLUDE pInclude, ID3DX11ThreadPump *pPump, ID3D10Blob** ppShaderText, ID3D10Blob** ppErrorMsgs, HRESULT* pHResult); - -HRESULT WINAPI D3DX11PreprocessShaderFromMemory(LPCSTR pSrcData, SIZE_T SrcDataSize, LPCSTR pFileName, CONST D3D10_SHADER_MACRO* pDefines, - LPD3D10INCLUDE pInclude, ID3DX11ThreadPump *pPump, ID3D10Blob** ppShaderText, ID3D10Blob** ppErrorMsgs, HRESULT* pHResult); - -HRESULT WINAPI D3DX11PreprocessShaderFromResourceA(HMODULE hModule, LPCSTR pResourceName, LPCSTR pSrcFileName, CONST D3D10_SHADER_MACRO* pDefines, - LPD3D10INCLUDE pInclude, ID3DX11ThreadPump *pPump, ID3D10Blob** ppShaderText, ID3D10Blob** ppErrorMsgs, HRESULT* pHResult); - -HRESULT WINAPI D3DX11PreprocessShaderFromResourceW(HMODULE hModule, LPCWSTR pResourceName, LPCWSTR pSrcFileName, CONST D3D10_SHADER_MACRO* pDefines, - LPD3D10INCLUDE pInclude, ID3DX11ThreadPump *pPump, ID3D10Blob** ppShaderText, ID3D10Blob** ppErrorMsgs, HRESULT* pHResult); - -#ifdef UNICODE -#define D3DX11PreprocessShaderFromFile D3DX11PreprocessShaderFromFileW -#define D3DX11PreprocessShaderFromResource D3DX11PreprocessShaderFromResourceW -#else -#define D3DX11PreprocessShaderFromFile D3DX11PreprocessShaderFromFileA -#define D3DX11PreprocessShaderFromResource D3DX11PreprocessShaderFromResourceA -#endif - -//---------------------------------------------------------------------------- -// Async processors -//---------------------------------------------------------------------------- - -HRESULT WINAPI D3DX11CreateAsyncCompilerProcessor(LPCSTR pFileName, CONST D3D10_SHADER_MACRO* pDefines, LPD3D10INCLUDE pInclude, - LPCSTR pFunctionName, LPCSTR pProfile, UINT Flags1, UINT Flags2, - ID3D10Blob **ppCompiledShader, ID3D10Blob **ppErrorBuffer, ID3DX11DataProcessor **ppProcessor); - -HRESULT WINAPI D3DX11CreateAsyncShaderPreprocessProcessor(LPCSTR pFileName, CONST D3D10_SHADER_MACRO* pDefines, LPD3D10INCLUDE pInclude, - ID3D10Blob** ppShaderText, ID3D10Blob **ppErrorBuffer, ID3DX11DataProcessor **ppProcessor); - -//---------------------------------------------------------------------------- -// D3DX11 Asynchronous texture I/O (advanced mode) -//---------------------------------------------------------------------------- - -HRESULT WINAPI D3DX11CreateAsyncFileLoaderW(LPCWSTR pFileName, ID3DX11DataLoader **ppDataLoader); -HRESULT WINAPI D3DX11CreateAsyncFileLoaderA(LPCSTR pFileName, ID3DX11DataLoader **ppDataLoader); -HRESULT WINAPI D3DX11CreateAsyncMemoryLoader(LPCVOID pData, SIZE_T cbData, ID3DX11DataLoader **ppDataLoader); -HRESULT WINAPI D3DX11CreateAsyncResourceLoaderW(HMODULE hSrcModule, LPCWSTR pSrcResource, ID3DX11DataLoader **ppDataLoader); -HRESULT WINAPI D3DX11CreateAsyncResourceLoaderA(HMODULE hSrcModule, LPCSTR pSrcResource, ID3DX11DataLoader **ppDataLoader); - -#ifdef UNICODE -#define D3DX11CreateAsyncFileLoader D3DX11CreateAsyncFileLoaderW -#define D3DX11CreateAsyncResourceLoader D3DX11CreateAsyncResourceLoaderW -#else -#define D3DX11CreateAsyncFileLoader D3DX11CreateAsyncFileLoaderA -#define D3DX11CreateAsyncResourceLoader D3DX11CreateAsyncResourceLoaderA -#endif - -HRESULT WINAPI D3DX11CreateAsyncTextureProcessor(ID3D11Device *pDevice, D3DX11_IMAGE_LOAD_INFO *pLoadInfo, ID3DX11DataProcessor **ppDataProcessor); -HRESULT WINAPI D3DX11CreateAsyncTextureInfoProcessor(D3DX11_IMAGE_INFO *pImageInfo, ID3DX11DataProcessor **ppDataProcessor); -HRESULT WINAPI D3DX11CreateAsyncShaderResourceViewProcessor(ID3D11Device *pDevice, D3DX11_IMAGE_LOAD_INFO *pLoadInfo, ID3DX11DataProcessor **ppDataProcessor); - -#ifdef __cplusplus -} -#endif //__cplusplus - -#endif //__D3DX11ASYNC_H__ - - diff --git a/SDK/Include/D3DX11core.h b/SDK/Include/D3DX11core.h deleted file mode 100644 index 18e9935..0000000 --- a/SDK/Include/D3DX11core.h +++ /dev/null @@ -1,128 +0,0 @@ -/////////////////////////////////////////////////////////////////////////// -// -// Copyright (C) Microsoft Corporation. All Rights Reserved. -// -// File: d3dx11core.h -// Content: D3DX11 core types and functions -// -/////////////////////////////////////////////////////////////////////////// - -#include "d3dx11.h" - -#ifndef __D3DX11CORE_H__ -#define __D3DX11CORE_H__ - -// Current name of the DLL shipped in the same SDK as this header. - - -#define D3DX11_DLL_W L"d3dx11_43.dll" -#define D3DX11_DLL_A "d3dx11_43.dll" - -#ifdef UNICODE - #define D3DX11_DLL D3DX11_DLL_W -#else - #define D3DX11_DLL D3DX11_DLL_A -#endif - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - -/////////////////////////////////////////////////////////////////////////// -// D3DX11_SDK_VERSION: -// ----------------- -// This identifier is passed to D3DX11CheckVersion in order to ensure that an -// application was built against the correct header files and lib files. -// This number is incremented whenever a header (or other) change would -// require applications to be rebuilt. If the version doesn't match, -// D3DX11CreateVersion will return FALSE. (The number itself has no meaning.) -/////////////////////////////////////////////////////////////////////////// - - -#define D3DX11_SDK_VERSION 43 - - -#ifdef D3D_DIAG_DLL -BOOL WINAPI D3DX11DebugMute(BOOL Mute); -#endif -HRESULT WINAPI D3DX11CheckVersion(UINT D3DSdkVersion, UINT D3DX11SdkVersion); - -#ifdef __cplusplus -} -#endif //__cplusplus - - - -////////////////////////////////////////////////////////////////////////////// -// ID3DX11ThreadPump: -////////////////////////////////////////////////////////////////////////////// - -#undef INTERFACE -#define INTERFACE ID3DX11DataLoader - -DECLARE_INTERFACE(ID3DX11DataLoader) -{ - STDMETHOD(Load)(THIS) PURE; - STDMETHOD(Decompress)(THIS_ void **ppData, SIZE_T *pcBytes) PURE; - STDMETHOD(Destroy)(THIS) PURE; -}; - -#undef INTERFACE -#define INTERFACE ID3DX11DataProcessor - -DECLARE_INTERFACE(ID3DX11DataProcessor) -{ - STDMETHOD(Process)(THIS_ void *pData, SIZE_T cBytes) PURE; - STDMETHOD(CreateDeviceObject)(THIS_ void **ppDataObject) PURE; - STDMETHOD(Destroy)(THIS) PURE; -}; - -// {C93FECFA-6967-478a-ABBC-402D90621FCB} -DEFINE_GUID(IID_ID3DX11ThreadPump, -0xc93fecfa, 0x6967, 0x478a, 0xab, 0xbc, 0x40, 0x2d, 0x90, 0x62, 0x1f, 0xcb); - -#undef INTERFACE -#define INTERFACE ID3DX11ThreadPump - -DECLARE_INTERFACE_(ID3DX11ThreadPump, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // ID3DX11ThreadPump - STDMETHOD(AddWorkItem)(THIS_ ID3DX11DataLoader *pDataLoader, ID3DX11DataProcessor *pDataProcessor, HRESULT *pHResult, void **ppDeviceObject) PURE; - STDMETHOD_(UINT, GetWorkItemCount)(THIS) PURE; - - STDMETHOD(WaitForAllItems)(THIS) PURE; - STDMETHOD(ProcessDeviceWorkItems)(THIS_ UINT iWorkItemCount); - - STDMETHOD(PurgeAllItems)(THIS) PURE; - STDMETHOD(GetQueueStatus)(THIS_ UINT *pIoQueue, UINT *pProcessQueue, UINT *pDeviceQueue) PURE; - -}; - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - -HRESULT WINAPI D3DX11CreateThreadPump(UINT cIoThreads, UINT cProcThreads, ID3DX11ThreadPump **ppThreadPump); - -HRESULT WINAPI D3DX11UnsetAllDeviceObjects(ID3D11DeviceContext *pContext); - -#ifdef __cplusplus -} -#endif //__cplusplus - -/////////////////////////////////////////////////////////////////////////// - -#define _FACD3D 0x876 -#define MAKE_D3DHRESULT( code ) MAKE_HRESULT( 1, _FACD3D, code ) -#define MAKE_D3DSTATUS( code ) MAKE_HRESULT( 0, _FACD3D, code ) - -#define D3DERR_INVALIDCALL MAKE_D3DHRESULT(2156) -#define D3DERR_WASSTILLDRAWING MAKE_D3DHRESULT(540) - -#endif //__D3DX11CORE_H__ - diff --git a/SDK/Include/D3DX11tex.h b/SDK/Include/D3DX11tex.h deleted file mode 100644 index 16c0409..0000000 --- a/SDK/Include/D3DX11tex.h +++ /dev/null @@ -1,772 +0,0 @@ -////////////////////////////////////////////////////////////////////////////// -// -// Copyright (C) Microsoft Corporation. All Rights Reserved. -// -// File: d3dx11tex.h -// Content: D3DX11 texturing APIs -// -////////////////////////////////////////////////////////////////////////////// - -#include "d3dx11.h" - -#ifndef __D3DX11TEX_H__ -#define __D3DX11TEX_H__ - - -//---------------------------------------------------------------------------- -// D3DX11_FILTER flags: -// ------------------ -// -// A valid filter must contain one of these values: -// -// D3DX11_FILTER_NONE -// No scaling or filtering will take place. Pixels outside the bounds -// of the source image are assumed to be transparent black. -// D3DX11_FILTER_POINT -// Each destination pixel is computed by sampling the nearest pixel -// from the source image. -// D3DX11_FILTER_LINEAR -// Each destination pixel is computed by linearly interpolating between -// the nearest pixels in the source image. This filter works best -// when the scale on each axis is less than 2. -// D3DX11_FILTER_TRIANGLE -// Every pixel in the source image contributes equally to the -// destination image. This is the slowest of all the filters. -// D3DX11_FILTER_BOX -// Each pixel is computed by averaging a 2x2(x2) box pixels from -// the source image. Only works when the dimensions of the -// destination are half those of the source. (as with mip maps) -// -// And can be OR'd with any of these optional flags: -// -// D3DX11_FILTER_MIRROR_U -// Indicates that pixels off the edge of the texture on the U-axis -// should be mirrored, not wraped. -// D3DX11_FILTER_MIRROR_V -// Indicates that pixels off the edge of the texture on the V-axis -// should be mirrored, not wraped. -// D3DX11_FILTER_MIRROR_W -// Indicates that pixels off the edge of the texture on the W-axis -// should be mirrored, not wraped. -// D3DX11_FILTER_MIRROR -// Same as specifying D3DX11_FILTER_MIRROR_U | D3DX11_FILTER_MIRROR_V | -// D3DX11_FILTER_MIRROR_V -// D3DX11_FILTER_DITHER -// Dithers the resulting image using a 4x4 order dither pattern. -// D3DX11_FILTER_SRGB_IN -// Denotes that the input data is in sRGB (gamma 2.2) colorspace. -// D3DX11_FILTER_SRGB_OUT -// Denotes that the output data is in sRGB (gamma 2.2) colorspace. -// D3DX11_FILTER_SRGB -// Same as specifying D3DX11_FILTER_SRGB_IN | D3DX11_FILTER_SRGB_OUT -// -//---------------------------------------------------------------------------- - -typedef enum D3DX11_FILTER_FLAG -{ - D3DX11_FILTER_NONE = (1 << 0), - D3DX11_FILTER_POINT = (2 << 0), - D3DX11_FILTER_LINEAR = (3 << 0), - D3DX11_FILTER_TRIANGLE = (4 << 0), - D3DX11_FILTER_BOX = (5 << 0), - - D3DX11_FILTER_MIRROR_U = (1 << 16), - D3DX11_FILTER_MIRROR_V = (2 << 16), - D3DX11_FILTER_MIRROR_W = (4 << 16), - D3DX11_FILTER_MIRROR = (7 << 16), - - D3DX11_FILTER_DITHER = (1 << 19), - D3DX11_FILTER_DITHER_DIFFUSION= (2 << 19), - - D3DX11_FILTER_SRGB_IN = (1 << 21), - D3DX11_FILTER_SRGB_OUT = (2 << 21), - D3DX11_FILTER_SRGB = (3 << 21), -} D3DX11_FILTER_FLAG; - -//---------------------------------------------------------------------------- -// D3DX11_NORMALMAP flags: -// --------------------- -// These flags are used to control how D3DX11ComputeNormalMap generates normal -// maps. Any number of these flags may be OR'd together in any combination. -// -// D3DX11_NORMALMAP_MIRROR_U -// Indicates that pixels off the edge of the texture on the U-axis -// should be mirrored, not wraped. -// D3DX11_NORMALMAP_MIRROR_V -// Indicates that pixels off the edge of the texture on the V-axis -// should be mirrored, not wraped. -// D3DX11_NORMALMAP_MIRROR -// Same as specifying D3DX11_NORMALMAP_MIRROR_U | D3DX11_NORMALMAP_MIRROR_V -// D3DX11_NORMALMAP_INVERTSIGN -// Inverts the direction of each normal -// D3DX11_NORMALMAP_COMPUTE_OCCLUSION -// Compute the per pixel Occlusion term and encodes it into the alpha. -// An Alpha of 1 means that the pixel is not obscured in anyway, and -// an alpha of 0 would mean that the pixel is completly obscured. -// -//---------------------------------------------------------------------------- - -typedef enum D3DX11_NORMALMAP_FLAG -{ - D3DX11_NORMALMAP_MIRROR_U = (1 << 16), - D3DX11_NORMALMAP_MIRROR_V = (2 << 16), - D3DX11_NORMALMAP_MIRROR = (3 << 16), - D3DX11_NORMALMAP_INVERTSIGN = (8 << 16), - D3DX11_NORMALMAP_COMPUTE_OCCLUSION = (16 << 16), -} D3DX11_NORMALMAP_FLAG; - -//---------------------------------------------------------------------------- -// D3DX11_CHANNEL flags: -// ------------------- -// These flags are used by functions which operate on or more channels -// in a texture. -// -// D3DX11_CHANNEL_RED -// Indicates the red channel should be used -// D3DX11_CHANNEL_BLUE -// Indicates the blue channel should be used -// D3DX11_CHANNEL_GREEN -// Indicates the green channel should be used -// D3DX11_CHANNEL_ALPHA -// Indicates the alpha channel should be used -// D3DX11_CHANNEL_LUMINANCE -// Indicates the luminaces of the red green and blue channels should be -// used. -// -//---------------------------------------------------------------------------- - -typedef enum D3DX11_CHANNEL_FLAG -{ - D3DX11_CHANNEL_RED = (1 << 0), - D3DX11_CHANNEL_BLUE = (1 << 1), - D3DX11_CHANNEL_GREEN = (1 << 2), - D3DX11_CHANNEL_ALPHA = (1 << 3), - D3DX11_CHANNEL_LUMINANCE = (1 << 4), -} D3DX11_CHANNEL_FLAG; - - - -//---------------------------------------------------------------------------- -// D3DX11_IMAGE_FILE_FORMAT: -// --------------------- -// This enum is used to describe supported image file formats. -// -//---------------------------------------------------------------------------- - -typedef enum D3DX11_IMAGE_FILE_FORMAT -{ - D3DX11_IFF_BMP = 0, - D3DX11_IFF_JPG = 1, - D3DX11_IFF_PNG = 3, - D3DX11_IFF_DDS = 4, - D3DX11_IFF_TIFF = 10, - D3DX11_IFF_GIF = 11, - D3DX11_IFF_WMP = 12, - D3DX11_IFF_FORCE_DWORD = 0x7fffffff - -} D3DX11_IMAGE_FILE_FORMAT; - - -//---------------------------------------------------------------------------- -// D3DX11_SAVE_TEXTURE_FLAG: -// --------------------- -// This enum is used to support texture saving options. -// -//---------------------------------------------------------------------------- - -typedef enum D3DX11_SAVE_TEXTURE_FLAG -{ - D3DX11_STF_USEINPUTBLOB = 0x0001, -} D3DX11_SAVE_TEXTURE_FLAG; - - -//---------------------------------------------------------------------------- -// D3DX11_IMAGE_INFO: -// --------------- -// This structure is used to return a rough description of what the -// the original contents of an image file looked like. -// -// Width -// Width of original image in pixels -// Height -// Height of original image in pixels -// Depth -// Depth of original image in pixels -// ArraySize -// Array size in textures -// MipLevels -// Number of mip levels in original image -// MiscFlags -// Miscellaneous flags -// Format -// D3D format which most closely describes the data in original image -// ResourceDimension -// D3D11_RESOURCE_DIMENSION representing the dimension of texture stored in the file. -// D3D11_RESOURCE_DIMENSION_TEXTURE1D, 2D, 3D -// ImageFileFormat -// D3DX11_IMAGE_FILE_FORMAT representing the format of the image file. -//---------------------------------------------------------------------------- - -typedef struct D3DX11_IMAGE_INFO -{ - UINT Width; - UINT Height; - UINT Depth; - UINT ArraySize; - UINT MipLevels; - UINT MiscFlags; - DXGI_FORMAT Format; - D3D11_RESOURCE_DIMENSION ResourceDimension; - D3DX11_IMAGE_FILE_FORMAT ImageFileFormat; -} D3DX11_IMAGE_INFO; - - - - - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - - - -////////////////////////////////////////////////////////////////////////////// -// Image File APIs /////////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -//---------------------------------------------------------------------------- -// D3DX11_IMAGE_LOAD_INFO: -// --------------- -// This structure can be optionally passed in to texture loader APIs to -// control how textures get loaded. Pass in D3DX11_DEFAULT for any of these -// to have D3DX automatically pick defaults based on the source file. -// -// Width -// Rescale texture to Width texels wide -// Height -// Rescale texture to Height texels high -// Depth -// Rescale texture to Depth texels deep -// FirstMipLevel -// First mip level to load -// MipLevels -// Number of mip levels to load after the first level -// Usage -// D3D11_USAGE flag for the new texture -// BindFlags -// D3D11 Bind flags for the new texture -// CpuAccessFlags -// D3D11 CPU Access flags for the new texture -// MiscFlags -// Reserved. Must be 0 -// Format -// Resample texture to the specified format -// Filter -// Filter the texture using the specified filter (only when resampling) -// MipFilter -// Filter the texture mip levels using the specified filter (only if -// generating mips) -// pSrcInfo -// (optional) pointer to a D3DX11_IMAGE_INFO structure that will get -// populated with source image information -//---------------------------------------------------------------------------- - - -typedef struct D3DX11_IMAGE_LOAD_INFO -{ - UINT Width; - UINT Height; - UINT Depth; - UINT FirstMipLevel; - UINT MipLevels; - D3D11_USAGE Usage; - UINT BindFlags; - UINT CpuAccessFlags; - UINT MiscFlags; - DXGI_FORMAT Format; - UINT Filter; - UINT MipFilter; - D3DX11_IMAGE_INFO* pSrcInfo; - -#ifdef __cplusplus - D3DX11_IMAGE_LOAD_INFO() - { - Width = D3DX11_DEFAULT; - Height = D3DX11_DEFAULT; - Depth = D3DX11_DEFAULT; - FirstMipLevel = D3DX11_DEFAULT; - MipLevels = D3DX11_DEFAULT; - Usage = (D3D11_USAGE) D3DX11_DEFAULT; - BindFlags = D3DX11_DEFAULT; - CpuAccessFlags = D3DX11_DEFAULT; - MiscFlags = D3DX11_DEFAULT; - Format = DXGI_FORMAT_FROM_FILE; - Filter = D3DX11_DEFAULT; - MipFilter = D3DX11_DEFAULT; - pSrcInfo = NULL; - } -#endif - -} D3DX11_IMAGE_LOAD_INFO; - -//------------------------------------------------------------------------------- -// GetImageInfoFromFile/Resource/Memory: -// ------------------------------ -// Fills in a D3DX11_IMAGE_INFO struct with information about an image file. -// -// Parameters: -// pSrcFile -// File name of the source image. -// pSrcModule -// Module where resource is located, or NULL for module associated -// with image the os used to create the current process. -// pSrcResource -// Resource name. -// pSrcData -// Pointer to file in memory. -// SrcDataSize -// Size in bytes of file in memory. -// pPump -// Optional pointer to a thread pump object to use. -// pSrcInfo -// Pointer to a D3DX11_IMAGE_INFO structure to be filled in with the -// description of the data in the source image file. -// pHResult -// Pointer to a memory location to receive the return value upon completion. -// Maybe NULL if not needed. -// If pPump != NULL, pHResult must be a valid memory location until the -// the asynchronous execution completes. -//------------------------------------------------------------------------------- - -HRESULT WINAPI - D3DX11GetImageInfoFromFileA( - LPCSTR pSrcFile, - ID3DX11ThreadPump* pPump, - D3DX11_IMAGE_INFO* pSrcInfo, - HRESULT* pHResult); - -HRESULT WINAPI - D3DX11GetImageInfoFromFileW( - LPCWSTR pSrcFile, - ID3DX11ThreadPump* pPump, - D3DX11_IMAGE_INFO* pSrcInfo, - HRESULT* pHResult); - -#ifdef UNICODE -#define D3DX11GetImageInfoFromFile D3DX11GetImageInfoFromFileW -#else -#define D3DX11GetImageInfoFromFile D3DX11GetImageInfoFromFileA -#endif - - -HRESULT WINAPI - D3DX11GetImageInfoFromResourceA( - HMODULE hSrcModule, - LPCSTR pSrcResource, - ID3DX11ThreadPump* pPump, - D3DX11_IMAGE_INFO* pSrcInfo, - HRESULT* pHResult); - -HRESULT WINAPI - D3DX11GetImageInfoFromResourceW( - HMODULE hSrcModule, - LPCWSTR pSrcResource, - ID3DX11ThreadPump* pPump, - D3DX11_IMAGE_INFO* pSrcInfo, - HRESULT* pHResult); - -#ifdef UNICODE -#define D3DX11GetImageInfoFromResource D3DX11GetImageInfoFromResourceW -#else -#define D3DX11GetImageInfoFromResource D3DX11GetImageInfoFromResourceA -#endif - - -HRESULT WINAPI - D3DX11GetImageInfoFromMemory( - LPCVOID pSrcData, - SIZE_T SrcDataSize, - ID3DX11ThreadPump* pPump, - D3DX11_IMAGE_INFO* pSrcInfo, - HRESULT* pHResult); - - -////////////////////////////////////////////////////////////////////////////// -// Create/Save Texture APIs ////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -//---------------------------------------------------------------------------- -// D3DX11CreateTextureFromFile/Resource/Memory: -// D3DX11CreateShaderResourceViewFromFile/Resource/Memory: -// ----------------------------------- -// Create a texture object from a file or resource. -// -// Parameters: -// -// pDevice -// The D3D device with which the texture is going to be used. -// pSrcFile -// File name. -// hSrcModule -// Module handle. if NULL, current module will be used. -// pSrcResource -// Resource name in module -// pvSrcData -// Pointer to file in memory. -// SrcDataSize -// Size in bytes of file in memory. -// pLoadInfo -// Optional pointer to a D3DX11_IMAGE_LOAD_INFO structure that -// contains additional loader parameters. -// pPump -// Optional pointer to a thread pump object to use. -// ppTexture -// [out] Created texture object. -// ppShaderResourceView -// [out] Shader resource view object created. -// pHResult -// Pointer to a memory location to receive the return value upon completion. -// Maybe NULL if not needed. -// If pPump != NULL, pHResult must be a valid memory location until the -// the asynchronous execution completes. -// -//---------------------------------------------------------------------------- - - -// FromFile - -HRESULT WINAPI - D3DX11CreateShaderResourceViewFromFileA( - ID3D11Device* pDevice, - LPCSTR pSrcFile, - D3DX11_IMAGE_LOAD_INFO *pLoadInfo, - ID3DX11ThreadPump* pPump, - ID3D11ShaderResourceView** ppShaderResourceView, - HRESULT* pHResult); - -HRESULT WINAPI - D3DX11CreateShaderResourceViewFromFileW( - ID3D11Device* pDevice, - LPCWSTR pSrcFile, - D3DX11_IMAGE_LOAD_INFO *pLoadInfo, - ID3DX11ThreadPump* pPump, - ID3D11ShaderResourceView** ppShaderResourceView, - HRESULT* pHResult); - -#ifdef UNICODE -#define D3DX11CreateShaderResourceViewFromFile D3DX11CreateShaderResourceViewFromFileW -#else -#define D3DX11CreateShaderResourceViewFromFile D3DX11CreateShaderResourceViewFromFileA -#endif - -HRESULT WINAPI - D3DX11CreateTextureFromFileA( - ID3D11Device* pDevice, - LPCSTR pSrcFile, - D3DX11_IMAGE_LOAD_INFO *pLoadInfo, - ID3DX11ThreadPump* pPump, - ID3D11Resource** ppTexture, - HRESULT* pHResult); - -HRESULT WINAPI - D3DX11CreateTextureFromFileW( - ID3D11Device* pDevice, - LPCWSTR pSrcFile, - D3DX11_IMAGE_LOAD_INFO *pLoadInfo, - ID3DX11ThreadPump* pPump, - ID3D11Resource** ppTexture, - HRESULT* pHResult); - -#ifdef UNICODE -#define D3DX11CreateTextureFromFile D3DX11CreateTextureFromFileW -#else -#define D3DX11CreateTextureFromFile D3DX11CreateTextureFromFileA -#endif - - -// FromResource (resources in dll/exes) - -HRESULT WINAPI - D3DX11CreateShaderResourceViewFromResourceA( - ID3D11Device* pDevice, - HMODULE hSrcModule, - LPCSTR pSrcResource, - D3DX11_IMAGE_LOAD_INFO* pLoadInfo, - ID3DX11ThreadPump* pPump, - ID3D11ShaderResourceView** ppShaderResourceView, - HRESULT* pHResult); - -HRESULT WINAPI - D3DX11CreateShaderResourceViewFromResourceW( - ID3D11Device* pDevice, - HMODULE hSrcModule, - LPCWSTR pSrcResource, - D3DX11_IMAGE_LOAD_INFO* pLoadInfo, - ID3DX11ThreadPump* pPump, - ID3D11ShaderResourceView** ppShaderResourceView, - HRESULT* pHResult); - -#ifdef UNICODE -#define D3DX11CreateShaderResourceViewFromResource D3DX11CreateShaderResourceViewFromResourceW -#else -#define D3DX11CreateShaderResourceViewFromResource D3DX11CreateShaderResourceViewFromResourceA -#endif - -HRESULT WINAPI - D3DX11CreateTextureFromResourceA( - ID3D11Device* pDevice, - HMODULE hSrcModule, - LPCSTR pSrcResource, - D3DX11_IMAGE_LOAD_INFO *pLoadInfo, - ID3DX11ThreadPump* pPump, - ID3D11Resource** ppTexture, - HRESULT* pHResult); - -HRESULT WINAPI - D3DX11CreateTextureFromResourceW( - ID3D11Device* pDevice, - HMODULE hSrcModule, - LPCWSTR pSrcResource, - D3DX11_IMAGE_LOAD_INFO* pLoadInfo, - ID3DX11ThreadPump* pPump, - ID3D11Resource** ppTexture, - HRESULT* pHResult); - -#ifdef UNICODE -#define D3DX11CreateTextureFromResource D3DX11CreateTextureFromResourceW -#else -#define D3DX11CreateTextureFromResource D3DX11CreateTextureFromResourceA -#endif - - -// FromFileInMemory - -HRESULT WINAPI - D3DX11CreateShaderResourceViewFromMemory( - ID3D11Device* pDevice, - LPCVOID pSrcData, - SIZE_T SrcDataSize, - D3DX11_IMAGE_LOAD_INFO* pLoadInfo, - ID3DX11ThreadPump* pPump, - ID3D11ShaderResourceView** ppShaderResourceView, - HRESULT* pHResult); - -HRESULT WINAPI - D3DX11CreateTextureFromMemory( - ID3D11Device* pDevice, - LPCVOID pSrcData, - SIZE_T SrcDataSize, - D3DX11_IMAGE_LOAD_INFO* pLoadInfo, - ID3DX11ThreadPump* pPump, - ID3D11Resource** ppTexture, - HRESULT* pHResult); - - -////////////////////////////////////////////////////////////////////////////// -// Misc Texture APIs ///////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -//---------------------------------------------------------------------------- -// D3DX11_TEXTURE_LOAD_INFO: -// ------------------------ -// -//---------------------------------------------------------------------------- - -typedef struct _D3DX11_TEXTURE_LOAD_INFO -{ - D3D11_BOX *pSrcBox; - D3D11_BOX *pDstBox; - UINT SrcFirstMip; - UINT DstFirstMip; - UINT NumMips; - UINT SrcFirstElement; - UINT DstFirstElement; - UINT NumElements; - UINT Filter; - UINT MipFilter; - -#ifdef __cplusplus - _D3DX11_TEXTURE_LOAD_INFO() - { - pSrcBox = NULL; - pDstBox = NULL; - SrcFirstMip = 0; - DstFirstMip = 0; - NumMips = D3DX11_DEFAULT; - SrcFirstElement = 0; - DstFirstElement = 0; - NumElements = D3DX11_DEFAULT; - Filter = D3DX11_DEFAULT; - MipFilter = D3DX11_DEFAULT; - } -#endif - -} D3DX11_TEXTURE_LOAD_INFO; - - -//---------------------------------------------------------------------------- -// D3DX11LoadTextureFromTexture: -// ---------------------------- -// Load a texture from a texture. -// -// Parameters: -// -//---------------------------------------------------------------------------- - - -HRESULT WINAPI - D3DX11LoadTextureFromTexture( - ID3D11DeviceContext *pContext, - ID3D11Resource *pSrcTexture, - D3DX11_TEXTURE_LOAD_INFO *pLoadInfo, - ID3D11Resource *pDstTexture); - - -//---------------------------------------------------------------------------- -// D3DX11FilterTexture: -// ------------------ -// Filters mipmaps levels of a texture. -// -// Parameters: -// pBaseTexture -// The texture object to be filtered -// SrcLevel -// The level whose image is used to generate the subsequent levels. -// MipFilter -// D3DX11_FILTER flags controlling how each miplevel is filtered. -// Or D3DX11_DEFAULT for D3DX11_FILTER_BOX, -// -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DX11FilterTexture( - ID3D11DeviceContext *pContext, - ID3D11Resource *pTexture, - UINT SrcLevel, - UINT MipFilter); - - -//---------------------------------------------------------------------------- -// D3DX11SaveTextureToFile: -// ---------------------- -// Save a texture to a file. -// -// Parameters: -// pDestFile -// File name of the destination file -// DestFormat -// D3DX11_IMAGE_FILE_FORMAT specifying file format to use when saving. -// pSrcTexture -// Source texture, containing the image to be saved -// -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DX11SaveTextureToFileA( - ID3D11DeviceContext *pContext, - ID3D11Resource *pSrcTexture, - D3DX11_IMAGE_FILE_FORMAT DestFormat, - LPCSTR pDestFile); - -HRESULT WINAPI - D3DX11SaveTextureToFileW( - ID3D11DeviceContext *pContext, - ID3D11Resource *pSrcTexture, - D3DX11_IMAGE_FILE_FORMAT DestFormat, - LPCWSTR pDestFile); - -#ifdef UNICODE -#define D3DX11SaveTextureToFile D3DX11SaveTextureToFileW -#else -#define D3DX11SaveTextureToFile D3DX11SaveTextureToFileA -#endif - - -//---------------------------------------------------------------------------- -// D3DX11SaveTextureToMemory: -// ---------------------- -// Save a texture to a blob. -// -// Parameters: -// pSrcTexture -// Source texture, containing the image to be saved -// DestFormat -// D3DX11_IMAGE_FILE_FORMAT specifying file format to use when saving. -// ppDestBuf -// address of a d3dxbuffer pointer to return the image data -// Flags -// optional flags -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DX11SaveTextureToMemory( - ID3D11DeviceContext *pContext, - ID3D11Resource* pSrcTexture, - D3DX11_IMAGE_FILE_FORMAT DestFormat, - ID3D10Blob** ppDestBuf, - UINT Flags); - - -//---------------------------------------------------------------------------- -// D3DX11ComputeNormalMap: -// --------------------- -// Converts a height map into a normal map. The (x,y,z) components of each -// normal are mapped to the (r,g,b) channels of the output texture. -// -// Parameters -// pSrcTexture -// Pointer to the source heightmap texture -// Flags -// D3DX11_NORMALMAP flags -// Channel -// D3DX11_CHANNEL specifying source of height information -// Amplitude -// The constant value which the height information is multiplied by. -// pDestTexture -// Pointer to the destination texture -//--------------------------------------------------------------------------- - -HRESULT WINAPI - D3DX11ComputeNormalMap( - ID3D11DeviceContext *pContext, - ID3D11Texture2D *pSrcTexture, - UINT Flags, - UINT Channel, - FLOAT Amplitude, - ID3D11Texture2D *pDestTexture); - - -//---------------------------------------------------------------------------- -// D3DX11SHProjectCubeMap: -// ---------------------- -// Projects a function represented in a cube map into spherical harmonics. -// -// Parameters: -// Order -// Order of the SH evaluation, generates Order^2 coefs, degree is Order-1 -// pCubeMap -// CubeMap that is going to be projected into spherical harmonics -// pROut -// Output SH vector for Red. -// pGOut -// Output SH vector for Green -// pBOut -// Output SH vector for Blue -// -//--------------------------------------------------------------------------- - -HRESULT WINAPI - D3DX11SHProjectCubeMap( - ID3D11DeviceContext *pContext, - __in_range(2,6) UINT Order, - ID3D11Texture2D *pCubeMap, - __out_ecount(Order*Order) FLOAT *pROut, - __out_ecount_opt(Order*Order) FLOAT *pGOut, - __out_ecount_opt(Order*Order) FLOAT *pBOut); - -#ifdef __cplusplus -} -#endif //__cplusplus - -#endif //__D3DX11TEX_H__ - diff --git a/SDK/Include/D3DX_DXGIFormatConvert.inl b/SDK/Include/D3DX_DXGIFormatConvert.inl deleted file mode 100644 index 1cfba72..0000000 --- a/SDK/Include/D3DX_DXGIFormatConvert.inl +++ /dev/null @@ -1,800 +0,0 @@ -//============================================================================= -// D3D11 HLSL Routines for Manual Pack/Unpack of 32-bit DXGI_FORMAT_* -//============================================================================= -// -// This file contains format conversion routines for use in the -// Compute Shader or Pixel Shader on D3D11 Hardware. -// -// Skip to the end of this comment to see a summary of the routines -// provided. The rest of the text below explains why they are needed -// and how to use them. -// -// The scenario where these can be useful is if your application -// needs to simultaneously both read and write texture - i.e. in-place -// image editing. -// -// D3D11's Unordered Access View (UAV) of a Texture1D/2D/3D resource -// allows random access reads and writes to memory from a Compute Shader -// or Pixel Shader. However, the only texture format that supports this -// is DXGI_FORMAT_R32_UINT. e.g. Other more interesting formats like -// DXGI_FORMAT_R8G8B8A8_UNORM do not support simultaneous read and -// write. You can use such formats for random access writing only -// using a UAV, or reading only using a Shader Resource View (SRV). -// But for simultaneous read+write, the format conversion hardware is -// not available. -// -// There is a workaround to this limitation, involving casting the texture -// to R32_UINT when creating a UAV, as long as the original format of the -// resource supports it (most 32 bit per element formats). This allows -// simultaneous read+write as long as the shader does manual format -// unpacking on read and packing on write. -// -// The benefit is that later on, other views such as RenderTarget Views -// or ShaderResource Views on the same texture can be used with the -// proper format (e.g. DXGI_FORMAT_R16G16_FLOAT) so the hardware can -// do the usual automatic format unpack/pack and do texture filtering etc. -// where there are no hardware limitations. -// -// The sequence of actions for an application is the following: -// -// Suppose you want to make a texture than you can use a Pixel Shader -// or Compute Shader to perform in-place editing, and that the format -// you want the data to be stored in happens to be a descendent -// of of one of these formats: -// -// DXGI_FORMAT_R10G10B10A2_TYPELESS -// DXGI_FORMAT_R8G8B8A8_TYPELESS -// DXGI_FORMAT_B8G8R8A8_TYPELESS -// DXGI_FORMAT_B8G8R8X8_TYPELESS -// DXGI_FORMAT_R16G16_TYPELESS -// -// e.g. DXGI_FORMAT_R10G10B10A2_UNORM is a descendent of -// DXGI_FORMAT_R10G10B10A2_TYPELESS, so it supports the -// usage pattern described here. -// -// (Formats descending from DXGI_FORMAT_R32_TYPELESS, such as -// DXGI_FORMAT_R32_FLOAT, are trivially supported without -// needing any of the format conversion help provided here.) -// -// Steps: -// -// (1) Create a texture with the appropriate _TYPELESS format above -// along with the needed bind flags, such as -// D3D11_BIND_UNORDERED_ACCESS | D3D11_BIND_SHADER_RESOURCE. -// -// (2) For in-place image editing, create a UAV with the format -// DXGI_FORMAT_R32_UINT. D3D normally doesn't allow casting -// between different format "families", but the API makes -// an exception here. -// -// (3) In the Compute Shader or Pixel Shader, use the appropriate -// format pack/unpack routines provided in this file. -// For example if the DXGI_FORMAT_R32_UINT UAV really holds -// DXGI_FORMAT_R10G10B10A2_UNORM data, then, after reading a -// uint from the UAV into the shader, unpack by calling: -// -// XMFLOAT4 D3DX_R10G10B10A2_UNORM_to_FLOAT4(UINT packedInput) -// -// Then to write to the UAV in the same shader, call the following -// to pack shader data into a uint that can be written out: -// -// UINT D3DX_FLOAT4_to_R10G10B10A2_UNORM(hlsl_precise XMFLOAT4 unpackedInput) -// -// (4) Other views, such as SRVs, can be created with the desired format; -// e.g. DXGI_FORMAT_R10G10B10A2_UNORM if the resource was created as -// DXGI_FORMAT_R10G10B10A2_TYPELESS. When that view is accessed by a -// shader, the hardware can do automatic type conversion as usual. -// -// Note, again, that if the shader only needs to write to a UAV, or read -// as an SRV, then none of this is needed - fully typed UAV or SRVs can -// be used. Only if simultaneous reading and writing to a UAV of a texture -// is needed are the format conversion routines provided here potentially -// useful. -// -// The following is the list of format conversion routines included in this -// file, categorized by the DXGI_FORMAT they unpack/pack. Each of the -// formats supported descends from one of the TYPELESS formats listed -// above, and supports casting to DXGI_FORMAT_R32_UINT as a UAV. -// -// DXGI_FORMAT_R10G10B10A2_UNORM: -// -// XMFLOAT4 D3DX_R10G10B10A2_UNORM_to_FLOAT4(UINT packedInput) -// UINT D3DX_FLOAT4_to_R10G10B10A2_UNORM(hlsl_precise XMFLOAT4 unpackedInput) -// -// DXGI_FORMAT_R10G10B10A2_UINT: -// -// XMUINT4 D3DX_R10G10B10A2_UINT_to_UINT4(UINT packedInput) -// UINT D3DX_UINT4_to_R10G10B10A2_UINT(XMUINT4 unpackedInput) -// -// DXGI_FORMAT_R8G8B8A8_UNORM: -// -// XMFLOAT4 D3DX_R8G8B8A8_UNORM_to_FLOAT4(UINT packedInput) -// UINT D3DX_FLOAT4_to_R8G8B8A8_UNORM(hlsl_precise XMFLOAT4 unpackedInput) -// -// DXGI_FORMAT_R8G8B8A8_UNORM_SRGB: -// -// XMFLOAT4 D3DX_R8G8B8A8_UNORM_SRGB_to_FLOAT4_inexact(UINT packedInput) * -// XMFLOAT4 D3DX_R8G8B8A8_UNORM_SRGB_to_FLOAT4(UINT packedInput) -// UINT D3DX_FLOAT4_to_R8G8B8A8_UNORM_SRGB(hlsl_precise XMFLOAT4 unpackedInput) -// -// * The "_inexact" function above uses shader instructions that don't -// have high enough precision to give the exact answer, albeit close. -// The alternative function uses a lookup table stored in the shader -// to give an exact SRGB->float conversion. -// -// DXGI_FORMAT_R8G8B8A8_UINT: -// -// XMUINT4 D3DX_R8G8B8A8_UINT_to_UINT4(UINT packedInput) -// XMUINT D3DX_UINT4_to_R8G8B8A8_UINT(XMUINT4 unpackedInput) -// -// DXGI_FORMAT_R8G8B8A8_SNORM: -// -// XMFLOAT4 D3DX_R8G8B8A8_SNORM_to_FLOAT4(UINT packedInput) -// UINT D3DX_FLOAT4_to_R8G8B8A8_SNORM(hlsl_precise XMFLOAT4 unpackedInput) -// -// DXGI_FORMAT_R8G8B8A8_SINT: -// -// XMINT4 D3DX_R8G8B8A8_SINT_to_INT4(UINT packedInput) -// UINT D3DX_INT4_to_R8G8B8A8_SINT(XMINT4 unpackedInput) -// -// DXGI_FORMAT_B8G8R8A8_UNORM: -// -// XMFLOAT4 D3DX_B8G8R8A8_UNORM_to_FLOAT4(UINT packedInput) -// UINT D3DX_FLOAT4_to_B8G8R8A8_UNORM(hlsl_precise XMFLOAT4 unpackedInput) -// -// DXGI_FORMAT_B8G8R8A8_UNORM_SRGB: -// -// XMFLOAT4 D3DX_B8G8R8A8_UNORM_SRGB_to_FLOAT4_inexact(UINT packedInput) * -// XMFLOAT4 D3DX_B8G8R8A8_UNORM_SRGB_to_FLOAT4(UINT packedInput) -// UINT D3DX_FLOAT4_to_R8G8B8A8_UNORM_SRGB(hlsl_precise XMFLOAT4 unpackedInput) -// -// * The "_inexact" function above uses shader instructions that don't -// have high enough precision to give the exact answer, albeit close. -// The alternative function uses a lookup table stored in the shader -// to give an exact SRGB->float conversion. -// -// DXGI_FORMAT_B8G8R8X8_UNORM: -// -// XMFLOAT3 D3DX_B8G8R8X8_UNORM_to_FLOAT3(UINT packedInput) -// UINT D3DX_FLOAT3_to_B8G8R8X8_UNORM(hlsl_precise XMFLOAT3 unpackedInput) -// -// DXGI_FORMAT_B8G8R8X8_UNORM_SRGB: -// -// XMFLOAT3 D3DX_B8G8R8X8_UNORM_SRGB_to_FLOAT3_inexact(UINT packedInput) * -// XMFLOAT3 D3DX_B8G8R8X8_UNORM_SRGB_to_FLOAT3(UINT packedInput) -// UINT D3DX_FLOAT3_to_B8G8R8X8_UNORM_SRGB(hlsl_precise XMFLOAT3 unpackedInput) -// -// * The "_inexact" function above uses shader instructions that don't -// have high enough precision to give the exact answer, albeit close. -// The alternative function uses a lookup table stored in the shader -// to give an exact SRGB->float conversion. -// -// DXGI_FORMAT_R16G16_FLOAT: -// -// XMFLOAT2 D3DX_R16G16_FLOAT_to_FLOAT2(UINT packedInput) -// UINT D3DX_FLOAT2_to_R16G16_FLOAT(hlsl_precise XMFLOAT2 unpackedInput) -// -// DXGI_FORMAT_R16G16_UNORM: -// -// XMFLOAT2 D3DX_R16G16_UNORM_to_FLOAT2(UINT packedInput) -// UINT D3DX_FLOAT2_to_R16G16_UNORM(hlsl_precise FLOAT2 unpackedInput) -// -// DXGI_FORMAT_R16G16_UINT: -// -// XMUINT2 D3DX_R16G16_UINT_to_UINT2(UINT packedInput) -// UINT D3DX_UINT2_to_R16G16_UINT(XMUINT2 unpackedInput) -// -// DXGI_FORMAT_R16G16_SNORM: -// -// XMFLOAT2 D3DX_R16G16_SNORM_to_FLOAT2(UINT packedInput) -// UINT D3DX_FLOAT2_to_R16G16_SNORM(hlsl_precise XMFLOAT2 unpackedInput) -// -// DXGI_FORMAT_R16G16_SINT: -// -// XMINT2 D3DX_R16G16_SINT_to_INT2(UINT packedInput) -// UINT D3DX_INT2_to_R16G16_SINT(XMINT2 unpackedInput) -// -//============================================================================= - -#ifndef __D3DX_DXGI_FORMAT_CONVERT_INL___ -#define __D3DX_DXGI_FORMAT_CONVERT_INL___ - -#if HLSL_VERSION > 0 - -#define D3DX11INLINE - -typedef int INT; -typedef uint UINT; - -typedef float2 XMFLOAT2; -typedef float3 XMFLOAT3; -typedef float4 XMFLOAT4; -typedef int2 XMINT2; -typedef int4 XMINT4; -typedef uint2 XMUINT2; -typedef uint4 XMUINT4; - -#define hlsl_precise precise - -#define D3DX_Saturate_FLOAT(_V) saturate(_V) -#define D3DX_IsNan(_V) isnan(_V) -#define D3DX_Truncate_FLOAT(_V) trunc(_V) - -#else // HLSL_VERSION > 0 - -#ifndef __cplusplus -#error C++ compilation required -#endif - -#include -#include - -#define hlsl_precise - -D3DX11INLINE FLOAT D3DX_Saturate_FLOAT(FLOAT _V) -{ - return min(max(_V, 0), 1); -} -D3DX11INLINE bool D3DX_IsNan(FLOAT _V) -{ - return _V != _V; -} -D3DX11INLINE FLOAT D3DX_Truncate_FLOAT(FLOAT _V) -{ - return _V >= 0 ? floor(_V) : ceil(_V); -} - -// 2D Vector; 32 bit signed integer components -typedef struct _XMINT2 -{ - INT x; - INT y; -} XMINT2; - -// 2D Vector; 32 bit unsigned integer components -typedef struct _XMUINT2 -{ - UINT x; - UINT y; -} XMUINT2; - -// 4D Vector; 32 bit signed integer components -typedef struct _XMINT4 -{ - INT x; - INT y; - INT z; - INT w; -} XMINT4; - -// 4D Vector; 32 bit unsigned integer components -typedef struct _XMUINT4 -{ - UINT x; - UINT y; - UINT z; - UINT w; -} XMUINT4; - -#endif // HLSL_VERSION > 0 - -//============================================================================= -// SRGB Helper Functions Called By Conversions Further Below. -//============================================================================= -// SRGB_to_FLOAT_inexact is imprecise due to precision of pow implementations. -// If exact SRGB->float conversion is needed, a table lookup is provided -// further below. -D3DX11INLINE FLOAT D3DX_SRGB_to_FLOAT_inexact(hlsl_precise FLOAT val) -{ - if( val < 0.04045f ) - val /= 12.92f; - else - val = pow((val + 0.055f)/1.055f,2.4f); - return val; -} - -static const UINT D3DX_SRGBTable[] = -{ - 0x00000000,0x399f22b4,0x3a1f22b4,0x3a6eb40e,0x3a9f22b4,0x3ac6eb61,0x3aeeb40e,0x3b0b3e5d, - 0x3b1f22b4,0x3b33070b,0x3b46eb61,0x3b5b518d,0x3b70f18d,0x3b83e1c6,0x3b8fe616,0x3b9c87fd, - 0x3ba9c9b7,0x3bb7ad6f,0x3bc63549,0x3bd56361,0x3be539c1,0x3bf5ba70,0x3c0373b5,0x3c0c6152, - 0x3c15a703,0x3c1f45be,0x3c293e6b,0x3c3391f7,0x3c3e4149,0x3c494d43,0x3c54b6c7,0x3c607eb1, - 0x3c6ca5df,0x3c792d22,0x3c830aa8,0x3c89af9f,0x3c9085db,0x3c978dc5,0x3c9ec7c2,0x3ca63433, - 0x3cadd37d,0x3cb5a601,0x3cbdac20,0x3cc5e639,0x3cce54ab,0x3cd6f7d5,0x3cdfd010,0x3ce8ddb9, - 0x3cf2212c,0x3cfb9ac1,0x3d02a569,0x3d0798dc,0x3d0ca7e6,0x3d11d2af,0x3d171963,0x3d1c7c2e, - 0x3d21fb3c,0x3d2796b2,0x3d2d4ebb,0x3d332380,0x3d39152b,0x3d3f23e3,0x3d454fd1,0x3d4b991c, - 0x3d51ffef,0x3d58846a,0x3d5f26b7,0x3d65e6fe,0x3d6cc564,0x3d73c20f,0x3d7add29,0x3d810b67, - 0x3d84b795,0x3d887330,0x3d8c3e4a,0x3d9018f6,0x3d940345,0x3d97fd4a,0x3d9c0716,0x3da020bb, - 0x3da44a4b,0x3da883d7,0x3daccd70,0x3db12728,0x3db59112,0x3dba0b3b,0x3dbe95b5,0x3dc33092, - 0x3dc7dbe2,0x3dcc97b6,0x3dd1641f,0x3dd6412c,0x3ddb2eef,0x3de02d77,0x3de53cd5,0x3dea5d19, - 0x3def8e52,0x3df4d091,0x3dfa23e8,0x3dff8861,0x3e027f07,0x3e054280,0x3e080ea3,0x3e0ae378, - 0x3e0dc105,0x3e10a754,0x3e13966b,0x3e168e52,0x3e198f10,0x3e1c98ad,0x3e1fab30,0x3e22c6a3, - 0x3e25eb09,0x3e29186c,0x3e2c4ed0,0x3e2f8e41,0x3e32d6c4,0x3e362861,0x3e39831e,0x3e3ce703, - 0x3e405416,0x3e43ca5f,0x3e4749e4,0x3e4ad2ae,0x3e4e64c2,0x3e520027,0x3e55a4e6,0x3e595303, - 0x3e5d0a8b,0x3e60cb7c,0x3e6495e0,0x3e6869bf,0x3e6c4720,0x3e702e0c,0x3e741e84,0x3e781890, - 0x3e7c1c38,0x3e8014c2,0x3e82203c,0x3e84308d,0x3e8645ba,0x3e885fc5,0x3e8a7eb2,0x3e8ca283, - 0x3e8ecb3d,0x3e90f8e1,0x3e932b74,0x3e9562f8,0x3e979f71,0x3e99e0e2,0x3e9c274e,0x3e9e72b7, - 0x3ea0c322,0x3ea31892,0x3ea57308,0x3ea7d289,0x3eaa3718,0x3eaca0b7,0x3eaf0f69,0x3eb18333, - 0x3eb3fc18,0x3eb67a18,0x3eb8fd37,0x3ebb8579,0x3ebe12e1,0x3ec0a571,0x3ec33d2d,0x3ec5da17, - 0x3ec87c33,0x3ecb2383,0x3ecdd00b,0x3ed081cd,0x3ed338cc,0x3ed5f50b,0x3ed8b68d,0x3edb7d54, - 0x3ede4965,0x3ee11ac1,0x3ee3f16b,0x3ee6cd67,0x3ee9aeb6,0x3eec955d,0x3eef815d,0x3ef272ba, - 0x3ef56976,0x3ef86594,0x3efb6717,0x3efe6e02,0x3f00bd2d,0x3f02460e,0x3f03d1a7,0x3f055ff9, - 0x3f06f106,0x3f0884cf,0x3f0a1b56,0x3f0bb49b,0x3f0d50a0,0x3f0eef67,0x3f1090f1,0x3f12353e, - 0x3f13dc51,0x3f15862b,0x3f1732cd,0x3f18e239,0x3f1a946f,0x3f1c4971,0x3f1e0141,0x3f1fbbdf, - 0x3f21794e,0x3f23398e,0x3f24fca0,0x3f26c286,0x3f288b41,0x3f2a56d3,0x3f2c253d,0x3f2df680, - 0x3f2fca9e,0x3f31a197,0x3f337b6c,0x3f355820,0x3f3737b3,0x3f391a26,0x3f3aff7c,0x3f3ce7b5, - 0x3f3ed2d2,0x3f40c0d4,0x3f42b1be,0x3f44a590,0x3f469c4b,0x3f4895f1,0x3f4a9282,0x3f4c9201, - 0x3f4e946e,0x3f5099cb,0x3f52a218,0x3f54ad57,0x3f56bb8a,0x3f58ccb0,0x3f5ae0cd,0x3f5cf7e0, - 0x3f5f11ec,0x3f612eee,0x3f634eef,0x3f6571e9,0x3f6797e3,0x3f69c0d6,0x3f6beccd,0x3f6e1bbf, - 0x3f704db8,0x3f7282af,0x3f74baae,0x3f76f5ae,0x3f7933b9,0x3f7b74c6,0x3f7db8e0,0x3f800000 -}; - -D3DX11INLINE FLOAT D3DX_SRGB_to_FLOAT(UINT val) -{ -#if HLSL_VERSION > 0 - return asfloat(D3DX_SRGBTable[val]); -#else - return *(FLOAT*)&D3DX_SRGBTable[val]; -#endif -} - -D3DX11INLINE FLOAT D3DX_FLOAT_to_SRGB(hlsl_precise FLOAT val) -{ - if( val < 0.0031308f ) - val *= 12.92f; - else - val = 1.055f * pow(val,1.0f/2.4f) - 0.055f; - return val; -} - -D3DX11INLINE FLOAT D3DX_SaturateSigned_FLOAT(FLOAT _V) -{ - if (D3DX_IsNan(_V)) - { - return 0; - } - - return min(max(_V, -1), 1); -} - -D3DX11INLINE UINT D3DX_FLOAT_to_UINT(FLOAT _V, - FLOAT _Scale) -{ - return (UINT)floor(_V * _Scale + 0.5f); -} - -D3DX11INLINE FLOAT D3DX_INT_to_FLOAT(INT _V, - FLOAT _Scale) -{ - FLOAT Scaled = (FLOAT)_V / _Scale; - // The integer is a two's-complement signed - // number so the negative range is slightly - // larger than the positive range, meaning - // the scaled value can be slight less than -1. - // Clamp to keep the float range [-1, 1]. - return max(Scaled, -1.0f); -} - -D3DX11INLINE INT D3DX_FLOAT_to_INT(FLOAT _V, - FLOAT _Scale) -{ - return (INT)D3DX_Truncate_FLOAT(_V * _Scale + (_V >= 0 ? 0.5f : -0.5f)); -} - -//============================================================================= -// Conversion routines -//============================================================================= -//----------------------------------------------------------------------------- -// R10B10G10A2_UNORM <-> FLOAT4 -//----------------------------------------------------------------------------- -D3DX11INLINE XMFLOAT4 D3DX_R10G10B10A2_UNORM_to_FLOAT4(UINT packedInput) -{ - hlsl_precise XMFLOAT4 unpackedOutput; - unpackedOutput.x = (FLOAT) (packedInput & 0x000003ff) / 1023; - unpackedOutput.y = (FLOAT)(((packedInput>>10) & 0x000003ff)) / 1023; - unpackedOutput.z = (FLOAT)(((packedInput>>20) & 0x000003ff)) / 1023; - unpackedOutput.w = (FLOAT)(((packedInput>>30) & 0x00000003)) / 3; - return unpackedOutput; -} - -D3DX11INLINE UINT D3DX_FLOAT4_to_R10G10B10A2_UNORM(hlsl_precise XMFLOAT4 unpackedInput) -{ - UINT packedOutput; - packedOutput = ( (D3DX_FLOAT_to_UINT(D3DX_Saturate_FLOAT(unpackedInput.x), 1023)) | - (D3DX_FLOAT_to_UINT(D3DX_Saturate_FLOAT(unpackedInput.y), 1023)<<10) | - (D3DX_FLOAT_to_UINT(D3DX_Saturate_FLOAT(unpackedInput.z), 1023)<<20) | - (D3DX_FLOAT_to_UINT(D3DX_Saturate_FLOAT(unpackedInput.w), 3)<<30) ); - return packedOutput; -} - -//----------------------------------------------------------------------------- -// R10B10G10A2_UINT <-> UINT4 -//----------------------------------------------------------------------------- -D3DX11INLINE XMUINT4 D3DX_R10G10B10A2_UINT_to_UINT4(UINT packedInput) -{ - XMUINT4 unpackedOutput; - unpackedOutput.x = packedInput & 0x000003ff; - unpackedOutput.y = (packedInput>>10) & 0x000003ff; - unpackedOutput.z = (packedInput>>20) & 0x000003ff; - unpackedOutput.w = (packedInput>>30) & 0x00000003; - return unpackedOutput; -} - -D3DX11INLINE UINT D3DX_UINT4_to_R10G10B10A2_UINT(XMUINT4 unpackedInput) -{ - UINT packedOutput; - unpackedInput.x = min(unpackedInput.x, 0x000003ff); - unpackedInput.y = min(unpackedInput.y, 0x000003ff); - unpackedInput.z = min(unpackedInput.z, 0x000003ff); - unpackedInput.w = min(unpackedInput.w, 0x00000003); - packedOutput = ( (unpackedInput.x) | - ((unpackedInput.y)<<10) | - ((unpackedInput.z)<<20) | - ((unpackedInput.w)<<30) ); - return packedOutput; -} - -//----------------------------------------------------------------------------- -// R8G8B8A8_UNORM <-> FLOAT4 -//----------------------------------------------------------------------------- -D3DX11INLINE XMFLOAT4 D3DX_R8G8B8A8_UNORM_to_FLOAT4(UINT packedInput) -{ - hlsl_precise XMFLOAT4 unpackedOutput; - unpackedOutput.x = (FLOAT) (packedInput & 0x000000ff) / 255; - unpackedOutput.y = (FLOAT)(((packedInput>> 8) & 0x000000ff)) / 255; - unpackedOutput.z = (FLOAT)(((packedInput>>16) & 0x000000ff)) / 255; - unpackedOutput.w = (FLOAT) (packedInput>>24) / 255; - return unpackedOutput; -} - -D3DX11INLINE UINT D3DX_FLOAT4_to_R8G8B8A8_UNORM(hlsl_precise XMFLOAT4 unpackedInput) -{ - UINT packedOutput; - packedOutput = ( (D3DX_FLOAT_to_UINT(D3DX_Saturate_FLOAT(unpackedInput.x), 255)) | - (D3DX_FLOAT_to_UINT(D3DX_Saturate_FLOAT(unpackedInput.y), 255)<< 8) | - (D3DX_FLOAT_to_UINT(D3DX_Saturate_FLOAT(unpackedInput.z), 255)<<16) | - (D3DX_FLOAT_to_UINT(D3DX_Saturate_FLOAT(unpackedInput.w), 255)<<24) ); - return packedOutput; -} - -//----------------------------------------------------------------------------- -// R8G8B8A8_UNORM_SRGB <-> FLOAT4 -//----------------------------------------------------------------------------- -D3DX11INLINE XMFLOAT4 D3DX_R8G8B8A8_UNORM_SRGB_to_FLOAT4_inexact(UINT packedInput) -{ - hlsl_precise XMFLOAT4 unpackedOutput; - unpackedOutput.x = D3DX_SRGB_to_FLOAT_inexact(((FLOAT) (packedInput & 0x000000ff) )/255); - unpackedOutput.y = D3DX_SRGB_to_FLOAT_inexact(((FLOAT)(((packedInput>> 8) & 0x000000ff)))/255); - unpackedOutput.z = D3DX_SRGB_to_FLOAT_inexact(((FLOAT)(((packedInput>>16) & 0x000000ff)))/255); - unpackedOutput.w = (FLOAT)(packedInput>>24) / 255; - return unpackedOutput; -} - -D3DX11INLINE XMFLOAT4 D3DX_R8G8B8A8_UNORM_SRGB_to_FLOAT4(UINT packedInput) -{ - hlsl_precise XMFLOAT4 unpackedOutput; - unpackedOutput.x = D3DX_SRGB_to_FLOAT( (packedInput & 0x000000ff) ); - unpackedOutput.y = D3DX_SRGB_to_FLOAT((((packedInput>> 8) & 0x000000ff))); - unpackedOutput.z = D3DX_SRGB_to_FLOAT((((packedInput>>16) & 0x000000ff))); - unpackedOutput.w = (FLOAT)(packedInput>>24) / 255; - return unpackedOutput; -} - -D3DX11INLINE UINT D3DX_FLOAT4_to_R8G8B8A8_UNORM_SRGB(hlsl_precise XMFLOAT4 unpackedInput) -{ - UINT packedOutput; - unpackedInput.x = D3DX_FLOAT_to_SRGB(D3DX_Saturate_FLOAT(unpackedInput.x)); - unpackedInput.y = D3DX_FLOAT_to_SRGB(D3DX_Saturate_FLOAT(unpackedInput.y)); - unpackedInput.z = D3DX_FLOAT_to_SRGB(D3DX_Saturate_FLOAT(unpackedInput.z)); - unpackedInput.w = D3DX_Saturate_FLOAT(unpackedInput.w); - packedOutput = ( (D3DX_FLOAT_to_UINT(unpackedInput.x, 255)) | - (D3DX_FLOAT_to_UINT(unpackedInput.y, 255)<< 8) | - (D3DX_FLOAT_to_UINT(unpackedInput.z, 255)<<16) | - (D3DX_FLOAT_to_UINT(unpackedInput.w, 255)<<24) ); - return packedOutput; -} - -//----------------------------------------------------------------------------- -// R8G8B8A8_UINT <-> UINT4 -//----------------------------------------------------------------------------- -D3DX11INLINE XMUINT4 D3DX_R8G8B8A8_UINT_to_UINT4(UINT packedInput) -{ - XMUINT4 unpackedOutput; - unpackedOutput.x = packedInput & 0x000000ff; - unpackedOutput.y = (packedInput>> 8) & 0x000000ff; - unpackedOutput.z = (packedInput>>16) & 0x000000ff; - unpackedOutput.w = packedInput>>24; - return unpackedOutput; -} - -D3DX11INLINE UINT D3DX_UINT4_to_R8G8B8A8_UINT(XMUINT4 unpackedInput) -{ - UINT packedOutput; - unpackedInput.x = min(unpackedInput.x, 0x000000ff); - unpackedInput.y = min(unpackedInput.y, 0x000000ff); - unpackedInput.z = min(unpackedInput.z, 0x000000ff); - unpackedInput.w = min(unpackedInput.w, 0x000000ff); - packedOutput = ( unpackedInput.x | - (unpackedInput.y<< 8) | - (unpackedInput.z<<16) | - (unpackedInput.w<<24) ); - return packedOutput; -} - -//----------------------------------------------------------------------------- -// R8G8B8A8_SNORM <-> FLOAT4 -//----------------------------------------------------------------------------- -D3DX11INLINE XMFLOAT4 D3DX_R8G8B8A8_SNORM_to_FLOAT4(UINT packedInput) -{ - hlsl_precise XMFLOAT4 unpackedOutput; - XMINT4 signExtendedBits; - signExtendedBits.x = (INT)(packedInput << 24) >> 24; - signExtendedBits.y = (INT)((packedInput << 16) & 0xff000000) >> 24; - signExtendedBits.z = (INT)((packedInput << 8) & 0xff000000) >> 24; - signExtendedBits.w = (INT)(packedInput & 0xff000000) >> 24; - unpackedOutput.x = D3DX_INT_to_FLOAT(signExtendedBits.x, 127); - unpackedOutput.y = D3DX_INT_to_FLOAT(signExtendedBits.y, 127); - unpackedOutput.z = D3DX_INT_to_FLOAT(signExtendedBits.z, 127); - unpackedOutput.w = D3DX_INT_to_FLOAT(signExtendedBits.w, 127); - return unpackedOutput; -} - -D3DX11INLINE UINT D3DX_FLOAT4_to_R8G8B8A8_SNORM(hlsl_precise XMFLOAT4 unpackedInput) -{ - UINT packedOutput; - packedOutput = ( (D3DX_FLOAT_to_INT(D3DX_SaturateSigned_FLOAT(unpackedInput.x), 127) & 0x000000ff) | - ((D3DX_FLOAT_to_INT(D3DX_SaturateSigned_FLOAT(unpackedInput.y), 127) & 0x000000ff)<< 8) | - ((D3DX_FLOAT_to_INT(D3DX_SaturateSigned_FLOAT(unpackedInput.z), 127) & 0x000000ff)<<16) | - ((D3DX_FLOAT_to_INT(D3DX_SaturateSigned_FLOAT(unpackedInput.w), 127)) <<24) ); - return packedOutput; -} - -//----------------------------------------------------------------------------- -// R8G8B8A8_SINT <-> INT4 -//----------------------------------------------------------------------------- -D3DX11INLINE XMINT4 D3DX_R8G8B8A8_SINT_to_INT4(UINT packedInput) -{ - XMINT4 unpackedOutput; - unpackedOutput.x = (INT)(packedInput << 24) >> 24; - unpackedOutput.y = (INT)((packedInput << 16) & 0xff000000) >> 24; - unpackedOutput.z = (INT)((packedInput << 8) & 0xff000000) >> 24; - unpackedOutput.w = (INT)(packedInput & 0xff000000) >> 24; - return unpackedOutput; -} - -D3DX11INLINE UINT D3DX_INT4_to_R8G8B8A8_SINT(XMINT4 unpackedInput) -{ - UINT packedOutput; - unpackedInput.x = max(min(unpackedInput.x,127),-128); - unpackedInput.y = max(min(unpackedInput.y,127),-128); - unpackedInput.z = max(min(unpackedInput.z,127),-128); - unpackedInput.w = max(min(unpackedInput.w,127),-128); - packedOutput = ( (unpackedInput.x & 0x000000ff) | - ((unpackedInput.y & 0x000000ff)<< 8) | - ((unpackedInput.z & 0x000000ff)<<16) | - (unpackedInput.w <<24) ); - return packedOutput; -} - -//----------------------------------------------------------------------------- -// B8G8R8A8_UNORM <-> FLOAT4 -//----------------------------------------------------------------------------- -D3DX11INLINE XMFLOAT4 D3DX_B8G8R8A8_UNORM_to_FLOAT4(UINT packedInput) -{ - hlsl_precise XMFLOAT4 unpackedOutput; - unpackedOutput.z = (FLOAT) (packedInput & 0x000000ff) / 255; - unpackedOutput.y = (FLOAT)(((packedInput>> 8) & 0x000000ff)) / 255; - unpackedOutput.x = (FLOAT)(((packedInput>>16) & 0x000000ff)) / 255; - unpackedOutput.w = (FLOAT) (packedInput>>24) / 255; - return unpackedOutput; -} - -D3DX11INLINE UINT D3DX_FLOAT4_to_B8G8R8A8_UNORM(hlsl_precise XMFLOAT4 unpackedInput) -{ - UINT packedOutput; - packedOutput = ( (D3DX_FLOAT_to_UINT(D3DX_Saturate_FLOAT(unpackedInput.z), 255)) | - (D3DX_FLOAT_to_UINT(D3DX_Saturate_FLOAT(unpackedInput.y), 255)<< 8) | - (D3DX_FLOAT_to_UINT(D3DX_Saturate_FLOAT(unpackedInput.x), 255)<<16) | - (D3DX_FLOAT_to_UINT(D3DX_Saturate_FLOAT(unpackedInput.w), 255)<<24) ); - return packedOutput; -} - -//----------------------------------------------------------------------------- -// B8G8R8A8_UNORM_SRGB <-> FLOAT4 -//----------------------------------------------------------------------------- -D3DX11INLINE XMFLOAT4 D3DX_B8G8R8A8_UNORM_SRGB_to_FLOAT4_inexact(UINT packedInput) -{ - hlsl_precise XMFLOAT4 unpackedOutput; - unpackedOutput.z = D3DX_SRGB_to_FLOAT_inexact(((FLOAT) (packedInput & 0x000000ff) )/255); - unpackedOutput.y = D3DX_SRGB_to_FLOAT_inexact(((FLOAT)(((packedInput>> 8) & 0x000000ff)))/255); - unpackedOutput.x = D3DX_SRGB_to_FLOAT_inexact(((FLOAT)(((packedInput>>16) & 0x000000ff)))/255); - unpackedOutput.w = (FLOAT)(packedInput>>24) / 255; - return unpackedOutput; -} - -D3DX11INLINE XMFLOAT4 D3DX_B8G8R8A8_UNORM_SRGB_to_FLOAT4(UINT packedInput) -{ - hlsl_precise XMFLOAT4 unpackedOutput; - unpackedOutput.z = D3DX_SRGB_to_FLOAT( (packedInput & 0x000000ff) ); - unpackedOutput.y = D3DX_SRGB_to_FLOAT((((packedInput>> 8) & 0x000000ff))); - unpackedOutput.x = D3DX_SRGB_to_FLOAT((((packedInput>>16) & 0x000000ff))); - unpackedOutput.w = (FLOAT)(packedInput>>24) / 255; - return unpackedOutput; -} - -D3DX11INLINE UINT D3DX_FLOAT4_to_B8G8R8A8_UNORM_SRGB(hlsl_precise XMFLOAT4 unpackedInput) -{ - UINT packedOutput; - unpackedInput.z = D3DX_FLOAT_to_SRGB(D3DX_Saturate_FLOAT(unpackedInput.z)); - unpackedInput.y = D3DX_FLOAT_to_SRGB(D3DX_Saturate_FLOAT(unpackedInput.y)); - unpackedInput.x = D3DX_FLOAT_to_SRGB(D3DX_Saturate_FLOAT(unpackedInput.x)); - unpackedInput.w = D3DX_Saturate_FLOAT(unpackedInput.w); - packedOutput = ( (D3DX_FLOAT_to_UINT(unpackedInput.z, 255)) | - (D3DX_FLOAT_to_UINT(unpackedInput.y, 255)<< 8) | - (D3DX_FLOAT_to_UINT(unpackedInput.x, 255)<<16) | - (D3DX_FLOAT_to_UINT(unpackedInput.w, 255)<<24) ); - return packedOutput; -} - -//----------------------------------------------------------------------------- -// B8G8R8X8_UNORM <-> FLOAT3 -//----------------------------------------------------------------------------- -D3DX11INLINE XMFLOAT3 D3DX_B8G8R8X8_UNORM_to_FLOAT3(UINT packedInput) -{ - hlsl_precise XMFLOAT3 unpackedOutput; - unpackedOutput.z = (FLOAT) (packedInput & 0x000000ff) / 255; - unpackedOutput.y = (FLOAT)(((packedInput>> 8) & 0x000000ff)) / 255; - unpackedOutput.x = (FLOAT)(((packedInput>>16) & 0x000000ff)) / 255; - return unpackedOutput; -} - -D3DX11INLINE UINT D3DX_FLOAT3_to_B8G8R8X8_UNORM(hlsl_precise XMFLOAT3 unpackedInput) -{ - UINT packedOutput; - packedOutput = ( (D3DX_FLOAT_to_UINT(D3DX_Saturate_FLOAT(unpackedInput.z), 255)) | - (D3DX_FLOAT_to_UINT(D3DX_Saturate_FLOAT(unpackedInput.y), 255)<< 8) | - (D3DX_FLOAT_to_UINT(D3DX_Saturate_FLOAT(unpackedInput.x), 255)<<16) ); - return packedOutput; -} - -//----------------------------------------------------------------------------- -// B8G8R8X8_UNORM_SRGB <-> FLOAT3 -//----------------------------------------------------------------------------- -D3DX11INLINE XMFLOAT3 D3DX_B8G8R8X8_UNORM_SRGB_to_FLOAT3_inexact(UINT packedInput) -{ - hlsl_precise XMFLOAT3 unpackedOutput; - unpackedOutput.z = D3DX_SRGB_to_FLOAT_inexact(((FLOAT) (packedInput & 0x000000ff) )/255); - unpackedOutput.y = D3DX_SRGB_to_FLOAT_inexact(((FLOAT)(((packedInput>> 8) & 0x000000ff)))/255); - unpackedOutput.x = D3DX_SRGB_to_FLOAT_inexact(((FLOAT)(((packedInput>>16) & 0x000000ff)))/255); - return unpackedOutput; -} - -D3DX11INLINE XMFLOAT3 D3DX_B8G8R8X8_UNORM_SRGB_to_FLOAT3(UINT packedInput) -{ - hlsl_precise XMFLOAT3 unpackedOutput; - unpackedOutput.z = D3DX_SRGB_to_FLOAT( (packedInput & 0x000000ff) ); - unpackedOutput.y = D3DX_SRGB_to_FLOAT((((packedInput>> 8) & 0x000000ff))); - unpackedOutput.x = D3DX_SRGB_to_FLOAT((((packedInput>>16) & 0x000000ff))); - return unpackedOutput; -} - -D3DX11INLINE UINT D3DX_FLOAT3_to_B8G8R8X8_UNORM_SRGB(hlsl_precise XMFLOAT3 unpackedInput) -{ - UINT packedOutput; - unpackedInput.z = D3DX_FLOAT_to_SRGB(D3DX_Saturate_FLOAT(unpackedInput.z)); - unpackedInput.y = D3DX_FLOAT_to_SRGB(D3DX_Saturate_FLOAT(unpackedInput.y)); - unpackedInput.x = D3DX_FLOAT_to_SRGB(D3DX_Saturate_FLOAT(unpackedInput.x)); - packedOutput = ( (D3DX_FLOAT_to_UINT(unpackedInput.z, 255)) | - (D3DX_FLOAT_to_UINT(unpackedInput.y, 255)<< 8) | - (D3DX_FLOAT_to_UINT(unpackedInput.x, 255)<<16) ); - return packedOutput; -} - -//----------------------------------------------------------------------------- -// R16G16_FLOAT <-> FLOAT2 -//----------------------------------------------------------------------------- - -#if HLSL_VERSION > 0 - -D3DX11INLINE XMFLOAT2 D3DX_R16G16_FLOAT_to_FLOAT2(UINT packedInput) -{ - hlsl_precise XMFLOAT2 unpackedOutput; - unpackedOutput.x = f16tof32(packedInput&0x0000ffff); - unpackedOutput.y = f16tof32(packedInput>>16); - return unpackedOutput; -} - -D3DX11INLINE UINT D3DX_FLOAT2_to_R16G16_FLOAT(hlsl_precise XMFLOAT2 unpackedInput) -{ - UINT packedOutput; - packedOutput = asuint(f32tof16(unpackedInput.x)) | - (asuint(f32tof16(unpackedInput.y)) << 16); - return packedOutput; -} - -#endif // HLSL_VERSION > 0 - -//----------------------------------------------------------------------------- -// R16G16_UNORM <-> FLOAT2 -//----------------------------------------------------------------------------- -D3DX11INLINE XMFLOAT2 D3DX_R16G16_UNORM_to_FLOAT2(UINT packedInput) -{ - hlsl_precise XMFLOAT2 unpackedOutput; - unpackedOutput.x = (FLOAT) (packedInput & 0x0000ffff) / 65535; - unpackedOutput.y = (FLOAT) (packedInput>>16) / 65535; - return unpackedOutput; -} - -D3DX11INLINE UINT D3DX_FLOAT2_to_R16G16_UNORM(hlsl_precise XMFLOAT2 unpackedInput) -{ - UINT packedOutput; - packedOutput = ( (D3DX_FLOAT_to_UINT(D3DX_Saturate_FLOAT(unpackedInput.x), 65535)) | - (D3DX_FLOAT_to_UINT(D3DX_Saturate_FLOAT(unpackedInput.y), 65535)<< 16) ); - return packedOutput; -} - -//----------------------------------------------------------------------------- -// R16G16_UINT <-> UINT2 -//----------------------------------------------------------------------------- -D3DX11INLINE XMUINT2 D3DX_R16G16_UINT_to_UINT2(UINT packedInput) -{ - XMUINT2 unpackedOutput; - unpackedOutput.x = packedInput & 0x0000ffff; - unpackedOutput.y = packedInput>>16; - return unpackedOutput; -} - -D3DX11INLINE UINT D3DX_UINT2_to_R16G16_UINT(XMUINT2 unpackedInput) -{ - UINT packedOutput; - unpackedInput.x = min(unpackedInput.x,0x0000ffff); - unpackedInput.y = min(unpackedInput.y,0x0000ffff); - packedOutput = ( unpackedInput.x | - (unpackedInput.y<<16) ); - return packedOutput; -} - -//----------------------------------------------------------------------------- -// R16G16_SNORM <-> FLOAT2 -//----------------------------------------------------------------------------- -D3DX11INLINE XMFLOAT2 D3DX_R16G16_SNORM_to_FLOAT2(UINT packedInput) -{ - hlsl_precise XMFLOAT2 unpackedOutput; - XMINT2 signExtendedBits; - signExtendedBits.x = (INT)(packedInput << 16) >> 16; - signExtendedBits.y = (INT)(packedInput & 0xffff0000) >> 16; - unpackedOutput.x = D3DX_INT_to_FLOAT(signExtendedBits.x, 32767); - unpackedOutput.y = D3DX_INT_to_FLOAT(signExtendedBits.y, 32767); - return unpackedOutput; -} - -D3DX11INLINE UINT D3DX_FLOAT2_to_R16G16_SNORM(hlsl_precise XMFLOAT2 unpackedInput) -{ - UINT packedOutput; - packedOutput = ( (D3DX_FLOAT_to_INT(D3DX_SaturateSigned_FLOAT(unpackedInput.x), 32767) & 0x0000ffff) | - (D3DX_FLOAT_to_INT(D3DX_SaturateSigned_FLOAT(unpackedInput.y), 32767) <<16) ); - return packedOutput; -} - -//----------------------------------------------------------------------------- -// R16G16_SINT <-> INT2 -//----------------------------------------------------------------------------- -D3DX11INLINE XMINT2 D3DX_R16G16_SINT_to_INT2(UINT packedInput) -{ - XMINT2 unpackedOutput; - unpackedOutput.x = (INT)(packedInput << 16) >> 16; - unpackedOutput.y = (INT)(packedInput & 0xffff0000) >> 16; - return unpackedOutput; -} - -D3DX11INLINE UINT D3DX_INT2_to_R16G16_SINT(XMINT2 unpackedInput) -{ - UINT packedOutput; - unpackedInput.x = max(min(unpackedInput.x,32767),-32768); - unpackedInput.y = max(min(unpackedInput.y,32767),-32768); - packedOutput = ( (unpackedInput.x & 0x0000ffff) | - (unpackedInput.y <<16) ); - return packedOutput; -} - -#endif // __D3DX_DXGI_FORMAT_CONVERT_INL___ diff --git a/SDK/Include/D3Dcommon.h b/SDK/Include/D3Dcommon.h deleted file mode 100644 index 032b8b5..0000000 --- a/SDK/Include/D3Dcommon.h +++ /dev/null @@ -1,787 +0,0 @@ - - -/* this ALWAYS GENERATED file contains the definitions for the interfaces */ - - - /* File created by MIDL compiler version 7.00.0555 */ -/* @@MIDL_FILE_HEADING( ) */ - -#pragma warning( disable: 4049 ) /* more than 64k source lines */ - - -/* verify that the version is high enough to compile this file*/ -#ifndef __REQUIRED_RPCNDR_H_VERSION__ -#define __REQUIRED_RPCNDR_H_VERSION__ 475 -#endif - -/* verify that the version is high enough to compile this file*/ -#ifndef __REQUIRED_RPCSAL_H_VERSION__ -#define __REQUIRED_RPCSAL_H_VERSION__ 100 -#endif - -#include "rpc.h" -#include "rpcndr.h" - -#ifndef __RPCNDR_H_VERSION__ -#error this stub requires an updated version of -#endif // __RPCNDR_H_VERSION__ - -#ifndef COM_NO_WINDOWS_H -#include "windows.h" -#include "ole2.h" -#endif /*COM_NO_WINDOWS_H*/ - -#ifndef __d3dcommon_h__ -#define __d3dcommon_h__ - -#if defined(_MSC_VER) && (_MSC_VER >= 1020) -#pragma once -#endif - -/* Forward Declarations */ - -#ifndef __ID3D10Blob_FWD_DEFINED__ -#define __ID3D10Blob_FWD_DEFINED__ -typedef interface ID3D10Blob ID3D10Blob; -#endif /* __ID3D10Blob_FWD_DEFINED__ */ - - -/* header files for imported files */ -#include "oaidl.h" -#include "ocidl.h" - -#ifdef __cplusplus -extern "C"{ -#endif - - -/* interface __MIDL_itf_d3dcommon_0000_0000 */ -/* [local] */ - -typedef -enum D3D_DRIVER_TYPE - { D3D_DRIVER_TYPE_UNKNOWN = 0, - D3D_DRIVER_TYPE_HARDWARE = ( D3D_DRIVER_TYPE_UNKNOWN + 1 ) , - D3D_DRIVER_TYPE_REFERENCE = ( D3D_DRIVER_TYPE_HARDWARE + 1 ) , - D3D_DRIVER_TYPE_NULL = ( D3D_DRIVER_TYPE_REFERENCE + 1 ) , - D3D_DRIVER_TYPE_SOFTWARE = ( D3D_DRIVER_TYPE_NULL + 1 ) , - D3D_DRIVER_TYPE_WARP = ( D3D_DRIVER_TYPE_SOFTWARE + 1 ) - } D3D_DRIVER_TYPE; - -typedef -enum D3D_FEATURE_LEVEL - { D3D_FEATURE_LEVEL_9_1 = 0x9100, - D3D_FEATURE_LEVEL_9_2 = 0x9200, - D3D_FEATURE_LEVEL_9_3 = 0x9300, - D3D_FEATURE_LEVEL_10_0 = 0xa000, - D3D_FEATURE_LEVEL_10_1 = 0xa100, - D3D_FEATURE_LEVEL_11_0 = 0xb000 - } D3D_FEATURE_LEVEL; - -typedef -enum D3D_PRIMITIVE_TOPOLOGY - { D3D_PRIMITIVE_TOPOLOGY_UNDEFINED = 0, - D3D_PRIMITIVE_TOPOLOGY_POINTLIST = 1, - D3D_PRIMITIVE_TOPOLOGY_LINELIST = 2, - D3D_PRIMITIVE_TOPOLOGY_LINESTRIP = 3, - D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST = 4, - D3D_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP = 5, - D3D_PRIMITIVE_TOPOLOGY_LINELIST_ADJ = 10, - D3D_PRIMITIVE_TOPOLOGY_LINESTRIP_ADJ = 11, - D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST_ADJ = 12, - D3D_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP_ADJ = 13, - D3D_PRIMITIVE_TOPOLOGY_1_CONTROL_POINT_PATCHLIST = 33, - D3D_PRIMITIVE_TOPOLOGY_2_CONTROL_POINT_PATCHLIST = 34, - D3D_PRIMITIVE_TOPOLOGY_3_CONTROL_POINT_PATCHLIST = 35, - D3D_PRIMITIVE_TOPOLOGY_4_CONTROL_POINT_PATCHLIST = 36, - D3D_PRIMITIVE_TOPOLOGY_5_CONTROL_POINT_PATCHLIST = 37, - D3D_PRIMITIVE_TOPOLOGY_6_CONTROL_POINT_PATCHLIST = 38, - D3D_PRIMITIVE_TOPOLOGY_7_CONTROL_POINT_PATCHLIST = 39, - D3D_PRIMITIVE_TOPOLOGY_8_CONTROL_POINT_PATCHLIST = 40, - D3D_PRIMITIVE_TOPOLOGY_9_CONTROL_POINT_PATCHLIST = 41, - D3D_PRIMITIVE_TOPOLOGY_10_CONTROL_POINT_PATCHLIST = 42, - D3D_PRIMITIVE_TOPOLOGY_11_CONTROL_POINT_PATCHLIST = 43, - D3D_PRIMITIVE_TOPOLOGY_12_CONTROL_POINT_PATCHLIST = 44, - D3D_PRIMITIVE_TOPOLOGY_13_CONTROL_POINT_PATCHLIST = 45, - D3D_PRIMITIVE_TOPOLOGY_14_CONTROL_POINT_PATCHLIST = 46, - D3D_PRIMITIVE_TOPOLOGY_15_CONTROL_POINT_PATCHLIST = 47, - D3D_PRIMITIVE_TOPOLOGY_16_CONTROL_POINT_PATCHLIST = 48, - D3D_PRIMITIVE_TOPOLOGY_17_CONTROL_POINT_PATCHLIST = 49, - D3D_PRIMITIVE_TOPOLOGY_18_CONTROL_POINT_PATCHLIST = 50, - D3D_PRIMITIVE_TOPOLOGY_19_CONTROL_POINT_PATCHLIST = 51, - D3D_PRIMITIVE_TOPOLOGY_20_CONTROL_POINT_PATCHLIST = 52, - D3D_PRIMITIVE_TOPOLOGY_21_CONTROL_POINT_PATCHLIST = 53, - D3D_PRIMITIVE_TOPOLOGY_22_CONTROL_POINT_PATCHLIST = 54, - D3D_PRIMITIVE_TOPOLOGY_23_CONTROL_POINT_PATCHLIST = 55, - D3D_PRIMITIVE_TOPOLOGY_24_CONTROL_POINT_PATCHLIST = 56, - D3D_PRIMITIVE_TOPOLOGY_25_CONTROL_POINT_PATCHLIST = 57, - D3D_PRIMITIVE_TOPOLOGY_26_CONTROL_POINT_PATCHLIST = 58, - D3D_PRIMITIVE_TOPOLOGY_27_CONTROL_POINT_PATCHLIST = 59, - D3D_PRIMITIVE_TOPOLOGY_28_CONTROL_POINT_PATCHLIST = 60, - D3D_PRIMITIVE_TOPOLOGY_29_CONTROL_POINT_PATCHLIST = 61, - D3D_PRIMITIVE_TOPOLOGY_30_CONTROL_POINT_PATCHLIST = 62, - D3D_PRIMITIVE_TOPOLOGY_31_CONTROL_POINT_PATCHLIST = 63, - D3D_PRIMITIVE_TOPOLOGY_32_CONTROL_POINT_PATCHLIST = 64, - D3D10_PRIMITIVE_TOPOLOGY_UNDEFINED = D3D_PRIMITIVE_TOPOLOGY_UNDEFINED, - D3D10_PRIMITIVE_TOPOLOGY_POINTLIST = D3D_PRIMITIVE_TOPOLOGY_POINTLIST, - D3D10_PRIMITIVE_TOPOLOGY_LINELIST = D3D_PRIMITIVE_TOPOLOGY_LINELIST, - D3D10_PRIMITIVE_TOPOLOGY_LINESTRIP = D3D_PRIMITIVE_TOPOLOGY_LINESTRIP, - D3D10_PRIMITIVE_TOPOLOGY_TRIANGLELIST = D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST, - D3D10_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP = D3D_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP, - D3D10_PRIMITIVE_TOPOLOGY_LINELIST_ADJ = D3D_PRIMITIVE_TOPOLOGY_LINELIST_ADJ, - D3D10_PRIMITIVE_TOPOLOGY_LINESTRIP_ADJ = D3D_PRIMITIVE_TOPOLOGY_LINESTRIP_ADJ, - D3D10_PRIMITIVE_TOPOLOGY_TRIANGLELIST_ADJ = D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST_ADJ, - D3D10_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP_ADJ = D3D_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP_ADJ, - D3D11_PRIMITIVE_TOPOLOGY_UNDEFINED = D3D_PRIMITIVE_TOPOLOGY_UNDEFINED, - D3D11_PRIMITIVE_TOPOLOGY_POINTLIST = D3D_PRIMITIVE_TOPOLOGY_POINTLIST, - D3D11_PRIMITIVE_TOPOLOGY_LINELIST = D3D_PRIMITIVE_TOPOLOGY_LINELIST, - D3D11_PRIMITIVE_TOPOLOGY_LINESTRIP = D3D_PRIMITIVE_TOPOLOGY_LINESTRIP, - D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST = D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST, - D3D11_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP = D3D_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP, - D3D11_PRIMITIVE_TOPOLOGY_LINELIST_ADJ = D3D_PRIMITIVE_TOPOLOGY_LINELIST_ADJ, - D3D11_PRIMITIVE_TOPOLOGY_LINESTRIP_ADJ = D3D_PRIMITIVE_TOPOLOGY_LINESTRIP_ADJ, - D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST_ADJ = D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST_ADJ, - D3D11_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP_ADJ = D3D_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP_ADJ, - D3D11_PRIMITIVE_TOPOLOGY_1_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_1_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_2_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_2_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_3_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_3_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_4_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_4_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_5_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_5_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_6_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_6_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_7_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_7_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_8_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_8_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_9_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_9_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_10_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_10_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_11_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_11_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_12_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_12_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_13_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_13_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_14_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_14_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_15_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_15_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_16_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_16_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_17_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_17_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_18_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_18_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_19_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_19_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_20_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_20_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_21_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_21_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_22_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_22_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_23_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_23_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_24_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_24_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_25_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_25_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_26_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_26_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_27_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_27_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_28_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_28_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_29_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_29_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_30_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_30_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_31_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_31_CONTROL_POINT_PATCHLIST, - D3D11_PRIMITIVE_TOPOLOGY_32_CONTROL_POINT_PATCHLIST = D3D_PRIMITIVE_TOPOLOGY_32_CONTROL_POINT_PATCHLIST - } D3D_PRIMITIVE_TOPOLOGY; - -typedef -enum D3D_PRIMITIVE - { D3D_PRIMITIVE_UNDEFINED = 0, - D3D_PRIMITIVE_POINT = 1, - D3D_PRIMITIVE_LINE = 2, - D3D_PRIMITIVE_TRIANGLE = 3, - D3D_PRIMITIVE_LINE_ADJ = 6, - D3D_PRIMITIVE_TRIANGLE_ADJ = 7, - D3D_PRIMITIVE_1_CONTROL_POINT_PATCH = 8, - D3D_PRIMITIVE_2_CONTROL_POINT_PATCH = 9, - D3D_PRIMITIVE_3_CONTROL_POINT_PATCH = 10, - D3D_PRIMITIVE_4_CONTROL_POINT_PATCH = 11, - D3D_PRIMITIVE_5_CONTROL_POINT_PATCH = 12, - D3D_PRIMITIVE_6_CONTROL_POINT_PATCH = 13, - D3D_PRIMITIVE_7_CONTROL_POINT_PATCH = 14, - D3D_PRIMITIVE_8_CONTROL_POINT_PATCH = 15, - D3D_PRIMITIVE_9_CONTROL_POINT_PATCH = 16, - D3D_PRIMITIVE_10_CONTROL_POINT_PATCH = 17, - D3D_PRIMITIVE_11_CONTROL_POINT_PATCH = 18, - D3D_PRIMITIVE_12_CONTROL_POINT_PATCH = 19, - D3D_PRIMITIVE_13_CONTROL_POINT_PATCH = 20, - D3D_PRIMITIVE_14_CONTROL_POINT_PATCH = 21, - D3D_PRIMITIVE_15_CONTROL_POINT_PATCH = 22, - D3D_PRIMITIVE_16_CONTROL_POINT_PATCH = 23, - D3D_PRIMITIVE_17_CONTROL_POINT_PATCH = 24, - D3D_PRIMITIVE_18_CONTROL_POINT_PATCH = 25, - D3D_PRIMITIVE_19_CONTROL_POINT_PATCH = 26, - D3D_PRIMITIVE_20_CONTROL_POINT_PATCH = 28, - D3D_PRIMITIVE_21_CONTROL_POINT_PATCH = 29, - D3D_PRIMITIVE_22_CONTROL_POINT_PATCH = 30, - D3D_PRIMITIVE_23_CONTROL_POINT_PATCH = 31, - D3D_PRIMITIVE_24_CONTROL_POINT_PATCH = 32, - D3D_PRIMITIVE_25_CONTROL_POINT_PATCH = 33, - D3D_PRIMITIVE_26_CONTROL_POINT_PATCH = 34, - D3D_PRIMITIVE_27_CONTROL_POINT_PATCH = 35, - D3D_PRIMITIVE_28_CONTROL_POINT_PATCH = 36, - D3D_PRIMITIVE_29_CONTROL_POINT_PATCH = 37, - D3D_PRIMITIVE_30_CONTROL_POINT_PATCH = 38, - D3D_PRIMITIVE_31_CONTROL_POINT_PATCH = 39, - D3D_PRIMITIVE_32_CONTROL_POINT_PATCH = 40, - D3D10_PRIMITIVE_UNDEFINED = D3D_PRIMITIVE_UNDEFINED, - D3D10_PRIMITIVE_POINT = D3D_PRIMITIVE_POINT, - D3D10_PRIMITIVE_LINE = D3D_PRIMITIVE_LINE, - D3D10_PRIMITIVE_TRIANGLE = D3D_PRIMITIVE_TRIANGLE, - D3D10_PRIMITIVE_LINE_ADJ = D3D_PRIMITIVE_LINE_ADJ, - D3D10_PRIMITIVE_TRIANGLE_ADJ = D3D_PRIMITIVE_TRIANGLE_ADJ, - D3D11_PRIMITIVE_UNDEFINED = D3D_PRIMITIVE_UNDEFINED, - D3D11_PRIMITIVE_POINT = D3D_PRIMITIVE_POINT, - D3D11_PRIMITIVE_LINE = D3D_PRIMITIVE_LINE, - D3D11_PRIMITIVE_TRIANGLE = D3D_PRIMITIVE_TRIANGLE, - D3D11_PRIMITIVE_LINE_ADJ = D3D_PRIMITIVE_LINE_ADJ, - D3D11_PRIMITIVE_TRIANGLE_ADJ = D3D_PRIMITIVE_TRIANGLE_ADJ, - D3D11_PRIMITIVE_1_CONTROL_POINT_PATCH = D3D_PRIMITIVE_1_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_2_CONTROL_POINT_PATCH = D3D_PRIMITIVE_2_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_3_CONTROL_POINT_PATCH = D3D_PRIMITIVE_3_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_4_CONTROL_POINT_PATCH = D3D_PRIMITIVE_4_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_5_CONTROL_POINT_PATCH = D3D_PRIMITIVE_5_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_6_CONTROL_POINT_PATCH = D3D_PRIMITIVE_6_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_7_CONTROL_POINT_PATCH = D3D_PRIMITIVE_7_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_8_CONTROL_POINT_PATCH = D3D_PRIMITIVE_8_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_9_CONTROL_POINT_PATCH = D3D_PRIMITIVE_9_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_10_CONTROL_POINT_PATCH = D3D_PRIMITIVE_10_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_11_CONTROL_POINT_PATCH = D3D_PRIMITIVE_11_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_12_CONTROL_POINT_PATCH = D3D_PRIMITIVE_12_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_13_CONTROL_POINT_PATCH = D3D_PRIMITIVE_13_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_14_CONTROL_POINT_PATCH = D3D_PRIMITIVE_14_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_15_CONTROL_POINT_PATCH = D3D_PRIMITIVE_15_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_16_CONTROL_POINT_PATCH = D3D_PRIMITIVE_16_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_17_CONTROL_POINT_PATCH = D3D_PRIMITIVE_17_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_18_CONTROL_POINT_PATCH = D3D_PRIMITIVE_18_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_19_CONTROL_POINT_PATCH = D3D_PRIMITIVE_19_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_20_CONTROL_POINT_PATCH = D3D_PRIMITIVE_20_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_21_CONTROL_POINT_PATCH = D3D_PRIMITIVE_21_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_22_CONTROL_POINT_PATCH = D3D_PRIMITIVE_22_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_23_CONTROL_POINT_PATCH = D3D_PRIMITIVE_23_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_24_CONTROL_POINT_PATCH = D3D_PRIMITIVE_24_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_25_CONTROL_POINT_PATCH = D3D_PRIMITIVE_25_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_26_CONTROL_POINT_PATCH = D3D_PRIMITIVE_26_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_27_CONTROL_POINT_PATCH = D3D_PRIMITIVE_27_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_28_CONTROL_POINT_PATCH = D3D_PRIMITIVE_28_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_29_CONTROL_POINT_PATCH = D3D_PRIMITIVE_29_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_30_CONTROL_POINT_PATCH = D3D_PRIMITIVE_30_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_31_CONTROL_POINT_PATCH = D3D_PRIMITIVE_31_CONTROL_POINT_PATCH, - D3D11_PRIMITIVE_32_CONTROL_POINT_PATCH = D3D_PRIMITIVE_32_CONTROL_POINT_PATCH - } D3D_PRIMITIVE; - -typedef -enum D3D_SRV_DIMENSION - { D3D_SRV_DIMENSION_UNKNOWN = 0, - D3D_SRV_DIMENSION_BUFFER = 1, - D3D_SRV_DIMENSION_TEXTURE1D = 2, - D3D_SRV_DIMENSION_TEXTURE1DARRAY = 3, - D3D_SRV_DIMENSION_TEXTURE2D = 4, - D3D_SRV_DIMENSION_TEXTURE2DARRAY = 5, - D3D_SRV_DIMENSION_TEXTURE2DMS = 6, - D3D_SRV_DIMENSION_TEXTURE2DMSARRAY = 7, - D3D_SRV_DIMENSION_TEXTURE3D = 8, - D3D_SRV_DIMENSION_TEXTURECUBE = 9, - D3D_SRV_DIMENSION_TEXTURECUBEARRAY = 10, - D3D_SRV_DIMENSION_BUFFEREX = 11, - D3D10_SRV_DIMENSION_UNKNOWN = D3D_SRV_DIMENSION_UNKNOWN, - D3D10_SRV_DIMENSION_BUFFER = D3D_SRV_DIMENSION_BUFFER, - D3D10_SRV_DIMENSION_TEXTURE1D = D3D_SRV_DIMENSION_TEXTURE1D, - D3D10_SRV_DIMENSION_TEXTURE1DARRAY = D3D_SRV_DIMENSION_TEXTURE1DARRAY, - D3D10_SRV_DIMENSION_TEXTURE2D = D3D_SRV_DIMENSION_TEXTURE2D, - D3D10_SRV_DIMENSION_TEXTURE2DARRAY = D3D_SRV_DIMENSION_TEXTURE2DARRAY, - D3D10_SRV_DIMENSION_TEXTURE2DMS = D3D_SRV_DIMENSION_TEXTURE2DMS, - D3D10_SRV_DIMENSION_TEXTURE2DMSARRAY = D3D_SRV_DIMENSION_TEXTURE2DMSARRAY, - D3D10_SRV_DIMENSION_TEXTURE3D = D3D_SRV_DIMENSION_TEXTURE3D, - D3D10_SRV_DIMENSION_TEXTURECUBE = D3D_SRV_DIMENSION_TEXTURECUBE, - D3D10_1_SRV_DIMENSION_UNKNOWN = D3D_SRV_DIMENSION_UNKNOWN, - D3D10_1_SRV_DIMENSION_BUFFER = D3D_SRV_DIMENSION_BUFFER, - D3D10_1_SRV_DIMENSION_TEXTURE1D = D3D_SRV_DIMENSION_TEXTURE1D, - D3D10_1_SRV_DIMENSION_TEXTURE1DARRAY = D3D_SRV_DIMENSION_TEXTURE1DARRAY, - D3D10_1_SRV_DIMENSION_TEXTURE2D = D3D_SRV_DIMENSION_TEXTURE2D, - D3D10_1_SRV_DIMENSION_TEXTURE2DARRAY = D3D_SRV_DIMENSION_TEXTURE2DARRAY, - D3D10_1_SRV_DIMENSION_TEXTURE2DMS = D3D_SRV_DIMENSION_TEXTURE2DMS, - D3D10_1_SRV_DIMENSION_TEXTURE2DMSARRAY = D3D_SRV_DIMENSION_TEXTURE2DMSARRAY, - D3D10_1_SRV_DIMENSION_TEXTURE3D = D3D_SRV_DIMENSION_TEXTURE3D, - D3D10_1_SRV_DIMENSION_TEXTURECUBE = D3D_SRV_DIMENSION_TEXTURECUBE, - D3D10_1_SRV_DIMENSION_TEXTURECUBEARRAY = D3D_SRV_DIMENSION_TEXTURECUBEARRAY, - D3D11_SRV_DIMENSION_UNKNOWN = D3D_SRV_DIMENSION_UNKNOWN, - D3D11_SRV_DIMENSION_BUFFER = D3D_SRV_DIMENSION_BUFFER, - D3D11_SRV_DIMENSION_TEXTURE1D = D3D_SRV_DIMENSION_TEXTURE1D, - D3D11_SRV_DIMENSION_TEXTURE1DARRAY = D3D_SRV_DIMENSION_TEXTURE1DARRAY, - D3D11_SRV_DIMENSION_TEXTURE2D = D3D_SRV_DIMENSION_TEXTURE2D, - D3D11_SRV_DIMENSION_TEXTURE2DARRAY = D3D_SRV_DIMENSION_TEXTURE2DARRAY, - D3D11_SRV_DIMENSION_TEXTURE2DMS = D3D_SRV_DIMENSION_TEXTURE2DMS, - D3D11_SRV_DIMENSION_TEXTURE2DMSARRAY = D3D_SRV_DIMENSION_TEXTURE2DMSARRAY, - D3D11_SRV_DIMENSION_TEXTURE3D = D3D_SRV_DIMENSION_TEXTURE3D, - D3D11_SRV_DIMENSION_TEXTURECUBE = D3D_SRV_DIMENSION_TEXTURECUBE, - D3D11_SRV_DIMENSION_TEXTURECUBEARRAY = D3D_SRV_DIMENSION_TEXTURECUBEARRAY, - D3D11_SRV_DIMENSION_BUFFEREX = D3D_SRV_DIMENSION_BUFFEREX - } D3D_SRV_DIMENSION; - -typedef struct _D3D_SHADER_MACRO - { - LPCSTR Name; - LPCSTR Definition; - } D3D_SHADER_MACRO; - -typedef struct _D3D_SHADER_MACRO *LPD3D_SHADER_MACRO; - -DEFINE_GUID(IID_ID3D10Blob, 0x8ba5fb08, 0x5195, 0x40e2, 0xac, 0x58, 0xd, 0x98, 0x9c, 0x3a, 0x1, 0x2); - - -extern RPC_IF_HANDLE __MIDL_itf_d3dcommon_0000_0000_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3dcommon_0000_0000_v0_0_s_ifspec; - -#ifndef __ID3D10Blob_INTERFACE_DEFINED__ -#define __ID3D10Blob_INTERFACE_DEFINED__ - -/* interface ID3D10Blob */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10Blob; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("8BA5FB08-5195-40e2-AC58-0D989C3A0102") - ID3D10Blob : public IUnknown - { - public: - virtual LPVOID STDMETHODCALLTYPE GetBufferPointer( void) = 0; - - virtual SIZE_T STDMETHODCALLTYPE GetBufferSize( void) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D10BlobVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10Blob * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10Blob * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10Blob * This); - - LPVOID ( STDMETHODCALLTYPE *GetBufferPointer )( - ID3D10Blob * This); - - SIZE_T ( STDMETHODCALLTYPE *GetBufferSize )( - ID3D10Blob * This); - - END_INTERFACE - } ID3D10BlobVtbl; - - interface ID3D10Blob - { - CONST_VTBL struct ID3D10BlobVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10Blob_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10Blob_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10Blob_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10Blob_GetBufferPointer(This) \ - ( (This)->lpVtbl -> GetBufferPointer(This) ) - -#define ID3D10Blob_GetBufferSize(This) \ - ( (This)->lpVtbl -> GetBufferSize(This) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10Blob_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3dcommon_0000_0001 */ -/* [local] */ - -typedef interface ID3D10Blob* LPD3D10BLOB; -typedef ID3D10Blob ID3DBlob; -typedef ID3DBlob* LPD3DBLOB; -#define IID_ID3DBlob IID_ID3D10Blob -typedef -enum _D3D_INCLUDE_TYPE - { D3D_INCLUDE_LOCAL = 0, - D3D_INCLUDE_SYSTEM = ( D3D_INCLUDE_LOCAL + 1 ) , - D3D10_INCLUDE_LOCAL = D3D_INCLUDE_LOCAL, - D3D10_INCLUDE_SYSTEM = D3D_INCLUDE_SYSTEM, - D3D_INCLUDE_FORCE_DWORD = 0x7fffffff - } D3D_INCLUDE_TYPE; - -typedef interface ID3DInclude ID3DInclude; -#undef INTERFACE -#define INTERFACE ID3DInclude -DECLARE_INTERFACE(ID3DInclude) -{ - STDMETHOD(Open)(THIS_ D3D_INCLUDE_TYPE IncludeType, LPCSTR pFileName, LPCVOID pParentData, LPCVOID *ppData, UINT *pBytes) PURE; - STDMETHOD(Close)(THIS_ LPCVOID pData) PURE; -}; -typedef ID3DInclude* LPD3DINCLUDE; -typedef -enum _D3D_SHADER_VARIABLE_CLASS - { D3D_SVC_SCALAR = 0, - D3D_SVC_VECTOR = ( D3D_SVC_SCALAR + 1 ) , - D3D_SVC_MATRIX_ROWS = ( D3D_SVC_VECTOR + 1 ) , - D3D_SVC_MATRIX_COLUMNS = ( D3D_SVC_MATRIX_ROWS + 1 ) , - D3D_SVC_OBJECT = ( D3D_SVC_MATRIX_COLUMNS + 1 ) , - D3D_SVC_STRUCT = ( D3D_SVC_OBJECT + 1 ) , - D3D_SVC_INTERFACE_CLASS = ( D3D_SVC_STRUCT + 1 ) , - D3D_SVC_INTERFACE_POINTER = ( D3D_SVC_INTERFACE_CLASS + 1 ) , - D3D10_SVC_SCALAR = D3D_SVC_SCALAR, - D3D10_SVC_VECTOR = D3D_SVC_VECTOR, - D3D10_SVC_MATRIX_ROWS = D3D_SVC_MATRIX_ROWS, - D3D10_SVC_MATRIX_COLUMNS = D3D_SVC_MATRIX_COLUMNS, - D3D10_SVC_OBJECT = D3D_SVC_OBJECT, - D3D10_SVC_STRUCT = D3D_SVC_STRUCT, - D3D11_SVC_INTERFACE_CLASS = D3D_SVC_INTERFACE_CLASS, - D3D11_SVC_INTERFACE_POINTER = D3D_SVC_INTERFACE_POINTER, - D3D_SVC_FORCE_DWORD = 0x7fffffff - } D3D_SHADER_VARIABLE_CLASS; - -typedef -enum _D3D_SHADER_VARIABLE_FLAGS - { D3D_SVF_USERPACKED = 1, - D3D_SVF_USED = 2, - D3D_SVF_INTERFACE_POINTER = 4, - D3D_SVF_INTERFACE_PARAMETER = 8, - D3D10_SVF_USERPACKED = D3D_SVF_USERPACKED, - D3D10_SVF_USED = D3D_SVF_USED, - D3D11_SVF_INTERFACE_POINTER = D3D_SVF_INTERFACE_POINTER, - D3D11_SVF_INTERFACE_PARAMETER = D3D_SVF_INTERFACE_PARAMETER, - D3D_SVF_FORCE_DWORD = 0x7fffffff - } D3D_SHADER_VARIABLE_FLAGS; - -typedef -enum _D3D_SHADER_VARIABLE_TYPE - { D3D_SVT_VOID = 0, - D3D_SVT_BOOL = 1, - D3D_SVT_INT = 2, - D3D_SVT_FLOAT = 3, - D3D_SVT_STRING = 4, - D3D_SVT_TEXTURE = 5, - D3D_SVT_TEXTURE1D = 6, - D3D_SVT_TEXTURE2D = 7, - D3D_SVT_TEXTURE3D = 8, - D3D_SVT_TEXTURECUBE = 9, - D3D_SVT_SAMPLER = 10, - D3D_SVT_SAMPLER1D = 11, - D3D_SVT_SAMPLER2D = 12, - D3D_SVT_SAMPLER3D = 13, - D3D_SVT_SAMPLERCUBE = 14, - D3D_SVT_PIXELSHADER = 15, - D3D_SVT_VERTEXSHADER = 16, - D3D_SVT_PIXELFRAGMENT = 17, - D3D_SVT_VERTEXFRAGMENT = 18, - D3D_SVT_UINT = 19, - D3D_SVT_UINT8 = 20, - D3D_SVT_GEOMETRYSHADER = 21, - D3D_SVT_RASTERIZER = 22, - D3D_SVT_DEPTHSTENCIL = 23, - D3D_SVT_BLEND = 24, - D3D_SVT_BUFFER = 25, - D3D_SVT_CBUFFER = 26, - D3D_SVT_TBUFFER = 27, - D3D_SVT_TEXTURE1DARRAY = 28, - D3D_SVT_TEXTURE2DARRAY = 29, - D3D_SVT_RENDERTARGETVIEW = 30, - D3D_SVT_DEPTHSTENCILVIEW = 31, - D3D_SVT_TEXTURE2DMS = 32, - D3D_SVT_TEXTURE2DMSARRAY = 33, - D3D_SVT_TEXTURECUBEARRAY = 34, - D3D_SVT_HULLSHADER = 35, - D3D_SVT_DOMAINSHADER = 36, - D3D_SVT_INTERFACE_POINTER = 37, - D3D_SVT_COMPUTESHADER = 38, - D3D_SVT_DOUBLE = 39, - D3D_SVT_RWTEXTURE1D = 40, - D3D_SVT_RWTEXTURE1DARRAY = 41, - D3D_SVT_RWTEXTURE2D = 42, - D3D_SVT_RWTEXTURE2DARRAY = 43, - D3D_SVT_RWTEXTURE3D = 44, - D3D_SVT_RWBUFFER = 45, - D3D_SVT_BYTEADDRESS_BUFFER = 46, - D3D_SVT_RWBYTEADDRESS_BUFFER = 47, - D3D_SVT_STRUCTURED_BUFFER = 48, - D3D_SVT_RWSTRUCTURED_BUFFER = 49, - D3D_SVT_APPEND_STRUCTURED_BUFFER = 50, - D3D_SVT_CONSUME_STRUCTURED_BUFFER = 51, - D3D10_SVT_VOID = D3D_SVT_VOID, - D3D10_SVT_BOOL = D3D_SVT_BOOL, - D3D10_SVT_INT = D3D_SVT_INT, - D3D10_SVT_FLOAT = D3D_SVT_FLOAT, - D3D10_SVT_STRING = D3D_SVT_STRING, - D3D10_SVT_TEXTURE = D3D_SVT_TEXTURE, - D3D10_SVT_TEXTURE1D = D3D_SVT_TEXTURE1D, - D3D10_SVT_TEXTURE2D = D3D_SVT_TEXTURE2D, - D3D10_SVT_TEXTURE3D = D3D_SVT_TEXTURE3D, - D3D10_SVT_TEXTURECUBE = D3D_SVT_TEXTURECUBE, - D3D10_SVT_SAMPLER = D3D_SVT_SAMPLER, - D3D10_SVT_SAMPLER1D = D3D_SVT_SAMPLER1D, - D3D10_SVT_SAMPLER2D = D3D_SVT_SAMPLER2D, - D3D10_SVT_SAMPLER3D = D3D_SVT_SAMPLER3D, - D3D10_SVT_SAMPLERCUBE = D3D_SVT_SAMPLERCUBE, - D3D10_SVT_PIXELSHADER = D3D_SVT_PIXELSHADER, - D3D10_SVT_VERTEXSHADER = D3D_SVT_VERTEXSHADER, - D3D10_SVT_PIXELFRAGMENT = D3D_SVT_PIXELFRAGMENT, - D3D10_SVT_VERTEXFRAGMENT = D3D_SVT_VERTEXFRAGMENT, - D3D10_SVT_UINT = D3D_SVT_UINT, - D3D10_SVT_UINT8 = D3D_SVT_UINT8, - D3D10_SVT_GEOMETRYSHADER = D3D_SVT_GEOMETRYSHADER, - D3D10_SVT_RASTERIZER = D3D_SVT_RASTERIZER, - D3D10_SVT_DEPTHSTENCIL = D3D_SVT_DEPTHSTENCIL, - D3D10_SVT_BLEND = D3D_SVT_BLEND, - D3D10_SVT_BUFFER = D3D_SVT_BUFFER, - D3D10_SVT_CBUFFER = D3D_SVT_CBUFFER, - D3D10_SVT_TBUFFER = D3D_SVT_TBUFFER, - D3D10_SVT_TEXTURE1DARRAY = D3D_SVT_TEXTURE1DARRAY, - D3D10_SVT_TEXTURE2DARRAY = D3D_SVT_TEXTURE2DARRAY, - D3D10_SVT_RENDERTARGETVIEW = D3D_SVT_RENDERTARGETVIEW, - D3D10_SVT_DEPTHSTENCILVIEW = D3D_SVT_DEPTHSTENCILVIEW, - D3D10_SVT_TEXTURE2DMS = D3D_SVT_TEXTURE2DMS, - D3D10_SVT_TEXTURE2DMSARRAY = D3D_SVT_TEXTURE2DMSARRAY, - D3D10_SVT_TEXTURECUBEARRAY = D3D_SVT_TEXTURECUBEARRAY, - D3D11_SVT_HULLSHADER = D3D_SVT_HULLSHADER, - D3D11_SVT_DOMAINSHADER = D3D_SVT_DOMAINSHADER, - D3D11_SVT_INTERFACE_POINTER = D3D_SVT_INTERFACE_POINTER, - D3D11_SVT_COMPUTESHADER = D3D_SVT_COMPUTESHADER, - D3D11_SVT_DOUBLE = D3D_SVT_DOUBLE, - D3D11_SVT_RWTEXTURE1D = D3D_SVT_RWTEXTURE1D, - D3D11_SVT_RWTEXTURE1DARRAY = D3D_SVT_RWTEXTURE1DARRAY, - D3D11_SVT_RWTEXTURE2D = D3D_SVT_RWTEXTURE2D, - D3D11_SVT_RWTEXTURE2DARRAY = D3D_SVT_RWTEXTURE2DARRAY, - D3D11_SVT_RWTEXTURE3D = D3D_SVT_RWTEXTURE3D, - D3D11_SVT_RWBUFFER = D3D_SVT_RWBUFFER, - D3D11_SVT_BYTEADDRESS_BUFFER = D3D_SVT_BYTEADDRESS_BUFFER, - D3D11_SVT_RWBYTEADDRESS_BUFFER = D3D_SVT_RWBYTEADDRESS_BUFFER, - D3D11_SVT_STRUCTURED_BUFFER = D3D_SVT_STRUCTURED_BUFFER, - D3D11_SVT_RWSTRUCTURED_BUFFER = D3D_SVT_RWSTRUCTURED_BUFFER, - D3D11_SVT_APPEND_STRUCTURED_BUFFER = D3D_SVT_APPEND_STRUCTURED_BUFFER, - D3D11_SVT_CONSUME_STRUCTURED_BUFFER = D3D_SVT_CONSUME_STRUCTURED_BUFFER, - D3D_SVT_FORCE_DWORD = 0x7fffffff - } D3D_SHADER_VARIABLE_TYPE; - -typedef -enum _D3D_SHADER_INPUT_FLAGS - { D3D_SIF_USERPACKED = 1, - D3D_SIF_COMPARISON_SAMPLER = 2, - D3D_SIF_TEXTURE_COMPONENT_0 = 4, - D3D_SIF_TEXTURE_COMPONENT_1 = 8, - D3D_SIF_TEXTURE_COMPONENTS = 12, - D3D10_SIF_USERPACKED = D3D_SIF_USERPACKED, - D3D10_SIF_COMPARISON_SAMPLER = D3D_SIF_COMPARISON_SAMPLER, - D3D10_SIF_TEXTURE_COMPONENT_0 = D3D_SIF_TEXTURE_COMPONENT_0, - D3D10_SIF_TEXTURE_COMPONENT_1 = D3D_SIF_TEXTURE_COMPONENT_1, - D3D10_SIF_TEXTURE_COMPONENTS = D3D_SIF_TEXTURE_COMPONENTS, - D3D_SIF_FORCE_DWORD = 0x7fffffff - } D3D_SHADER_INPUT_FLAGS; - -typedef -enum _D3D_SHADER_INPUT_TYPE - { D3D_SIT_CBUFFER = 0, - D3D_SIT_TBUFFER = ( D3D_SIT_CBUFFER + 1 ) , - D3D_SIT_TEXTURE = ( D3D_SIT_TBUFFER + 1 ) , - D3D_SIT_SAMPLER = ( D3D_SIT_TEXTURE + 1 ) , - D3D_SIT_UAV_RWTYPED = ( D3D_SIT_SAMPLER + 1 ) , - D3D_SIT_STRUCTURED = ( D3D_SIT_UAV_RWTYPED + 1 ) , - D3D_SIT_UAV_RWSTRUCTURED = ( D3D_SIT_STRUCTURED + 1 ) , - D3D_SIT_BYTEADDRESS = ( D3D_SIT_UAV_RWSTRUCTURED + 1 ) , - D3D_SIT_UAV_RWBYTEADDRESS = ( D3D_SIT_BYTEADDRESS + 1 ) , - D3D_SIT_UAV_APPEND_STRUCTURED = ( D3D_SIT_UAV_RWBYTEADDRESS + 1 ) , - D3D_SIT_UAV_CONSUME_STRUCTURED = ( D3D_SIT_UAV_APPEND_STRUCTURED + 1 ) , - D3D_SIT_UAV_RWSTRUCTURED_WITH_COUNTER = ( D3D_SIT_UAV_CONSUME_STRUCTURED + 1 ) , - D3D10_SIT_CBUFFER = D3D_SIT_CBUFFER, - D3D10_SIT_TBUFFER = D3D_SIT_TBUFFER, - D3D10_SIT_TEXTURE = D3D_SIT_TEXTURE, - D3D10_SIT_SAMPLER = D3D_SIT_SAMPLER, - D3D11_SIT_UAV_RWTYPED = D3D_SIT_UAV_RWTYPED, - D3D11_SIT_STRUCTURED = D3D_SIT_STRUCTURED, - D3D11_SIT_UAV_RWSTRUCTURED = D3D_SIT_UAV_RWSTRUCTURED, - D3D11_SIT_BYTEADDRESS = D3D_SIT_BYTEADDRESS, - D3D11_SIT_UAV_RWBYTEADDRESS = D3D_SIT_UAV_RWBYTEADDRESS, - D3D11_SIT_UAV_APPEND_STRUCTURED = D3D_SIT_UAV_APPEND_STRUCTURED, - D3D11_SIT_UAV_CONSUME_STRUCTURED = D3D_SIT_UAV_CONSUME_STRUCTURED, - D3D11_SIT_UAV_RWSTRUCTURED_WITH_COUNTER = D3D_SIT_UAV_RWSTRUCTURED_WITH_COUNTER - } D3D_SHADER_INPUT_TYPE; - -typedef -enum _D3D_SHADER_CBUFFER_FLAGS - { D3D_CBF_USERPACKED = 1, - D3D10_CBF_USERPACKED = D3D_CBF_USERPACKED, - D3D_CBF_FORCE_DWORD = 0x7fffffff - } D3D_SHADER_CBUFFER_FLAGS; - -typedef -enum _D3D_CBUFFER_TYPE - { D3D_CT_CBUFFER = 0, - D3D_CT_TBUFFER = ( D3D_CT_CBUFFER + 1 ) , - D3D_CT_INTERFACE_POINTERS = ( D3D_CT_TBUFFER + 1 ) , - D3D_CT_RESOURCE_BIND_INFO = ( D3D_CT_INTERFACE_POINTERS + 1 ) , - D3D10_CT_CBUFFER = D3D_CT_CBUFFER, - D3D10_CT_TBUFFER = D3D_CT_TBUFFER, - D3D11_CT_CBUFFER = D3D_CT_CBUFFER, - D3D11_CT_TBUFFER = D3D_CT_TBUFFER, - D3D11_CT_INTERFACE_POINTERS = D3D_CT_INTERFACE_POINTERS, - D3D11_CT_RESOURCE_BIND_INFO = D3D_CT_RESOURCE_BIND_INFO - } D3D_CBUFFER_TYPE; - -typedef -enum D3D_NAME - { D3D_NAME_UNDEFINED = 0, - D3D_NAME_POSITION = 1, - D3D_NAME_CLIP_DISTANCE = 2, - D3D_NAME_CULL_DISTANCE = 3, - D3D_NAME_RENDER_TARGET_ARRAY_INDEX = 4, - D3D_NAME_VIEWPORT_ARRAY_INDEX = 5, - D3D_NAME_VERTEX_ID = 6, - D3D_NAME_PRIMITIVE_ID = 7, - D3D_NAME_INSTANCE_ID = 8, - D3D_NAME_IS_FRONT_FACE = 9, - D3D_NAME_SAMPLE_INDEX = 10, - D3D_NAME_FINAL_QUAD_EDGE_TESSFACTOR = 11, - D3D_NAME_FINAL_QUAD_INSIDE_TESSFACTOR = 12, - D3D_NAME_FINAL_TRI_EDGE_TESSFACTOR = 13, - D3D_NAME_FINAL_TRI_INSIDE_TESSFACTOR = 14, - D3D_NAME_FINAL_LINE_DETAIL_TESSFACTOR = 15, - D3D_NAME_FINAL_LINE_DENSITY_TESSFACTOR = 16, - D3D_NAME_TARGET = 64, - D3D_NAME_DEPTH = 65, - D3D_NAME_COVERAGE = 66, - D3D_NAME_DEPTH_GREATER_EQUAL = 67, - D3D_NAME_DEPTH_LESS_EQUAL = 68, - D3D10_NAME_UNDEFINED = D3D_NAME_UNDEFINED, - D3D10_NAME_POSITION = D3D_NAME_POSITION, - D3D10_NAME_CLIP_DISTANCE = D3D_NAME_CLIP_DISTANCE, - D3D10_NAME_CULL_DISTANCE = D3D_NAME_CULL_DISTANCE, - D3D10_NAME_RENDER_TARGET_ARRAY_INDEX = D3D_NAME_RENDER_TARGET_ARRAY_INDEX, - D3D10_NAME_VIEWPORT_ARRAY_INDEX = D3D_NAME_VIEWPORT_ARRAY_INDEX, - D3D10_NAME_VERTEX_ID = D3D_NAME_VERTEX_ID, - D3D10_NAME_PRIMITIVE_ID = D3D_NAME_PRIMITIVE_ID, - D3D10_NAME_INSTANCE_ID = D3D_NAME_INSTANCE_ID, - D3D10_NAME_IS_FRONT_FACE = D3D_NAME_IS_FRONT_FACE, - D3D10_NAME_SAMPLE_INDEX = D3D_NAME_SAMPLE_INDEX, - D3D10_NAME_TARGET = D3D_NAME_TARGET, - D3D10_NAME_DEPTH = D3D_NAME_DEPTH, - D3D10_NAME_COVERAGE = D3D_NAME_COVERAGE, - D3D11_NAME_FINAL_QUAD_EDGE_TESSFACTOR = D3D_NAME_FINAL_QUAD_EDGE_TESSFACTOR, - D3D11_NAME_FINAL_QUAD_INSIDE_TESSFACTOR = D3D_NAME_FINAL_QUAD_INSIDE_TESSFACTOR, - D3D11_NAME_FINAL_TRI_EDGE_TESSFACTOR = D3D_NAME_FINAL_TRI_EDGE_TESSFACTOR, - D3D11_NAME_FINAL_TRI_INSIDE_TESSFACTOR = D3D_NAME_FINAL_TRI_INSIDE_TESSFACTOR, - D3D11_NAME_FINAL_LINE_DETAIL_TESSFACTOR = D3D_NAME_FINAL_LINE_DETAIL_TESSFACTOR, - D3D11_NAME_FINAL_LINE_DENSITY_TESSFACTOR = D3D_NAME_FINAL_LINE_DENSITY_TESSFACTOR, - D3D11_NAME_DEPTH_GREATER_EQUAL = D3D_NAME_DEPTH_GREATER_EQUAL, - D3D11_NAME_DEPTH_LESS_EQUAL = D3D_NAME_DEPTH_LESS_EQUAL - } D3D_NAME; - -typedef -enum D3D_RESOURCE_RETURN_TYPE - { D3D_RETURN_TYPE_UNORM = 1, - D3D_RETURN_TYPE_SNORM = 2, - D3D_RETURN_TYPE_SINT = 3, - D3D_RETURN_TYPE_UINT = 4, - D3D_RETURN_TYPE_FLOAT = 5, - D3D_RETURN_TYPE_MIXED = 6, - D3D_RETURN_TYPE_DOUBLE = 7, - D3D_RETURN_TYPE_CONTINUED = 8, - D3D10_RETURN_TYPE_UNORM = D3D_RETURN_TYPE_UNORM, - D3D10_RETURN_TYPE_SNORM = D3D_RETURN_TYPE_SNORM, - D3D10_RETURN_TYPE_SINT = D3D_RETURN_TYPE_SINT, - D3D10_RETURN_TYPE_UINT = D3D_RETURN_TYPE_UINT, - D3D10_RETURN_TYPE_FLOAT = D3D_RETURN_TYPE_FLOAT, - D3D10_RETURN_TYPE_MIXED = D3D_RETURN_TYPE_MIXED, - D3D11_RETURN_TYPE_UNORM = D3D_RETURN_TYPE_UNORM, - D3D11_RETURN_TYPE_SNORM = D3D_RETURN_TYPE_SNORM, - D3D11_RETURN_TYPE_SINT = D3D_RETURN_TYPE_SINT, - D3D11_RETURN_TYPE_UINT = D3D_RETURN_TYPE_UINT, - D3D11_RETURN_TYPE_FLOAT = D3D_RETURN_TYPE_FLOAT, - D3D11_RETURN_TYPE_MIXED = D3D_RETURN_TYPE_MIXED, - D3D11_RETURN_TYPE_DOUBLE = D3D_RETURN_TYPE_DOUBLE, - D3D11_RETURN_TYPE_CONTINUED = D3D_RETURN_TYPE_CONTINUED - } D3D_RESOURCE_RETURN_TYPE; - -typedef -enum D3D_REGISTER_COMPONENT_TYPE - { D3D_REGISTER_COMPONENT_UNKNOWN = 0, - D3D_REGISTER_COMPONENT_UINT32 = 1, - D3D_REGISTER_COMPONENT_SINT32 = 2, - D3D_REGISTER_COMPONENT_FLOAT32 = 3, - D3D10_REGISTER_COMPONENT_UNKNOWN = D3D_REGISTER_COMPONENT_UNKNOWN, - D3D10_REGISTER_COMPONENT_UINT32 = D3D_REGISTER_COMPONENT_UINT32, - D3D10_REGISTER_COMPONENT_SINT32 = D3D_REGISTER_COMPONENT_SINT32, - D3D10_REGISTER_COMPONENT_FLOAT32 = D3D_REGISTER_COMPONENT_FLOAT32 - } D3D_REGISTER_COMPONENT_TYPE; - -typedef -enum D3D_TESSELLATOR_DOMAIN - { D3D_TESSELLATOR_DOMAIN_UNDEFINED = 0, - D3D_TESSELLATOR_DOMAIN_ISOLINE = 1, - D3D_TESSELLATOR_DOMAIN_TRI = 2, - D3D_TESSELLATOR_DOMAIN_QUAD = 3, - D3D11_TESSELLATOR_DOMAIN_UNDEFINED = D3D_TESSELLATOR_DOMAIN_UNDEFINED, - D3D11_TESSELLATOR_DOMAIN_ISOLINE = D3D_TESSELLATOR_DOMAIN_ISOLINE, - D3D11_TESSELLATOR_DOMAIN_TRI = D3D_TESSELLATOR_DOMAIN_TRI, - D3D11_TESSELLATOR_DOMAIN_QUAD = D3D_TESSELLATOR_DOMAIN_QUAD - } D3D_TESSELLATOR_DOMAIN; - -typedef -enum D3D_TESSELLATOR_PARTITIONING - { D3D_TESSELLATOR_PARTITIONING_UNDEFINED = 0, - D3D_TESSELLATOR_PARTITIONING_INTEGER = 1, - D3D_TESSELLATOR_PARTITIONING_POW2 = 2, - D3D_TESSELLATOR_PARTITIONING_FRACTIONAL_ODD = 3, - D3D_TESSELLATOR_PARTITIONING_FRACTIONAL_EVEN = 4, - D3D11_TESSELLATOR_PARTITIONING_UNDEFINED = D3D_TESSELLATOR_PARTITIONING_UNDEFINED, - D3D11_TESSELLATOR_PARTITIONING_INTEGER = D3D_TESSELLATOR_PARTITIONING_INTEGER, - D3D11_TESSELLATOR_PARTITIONING_POW2 = D3D_TESSELLATOR_PARTITIONING_POW2, - D3D11_TESSELLATOR_PARTITIONING_FRACTIONAL_ODD = D3D_TESSELLATOR_PARTITIONING_FRACTIONAL_ODD, - D3D11_TESSELLATOR_PARTITIONING_FRACTIONAL_EVEN = D3D_TESSELLATOR_PARTITIONING_FRACTIONAL_EVEN - } D3D_TESSELLATOR_PARTITIONING; - -typedef -enum D3D_TESSELLATOR_OUTPUT_PRIMITIVE - { D3D_TESSELLATOR_OUTPUT_UNDEFINED = 0, - D3D_TESSELLATOR_OUTPUT_POINT = 1, - D3D_TESSELLATOR_OUTPUT_LINE = 2, - D3D_TESSELLATOR_OUTPUT_TRIANGLE_CW = 3, - D3D_TESSELLATOR_OUTPUT_TRIANGLE_CCW = 4, - D3D11_TESSELLATOR_OUTPUT_UNDEFINED = D3D_TESSELLATOR_OUTPUT_UNDEFINED, - D3D11_TESSELLATOR_OUTPUT_POINT = D3D_TESSELLATOR_OUTPUT_POINT, - D3D11_TESSELLATOR_OUTPUT_LINE = D3D_TESSELLATOR_OUTPUT_LINE, - D3D11_TESSELLATOR_OUTPUT_TRIANGLE_CW = D3D_TESSELLATOR_OUTPUT_TRIANGLE_CW, - D3D11_TESSELLATOR_OUTPUT_TRIANGLE_CCW = D3D_TESSELLATOR_OUTPUT_TRIANGLE_CCW - } D3D_TESSELLATOR_OUTPUT_PRIMITIVE; - -DEFINE_GUID(WKPDID_D3DDebugObjectName,0x429b8c22,0x9188,0x4b0c,0x87,0x42,0xac,0xb0,0xbf,0x85,0xc2,0x00); - - -extern RPC_IF_HANDLE __MIDL_itf_d3dcommon_0000_0001_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3dcommon_0000_0001_v0_0_s_ifspec; - -/* Additional Prototypes for ALL interfaces */ - -/* end of Additional Prototypes */ - -#ifdef __cplusplus -} -#endif - -#endif - - diff --git a/SDK/Include/D3Dcompiler.h b/SDK/Include/D3Dcompiler.h deleted file mode 100644 index fea519f..0000000 --- a/SDK/Include/D3Dcompiler.h +++ /dev/null @@ -1,397 +0,0 @@ -////////////////////////////////////////////////////////////////////////////// -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// -// File: D3DCompiler.h -// Content: D3D Compilation Types and APIs -// -////////////////////////////////////////////////////////////////////////////// - -#ifndef __D3DCOMPILER_H__ -#define __D3DCOMPILER_H__ - -// Current name of the DLL shipped in the same SDK as this header. - - -#define D3DCOMPILER_DLL_W L"d3dcompiler_43.dll" -#define D3DCOMPILER_DLL_A "d3dcompiler_43.dll" - -#ifdef UNICODE - #define D3DCOMPILER_DLL D3DCOMPILER_DLL_W -#else - #define D3DCOMPILER_DLL D3DCOMPILER_DLL_A -#endif - -#include "d3d11shader.h" - -////////////////////////////////////////////////////////////////////////////// -// APIs ////////////////////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - -//---------------------------------------------------------------------------- -// D3DCOMPILE flags: -// ----------------- -// D3DCOMPILE_DEBUG -// Insert debug file/line/type/symbol information. -// -// D3DCOMPILE_SKIP_VALIDATION -// Do not validate the generated code against known capabilities and -// constraints. This option is only recommended when compiling shaders -// you KNOW will work. (ie. have compiled before without this option.) -// Shaders are always validated by D3D before they are set to the device. -// -// D3DCOMPILE_SKIP_OPTIMIZATION -// Instructs the compiler to skip optimization steps during code generation. -// Unless you are trying to isolate a problem in your code using this option -// is not recommended. -// -// D3DCOMPILE_PACK_MATRIX_ROW_MAJOR -// Unless explicitly specified, matrices will be packed in row-major order -// on input and output from the shader. -// -// D3DCOMPILE_PACK_MATRIX_COLUMN_MAJOR -// Unless explicitly specified, matrices will be packed in column-major -// order on input and output from the shader. This is generally more -// efficient, since it allows vector-matrix multiplication to be performed -// using a series of dot-products. -// -// D3DCOMPILE_PARTIAL_PRECISION -// Force all computations in resulting shader to occur at partial precision. -// This may result in faster evaluation of shaders on some hardware. -// -// D3DCOMPILE_FORCE_VS_SOFTWARE_NO_OPT -// Force compiler to compile against the next highest available software -// target for vertex shaders. This flag also turns optimizations off, -// and debugging on. -// -// D3DCOMPILE_FORCE_PS_SOFTWARE_NO_OPT -// Force compiler to compile against the next highest available software -// target for pixel shaders. This flag also turns optimizations off, -// and debugging on. -// -// D3DCOMPILE_NO_PRESHADER -// Disables Preshaders. Using this flag will cause the compiler to not -// pull out static expression for evaluation on the host cpu -// -// D3DCOMPILE_AVOID_FLOW_CONTROL -// Hint compiler to avoid flow-control constructs where possible. -// -// D3DCOMPILE_PREFER_FLOW_CONTROL -// Hint compiler to prefer flow-control constructs where possible. -// -// D3DCOMPILE_ENABLE_STRICTNESS -// By default, the HLSL/Effect compilers are not strict on deprecated syntax. -// Specifying this flag enables the strict mode. Deprecated syntax may be -// removed in a future release, and enabling syntax is a good way to make -// sure your shaders comply to the latest spec. -// -// D3DCOMPILE_ENABLE_BACKWARDS_COMPATIBILITY -// This enables older shaders to compile to 4_0 targets. -// -//---------------------------------------------------------------------------- - -#define D3DCOMPILE_DEBUG (1 << 0) -#define D3DCOMPILE_SKIP_VALIDATION (1 << 1) -#define D3DCOMPILE_SKIP_OPTIMIZATION (1 << 2) -#define D3DCOMPILE_PACK_MATRIX_ROW_MAJOR (1 << 3) -#define D3DCOMPILE_PACK_MATRIX_COLUMN_MAJOR (1 << 4) -#define D3DCOMPILE_PARTIAL_PRECISION (1 << 5) -#define D3DCOMPILE_FORCE_VS_SOFTWARE_NO_OPT (1 << 6) -#define D3DCOMPILE_FORCE_PS_SOFTWARE_NO_OPT (1 << 7) -#define D3DCOMPILE_NO_PRESHADER (1 << 8) -#define D3DCOMPILE_AVOID_FLOW_CONTROL (1 << 9) -#define D3DCOMPILE_PREFER_FLOW_CONTROL (1 << 10) -#define D3DCOMPILE_ENABLE_STRICTNESS (1 << 11) -#define D3DCOMPILE_ENABLE_BACKWARDS_COMPATIBILITY (1 << 12) -#define D3DCOMPILE_IEEE_STRICTNESS (1 << 13) -#define D3DCOMPILE_OPTIMIZATION_LEVEL0 (1 << 14) -#define D3DCOMPILE_OPTIMIZATION_LEVEL1 0 -#define D3DCOMPILE_OPTIMIZATION_LEVEL2 ((1 << 14) | (1 << 15)) -#define D3DCOMPILE_OPTIMIZATION_LEVEL3 (1 << 15) -#define D3DCOMPILE_RESERVED16 (1 << 16) -#define D3DCOMPILE_RESERVED17 (1 << 17) -#define D3DCOMPILE_WARNINGS_ARE_ERRORS (1 << 18) - -//---------------------------------------------------------------------------- -// D3DCOMPILE_EFFECT flags: -// ------------------------------------- -// These flags are passed in when creating an effect, and affect -// either compilation behavior or runtime effect behavior -// -// D3DCOMPILE_EFFECT_CHILD_EFFECT -// Compile this .fx file to a child effect. Child effects have no -// initializers for any shared values as these are initialied in the -// master effect (pool). -// -// D3DCOMPILE_EFFECT_ALLOW_SLOW_OPS -// By default, performance mode is enabled. Performance mode -// disallows mutable state objects by preventing non-literal -// expressions from appearing in state object definitions. -// Specifying this flag will disable the mode and allow for mutable -// state objects. -// -//---------------------------------------------------------------------------- - -#define D3DCOMPILE_EFFECT_CHILD_EFFECT (1 << 0) -#define D3DCOMPILE_EFFECT_ALLOW_SLOW_OPS (1 << 1) - -//---------------------------------------------------------------------------- -// D3DCompile: -// ---------- -// Compile source text into bytecode appropriate for the given target. -//---------------------------------------------------------------------------- - -HRESULT WINAPI -D3DCompile(__in_bcount(SrcDataSize) LPCVOID pSrcData, - __in SIZE_T SrcDataSize, - __in_opt LPCSTR pSourceName, - __in_xcount_opt(pDefines->Name != NULL) CONST D3D_SHADER_MACRO* pDefines, - __in_opt ID3DInclude* pInclude, - __in LPCSTR pEntrypoint, - __in LPCSTR pTarget, - __in UINT Flags1, - __in UINT Flags2, - __out ID3DBlob** ppCode, - __out_opt ID3DBlob** ppErrorMsgs); - -typedef HRESULT (WINAPI *pD3DCompile) - (LPCVOID pSrcData, - SIZE_T SrcDataSize, - LPCSTR pFileName, - CONST D3D_SHADER_MACRO* pDefines, - ID3DInclude* pInclude, - LPCSTR pEntrypoint, - LPCSTR pTarget, - UINT Flags1, - UINT Flags2, - ID3DBlob** ppCode, - ID3DBlob** ppErrorMsgs); - -//---------------------------------------------------------------------------- -// D3DPreprocess: -// ---------- -// Process source text with the compiler's preprocessor and return -// the resulting text. -//---------------------------------------------------------------------------- - -HRESULT WINAPI -D3DPreprocess(__in_bcount(SrcDataSize) LPCVOID pSrcData, - __in SIZE_T SrcDataSize, - __in_opt LPCSTR pSourceName, - __in_opt CONST D3D_SHADER_MACRO* pDefines, - __in_opt ID3DInclude* pInclude, - __out ID3DBlob** ppCodeText, - __out_opt ID3DBlob** ppErrorMsgs); - -typedef HRESULT (WINAPI *pD3DPreprocess) - (LPCVOID pSrcData, - SIZE_T SrcDataSize, - LPCSTR pFileName, - CONST D3D_SHADER_MACRO* pDefines, - ID3DInclude* pInclude, - ID3DBlob** ppCodeText, - ID3DBlob** ppErrorMsgs); - -//---------------------------------------------------------------------------- -// D3DGetDebugInfo: -// ----------------------- -// Gets shader debug info. Debug info is generated by D3DCompile and is -// embedded in the body of the shader. -//---------------------------------------------------------------------------- - -HRESULT WINAPI -D3DGetDebugInfo(__in_bcount(SrcDataSize) LPCVOID pSrcData, - __in SIZE_T SrcDataSize, - __out ID3DBlob** ppDebugInfo); - -//---------------------------------------------------------------------------- -// D3DReflect: -// ---------- -// Shader code contains metadata that can be inspected via the -// reflection APIs. -//---------------------------------------------------------------------------- - -HRESULT WINAPI -D3DReflect(__in_bcount(SrcDataSize) LPCVOID pSrcData, - __in SIZE_T SrcDataSize, - __in REFIID pInterface, - __out void** ppReflector); - -//---------------------------------------------------------------------------- -// D3DDisassemble: -// ---------------------- -// Takes a binary shader and returns a buffer containing text assembly. -//---------------------------------------------------------------------------- - -#define D3D_DISASM_ENABLE_COLOR_CODE 0x00000001 -#define D3D_DISASM_ENABLE_DEFAULT_VALUE_PRINTS 0x00000002 -#define D3D_DISASM_ENABLE_INSTRUCTION_NUMBERING 0x00000004 -#define D3D_DISASM_ENABLE_INSTRUCTION_CYCLE 0x00000008 -#define D3D_DISASM_DISABLE_DEBUG_INFO 0x00000010 - -HRESULT WINAPI -D3DDisassemble(__in_bcount(SrcDataSize) LPCVOID pSrcData, - __in SIZE_T SrcDataSize, - __in UINT Flags, - __in_opt LPCSTR szComments, - __out ID3DBlob** ppDisassembly); - -typedef HRESULT (WINAPI *pD3DDisassemble) - (__in_bcount(SrcDataSize) LPCVOID pSrcData, - __in SIZE_T SrcDataSize, - __in UINT Flags, - __in_opt LPCSTR szComments, - __out ID3DBlob** ppDisassembly); - -//---------------------------------------------------------------------------- -// D3DDisassemble10Effect: -// ----------------------- -// Takes a D3D10 effect interface and returns a -// buffer containing text assembly. -//---------------------------------------------------------------------------- - -HRESULT WINAPI -D3DDisassemble10Effect(__in interface ID3D10Effect *pEffect, - __in UINT Flags, - __out ID3DBlob** ppDisassembly); - -//---------------------------------------------------------------------------- -// D3DGetInputSignatureBlob: -// ----------------------- -// Retrieve the input signature from a compilation result. -//---------------------------------------------------------------------------- - -HRESULT WINAPI -D3DGetInputSignatureBlob(__in_bcount(SrcDataSize) LPCVOID pSrcData, - __in SIZE_T SrcDataSize, - __out ID3DBlob** ppSignatureBlob); - -//---------------------------------------------------------------------------- -// D3DGetOutputSignatureBlob: -// ----------------------- -// Retrieve the output signature from a compilation result. -//---------------------------------------------------------------------------- - -HRESULT WINAPI -D3DGetOutputSignatureBlob(__in_bcount(SrcDataSize) LPCVOID pSrcData, - __in SIZE_T SrcDataSize, - __out ID3DBlob** ppSignatureBlob); - -//---------------------------------------------------------------------------- -// D3DGetInputAndOutputSignatureBlob: -// ----------------------- -// Retrieve the input and output signatures from a compilation result. -//---------------------------------------------------------------------------- - -HRESULT WINAPI -D3DGetInputAndOutputSignatureBlob(__in_bcount(SrcDataSize) LPCVOID pSrcData, - __in SIZE_T SrcDataSize, - __out ID3DBlob** ppSignatureBlob); - -//---------------------------------------------------------------------------- -// D3DStripShader: -// ----------------------- -// Removes unwanted blobs from a compilation result -//---------------------------------------------------------------------------- - -typedef enum D3DCOMPILER_STRIP_FLAGS -{ - D3DCOMPILER_STRIP_REFLECTION_DATA = 1, - D3DCOMPILER_STRIP_DEBUG_INFO = 2, - D3DCOMPILER_STRIP_TEST_BLOBS = 4, - D3DCOMPILER_STRIP_FORCE_DWORD = 0x7fffffff, -} D3DCOMPILER_STRIP_FLAGS; - -HRESULT WINAPI -D3DStripShader(__in_bcount(BytecodeLength) LPCVOID pShaderBytecode, - __in SIZE_T BytecodeLength, - __in UINT uStripFlags, - __out ID3DBlob** ppStrippedBlob); - -//---------------------------------------------------------------------------- -// D3DGetBlobPart: -// ----------------------- -// Extracts information from a compilation result. -//---------------------------------------------------------------------------- - -typedef enum D3D_BLOB_PART -{ - D3D_BLOB_INPUT_SIGNATURE_BLOB, - D3D_BLOB_OUTPUT_SIGNATURE_BLOB, - D3D_BLOB_INPUT_AND_OUTPUT_SIGNATURE_BLOB, - D3D_BLOB_PATCH_CONSTANT_SIGNATURE_BLOB, - D3D_BLOB_ALL_SIGNATURE_BLOB, - D3D_BLOB_DEBUG_INFO, - D3D_BLOB_LEGACY_SHADER, - D3D_BLOB_XNA_PREPASS_SHADER, - D3D_BLOB_XNA_SHADER, - - // Test parts are only produced by special compiler versions and so - // are usually not present in shaders. - D3D_BLOB_TEST_ALTERNATE_SHADER = 0x8000, - D3D_BLOB_TEST_COMPILE_DETAILS, - D3D_BLOB_TEST_COMPILE_PERF, -} D3D_BLOB_PART; - -HRESULT WINAPI -D3DGetBlobPart(__in_bcount(SrcDataSize) LPCVOID pSrcData, - __in SIZE_T SrcDataSize, - __in D3D_BLOB_PART Part, - __in UINT Flags, - __out ID3DBlob** ppPart); - -//---------------------------------------------------------------------------- -// D3DCompressShaders: -// ----------------------- -// Compresses a set of shaders into a more compact form. -//---------------------------------------------------------------------------- - -typedef struct _D3D_SHADER_DATA -{ - LPCVOID pBytecode; - SIZE_T BytecodeLength; -} D3D_SHADER_DATA; - -#define D3D_COMPRESS_SHADER_KEEP_ALL_PARTS 0x00000001 - -HRESULT WINAPI -D3DCompressShaders(__in UINT uNumShaders, - __in_ecount(uNumShaders) D3D_SHADER_DATA* pShaderData, - __in UINT uFlags, - __out ID3DBlob** ppCompressedData); - -//---------------------------------------------------------------------------- -// D3DDecompressShaders: -// ----------------------- -// Decompresses one or more shaders from a compressed set. -//---------------------------------------------------------------------------- - -HRESULT WINAPI -D3DDecompressShaders(__in_bcount(SrcDataSize) LPCVOID pSrcData, - __in SIZE_T SrcDataSize, - __in UINT uNumShaders, - __in UINT uStartIndex, - __in_ecount_opt(uNumShaders) UINT* pIndices, - __in UINT uFlags, - __out_ecount(uNumShaders) ID3DBlob** ppShaders, - __out_opt UINT* pTotalShaders); - -//---------------------------------------------------------------------------- -// D3DCreateBlob: -// ----------------------- -// Create an ID3DBlob instance. -//---------------------------------------------------------------------------- - -HRESULT WINAPI -D3DCreateBlob(__in SIZE_T Size, - __out ID3DBlob** ppBlob); - -#ifdef __cplusplus -} -#endif //__cplusplus - -#endif // #ifndef __D3DCOMPILER_H__ diff --git a/SDK/Include/DWrite.h b/SDK/Include/DWrite.h deleted file mode 100644 index fc3b637..0000000 --- a/SDK/Include/DWrite.h +++ /dev/null @@ -1,4995 +0,0 @@ -//+-------------------------------------------------------------------------- -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// -// Abstract: -// DirectX Typography Services public API definitions. -// -//---------------------------------------------------------------------------- - -#ifndef DWRITE_H_INCLUDED -#define DWRITE_H_INCLUDED - -#if _MSC_VER > 1000 -#pragma once -#endif - -#ifndef DWRITE_NO_WINDOWS_H - -#include -#include - -#endif // DWRITE_NO_WINDOWS_H - -#include - -#ifndef DWRITE_DECLARE_INTERFACE -#define DWRITE_DECLARE_INTERFACE(iid) DECLSPEC_UUID(iid) DECLSPEC_NOVTABLE -#endif - -#ifndef DWRITE_EXPORT -#define DWRITE_EXPORT __declspec(dllimport) WINAPI -#endif - -/// -/// The type of a font represented by a single font file. -/// Font formats that consist of multiple files, e.g. Type 1 .PFM and .PFB, have -/// separate enum values for each of the file type. -/// -enum DWRITE_FONT_FILE_TYPE -{ - /// - /// Font type is not recognized by the DirectWrite font system. - /// - DWRITE_FONT_FILE_TYPE_UNKNOWN, - - /// - /// OpenType font with CFF outlines. - /// - DWRITE_FONT_FILE_TYPE_CFF, - - /// - /// OpenType font with TrueType outlines. - /// - DWRITE_FONT_FILE_TYPE_TRUETYPE, - - /// - /// OpenType font that contains a TrueType collection. - /// - DWRITE_FONT_FILE_TYPE_TRUETYPE_COLLECTION, - - /// - /// Type 1 PFM font. - /// - DWRITE_FONT_FILE_TYPE_TYPE1_PFM, - - /// - /// Type 1 PFB font. - /// - DWRITE_FONT_FILE_TYPE_TYPE1_PFB, - - /// - /// Vector .FON font. - /// - DWRITE_FONT_FILE_TYPE_VECTOR, - - /// - /// Bitmap .FON font. - /// - DWRITE_FONT_FILE_TYPE_BITMAP -}; - -/// -/// The file format of a complete font face. -/// Font formats that consist of multiple files, e.g. Type 1 .PFM and .PFB, have -/// a single enum entry. -/// -enum DWRITE_FONT_FACE_TYPE -{ - /// - /// OpenType font face with CFF outlines. - /// - DWRITE_FONT_FACE_TYPE_CFF, - - /// - /// OpenType font face with TrueType outlines. - /// - DWRITE_FONT_FACE_TYPE_TRUETYPE, - - /// - /// OpenType font face that is a part of a TrueType collection. - /// - DWRITE_FONT_FACE_TYPE_TRUETYPE_COLLECTION, - - /// - /// A Type 1 font face. - /// - DWRITE_FONT_FACE_TYPE_TYPE1, - - /// - /// A vector .FON format font face. - /// - DWRITE_FONT_FACE_TYPE_VECTOR, - - /// - /// A bitmap .FON format font face. - /// - DWRITE_FONT_FACE_TYPE_BITMAP, - - /// - /// Font face type is not recognized by the DirectWrite font system. - /// - DWRITE_FONT_FACE_TYPE_UNKNOWN -}; - -/// -/// Specifies algorithmic style simulations to be applied to the font face. -/// Bold and oblique simulations can be combined via bitwise OR operation. -/// -enum DWRITE_FONT_SIMULATIONS -{ - /// - /// No simulations are performed. - /// - DWRITE_FONT_SIMULATIONS_NONE = 0x0000, - - /// - /// Algorithmic emboldening is performed. - /// - DWRITE_FONT_SIMULATIONS_BOLD = 0x0001, - - /// - /// Algorithmic italicization is performed. - /// - DWRITE_FONT_SIMULATIONS_OBLIQUE = 0x0002 -}; - -#ifdef DEFINE_ENUM_FLAG_OPERATORS -DEFINE_ENUM_FLAG_OPERATORS(DWRITE_FONT_SIMULATIONS); -#endif - -/// -/// The font weight enumeration describes common values for degree of blackness or thickness of strokes of characters in a font. -/// Font weight values less than 1 or greater than 999 are considered to be invalid, and they are rejected by font API functions. -/// -enum DWRITE_FONT_WEIGHT -{ - /// - /// Predefined font weight : Thin (100). - /// - DWRITE_FONT_WEIGHT_THIN = 100, - - /// - /// Predefined font weight : Extra-light (200). - /// - DWRITE_FONT_WEIGHT_EXTRA_LIGHT = 200, - - /// - /// Predefined font weight : Ultra-light (200). - /// - DWRITE_FONT_WEIGHT_ULTRA_LIGHT = 200, - - /// - /// Predefined font weight : Light (300). - /// - DWRITE_FONT_WEIGHT_LIGHT = 300, - - /// - /// Predefined font weight : Normal (400). - /// - DWRITE_FONT_WEIGHT_NORMAL = 400, - - /// - /// Predefined font weight : Regular (400). - /// - DWRITE_FONT_WEIGHT_REGULAR = 400, - - /// - /// Predefined font weight : Medium (500). - /// - DWRITE_FONT_WEIGHT_MEDIUM = 500, - - /// - /// Predefined font weight : Demi-bold (600). - /// - DWRITE_FONT_WEIGHT_DEMI_BOLD = 600, - - /// - /// Predefined font weight : Semi-bold (600). - /// - DWRITE_FONT_WEIGHT_SEMI_BOLD = 600, - - /// - /// Predefined font weight : Bold (700). - /// - DWRITE_FONT_WEIGHT_BOLD = 700, - - /// - /// Predefined font weight : Extra-bold (800). - /// - DWRITE_FONT_WEIGHT_EXTRA_BOLD = 800, - - /// - /// Predefined font weight : Ultra-bold (800). - /// - DWRITE_FONT_WEIGHT_ULTRA_BOLD = 800, - - /// - /// Predefined font weight : Black (900). - /// - DWRITE_FONT_WEIGHT_BLACK = 900, - - /// - /// Predefined font weight : Heavy (900). - /// - DWRITE_FONT_WEIGHT_HEAVY = 900, - - /// - /// Predefined font weight : Extra-black (950). - /// - DWRITE_FONT_WEIGHT_EXTRA_BLACK = 950, - - /// - /// Predefined font weight : Ultra-black (950). - /// - DWRITE_FONT_WEIGHT_ULTRA_BLACK = 950 -}; - -/// -/// The font stretch enumeration describes relative change from the normal aspect ratio -/// as specified by a font designer for the glyphs in a font. -/// Values less than 1 or greater than 9 are considered to be invalid, and they are rejected by font API functions. -/// -enum DWRITE_FONT_STRETCH -{ - /// - /// Predefined font stretch : Not known (0). - /// - DWRITE_FONT_STRETCH_UNDEFINED = 0, - - /// - /// Predefined font stretch : Ultra-condensed (1). - /// - DWRITE_FONT_STRETCH_ULTRA_CONDENSED = 1, - - /// - /// Predefined font stretch : Extra-condensed (2). - /// - DWRITE_FONT_STRETCH_EXTRA_CONDENSED = 2, - - /// - /// Predefined font stretch : Condensed (3). - /// - DWRITE_FONT_STRETCH_CONDENSED = 3, - - /// - /// Predefined font stretch : Semi-condensed (4). - /// - DWRITE_FONT_STRETCH_SEMI_CONDENSED = 4, - - /// - /// Predefined font stretch : Normal (5). - /// - DWRITE_FONT_STRETCH_NORMAL = 5, - - /// - /// Predefined font stretch : Medium (5). - /// - DWRITE_FONT_STRETCH_MEDIUM = 5, - - /// - /// Predefined font stretch : Semi-expanded (6). - /// - DWRITE_FONT_STRETCH_SEMI_EXPANDED = 6, - - /// - /// Predefined font stretch : Expanded (7). - /// - DWRITE_FONT_STRETCH_EXPANDED = 7, - - /// - /// Predefined font stretch : Extra-expanded (8). - /// - DWRITE_FONT_STRETCH_EXTRA_EXPANDED = 8, - - /// - /// Predefined font stretch : Ultra-expanded (9). - /// - DWRITE_FONT_STRETCH_ULTRA_EXPANDED = 9 -}; - -/// -/// The font style enumeration describes the slope style of a font face, such as Normal, Italic or Oblique. -/// Values other than the ones defined in the enumeration are considered to be invalid, and they are rejected by font API functions. -/// -enum DWRITE_FONT_STYLE -{ - /// - /// Font slope style : Normal. - /// - DWRITE_FONT_STYLE_NORMAL, - - /// - /// Font slope style : Oblique. - /// - DWRITE_FONT_STYLE_OBLIQUE, - - /// - /// Font slope style : Italic. - /// - DWRITE_FONT_STYLE_ITALIC - -}; - -/// -/// The informational string enumeration identifies a string in a font. -/// -enum DWRITE_INFORMATIONAL_STRING_ID -{ - /// - /// Unspecified name ID. - /// - DWRITE_INFORMATIONAL_STRING_NONE, - - /// - /// Copyright notice provided by the font. - /// - DWRITE_INFORMATIONAL_STRING_COPYRIGHT_NOTICE, - - /// - /// String containing a version number. - /// - DWRITE_INFORMATIONAL_STRING_VERSION_STRINGS, - - /// - /// Trademark information provided by the font. - /// - DWRITE_INFORMATIONAL_STRING_TRADEMARK, - - /// - /// Name of the font manufacturer. - /// - DWRITE_INFORMATIONAL_STRING_MANUFACTURER, - - /// - /// Name of the font designer. - /// - DWRITE_INFORMATIONAL_STRING_DESIGNER, - - /// - /// URL of font designer (with protocol, e.g., http://, ftp://). - /// - DWRITE_INFORMATIONAL_STRING_DESIGNER_URL, - - /// - /// Description of the font. Can contain revision information, usage recommendations, history, features, etc. - /// - DWRITE_INFORMATIONAL_STRING_DESCRIPTION, - - /// - /// URL of font vendor (with protocol, e.g., http://, ftp://). If a unique serial number is embedded in the URL, it can be used to register the font. - /// - DWRITE_INFORMATIONAL_STRING_FONT_VENDOR_URL, - - /// - /// Description of how the font may be legally used, or different example scenarios for licensed use. This field should be written in plain language, not legalese. - /// - DWRITE_INFORMATIONAL_STRING_LICENSE_DESCRIPTION, - - /// - /// URL where additional licensing information can be found. - /// - DWRITE_INFORMATIONAL_STRING_LICENSE_INFO_URL, - - /// - /// GDI-compatible family name. Because GDI allows a maximum of four fonts per family, fonts in the same family may have different GDI-compatible family names - /// (e.g., "Arial", "Arial Narrow", "Arial Black"). - /// - DWRITE_INFORMATIONAL_STRING_WIN32_FAMILY_NAMES, - - /// - /// GDI-compatible subfamily name. - /// - DWRITE_INFORMATIONAL_STRING_WIN32_SUBFAMILY_NAMES, - - /// - /// Family name preferred by the designer. This enables font designers to group more than four fonts in a single family without losing compatibility with - /// GDI. This name is typically only present if it differs from the GDI-compatible family name. - /// - DWRITE_INFORMATIONAL_STRING_PREFERRED_FAMILY_NAMES, - - /// - /// Subfamily name preferred by the designer. This name is typically only present if it differs from the GDI-compatible subfamily name. - /// - DWRITE_INFORMATIONAL_STRING_PREFERRED_SUBFAMILY_NAMES, - - /// - /// Sample text. This can be the font name or any other text that the designer thinks is the best example to display the font in. - /// - DWRITE_INFORMATIONAL_STRING_SAMPLE_TEXT -}; - - -/// -/// The DWRITE_FONT_METRICS structure specifies the metrics of a font face that -/// are applicable to all glyphs within the font face. -/// -struct DWRITE_FONT_METRICS -{ - /// - /// The number of font design units per em unit. - /// Font files use their own coordinate system of font design units. - /// A font design unit is the smallest measurable unit in the em square, - /// an imaginary square that is used to size and align glyphs. - /// The concept of em square is used as a reference scale factor when defining font size and device transformation semantics. - /// The size of one em square is also commonly used to compute the paragraph identation value. - /// - UINT16 designUnitsPerEm; - - /// - /// Ascent value of the font face in font design units. - /// Ascent is the distance from the top of font character alignment box to English baseline. - /// - UINT16 ascent; - - /// - /// Descent value of the font face in font design units. - /// Descent is the distance from the bottom of font character alignment box to English baseline. - /// - UINT16 descent; - - /// - /// Line gap in font design units. - /// Recommended additional white space to add between lines to improve legibility. The recommended line spacing - /// (baseline-to-baseline distance) is thus the sum of ascent, descent, and lineGap. The line gap is usually - /// positive or zero but can be negative, in which case the recommended line spacing is less than the height - /// of the character alignment box. - /// - INT16 lineGap; - - /// - /// Cap height value of the font face in font design units. - /// Cap height is the distance from English baseline to the top of a typical English capital. - /// Capital "H" is often used as a reference character for the purpose of calculating the cap height value. - /// - UINT16 capHeight; - - /// - /// x-height value of the font face in font design units. - /// x-height is the distance from English baseline to the top of lowercase letter "x", or a similar lowercase character. - /// - UINT16 xHeight; - - /// - /// The underline position value of the font face in font design units. - /// Underline position is the position of underline relative to the English baseline. - /// The value is usually made negative in order to place the underline below the baseline. - /// - INT16 underlinePosition; - - /// - /// The suggested underline thickness value of the font face in font design units. - /// - UINT16 underlineThickness; - - /// - /// The strikethrough position value of the font face in font design units. - /// Strikethrough position is the position of strikethrough relative to the English baseline. - /// The value is usually made positive in order to place the strikethrough above the baseline. - /// - INT16 strikethroughPosition; - - /// - /// The suggested strikethrough thickness value of the font face in font design units. - /// - UINT16 strikethroughThickness; -}; - -/// -/// The DWRITE_GLYPH_METRICS structure specifies the metrics of an individual glyph. -/// The units depend on how the metrics are obtained. -/// -struct DWRITE_GLYPH_METRICS -{ - /// - /// Specifies the X offset from the glyph origin to the left edge of the black box. - /// The glyph origin is the current horizontal writing position. - /// A negative value means the black box extends to the left of the origin (often true for lowercase italic 'f'). - /// - INT32 leftSideBearing; - - /// - /// Specifies the X offset from the origin of the current glyph to the origin of the next glyph when writing horizontally. - /// - UINT32 advanceWidth; - - /// - /// Specifies the X offset from the right edge of the black box to the origin of the next glyph when writing horizontally. - /// The value is negative when the right edge of the black box overhangs the layout box. - /// - INT32 rightSideBearing; - - /// - /// Specifies the vertical offset from the vertical origin to the top of the black box. - /// Thus, a positive value adds whitespace whereas a negative value means the glyph overhangs the top of the layout box. - /// - INT32 topSideBearing; - - /// - /// Specifies the Y offset from the vertical origin of the current glyph to the vertical origin of the next glyph when writing vertically. - /// (Note that the term "origin" by itself denotes the horizontal origin. The vertical origin is different. - /// Its Y coordinate is specified by verticalOriginY value, - /// and its X coordinate is half the advanceWidth to the right of the horizontal origin). - /// - UINT32 advanceHeight; - - /// - /// Specifies the vertical distance from the black box's bottom edge to the advance height. - /// Positive when the bottom edge of the black box is within the layout box. - /// Negative when the bottom edge of black box overhangs the layout box. - /// - INT32 bottomSideBearing; - - /// - /// Specifies the Y coordinate of a glyph's vertical origin, in the font's design coordinate system. - /// The y coordinate of a glyph's vertical origin is the sum of the glyph's top side bearing - /// and the top (i.e. yMax) of the glyph's bounding box. - /// - INT32 verticalOriginY; -}; - -/// -/// Optional adjustment to a glyph's position. An glyph offset changes the position of a glyph without affecting -/// the pen position. Offsets are in logical, pre-transform units. -/// -struct DWRITE_GLYPH_OFFSET -{ - /// - /// Offset in the advance direction of the run. A positive advance offset moves the glyph to the right - /// (in pre-transform coordinates) if the run is left-to-right or to the left if the run is right-to-left. - /// - FLOAT advanceOffset; - - /// - /// Offset in the ascent direction, i.e., the direction ascenders point. A positive ascender offset moves - /// the glyph up (in pre-transform coordinates). - /// - FLOAT ascenderOffset; -}; - -/// -/// Specifies the type of DirectWrite factory object. -/// DirectWrite factory contains internal state such as font loader registration and cached font data. -/// In most cases it is recommended to use the shared factory object, because it allows multiple components -/// that use DirectWrite to share internal DirectWrite state and reduce memory usage. -/// However, there are cases when it is desirable to reduce the impact of a component, -/// such as a plug-in from an untrusted source, on the rest of the process by sandboxing and isolating it -/// from the rest of the process components. In such cases, it is recommended to use an isolated factory for the sandboxed -/// component. -/// -enum DWRITE_FACTORY_TYPE -{ - /// - /// Shared factory allow for re-use of cached font data across multiple in process components. - /// Such factories also take advantage of cross process font caching components for better performance. - /// - DWRITE_FACTORY_TYPE_SHARED, - - /// - /// Objects created from the isolated factory do not interact with internal DirectWrite state from other components. - /// - DWRITE_FACTORY_TYPE_ISOLATED -}; - -// Creates an OpenType tag as a 32bit integer such that -// the first character in the tag is the lowest byte, -// (least significant on little endian architectures) -// which can be used to compare with tags in the font file. -// This macro is compatible with DWRITE_FONT_FEATURE_TAG. -// -// Example: DWRITE_MAKE_OPENTYPE_TAG('c','c','m','p') -// Dword: 0x706D6363 -// -#define DWRITE_MAKE_OPENTYPE_TAG(a,b,c,d) ( \ - (static_cast(static_cast(d)) << 24) | \ - (static_cast(static_cast(c)) << 16) | \ - (static_cast(static_cast(b)) << 8) | \ - static_cast(static_cast(a))) - -interface IDWriteFontFileStream; - -/// -/// Font file loader interface handles loading font file resources of a particular type from a key. -/// The font file loader interface is recommended to be implemented by a singleton object. -/// IMPORTANT: font file loader implementations must not register themselves with DirectWrite factory -/// inside their constructors and must not unregister themselves in their destructors, because -/// registration and unregistraton operations increment and decrement the object reference count respectively. -/// Instead, registration and unregistration of font file loaders with DirectWrite factory should be performed -/// outside of the font file loader implementation as a separate step. -/// -interface DWRITE_DECLARE_INTERFACE("727cad4e-d6af-4c9e-8a08-d695b11caa49") IDWriteFontFileLoader : public IUnknown -{ - /// - /// Creates a font file stream object that encapsulates an open file resource. - /// The resource is closed when the last reference to fontFileStream is released. - /// - /// Font file reference key that uniquely identifies the font file resource - /// within the scope of the font loader being used. - /// Size of font file reference key in bytes. - /// Pointer to the newly created font file stream. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(CreateStreamFromKey)( - __in_bcount(fontFileReferenceKeySize) void const* fontFileReferenceKey, - UINT32 fontFileReferenceKeySize, - __out IDWriteFontFileStream** fontFileStream - ) PURE; -}; - -/// -/// A built-in implementation of IDWriteFontFileLoader interface that operates on local font files -/// and exposes local font file information from the font file reference key. -/// Font file references created using CreateFontFileReference use this font file loader. -/// -interface DWRITE_DECLARE_INTERFACE("b2d9f3ec-c9fe-4a11-a2ec-d86208f7c0a2") IDWriteLocalFontFileLoader : public IDWriteFontFileLoader -{ - /// - /// Obtains the length of the absolute file path from the font file reference key. - /// - /// Font file reference key that uniquely identifies the local font file - /// within the scope of the font loader being used. - /// Size of font file reference key in bytes. - /// Length of the file path string not including the terminated NULL character. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetFilePathLengthFromKey)( - __in_bcount(fontFileReferenceKeySize) void const* fontFileReferenceKey, - UINT32 fontFileReferenceKeySize, - __out UINT32* filePathLength - ) PURE; - - /// - /// Obtains the absolute font file path from the font file reference key. - /// - /// Font file reference key that uniquely identifies the local font file - /// within the scope of the font loader being used. - /// Size of font file reference key in bytes. - /// Character array that receives the local file path. - /// Size of the filePath array in character count including the terminated NULL character. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetFilePathFromKey)( - __in_bcount(fontFileReferenceKeySize) void const* fontFileReferenceKey, - UINT32 fontFileReferenceKeySize, - __out_ecount_z(filePathSize) WCHAR* filePath, - UINT32 filePathSize - ) PURE; - - /// - /// Obtains the last write time of the file from the font file reference key. - /// - /// Font file reference key that uniquely identifies the local font file - /// within the scope of the font loader being used. - /// Size of font file reference key in bytes. - /// Last modified time of the font file. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetLastWriteTimeFromKey)( - __in_bcount(fontFileReferenceKeySize) void const* fontFileReferenceKey, - UINT32 fontFileReferenceKeySize, - __out FILETIME* lastWriteTime - ) PURE; -}; - -/// -/// The interface for loading font file data. -/// -interface DWRITE_DECLARE_INTERFACE("6d4865fe-0ab8-4d91-8f62-5dd6be34a3e0") IDWriteFontFileStream : public IUnknown -{ - /// - /// Reads a fragment from a file. - /// - /// Receives the pointer to the start of the font file fragment. - /// Offset of the fragment from the beginning of the font file. - /// Size of the fragment in bytes. - /// The client defined context to be passed to the ReleaseFileFragment. - /// - /// Standard HRESULT error code. - /// - /// - /// IMPORTANT: ReadFileFragment() implementations must check whether the requested file fragment - /// is within the file bounds. Otherwise, an error should be returned from ReadFileFragment. - /// - STDMETHOD(ReadFileFragment)( - __deref_out_bcount(fragmentSize) void const** fragmentStart, - UINT64 fileOffset, - UINT64 fragmentSize, - __out void** fragmentContext - ) PURE; - - /// - /// Releases a fragment from a file. - /// - /// The client defined context of a font fragment returned from ReadFileFragment. - STDMETHOD_(void, ReleaseFileFragment)( - void* fragmentContext - ) PURE; - - /// - /// Obtains the total size of a file. - /// - /// Receives the total size of the file. - /// - /// Standard HRESULT error code. - /// - /// - /// Implementing GetFileSize() for asynchronously loaded font files may require - /// downloading the complete file contents, therefore this method should only be used for operations that - /// either require complete font file to be loaded (e.g., copying a font file) or need to make - /// decisions based on the value of the file size (e.g., validation against a persisted file size). - /// - STDMETHOD(GetFileSize)( - __out UINT64* fileSize - ) PURE; - - /// - /// Obtains the last modified time of the file. The last modified time is used by DirectWrite font selection algorithms - /// to determine whether one font resource is more up to date than another one. - /// - /// Receives the last modifed time of the file in the format that represents - /// the number of 100-nanosecond intervals since January 1, 1601 (UTC). - /// - /// Standard HRESULT error code. For resources that don't have a concept of the last modified time, the implementation of - /// GetLastWriteTime should return E_NOTIMPL. - /// - STDMETHOD(GetLastWriteTime)( - __out UINT64* lastWriteTime - ) PURE; -}; - -/// -/// The interface that represents a reference to a font file. -/// -interface DWRITE_DECLARE_INTERFACE("739d886a-cef5-47dc-8769-1a8b41bebbb0") IDWriteFontFile : public IUnknown -{ - /// - /// This method obtains the pointer to the reference key of a font file. The pointer is only valid until the object that refers to it is released. - /// - /// Pointer to the font file reference key. - /// IMPORTANT: The pointer value is valid until the font file reference object it is obtained from is released. - /// Size of font file reference key in bytes. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetReferenceKey)( - __deref_out_bcount(*fontFileReferenceKeySize) void const** fontFileReferenceKey, - __out UINT32* fontFileReferenceKeySize - ) PURE; - - /// - /// Obtains the file loader associated with a font file object. - /// - /// The font file loader associated with the font file object. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetLoader)( - __out IDWriteFontFileLoader** fontFileLoader - ) PURE; - - /// - /// Analyzes a file and returns whether it represents a font, and whether the font type is supported by the font system. - /// - /// TRUE if the font type is supported by the font system, FALSE otherwise. - /// The type of the font file. Note that even if isSupportedFontType is FALSE, - /// the fontFileType value may be different from DWRITE_FONT_FILE_TYPE_UNKNOWN. - /// The type of the font face that can be constructed from the font file. - /// Note that even if isSupportedFontType is FALSE, the fontFaceType value may be different from - /// DWRITE_FONT_FACE_TYPE_UNKNOWN. - /// Number of font faces contained in the font file. - /// - /// Standard HRESULT error code if there was a processing error during analysis. - /// - /// - /// IMPORTANT: certain font file types are recognized, but not supported by the font system. - /// For example, the font system will recognize a file as a Type 1 font file, - /// but will not be able to construct a font face object from it. In such situations, Analyze will set - /// isSupportedFontType output parameter to FALSE. - /// - STDMETHOD(Analyze)( - __out BOOL* isSupportedFontType, - __out DWRITE_FONT_FILE_TYPE* fontFileType, - __out_opt DWRITE_FONT_FACE_TYPE* fontFaceType, - __out UINT32* numberOfFaces - ) PURE; -}; - -/// -/// Represents the internal structure of a device pixel (i.e., the physical arrangement of red, -/// green, and blue color components) that is assumed for purposes of rendering text. -/// -#ifndef DWRITE_PIXEL_GEOMETRY_DEFINED -enum DWRITE_PIXEL_GEOMETRY -{ - /// - /// The red, green, and blue color components of each pixel are assumed to occupy the same point. - /// - DWRITE_PIXEL_GEOMETRY_FLAT, - - /// - /// Each pixel comprises three vertical stripes, with red on the left, green in the center, and - /// blue on the right. This is the most common pixel geometry for LCD monitors. - /// - DWRITE_PIXEL_GEOMETRY_RGB, - - /// - /// Each pixel comprises three vertical stripes, with blue on the left, green in the center, and - /// red on the right. - /// - DWRITE_PIXEL_GEOMETRY_BGR -}; -#define DWRITE_PIXEL_GEOMETRY_DEFINED -#endif - -/// -/// Represents a method of rendering glyphs. -/// -enum DWRITE_RENDERING_MODE -{ - /// - /// Specifies that the rendering mode is determined automatically based on the font and size. - /// - DWRITE_RENDERING_MODE_DEFAULT, - - /// - /// Specifies that no anti-aliasing is performed. Each pixel is either set to the foreground - /// color of the text or retains the color of the background. - /// - DWRITE_RENDERING_MODE_ALIASED, - - /// - /// Specifies ClearType rendering with the same metrics as aliased text. Glyphs can only - /// be positioned on whole-pixel boundaries. - /// - DWRITE_RENDERING_MODE_CLEARTYPE_GDI_CLASSIC, - - /// - /// Specifies ClearType rendering with the same metrics as text rendering using GDI using a font - /// created with CLEARTYPE_NATURAL_QUALITY. Glyph metrics are closer to their ideal values than - /// with aliased text, but glyphs are still positioned on whole-pixel boundaries. - /// - DWRITE_RENDERING_MODE_CLEARTYPE_GDI_NATURAL, - - /// - /// Specifies ClearType rendering with anti-aliasing in the horizontal dimension only. This is - /// typically used with small to medium font sizes (up to 16 ppem). - /// - DWRITE_RENDERING_MODE_CLEARTYPE_NATURAL, - - /// - /// Specifies ClearType rendering with anti-aliasing in both horizontal and vertical dimensions. - /// This is typically used at larger sizes to makes curves and diagonal lines look smoother, at - /// the expense of some softness. - /// - DWRITE_RENDERING_MODE_CLEARTYPE_NATURAL_SYMMETRIC, - - /// - /// Specifies that rendering should bypass the rasterizer and use the outlines directly. This is - /// typically used at very large sizes. - /// - DWRITE_RENDERING_MODE_OUTLINE -}; - -/// -/// The DWRITE_MATRIX structure specifies the graphics transform to be applied -/// to rendered glyphs. -/// -struct DWRITE_MATRIX -{ - /// - /// Horizontal scaling / cosine of rotation - /// - FLOAT m11; - - /// - /// Vertical shear / sine of rotation - /// - FLOAT m12; - - /// - /// Horizontal shear / negative sine of rotation - /// - FLOAT m21; - - /// - /// Vertical scaling / cosine of rotation - /// - FLOAT m22; - - /// - /// Horizontal shift (always orthogonal regardless of rotation) - /// - FLOAT dx; - - /// - /// Vertical shift (always orthogonal regardless of rotation) - /// - FLOAT dy; -}; - -/// -/// The interface that represents text rendering settings for glyph rasterization and filtering. -/// -interface DWRITE_DECLARE_INTERFACE("2f0da53a-2add-47cd-82ee-d9ec34688e75") IDWriteRenderingParams : public IUnknown -{ - /// - /// Gets the gamma value used for gamma correction. Valid values must be - /// greater than zero and cannot exceed 256. - /// - STDMETHOD_(FLOAT, GetGamma)() PURE; - - /// - /// Gets the amount of contrast enhancement. Valid values are greater than - /// or equal to zero. - /// - STDMETHOD_(FLOAT, GetEnhancedContrast)() PURE; - - /// - /// Gets the ClearType level. Valid values range from 0.0f (no ClearType) - /// to 1.0f (full ClearType). - /// - STDMETHOD_(FLOAT, GetClearTypeLevel)() PURE; - - /// - /// Gets the pixel geometry. - /// - STDMETHOD_(DWRITE_PIXEL_GEOMETRY, GetPixelGeometry)() PURE; - - /// - /// Gets the rendering mode. - /// - STDMETHOD_(DWRITE_RENDERING_MODE, GetRenderingMode)() PURE; -}; - -// Forward declarations of D2D types -interface ID2D1SimplifiedGeometrySink; - -typedef ID2D1SimplifiedGeometrySink IDWriteGeometrySink; - -/// -/// The interface that represents an absolute reference to a font face. -/// It contains font face type, appropriate file references and face identification data. -/// Various font data such as metrics, names and glyph outlines is obtained from IDWriteFontFace. -/// -interface DWRITE_DECLARE_INTERFACE("5f49804d-7024-4d43-bfa9-d25984f53849") IDWriteFontFace : public IUnknown -{ - /// - /// Obtains the file format type of a font face. - /// - STDMETHOD_(DWRITE_FONT_FACE_TYPE, GetType)() PURE; - - /// - /// Obtains the font files representing a font face. - /// - /// The number of files representing the font face. - /// User provided array that stores pointers to font files representing the font face. - /// This parameter can be NULL if the user is only interested in the number of files representing the font face. - /// This API increments reference count of the font file pointers returned according to COM conventions, and the client - /// should release them when finished. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetFiles)( - __inout UINT32* numberOfFiles, - __out_ecount_opt(*numberOfFiles) IDWriteFontFile** fontFiles - ) PURE; - - /// - /// Obtains the zero-based index of the font face in its font file or files. If the font files contain a single face, - /// the return value is zero. - /// - STDMETHOD_(UINT32, GetIndex)() PURE; - - /// - /// Obtains the algorithmic style simulation flags of a font face. - /// - STDMETHOD_(DWRITE_FONT_SIMULATIONS, GetSimulations)() PURE; - - /// - /// Determines whether the font is a symbol font. - /// - STDMETHOD_(BOOL, IsSymbolFont)() PURE; - - /// - /// Obtains design units and common metrics for the font face. - /// These metrics are applicable to all the glyphs within a fontface and are used by applications for layout calculations. - /// - /// Points to a DWRITE_FONT_METRICS structure to fill in. - /// The metrics returned by this function are in font design units. - STDMETHOD_(void, GetMetrics)( - __out DWRITE_FONT_METRICS* fontFaceMetrics - ) PURE; - - /// - /// Obtains the number of glyphs in the font face. - /// - STDMETHOD_(UINT16, GetGlyphCount)() PURE; - - /// - /// Obtains ideal glyph metrics in font design units. Design glyphs metrics are used for glyph positioning. - /// - /// An array of glyph indices to compute the metrics for. - /// The number of elements in the glyphIndices array. - /// Array of DWRITE_GLYPH_METRICS structures filled by this function. - /// The metrics returned by this function are in font design units. - /// Indicates whether the font is being used in a sideways run. - /// This can affect the glyph metrics if the font has oblique simulation - /// because sideways oblique simulation differs from non-sideways oblique simulation. - /// - /// Standard HRESULT error code. If any of the input glyph indices are outside of the valid glyph index range - /// for the current font face, E_INVALIDARG will be returned. - /// - STDMETHOD(GetDesignGlyphMetrics)( - __in_ecount(glyphCount) UINT16 const* glyphIndices, - UINT32 glyphCount, - __out_ecount(glyphCount) DWRITE_GLYPH_METRICS* glyphMetrics, - BOOL isSideways = FALSE - ) PURE; - - /// - /// Returns the nominal mapping of UCS4 Unicode code points to glyph indices as defined by the font 'CMAP' table. - /// Note that this mapping is primarily provided for line layout engines built on top of the physical font API. - /// Because of OpenType glyph substitution and line layout character substitution, the nominal conversion does not always correspond - /// to how a Unicode string will map to glyph indices when rendering using a particular font face. - /// Also, note that Unicode Variant Selectors provide for alternate mappings for character to glyph. - /// This call will always return the default variant. - /// - /// An array of USC4 code points to obtain nominal glyph indices from. - /// The number of elements in the codePoints array. - /// Array of nominal glyph indices filled by this function. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetGlyphIndices)( - __in_ecount(codePointCount) UINT32 const* codePoints, - UINT32 codePointCount, - __out_ecount(codePointCount) UINT16* glyphIndices - ) PURE; - - /// - /// Finds the specified OpenType font table if it exists and returns a pointer to it. - /// The function accesses the underling font data via the IDWriteFontStream interface - /// implemented by the font file loader. - /// - /// Four character tag of table to find. - /// Use the DWRITE_MAKE_OPENTYPE_TAG() macro to create it. - /// Unlike GDI, it does not support the special TTCF and null tags to access the whole font. - /// - /// Pointer to base of table in memory. - /// The pointer is only valid so long as the FontFace used to get the font table still exists - /// (not any other FontFace, even if it actually refers to the same physical font). - /// - /// Byte size of table. - /// - /// Opaque context which must be freed by calling ReleaseFontTable. - /// The context actually comes from the lower level IDWriteFontFileStream, - /// which may be implemented by the application or DWrite itself. - /// It is possible for a NULL tableContext to be returned, especially if - /// the implementation directly memory maps the whole file. - /// Nevertheless, always release it later, and do not use it as a test for function success. - /// The same table can be queried multiple times, - /// but each returned context can be different, so release each separately. - /// - /// True if table exists. - /// - /// Standard HRESULT error code. - /// If a table can not be found, the function will not return an error, but the size will be 0, table NULL, and exists = FALSE. - /// The context does not need to be freed if the table was not found. - /// - /// - /// The context for the same tag may be different for each call, - /// so each one must be held and released separately. - /// - STDMETHOD(TryGetFontTable)( - __in UINT32 openTypeTableTag, - __deref_out_bcount(*tableSize) const void** tableData, - __out UINT32* tableSize, - __out void** tableContext, - __out BOOL* exists - ) PURE; - - /// - /// Releases the table obtained earlier from TryGetFontTable. - /// - /// Opaque context from TryGetFontTable. - /// - /// Standard HRESULT error code. - /// - STDMETHOD_(void, ReleaseFontTable)( - __in void* tableContext - ) PURE; - - /// - /// Computes the outline of a run of glyphs by calling back to the outline sink interface. - /// - /// Logical size of the font in DIP units. A DIP ("device-independent pixel") equals 1/96 inch. - /// Array of glyph indices. - /// Optional array of glyph advances in DIPs. - /// Optional array of glyph offsets. - /// Number of glyphs. - /// If true, specifies that glyphs are rotated 90 degrees to the left and vertical metrics are used. - /// A client can render a vertical run by specifying isSideways = true and rotating the resulting geometry 90 degrees to the - /// right using a transform. The isSideways and isRightToLeft parameters cannot both be true. - /// If true, specifies that the advance direction is right to left. By default, the advance direction - /// is left to right. - /// Interface the function calls back to draw each element of the geometry. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetGlyphRunOutline)( - FLOAT emSize, - __in_ecount(glyphCount) UINT16 const* glyphIndices, - __in_ecount_opt(glyphCount) FLOAT const* glyphAdvances, - __in_ecount_opt(glyphCount) DWRITE_GLYPH_OFFSET const* glyphOffsets, - UINT32 glyphCount, - BOOL isSideways, - BOOL isRightToLeft, - IDWriteGeometrySink* geometrySink - ) PURE; - - /// - /// Determines the recommended rendering mode for the font given the specified size and rendering parameters. - /// - /// Logical size of the font in DIP units. A DIP ("device-independent pixel") equals 1/96 inch. - /// Number of physical pixels per DIP. For example, if the DPI of the rendering surface is 96 this - /// value is 1.0f. If the DPI is 120, this value is 120.0f/96. - /// Specifies measuring method that will be used for glyphs in the font. - /// Renderer implementations may choose different rendering modes for given measuring methods, but - /// best results are seen when the corresponding modes match: - /// DWRITE_RENDERING_MODE_CLEARTYPE_NATURAL for DWRITE_MEASURING_MODE_NATURAL - /// DWRITE_RENDERING_MODE_CLEARTYPE_GDI_CLASSIC for DWRITE_MEASURING_MODE_GDI_CLASSIC - /// DWRITE_RENDERING_MODE_CLEARTYPE_GDI_NATURAL for DWRITE_MEASURING_MODE_GDI_NATURAL - /// - /// Rendering parameters object. This parameter is necessary in case the rendering parameters - /// object overrides the rendering mode. - /// Receives the recommended rendering mode to use. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetRecommendedRenderingMode)( - FLOAT emSize, - FLOAT pixelsPerDip, - DWRITE_MEASURING_MODE measuringMode, - IDWriteRenderingParams* renderingParams, - __out DWRITE_RENDERING_MODE* renderingMode - ) PURE; - - /// - /// Obtains design units and common metrics for the font face. - /// These metrics are applicable to all the glyphs within a fontface and are used by applications for layout calculations. - /// - /// Logical size of the font in DIP units. A DIP ("device-independent pixel") equals 1/96 inch. - /// Number of physical pixels per DIP. For example, if the DPI of the rendering surface is 96 this - /// value is 1.0f. If the DPI is 120, this value is 120.0f/96. - /// Optional transform applied to the glyphs and their positions. This transform is applied after the - /// scaling specified by the font size and pixelsPerDip. - /// Points to a DWRITE_FONT_METRICS structure to fill in. - /// The metrics returned by this function are in font design units. - STDMETHOD(GetGdiCompatibleMetrics)( - FLOAT emSize, - FLOAT pixelsPerDip, - __in_opt DWRITE_MATRIX const* transform, - __out DWRITE_FONT_METRICS* fontFaceMetrics - ) PURE; - - - /// - /// Obtains glyph metrics in font design units with the return values compatible with what GDI would produce. - /// Glyphs metrics are used for positioning of individual glyphs. - /// - /// Logical size of the font in DIP units. A DIP ("device-independent pixel") equals 1/96 inch. - /// Number of physical pixels per DIP. For example, if the DPI of the rendering surface is 96 this - /// value is 1.0f. If the DPI is 120, this value is 120.0f/96. - /// Optional transform applied to the glyphs and their positions. This transform is applied after the - /// scaling specified by the font size and pixelsPerDip. - /// - /// When set to FALSE, the metrics are the same as the metrics of GDI aliased text. - /// When set to TRUE, the metrics are the same as the metrics of text measured by GDI using a font - /// created with CLEARTYPE_NATURAL_QUALITY. - /// - /// An array of glyph indices to compute the metrics for. - /// The number of elements in the glyphIndices array. - /// Array of DWRITE_GLYPH_METRICS structures filled by this function. - /// The metrics returned by this function are in font design units. - /// Indicates whether the font is being used in a sideways run. - /// This can affect the glyph metrics if the font has oblique simulation - /// because sideways oblique simulation differs from non-sideways oblique simulation. - /// - /// Standard HRESULT error code. If any of the input glyph indices are outside of the valid glyph index range - /// for the current font face, E_INVALIDARG will be returned. - /// - STDMETHOD(GetGdiCompatibleGlyphMetrics)( - FLOAT emSize, - FLOAT pixelsPerDip, - __in_opt DWRITE_MATRIX const* transform, - BOOL useGdiNatural, - __in_ecount(glyphCount) UINT16 const* glyphIndices, - UINT32 glyphCount, - __out_ecount(glyphCount) DWRITE_GLYPH_METRICS* glyphMetrics, - BOOL isSideways = FALSE - ) PURE; -}; - -interface IDWriteFactory; -interface IDWriteFontFileEnumerator; - -/// -/// The font collection loader interface is used to construct a collection of fonts given a particular type of key. -/// The font collection loader interface is recommended to be implemented by a singleton object. -/// IMPORTANT: font collection loader implementations must not register themselves with a DirectWrite factory -/// inside their constructors and must not unregister themselves in their destructors, because -/// registration and unregistraton operations increment and decrement the object reference count respectively. -/// Instead, registration and unregistration of font file loaders with DirectWrite factory should be performed -/// outside of the font file loader implementation as a separate step. -/// -interface DWRITE_DECLARE_INTERFACE("cca920e4-52f0-492b-bfa8-29c72ee0a468") IDWriteFontCollectionLoader : public IUnknown -{ - /// - /// Creates a font file enumerator object that encapsulates a collection of font files. - /// The font system calls back to this interface to create a font collection. - /// - /// Factory associated with the loader. - /// Font collection key that uniquely identifies the collection of font files within - /// the scope of the font collection loader being used. - /// Size of the font collection key in bytes. - /// Pointer to the newly created font file enumerator. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(CreateEnumeratorFromKey)( - IDWriteFactory* factory, - __in_bcount(collectionKeySize) void const* collectionKey, - UINT32 collectionKeySize, - __out IDWriteFontFileEnumerator** fontFileEnumerator - ) PURE; -}; - -/// -/// The font file enumerator interface encapsulates a collection of font files. The font system uses this interface -/// to enumerate font files when building a font collection. -/// -interface DWRITE_DECLARE_INTERFACE("72755049-5ff7-435d-8348-4be97cfa6c7c") IDWriteFontFileEnumerator : public IUnknown -{ - /// - /// Advances to the next font file in the collection. When it is first created, the enumerator is positioned - /// before the first element of the collection and the first call to MoveNext advances to the first file. - /// - /// Receives the value TRUE if the enumerator advances to a file, or FALSE if - /// the enumerator advanced past the last file in the collection. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(MoveNext)( - __out BOOL* hasCurrentFile - ) PURE; - - /// - /// Gets a reference to the current font file. - /// - /// Pointer to the newly created font file object. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetCurrentFontFile)( - __out IDWriteFontFile** fontFile - ) PURE; -}; - -/// -/// Represents a collection of strings indexed by locale name. -/// -interface DWRITE_DECLARE_INTERFACE("08256209-099a-4b34-b86d-c22b110e7771") IDWriteLocalizedStrings : public IUnknown -{ - /// - /// Gets the number of language/string pairs. - /// - STDMETHOD_(UINT32, GetCount)() PURE; - - /// - /// Gets the index of the item with the specified locale name. - /// - /// Locale name to look for. - /// Receives the zero-based index of the locale name/string pair. - /// Receives TRUE if the locale name exists or FALSE if not. - /// - /// Standard HRESULT error code. If the specified locale name does not exist, the return value is S_OK, - /// but *index is UINT_MAX and *exists is FALSE. - /// - STDMETHOD(FindLocaleName)( - __in_z WCHAR const* localeName, - __out UINT32* index, - __out BOOL* exists - ) PURE; - - /// - /// Gets the length in characters (not including the null terminator) of the locale name with the specified index. - /// - /// Zero-based index of the locale name. - /// Receives the length in characters, not including the null terminator. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetLocaleNameLength)( - UINT32 index, - __out UINT32* length - ) PURE; - - /// - /// Copies the locale name with the specified index to the specified array. - /// - /// Zero-based index of the locale name. - /// Character array that receives the locale name. - /// Size of the array in characters. The size must include space for the terminating - /// null character. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetLocaleName)( - UINT32 index, - __out_ecount_z(size) WCHAR* localeName, - UINT32 size - ) PURE; - - /// - /// Gets the length in characters (not including the null terminator) of the string with the specified index. - /// - /// Zero-based index of the string. - /// Receives the length in characters, not including the null terminator. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetStringLength)( - UINT32 index, - __out UINT32* length - ) PURE; - - /// - /// Copies the string with the specified index to the specified array. - /// - /// Zero-based index of the string. - /// Character array that receives the string. - /// Size of the array in characters. The size must include space for the terminating - /// null character. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetString)( - UINT32 index, - __out_ecount_z(size) WCHAR* stringBuffer, - UINT32 size - ) PURE; -}; - -interface IDWriteFontFamily; -interface IDWriteFont; - -/// -/// The IDWriteFontCollection encapsulates a collection of fonts. -/// -interface DWRITE_DECLARE_INTERFACE("a84cee02-3eea-4eee-a827-87c1a02a0fcc") IDWriteFontCollection : public IUnknown -{ - /// - /// Gets the number of font families in the collection. - /// - STDMETHOD_(UINT32, GetFontFamilyCount)() PURE; - - /// - /// Creates a font family object given a zero-based font family index. - /// - /// Zero-based index of the font family. - /// Receives a pointer the newly created font family object. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetFontFamily)( - UINT32 index, - __out IDWriteFontFamily** fontFamily - ) PURE; - - /// - /// Finds the font family with the specified family name. - /// - /// Name of the font family. The name is not case-sensitive but must otherwise exactly match a family name in the collection. - /// Receives the zero-based index of the matching font family if the family name was found or UINT_MAX otherwise. - /// Receives TRUE if the family name exists or FALSE otherwise. - /// - /// Standard HRESULT error code. If the specified family name does not exist, the return value is S_OK, but *index is UINT_MAX and *exists is FALSE. - /// - STDMETHOD(FindFamilyName)( - __in_z WCHAR const* familyName, - __out UINT32* index, - __out BOOL* exists - ) PURE; - - /// - /// Gets the font object that corresponds to the same physical font as the specified font face object. The specified physical font must belong - /// to the font collection. - /// - /// Font face object that specifies the physical font. - /// Receives a pointer to the newly created font object if successful or NULL otherwise. - /// - /// Standard HRESULT error code. If the specified physical font is not part of the font collection the return value is DWRITE_E_NOFONT. - /// - STDMETHOD(GetFontFromFontFace)( - IDWriteFontFace* fontFace, - __out IDWriteFont** font - ) PURE; -}; - -/// -/// The IDWriteFontList interface represents a list of fonts. -/// -interface DWRITE_DECLARE_INTERFACE("1a0d8438-1d97-4ec1-aef9-a2fb86ed6acb") IDWriteFontList : public IUnknown -{ - /// - /// Gets the font collection that contains the fonts. - /// - /// Receives a pointer to the font collection object. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetFontCollection)( - __out IDWriteFontCollection** fontCollection - ) PURE; - - /// - /// Gets the number of fonts in the font list. - /// - STDMETHOD_(UINT32, GetFontCount)() PURE; - - /// - /// Gets a font given its zero-based index. - /// - /// Zero-based index of the font in the font list. - /// Receives a pointer to the newly created font object. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetFont)( - UINT32 index, - __out IDWriteFont** font - ) PURE; -}; - -/// -/// The IDWriteFontFamily interface represents a set of fonts that share the same design but are differentiated -/// by weight, stretch, and style. -/// -interface DWRITE_DECLARE_INTERFACE("da20d8ef-812a-4c43-9802-62ec4abd7add") IDWriteFontFamily : public IDWriteFontList -{ - /// - /// Creates an localized strings object that contains the family names for the font family, indexed by locale name. - /// - /// Receives a pointer to the newly created localized strings object. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetFamilyNames)( - __out IDWriteLocalizedStrings** names - ) PURE; - - /// - /// Gets the font that best matches the specified properties. - /// - /// Requested font weight. - /// Requested font stretch. - /// Requested font style. - /// Receives a pointer to the newly created font object. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetFirstMatchingFont)( - DWRITE_FONT_WEIGHT weight, - DWRITE_FONT_STRETCH stretch, - DWRITE_FONT_STYLE style, - __out IDWriteFont** matchingFont - ) PURE; - - /// - /// Gets a list of fonts in the font family ranked in order of how well they match the specified properties. - /// - /// Requested font weight. - /// Requested font stretch. - /// Requested font style. - /// Receives a pointer to the newly created font list object. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetMatchingFonts)( - DWRITE_FONT_WEIGHT weight, - DWRITE_FONT_STRETCH stretch, - DWRITE_FONT_STYLE style, - __out IDWriteFontList** matchingFonts - ) PURE; -}; - -/// -/// The IDWriteFont interface represents a physical font in a font collection. -/// -interface DWRITE_DECLARE_INTERFACE("acd16696-8c14-4f5d-877e-fe3fc1d32737") IDWriteFont : public IUnknown -{ - /// - /// Gets the font family to which the specified font belongs. - /// - /// Receives a pointer to the font family object. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetFontFamily)( - __out IDWriteFontFamily** fontFamily - ) PURE; - - /// - /// Gets the weight of the specified font. - /// - STDMETHOD_(DWRITE_FONT_WEIGHT, GetWeight)() PURE; - - /// - /// Gets the stretch (aka. width) of the specified font. - /// - STDMETHOD_(DWRITE_FONT_STRETCH, GetStretch)() PURE; - - /// - /// Gets the style (aka. slope) of the specified font. - /// - STDMETHOD_(DWRITE_FONT_STYLE, GetStyle)() PURE; - - /// - /// Returns TRUE if the font is a symbol font or FALSE if not. - /// - STDMETHOD_(BOOL, IsSymbolFont)() PURE; - - /// - /// Gets a localized strings collection containing the face names for the font (e.g., Regular or Bold), indexed by locale name. - /// - /// Receives a pointer to the newly created localized strings object. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetFaceNames)( - __out IDWriteLocalizedStrings** names - ) PURE; - - /// - /// Gets a localized strings collection containing the specified informational strings, indexed by locale name. - /// - /// Identifies the string to get. - /// Receives a pointer to the newly created localized strings object. - /// Receives the value TRUE if the font contains the specified string ID or FALSE if not. - /// - /// Standard HRESULT error code. If the font does not contain the specified string, the return value is S_OK but - /// informationalStrings receives a NULL pointer and exists receives the value FALSE. - /// - STDMETHOD(GetInformationalStrings)( - DWRITE_INFORMATIONAL_STRING_ID informationalStringID, - __out IDWriteLocalizedStrings** informationalStrings, - __out BOOL* exists - ) PURE; - - /// - /// Gets a value that indicates what simulation are applied to the specified font. - /// - STDMETHOD_(DWRITE_FONT_SIMULATIONS, GetSimulations)() PURE; - - /// - /// Gets the metrics for the font. - /// - /// Receives the font metrics. - STDMETHOD_(void, GetMetrics)( - __out DWRITE_FONT_METRICS* fontMetrics - ) PURE; - - /// - /// Determines whether the font supports the specified character. - /// - /// Unicode (UCS-4) character value. - /// Receives the value TRUE if the font supports the specified character or FALSE if not. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(HasCharacter)( - UINT32 unicodeValue, - __out BOOL* exists - ) PURE; - - /// - /// Creates a font face object for the font. - /// - /// Receives a pointer to the newly created font face object. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(CreateFontFace)( - __out IDWriteFontFace** fontFace - ) PURE; -}; - -/// -/// Direction for how reading progresses. -/// -enum DWRITE_READING_DIRECTION -{ - /// - /// Reading progresses from left to right. - /// - DWRITE_READING_DIRECTION_LEFT_TO_RIGHT, - - /// - /// Reading progresses from right to left. - /// - DWRITE_READING_DIRECTION_RIGHT_TO_LEFT -}; - -/// -/// Direction for how lines of text are placed relative to one another. -/// -enum DWRITE_FLOW_DIRECTION -{ - /// - /// Text lines are placed from top to bottom. - /// - DWRITE_FLOW_DIRECTION_TOP_TO_BOTTOM -}; - -/// -/// Alignment of paragraph text along the reading direction axis relative to -/// the leading and trailing edge of the layout box. -/// -enum DWRITE_TEXT_ALIGNMENT -{ - /// - /// The leading edge of the paragraph text is aligned to the layout box's leading edge. - /// - DWRITE_TEXT_ALIGNMENT_LEADING, - - /// - /// The trailing edge of the paragraph text is aligned to the layout box's trailing edge. - /// - DWRITE_TEXT_ALIGNMENT_TRAILING, - - /// - /// The center of the paragraph text is aligned to the center of the layout box. - /// - DWRITE_TEXT_ALIGNMENT_CENTER -}; - -/// -/// Alignment of paragraph text along the flow direction axis relative to the -/// flow's beginning and ending edge of the layout box. -/// -enum DWRITE_PARAGRAPH_ALIGNMENT -{ - /// - /// The first line of paragraph is aligned to the flow's beginning edge of the layout box. - /// - DWRITE_PARAGRAPH_ALIGNMENT_NEAR, - - /// - /// The last line of paragraph is aligned to the flow's ending edge of the layout box. - /// - DWRITE_PARAGRAPH_ALIGNMENT_FAR, - - /// - /// The center of the paragraph is aligned to the center of the flow of the layout box. - /// - DWRITE_PARAGRAPH_ALIGNMENT_CENTER -}; - -/// -/// Word wrapping in multiline paragraph. -/// -enum DWRITE_WORD_WRAPPING -{ - /// - /// Words are broken across lines to avoid text overflowing the layout box. - /// - DWRITE_WORD_WRAPPING_WRAP, - - /// - /// Words are kept within the same line even when it overflows the layout box. - /// This option is often used with scrolling to reveal overflow text. - /// - DWRITE_WORD_WRAPPING_NO_WRAP -}; - -/// -/// The method used for line spacing in layout. -/// -enum DWRITE_LINE_SPACING_METHOD -{ - /// - /// Line spacing depends solely on the content, growing to accomodate the size of fonts and inline objects. - /// - DWRITE_LINE_SPACING_METHOD_DEFAULT, - - /// - /// Lines are explicitly set to uniform spacing, regardless of contained font sizes. - /// This can be useful to avoid the uneven appearance that can occur from font fallback. - /// - DWRITE_LINE_SPACING_METHOD_UNIFORM -}; - -/// -/// Text granularity used to trim text overflowing the layout box. -/// -enum DWRITE_TRIMMING_GRANULARITY -{ - /// - /// No trimming occurs. Text flows beyond the layout width. - /// - DWRITE_TRIMMING_GRANULARITY_NONE, - - /// - /// Trimming occurs at character cluster boundary. - /// - DWRITE_TRIMMING_GRANULARITY_CHARACTER, - - /// - /// Trimming occurs at word boundary. - /// - DWRITE_TRIMMING_GRANULARITY_WORD -}; - -/// -/// Typographic feature of text supplied by the font. -/// -enum DWRITE_FONT_FEATURE_TAG -{ - DWRITE_FONT_FEATURE_TAG_ALTERNATIVE_FRACTIONS = 0x63726661, // 'afrc' - DWRITE_FONT_FEATURE_TAG_PETITE_CAPITALS_FROM_CAPITALS = 0x63703263, // 'c2pc' - DWRITE_FONT_FEATURE_TAG_SMALL_CAPITALS_FROM_CAPITALS = 0x63733263, // 'c2sc' - DWRITE_FONT_FEATURE_TAG_CONTEXTUAL_ALTERNATES = 0x746c6163, // 'calt' - DWRITE_FONT_FEATURE_TAG_CASE_SENSITIVE_FORMS = 0x65736163, // 'case' - DWRITE_FONT_FEATURE_TAG_GLYPH_COMPOSITION_DECOMPOSITION = 0x706d6363, // 'ccmp' - DWRITE_FONT_FEATURE_TAG_CONTEXTUAL_LIGATURES = 0x67696c63, // 'clig' - DWRITE_FONT_FEATURE_TAG_CAPITAL_SPACING = 0x70737063, // 'cpsp' - DWRITE_FONT_FEATURE_TAG_CONTEXTUAL_SWASH = 0x68777363, // 'cswh' - DWRITE_FONT_FEATURE_TAG_CURSIVE_POSITIONING = 0x73727563, // 'curs' - DWRITE_FONT_FEATURE_TAG_DEFAULT = 0x746c6664, // 'dflt' - DWRITE_FONT_FEATURE_TAG_DISCRETIONARY_LIGATURES = 0x67696c64, // 'dlig' - DWRITE_FONT_FEATURE_TAG_EXPERT_FORMS = 0x74707865, // 'expt' - DWRITE_FONT_FEATURE_TAG_FRACTIONS = 0x63617266, // 'frac' - DWRITE_FONT_FEATURE_TAG_FULL_WIDTH = 0x64697766, // 'fwid' - DWRITE_FONT_FEATURE_TAG_HALF_FORMS = 0x666c6168, // 'half' - DWRITE_FONT_FEATURE_TAG_HALANT_FORMS = 0x6e6c6168, // 'haln' - DWRITE_FONT_FEATURE_TAG_ALTERNATE_HALF_WIDTH = 0x746c6168, // 'halt' - DWRITE_FONT_FEATURE_TAG_HISTORICAL_FORMS = 0x74736968, // 'hist' - DWRITE_FONT_FEATURE_TAG_HORIZONTAL_KANA_ALTERNATES = 0x616e6b68, // 'hkna' - DWRITE_FONT_FEATURE_TAG_HISTORICAL_LIGATURES = 0x67696c68, // 'hlig' - DWRITE_FONT_FEATURE_TAG_HALF_WIDTH = 0x64697768, // 'hwid' - DWRITE_FONT_FEATURE_TAG_HOJO_KANJI_FORMS = 0x6f6a6f68, // 'hojo' - DWRITE_FONT_FEATURE_TAG_JIS04_FORMS = 0x3430706a, // 'jp04' - DWRITE_FONT_FEATURE_TAG_JIS78_FORMS = 0x3837706a, // 'jp78' - DWRITE_FONT_FEATURE_TAG_JIS83_FORMS = 0x3338706a, // 'jp83' - DWRITE_FONT_FEATURE_TAG_JIS90_FORMS = 0x3039706a, // 'jp90' - DWRITE_FONT_FEATURE_TAG_KERNING = 0x6e72656b, // 'kern' - DWRITE_FONT_FEATURE_TAG_STANDARD_LIGATURES = 0x6167696c, // 'liga' - DWRITE_FONT_FEATURE_TAG_LINING_FIGURES = 0x6d756e6c, // 'lnum' - DWRITE_FONT_FEATURE_TAG_LOCALIZED_FORMS = 0x6c636f6c, // 'locl' - DWRITE_FONT_FEATURE_TAG_MARK_POSITIONING = 0x6b72616d, // 'mark' - DWRITE_FONT_FEATURE_TAG_MATHEMATICAL_GREEK = 0x6b72676d, // 'mgrk' - DWRITE_FONT_FEATURE_TAG_MARK_TO_MARK_POSITIONING = 0x6b6d6b6d, // 'mkmk' - DWRITE_FONT_FEATURE_TAG_ALTERNATE_ANNOTATION_FORMS = 0x746c616e, // 'nalt' - DWRITE_FONT_FEATURE_TAG_NLC_KANJI_FORMS = 0x6b636c6e, // 'nlck' - DWRITE_FONT_FEATURE_TAG_OLD_STYLE_FIGURES = 0x6d756e6f, // 'onum' - DWRITE_FONT_FEATURE_TAG_ORDINALS = 0x6e64726f, // 'ordn' - DWRITE_FONT_FEATURE_TAG_PROPORTIONAL_ALTERNATE_WIDTH = 0x746c6170, // 'palt' - DWRITE_FONT_FEATURE_TAG_PETITE_CAPITALS = 0x70616370, // 'pcap' - DWRITE_FONT_FEATURE_TAG_PROPORTIONAL_FIGURES = 0x6d756e70, // 'pnum' - DWRITE_FONT_FEATURE_TAG_PROPORTIONAL_WIDTHS = 0x64697770, // 'pwid' - DWRITE_FONT_FEATURE_TAG_QUARTER_WIDTHS = 0x64697771, // 'qwid' - DWRITE_FONT_FEATURE_TAG_REQUIRED_LIGATURES = 0x67696c72, // 'rlig' - DWRITE_FONT_FEATURE_TAG_RUBY_NOTATION_FORMS = 0x79627572, // 'ruby' - DWRITE_FONT_FEATURE_TAG_STYLISTIC_ALTERNATES = 0x746c6173, // 'salt' - DWRITE_FONT_FEATURE_TAG_SCIENTIFIC_INFERIORS = 0x666e6973, // 'sinf' - DWRITE_FONT_FEATURE_TAG_SMALL_CAPITALS = 0x70636d73, // 'smcp' - DWRITE_FONT_FEATURE_TAG_SIMPLIFIED_FORMS = 0x6c706d73, // 'smpl' - DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_1 = 0x31307373, // 'ss01' - DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_2 = 0x32307373, // 'ss02' - DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_3 = 0x33307373, // 'ss03' - DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_4 = 0x34307373, // 'ss04' - DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_5 = 0x35307373, // 'ss05' - DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_6 = 0x36307373, // 'ss06' - DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_7 = 0x37307373, // 'ss07' - DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_8 = 0x38307373, // 'ss08' - DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_9 = 0x39307373, // 'ss09' - DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_10 = 0x30317373, // 'ss10' - DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_11 = 0x31317373, // 'ss11' - DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_12 = 0x32317373, // 'ss12' - DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_13 = 0x33317373, // 'ss13' - DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_14 = 0x34317373, // 'ss14' - DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_15 = 0x35317373, // 'ss15' - DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_16 = 0x36317373, // 'ss16' - DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_17 = 0x37317373, // 'ss17' - DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_18 = 0x38317373, // 'ss18' - DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_19 = 0x39317373, // 'ss19' - DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_20 = 0x30327373, // 'ss20' - DWRITE_FONT_FEATURE_TAG_SUBSCRIPT = 0x73627573, // 'subs' - DWRITE_FONT_FEATURE_TAG_SUPERSCRIPT = 0x73707573, // 'sups' - DWRITE_FONT_FEATURE_TAG_SWASH = 0x68737773, // 'swsh' - DWRITE_FONT_FEATURE_TAG_TITLING = 0x6c746974, // 'titl' - DWRITE_FONT_FEATURE_TAG_TRADITIONAL_NAME_FORMS = 0x6d616e74, // 'tnam' - DWRITE_FONT_FEATURE_TAG_TABULAR_FIGURES = 0x6d756e74, // 'tnum' - DWRITE_FONT_FEATURE_TAG_TRADITIONAL_FORMS = 0x64617274, // 'trad' - DWRITE_FONT_FEATURE_TAG_THIRD_WIDTHS = 0x64697774, // 'twid' - DWRITE_FONT_FEATURE_TAG_UNICASE = 0x63696e75, // 'unic' - DWRITE_FONT_FEATURE_TAG_SLASHED_ZERO = 0x6f72657a, // 'zero' -}; - -/// -/// The DWRITE_TEXT_RANGE structure specifies a range of text positions where format is applied. -/// -struct DWRITE_TEXT_RANGE -{ - /// - /// The start text position of the range. - /// - UINT32 startPosition; - - /// - /// The number of text positions in the range. - /// - UINT32 length; -}; - -/// -/// The DWRITE_FONT_FEATURE structure specifies properties used to identify and execute typographic feature in the font. -/// -struct DWRITE_FONT_FEATURE -{ - /// - /// The feature OpenType name identifier. - /// - DWRITE_FONT_FEATURE_TAG nameTag; - - /// - /// Execution parameter of the feature. - /// - /// - /// The parameter should be non-zero to enable the feature. Once enabled, a feature can't be disabled again within - /// the same range. Features requiring a selector use this value to indicate the selector index. - /// - UINT32 parameter; -}; - -/// -/// Defines a set of typographic features to be applied during shaping. -/// Notice the character range which this feature list spans is specified -/// as a separate parameter to GetGlyphs. -/// -struct DWRITE_TYPOGRAPHIC_FEATURES -{ - /// - /// Array of font features. - /// - __field_ecount(featureCount) DWRITE_FONT_FEATURE* features; - - /// - /// The number of features. - /// - UINT32 featureCount; -}; - -/// -/// The DWRITE_TRIMMING structure specifies the trimming option for text overflowing the layout box. -/// -struct DWRITE_TRIMMING -{ - /// - /// Text granularity of which trimming applies. - /// - DWRITE_TRIMMING_GRANULARITY granularity; - - /// - /// Character code used as the delimiter signaling the beginning of the portion of text to be preserved, - /// most useful for path ellipsis, where the delimeter would be a slash. - /// - UINT32 delimiter; - - /// - /// How many occurences of the delimiter to step back. - /// - UINT32 delimiterCount; -}; - - -interface IDWriteTypography; -interface IDWriteInlineObject; - -/// -/// The format of text used for text layout purpose. -/// -/// -/// This object may not be thread-safe and it may carry the state of text format change. -/// -interface DWRITE_DECLARE_INTERFACE("9c906818-31d7-4fd3-a151-7c5e225db55a") IDWriteTextFormat : public IUnknown -{ - /// - /// Set alignment option of text relative to layout box's leading and trailing edge. - /// - /// Text alignment option - /// - /// Standard HRESULT error code. - /// - STDMETHOD(SetTextAlignment)( - DWRITE_TEXT_ALIGNMENT textAlignment - ) PURE; - - /// - /// Set alignment option of paragraph relative to layout box's top and bottom edge. - /// - /// Paragraph alignment option - /// - /// Standard HRESULT error code. - /// - STDMETHOD(SetParagraphAlignment)( - DWRITE_PARAGRAPH_ALIGNMENT paragraphAlignment - ) PURE; - - /// - /// Set word wrapping option. - /// - /// Word wrapping option - /// - /// Standard HRESULT error code. - /// - STDMETHOD(SetWordWrapping)( - DWRITE_WORD_WRAPPING wordWrapping - ) PURE; - - /// - /// Set paragraph reading direction. - /// - /// Text reading direction - /// - /// Standard HRESULT error code. - /// - STDMETHOD(SetReadingDirection)( - DWRITE_READING_DIRECTION readingDirection - ) PURE; - - /// - /// Set paragraph flow direction. - /// - /// Paragraph flow direction - /// - /// Standard HRESULT error code. - /// - STDMETHOD(SetFlowDirection)( - DWRITE_FLOW_DIRECTION flowDirection - ) PURE; - - /// - /// Set incremental tab stop position. - /// - /// The incremental tab stop value - /// - /// Standard HRESULT error code. - /// - STDMETHOD(SetIncrementalTabStop)( - FLOAT incrementalTabStop - ) PURE; - - /// - /// Set trimming options for any trailing text exceeding the layout width - /// or for any far text exceeding the layout height. - /// - /// Text trimming options. - /// Application-defined omission sign. This parameter may be NULL if no trimming sign is desired. - /// - /// Any inline object can be used for the trimming sign, but CreateEllipsisTrimmingSign - /// provides a typical ellipsis symbol. Trimming is also useful vertically for hiding - /// partial lines. - /// - /// - /// Standard HRESULT error code. - /// - STDMETHOD(SetTrimming)( - __in DWRITE_TRIMMING const* trimmingOptions, - IDWriteInlineObject* trimmingSign - ) PURE; - - /// - /// Set line spacing. - /// - /// How to determine line height. - /// The line height, or rather distance between one baseline to another. - /// Distance from top of line to baseline. A reasonable ratio to lineSpacing is 80%. - /// - /// For the default method, spacing depends solely on the content. - /// For uniform spacing, the given line height will override the content. - /// - /// - /// Standard HRESULT error code. - /// - STDMETHOD(SetLineSpacing)( - DWRITE_LINE_SPACING_METHOD lineSpacingMethod, - FLOAT lineSpacing, - FLOAT baseline - ) PURE; - - /// - /// Get alignment option of text relative to layout box's leading and trailing edge. - /// - STDMETHOD_(DWRITE_TEXT_ALIGNMENT, GetTextAlignment)() PURE; - - /// - /// Get alignment option of paragraph relative to layout box's top and bottom edge. - /// - STDMETHOD_(DWRITE_PARAGRAPH_ALIGNMENT, GetParagraphAlignment)() PURE; - - /// - /// Get word wrapping option. - /// - STDMETHOD_(DWRITE_WORD_WRAPPING, GetWordWrapping)() PURE; - - /// - /// Get paragraph reading direction. - /// - STDMETHOD_(DWRITE_READING_DIRECTION, GetReadingDirection)() PURE; - - /// - /// Get paragraph flow direction. - /// - STDMETHOD_(DWRITE_FLOW_DIRECTION, GetFlowDirection)() PURE; - - /// - /// Get incremental tab stop position. - /// - STDMETHOD_(FLOAT, GetIncrementalTabStop)() PURE; - - /// - /// Get trimming options for text overflowing the layout width. - /// - /// Text trimming options. - /// Trimming omission sign. This parameter may be NULL. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetTrimming)( - __out DWRITE_TRIMMING* trimmingOptions, - __out IDWriteInlineObject** trimmingSign - ) PURE; - - /// - /// Get line spacing. - /// - /// How line height is determined. - /// The line height, or rather distance between one baseline to another. - /// Distance from top of line to baseline. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetLineSpacing)( - __out DWRITE_LINE_SPACING_METHOD* lineSpacingMethod, - __out FLOAT* lineSpacing, - __out FLOAT* baseline - ) PURE; - - /// - /// Get the font collection. - /// - /// The current font collection. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetFontCollection)( - __out IDWriteFontCollection** fontCollection - ) PURE; - - /// - /// Get the length of the font family name, in characters, not including the terminating NULL character. - /// - STDMETHOD_(UINT32, GetFontFamilyNameLength)() PURE; - - /// - /// Get a copy of the font family name. - /// - /// Character array that receives the current font family name - /// Size of the character array in character count including the terminated NULL character. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetFontFamilyName)( - __out_ecount_z(nameSize) WCHAR* fontFamilyName, - UINT32 nameSize - ) PURE; - - /// - /// Get the font weight. - /// - STDMETHOD_(DWRITE_FONT_WEIGHT, GetFontWeight)() PURE; - - /// - /// Get the font style. - /// - STDMETHOD_(DWRITE_FONT_STYLE, GetFontStyle)() PURE; - - /// - /// Get the font stretch. - /// - STDMETHOD_(DWRITE_FONT_STRETCH, GetFontStretch)() PURE; - - /// - /// Get the font em height. - /// - STDMETHOD_(FLOAT, GetFontSize)() PURE; - - /// - /// Get the length of the locale name, in characters, not including the terminating NULL character. - /// - STDMETHOD_(UINT32, GetLocaleNameLength)() PURE; - - /// - /// Get a copy of the locale name. - /// - /// Character array that receives the current locale name - /// Size of the character array in character count including the terminated NULL character. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetLocaleName)( - __out_ecount_z(nameSize) WCHAR* localeName, - UINT32 nameSize - ) PURE; -}; - - -/// -/// Font typography setting. -/// -interface DWRITE_DECLARE_INTERFACE("55f1112b-1dc2-4b3c-9541-f46894ed85b6") IDWriteTypography : public IUnknown -{ - /// - /// Add font feature. - /// - /// The font feature to add. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(AddFontFeature)( - DWRITE_FONT_FEATURE fontFeature - ) PURE; - - /// - /// Get the number of font features. - /// - STDMETHOD_(UINT32, GetFontFeatureCount)() PURE; - - /// - /// Get the font feature at the specified index. - /// - /// The zero-based index of the font feature to get. - /// The font feature. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetFontFeature)( - UINT32 fontFeatureIndex, - __out DWRITE_FONT_FEATURE* fontFeature - ) PURE; -}; - -enum DWRITE_SCRIPT_SHAPES -{ - /// - /// No additional shaping requirement. Text is shaped with the writing system default behavior. - /// - DWRITE_SCRIPT_SHAPES_DEFAULT = 0, - - /// - /// Text should leave no visual on display i.e. control or format control characters. - /// - DWRITE_SCRIPT_SHAPES_NO_VISUAL = 1 -}; - -#ifdef DEFINE_ENUM_FLAG_OPERATORS -DEFINE_ENUM_FLAG_OPERATORS(DWRITE_SCRIPT_SHAPES); -#endif - -/// -/// Association of text and its writing system script as well as some display attributes. -/// -struct DWRITE_SCRIPT_ANALYSIS -{ - /// - /// Zero-based index representation of writing system script. - /// - UINT16 script; - - /// - /// Additional shaping requirement of text. - /// - DWRITE_SCRIPT_SHAPES shapes; -}; - -/// -/// Condition at the edges of inline object or text used to determine -/// line-breaking behavior. -/// -enum DWRITE_BREAK_CONDITION -{ - /// - /// Whether a break is allowed is determined by the condition of the - /// neighboring text span or inline object. - /// - DWRITE_BREAK_CONDITION_NEUTRAL, - - /// - /// A break is allowed, unless overruled by the condition of the - /// neighboring text span or inline object, either prohibited by a - /// May Not or forced by a Must. - /// - DWRITE_BREAK_CONDITION_CAN_BREAK, - - /// - /// There should be no break, unless overruled by a Must condition from - /// the neighboring text span or inline object. - /// - DWRITE_BREAK_CONDITION_MAY_NOT_BREAK, - - /// - /// The break must happen, regardless of the condition of the adjacent - /// text span or inline object. - /// - DWRITE_BREAK_CONDITION_MUST_BREAK -}; - -/// -/// Line breakpoint characteristics of a character. -/// -struct DWRITE_LINE_BREAKPOINT -{ - /// - /// Breaking condition before the character. - /// - UINT8 breakConditionBefore : 2; - - /// - /// Breaking condition after the character. - /// - UINT8 breakConditionAfter : 2; - - /// - /// The character is some form of whitespace, which may be meaningful - /// for justification. - /// - UINT8 isWhitespace : 1; - - /// - /// The character is a soft hyphen, often used to indicate hyphenation - /// points inside words. - /// - UINT8 isSoftHyphen : 1; - - UINT8 padding : 2; -}; - -/// -/// How to apply number substitution on digits and related punctuation. -/// -enum DWRITE_NUMBER_SUBSTITUTION_METHOD -{ - /// - /// Specifies that the substitution method should be determined based - /// on LOCALE_IDIGITSUBSTITUTION value of the specified text culture. - /// - DWRITE_NUMBER_SUBSTITUTION_METHOD_FROM_CULTURE, - - /// - /// If the culture is Arabic or Farsi, specifies that the number shape - /// depend on the context. Either traditional or nominal number shape - /// are used depending on the nearest preceding strong character or (if - /// there is none) the reading direction of the paragraph. - /// - DWRITE_NUMBER_SUBSTITUTION_METHOD_CONTEXTUAL, - - /// - /// Specifies that code points 0x30-0x39 are always rendered as nominal numeral - /// shapes (ones of the European number), i.e., no substitution is performed. - /// - DWRITE_NUMBER_SUBSTITUTION_METHOD_NONE, - - /// - /// Specifies that number are rendered using the national number shape - /// as specified by the LOCALE_SNATIVEDIGITS value of the specified text culture. - /// - DWRITE_NUMBER_SUBSTITUTION_METHOD_NATIONAL, - - /// - /// Specifies that number are rendered using the traditional shape - /// for the specified culture. For most cultures, this is the same as - /// NativeNational. However, NativeNational results in Latin number - /// for some Arabic cultures, whereas this value results in Arabic - /// number for all Arabic cultures. - /// - DWRITE_NUMBER_SUBSTITUTION_METHOD_TRADITIONAL -}; - -/// -/// Holds the appropriate digits and numeric punctuation for a given locale. -/// -interface DECLSPEC_UUID("14885CC9-BAB0-4f90-B6ED-5C366A2CD03D") DECLSPEC_NOVTABLE IDWriteNumberSubstitution : public IUnknown -{ -}; - -/// -/// Shaping output properties per input character. -/// -struct DWRITE_SHAPING_TEXT_PROPERTIES -{ - /// - /// This character can be shaped independently from the others - /// (usually set for the space character). - /// - UINT16 isShapedAlone : 1; - - /// - /// Reserved for use by shaping engine. - /// - UINT16 reserved : 15; -}; - -/// -/// Shaping output properties per output glyph. -/// -struct DWRITE_SHAPING_GLYPH_PROPERTIES -{ - /// - /// Justification class, whether to use spacing, kashidas, or - /// another method. This exists for backwards compatibility - /// with Uniscribe's SCRIPT_JUSTIFY enum. - /// - UINT16 justification : 4; - - /// - /// Indicates glyph is the first of a cluster. - /// - UINT16 isClusterStart : 1; - - /// - /// Glyph is a diacritic. - /// - UINT16 isDiacritic : 1; - - /// - /// Glyph has no width, blank, ZWJ, ZWNJ etc. - /// - UINT16 isZeroWidthSpace : 1; - - /// - /// Reserved for use by shaping engine. - /// - UINT16 reserved : 9; -}; - -/// -/// The interface implemented by the text analyzer's client to provide text to -/// the analyzer. It allows the separation between the logical view of text as -/// a continuous stream of characters identifiable by unique text positions, -/// and the actual memory layout of potentially discrete blocks of text in the -/// client's backing store. -/// -/// If any of these callbacks returns an error, the analysis functions will -/// stop prematurely and return a callback error. Rather than return E_NOTIMPL, -/// an application should stub the method and return a constant/null and S_OK. -/// -interface DECLSPEC_UUID("688e1a58-5094-47c8-adc8-fbcea60ae92b") DECLSPEC_NOVTABLE IDWriteTextAnalysisSource : public IUnknown -{ - /// - /// Get a block of text starting at the specified text position. - /// Returning NULL indicates the end of text - the position is after - /// the last character. This function is called iteratively for - /// each consecutive block, tying together several fragmented blocks - /// in the backing store into a virtual contiguous string. - /// - /// First position of the piece to obtain. All - /// positions are in UTF16 code-units, not whole characters, which - /// matters when supplementary characters are used. - /// Address that receives a pointer to the text block - /// at the specified position. - /// Number of UTF16 units of the retrieved chunk. - /// The returned length is not the length of the block, but the length - /// remaining in the block, from the given position until its end. - /// So querying for a position that is 75 positions into a 100 - /// postition block would return 25. - /// Pointer to the first character at the given text position. - /// NULL indicates no chunk available at the specified position, either - /// because textPosition >= the entire text content length or because the - /// queried position is not mapped into the app's backing store. - /// - /// Although apps can implement sparse textual content that only maps part of - /// the backing store, the app must map any text that is in the range passed - /// to any analysis functions. - /// - STDMETHOD(GetTextAtPosition)( - UINT32 textPosition, - __out WCHAR const** textString, - __out UINT32* textLength - ) PURE; - - /// - /// Get a block of text immediately preceding the specified position. - /// - /// Position immediately after the last position of the chunk to obtain. - /// Address that receives a pointer to the text block - /// at the specified position. - /// Number of UTF16 units of the retrieved block. - /// The length returned is from the given position to the front of - /// the block. - /// Pointer to the first character at (textPosition - textLength). - /// NULL indicates no chunk available at the specified position, either - /// because textPosition == 0,the textPosition > the entire text content - /// length, or the queried position is not mapped into the app's backing - /// store. - /// - /// Although apps can implement sparse textual content that only maps part of - /// the backing store, the app must map any text that is in the range passed - /// to any analysis functions. - /// - STDMETHOD(GetTextBeforePosition)( - UINT32 textPosition, - __out WCHAR const** textString, - __out UINT32* textLength - ) PURE; - - /// - /// Get paragraph reading direction. - /// - STDMETHOD_(DWRITE_READING_DIRECTION, GetParagraphReadingDirection)() PURE; - - /// - /// Get locale name on the range affected by it. - /// - /// Position to get the locale name of. - /// Receives the length from the given position up to the - /// next differing locale. - /// Address that receives a pointer to the locale - /// at the specified position. - /// - /// The localeName pointer must remain valid until the next call or until - /// the analysis returns. - /// - STDMETHOD(GetLocaleName)( - UINT32 textPosition, - __out UINT32* textLength, - __out_z WCHAR const** localeName - ) PURE; - - /// - /// Get number substitution on the range affected by it. - /// - /// Position to get the number substitution of. - /// Receives the length from the given position up to the - /// next differing number substitution. - /// Address that receives a pointer to the number substitution - /// at the specified position. - /// - /// Any implementation should return the number substitution with an - /// incremented ref count, and the analysis will release when finished - /// with it (either before the next call or before it returns). However, - /// the sink callback may hold onto it after that. - /// - STDMETHOD(GetNumberSubstitution)( - UINT32 textPosition, - __out UINT32* textLength, - __out IDWriteNumberSubstitution** numberSubstitution - ) PURE; -}; - -/// -/// The interface implemented by the text analyzer's client to receive the -/// output of a given text analysis. The Text analyzer disregards any current -/// state of the analysis sink, therefore a Set method call on a range -/// overwrites the previously set analysis result of the same range. -/// -interface DECLSPEC_UUID("5810cd44-0ca0-4701-b3fa-bec5182ae4f6") DECLSPEC_NOVTABLE IDWriteTextAnalysisSink : public IUnknown -{ - /// - /// Report script analysis for the text range. - /// - /// Starting position to report from. - /// Number of UTF16 units of the reported range. - /// Script analysis of characters in range. - /// - /// A successful code or error code to abort analysis. - /// - STDMETHOD(SetScriptAnalysis)( - UINT32 textPosition, - UINT32 textLength, - __in DWRITE_SCRIPT_ANALYSIS const* scriptAnalysis - ) PURE; - - /// - /// Repport line-break opportunities for each character, starting from - /// the specified position. - /// - /// Starting position to report from. - /// Number of UTF16 units of the reported range. - /// Breaking conditions for each character. - /// - /// A successful code or error code to abort analysis. - /// - STDMETHOD(SetLineBreakpoints)( - UINT32 textPosition, - UINT32 textLength, - __in_ecount(textLength) DWRITE_LINE_BREAKPOINT const* lineBreakpoints - ) PURE; - - /// - /// Set bidirectional level on the range, called once per each - /// level run change (either explicit or resolved implicit). - /// - /// Starting position to report from. - /// Number of UTF16 units of the reported range. - /// Explicit level from embedded control codes - /// RLE/RLO/LRE/LRO/PDF, determined before any additional rules. - /// Final implicit level considering the - /// explicit level and characters' natural directionality, after all - /// Bidi rules have been applied. - /// - /// A successful code or error code to abort analysis. - /// - STDMETHOD(SetBidiLevel)( - UINT32 textPosition, - UINT32 textLength, - UINT8 explicitLevel, - UINT8 resolvedLevel - ) PURE; - - /// - /// Set number substitution on the range. - /// - /// Starting position to report from. - /// Number of UTF16 units of the reported range. - /// The number substitution applicable to - /// the returned range of text. The sink callback may hold onto it by - /// incrementing its ref count. - /// - /// A successful code or error code to abort analysis. - /// - /// - /// Unlike script and bidi analysis, where every character passed to the - /// analyzer has a result, this will only be called for those ranges where - /// substitution is applicable. For any other range, you will simply not - /// be called. - /// - STDMETHOD(SetNumberSubstitution)( - UINT32 textPosition, - UINT32 textLength, - __notnull IDWriteNumberSubstitution* numberSubstitution - ) PURE; -}; - -/// -/// Analyzes various text properties for complex script processing. -/// -interface DWRITE_DECLARE_INTERFACE("b7e6163e-7f46-43b4-84b3-e4e6249c365d") IDWriteTextAnalyzer : public IUnknown -{ - /// - /// Analyzes a text range for script boundaries, reading text attributes - /// from the source and reporting the Unicode script ID to the sink - /// callback SetScript. - /// - /// Source object to analyze. - /// Starting position within the source object. - /// Length to analyze. - /// Callback object. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(AnalyzeScript)( - IDWriteTextAnalysisSource* analysisSource, - UINT32 textPosition, - UINT32 textLength, - IDWriteTextAnalysisSink* analysisSink - ) PURE; - - /// - /// Analyzes a text range for script directionality, reading attributes - /// from the source and reporting levels to the sink callback SetBidiLevel. - /// - /// Source object to analyze. - /// Starting position within the source object. - /// Length to analyze. - /// Callback object. - /// - /// Standard HRESULT error code. - /// - /// - /// While the function can handle multiple paragraphs, the text range - /// should not arbitrarily split the middle of paragraphs. Otherwise the - /// returned levels may be wrong, since the Bidi algorithm is meant to - /// apply to the paragraph as a whole. - /// - /// - /// Embedded control codes (LRE/LRO/RLE/RLO/PDF) are taken into account. - /// - STDMETHOD(AnalyzeBidi)( - IDWriteTextAnalysisSource* analysisSource, - UINT32 textPosition, - UINT32 textLength, - IDWriteTextAnalysisSink* analysisSink - ) PURE; - - /// - /// Analyzes a text range for spans where number substitution is applicable, - /// reading attributes from the source and reporting substitutable ranges - /// to the sink callback SetNumberSubstitution. - /// - /// Source object to analyze. - /// Starting position within the source object. - /// Length to analyze. - /// Callback object. - /// - /// Standard HRESULT error code. - /// - /// - /// While the function can handle multiple ranges of differing number - /// substitutions, the text ranges should not arbitrarily split the - /// middle of numbers. Otherwise it will treat the numbers separately - /// and will not translate any intervening punctuation. - /// - /// - /// Embedded control codes (LRE/LRO/RLE/RLO/PDF) are taken into account. - /// - STDMETHOD(AnalyzeNumberSubstitution)( - IDWriteTextAnalysisSource* analysisSource, - UINT32 textPosition, - UINT32 textLength, - IDWriteTextAnalysisSink* analysisSink - ) PURE; - - /// - /// Analyzes a text range for potential breakpoint opportunities, reading - /// attributes from the source and reporting breakpoint opportunities to - /// the sink callback SetLineBreakpoints. - /// - /// Source object to analyze. - /// Starting position within the source object. - /// Length to analyze. - /// Callback object. - /// - /// Standard HRESULT error code. - /// - /// - /// While the function can handle multiple paragraphs, the text range - /// should not arbitrarily split the middle of paragraphs, unless the - /// given text span is considered a whole unit. Otherwise the - /// returned properties for the first and last characters will - /// inappropriately allow breaks. - /// - /// - /// Special cases include the first, last, and surrogate characters. Any - /// text span is treated as if adjacent to inline objects on either side. - /// So the rules with contingent-break opportunities are used, where the - /// edge between text and inline objects is always treated as a potential - /// break opportunity, dependent on any overriding rules of the adjacent - /// objects to prohibit or force the break (see Unicode TR #14). - /// Surrogate pairs never break between. - /// - STDMETHOD(AnalyzeLineBreakpoints)( - IDWriteTextAnalysisSource* analysisSource, - UINT32 textPosition, - UINT32 textLength, - IDWriteTextAnalysisSink* analysisSink - ) PURE; - - /// - /// Parses the input text string and maps it to the set of glyphs and associated glyph data - /// according to the font and the writing system's rendering rules. - /// - /// The string to convert to glyphs. - /// The length of textString. - /// The font face to get glyphs from. - /// Set to true if the text is intended to be - /// drawn vertically. - /// Set to TRUE for right-to-left text. - /// Script analysis result from AnalyzeScript. - /// The locale to use when selecting glyphs. - /// e.g. the same character may map to different glyphs for ja-jp vs zh-chs. - /// If this is NULL then the default mapping based on the script is used. - /// Optional number substitution which - /// selects the appropriate glyphs for digits and related numeric characters, - /// depending on the results obtained from AnalyzeNumberSubstitution. Passing - /// null indicates that no substitution is needed and that the digits should - /// receive nominal glyphs. - /// An array of pointers to the sets of typographic - /// features to use in each feature range. - /// The length of each feature range, in characters. - /// The sum of all lengths should be equal to textLength. - /// The number of feature ranges. - /// The maximum number of glyphs that can be - /// returned. - /// The mapping from character ranges to glyph - /// ranges. - /// Per-character output properties. - /// Output glyph indices. - /// Per-glyph output properties. - /// The actual number of glyphs returned if - /// the call succeeds. - /// - /// Standard HRESULT error code. - /// - /// - /// Note that the mapping from characters to glyphs is, in general, many- - /// to-many. The recommended estimate for the per-glyph output buffers is - /// (3 * textLength / 2 + 16). This is not guaranteed to be sufficient. - /// - /// The value of the actualGlyphCount parameter is only valid if the call - /// succeeds. In the event that maxGlyphCount is not big enough - /// E_NOT_SUFFICIENT_BUFFER, which is equivalent to HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER), - /// will be returned. The application should allocate a larger buffer and try again. - /// - STDMETHOD(GetGlyphs)( - __in_ecount(textLength) WCHAR const* textString, - UINT32 textLength, - IDWriteFontFace* fontFace, - BOOL isSideways, - BOOL isRightToLeft, - __in DWRITE_SCRIPT_ANALYSIS const* scriptAnalysis, - __in_z_opt WCHAR const* localeName, - __maybenull IDWriteNumberSubstitution* numberSubstitution, - __in_ecount_opt(featureRanges) DWRITE_TYPOGRAPHIC_FEATURES const** features, - __in_ecount_opt(featureRanges) UINT32 const* featureRangeLengths, - UINT32 featureRanges, - UINT32 maxGlyphCount, - __out_ecount(textLength) UINT16* clusterMap, - __out_ecount(textLength) DWRITE_SHAPING_TEXT_PROPERTIES* textProps, - __out_ecount(maxGlyphCount) UINT16* glyphIndices, - __out_ecount(maxGlyphCount) DWRITE_SHAPING_GLYPH_PROPERTIES* glyphProps, - __out UINT32* actualGlyphCount - ) PURE; - - /// - /// Place glyphs output from the GetGlyphs method according to the font - /// and the writing system's rendering rules. - /// - /// The original string the glyphs came from. - /// The mapping from character ranges to glyph - /// ranges. Returned by GetGlyphs. - /// Per-character properties. Returned by - /// GetGlyphs. - /// The length of textString. - /// Glyph indices. See GetGlyphs - /// Per-glyph properties. See GetGlyphs - /// The number of glyphs. - /// The font face the glyphs came from. - /// Logical font size in DIP's. - /// Set to true if the text is intended to be - /// drawn vertically. - /// Set to TRUE for right-to-left text. - /// Script analysis result from AnalyzeScript. - /// The locale to use when selecting glyphs. - /// e.g. the same character may map to different glyphs for ja-jp vs zh-chs. - /// If this is NULL then the default mapping based on the script is used. - /// An array of pointers to the sets of typographic - /// features to use in each feature range. - /// The length of each feature range, in characters. - /// The sum of all lengths should be equal to textLength. - /// The number of feature ranges. - /// The advance width of each glyph. - /// The offset of the origin of each glyph. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetGlyphPlacements)( - __in_ecount(textLength) WCHAR const* textString, - __in_ecount(textLength) UINT16 const* clusterMap, - __in_ecount(textLength) DWRITE_SHAPING_TEXT_PROPERTIES* textProps, - UINT32 textLength, - __in_ecount(glyphCount) UINT16 const* glyphIndices, - __in_ecount(glyphCount) DWRITE_SHAPING_GLYPH_PROPERTIES const* glyphProps, - UINT32 glyphCount, - IDWriteFontFace * fontFace, - FLOAT fontEmSize, - BOOL isSideways, - BOOL isRightToLeft, - __in DWRITE_SCRIPT_ANALYSIS const* scriptAnalysis, - __in_z_opt WCHAR const* localeName, - __in_ecount_opt(featureRanges) DWRITE_TYPOGRAPHIC_FEATURES const** features, - __in_ecount_opt(featureRanges) UINT32 const* featureRangeLengths, - UINT32 featureRanges, - __out_ecount(glyphCount) FLOAT* glyphAdvances, - __out_ecount(glyphCount) DWRITE_GLYPH_OFFSET* glyphOffsets - ) PURE; - - /// - /// Place glyphs output from the GetGlyphs method according to the font - /// and the writing system's rendering rules. - /// - /// The original string the glyphs came from. - /// The mapping from character ranges to glyph - /// ranges. Returned by GetGlyphs. - /// Per-character properties. Returned by - /// GetGlyphs. - /// The length of textString. - /// Glyph indices. See GetGlyphs - /// Per-glyph properties. See GetGlyphs - /// The number of glyphs. - /// The font face the glyphs came from. - /// Logical font size in DIP's. - /// Number of physical pixels per DIP. For example, if the DPI of the rendering surface is 96 this - /// value is 1.0f. If the DPI is 120, this value is 120.0f/96. - /// Optional transform applied to the glyphs and their positions. This transform is applied after the - /// scaling specified by the font size and pixelsPerDip. - /// - /// When set to FALSE, the metrics are the same as the metrics of GDI aliased text. - /// When set to TRUE, the metrics are the same as the metrics of text measured by GDI using a font - /// created with CLEARTYPE_NATURAL_QUALITY. - /// - /// Set to true if the text is intended to be - /// drawn vertically. - /// Set to TRUE for right-to-left text. - /// Script analysis result from AnalyzeScript. - /// The locale to use when selecting glyphs. - /// e.g. the same character may map to different glyphs for ja-jp vs zh-chs. - /// If this is NULL then the default mapping based on the script is used. - /// An array of pointers to the sets of typographic - /// features to use in each feature range. - /// The length of each feature range, in characters. - /// The sum of all lengths should be equal to textLength. - /// The number of feature ranges. - /// The advance width of each glyph. - /// The offset of the origin of each glyph. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetGdiCompatibleGlyphPlacements)( - __in_ecount(textLength) WCHAR const* textString, - __in_ecount(textLength) UINT16 const* clusterMap, - __in_ecount(textLength) DWRITE_SHAPING_TEXT_PROPERTIES* textProps, - UINT32 textLength, - __in_ecount(glyphCount) UINT16 const* glyphIndices, - __in_ecount(glyphCount) DWRITE_SHAPING_GLYPH_PROPERTIES const* glyphProps, - UINT32 glyphCount, - IDWriteFontFace * fontFace, - FLOAT fontEmSize, - FLOAT pixelsPerDip, - __in_opt DWRITE_MATRIX const* transform, - BOOL useGdiNatural, - BOOL isSideways, - BOOL isRightToLeft, - __in DWRITE_SCRIPT_ANALYSIS const* scriptAnalysis, - __in_z_opt WCHAR const* localeName, - __in_ecount_opt(featureRanges) DWRITE_TYPOGRAPHIC_FEATURES const** features, - __in_ecount_opt(featureRanges) UINT32 const* featureRangeLengths, - UINT32 featureRanges, - __out_ecount(glyphCount) FLOAT* glyphAdvances, - __out_ecount(glyphCount) DWRITE_GLYPH_OFFSET* glyphOffsets - ) PURE; -}; - -/// -/// The DWRITE_GLYPH_RUN structure contains the information needed by renderers -/// to draw glyph runs. All coordinates are in device independent pixels (DIPs). -/// -struct DWRITE_GLYPH_RUN -{ - /// - /// The physical font face to draw with. - /// - __notnull IDWriteFontFace* fontFace; - - /// - /// Logical size of the font in DIPs, not points (equals 1/96 inch). - /// - FLOAT fontEmSize; - - /// - /// The number of glyphs. - /// - UINT32 glyphCount; - - /// - /// The indices to render. - /// - __field_ecount(glyphCount) UINT16 const* glyphIndices; - - /// - /// Glyph advance widths. - /// - __field_ecount_opt(glyphCount) FLOAT const* glyphAdvances; - - /// - /// Glyph offsets. - /// - __field_ecount_opt(glyphCount) DWRITE_GLYPH_OFFSET const* glyphOffsets; - - /// - /// If true, specifies that glyphs are rotated 90 degrees to the left and - /// vertical metrics are used. Vertical writing is achieved by specifying - /// isSideways = true and rotating the entire run 90 degrees to the right - /// via a rotate transform. - /// - BOOL isSideways; - - /// - /// The implicit resolved bidi level of the run. Odd levels indicate - /// right-to-left languages like Hebrew and Arabic, while even levels - /// indicate left-to-right languages like English and Japanese (when - /// written horizontally). For right-to-left languages, the text origin - /// is on the right, and text should be drawn to the left. - /// - UINT32 bidiLevel; -}; - -/// -/// The DWRITE_GLYPH_RUN_DESCRIPTION structure contains additional properties -/// related to those in DWRITE_GLYPH_RUN. -/// -struct DWRITE_GLYPH_RUN_DESCRIPTION -{ - /// - /// The locale name associated with this run. - /// - __nullterminated WCHAR const* localeName; - - /// - /// The text associated with the glyphs. - /// - __field_ecount(stringLength) WCHAR const* string; - - /// - /// The number of characters (UTF16 code-units). - /// Note that this may be different than the number of glyphs. - /// - UINT32 stringLength; - - /// - /// An array of indices to the glyph indices array, of the first glyphs of - /// all the glyph clusters of the glyphs to render. - /// - __field_ecount(stringLength) UINT16 const* clusterMap; - - /// - /// Corresponding text position in the original string - /// this glyph run came from. - /// - UINT32 textPosition; -}; - -/// -/// The DWRITE_UNDERLINE structure contains about the size and placement of -/// underlines. All coordinates are in device independent pixels (DIPs). -/// -struct DWRITE_UNDERLINE -{ - /// - /// Width of the underline, measured parallel to the baseline. - /// - FLOAT width; - - /// - /// Thickness of the underline, measured perpendicular to the - /// baseline. - /// - FLOAT thickness; - - /// - /// Offset of the underline from the baseline. - /// A positive offset represents a position below the baseline and - /// a negative offset is above. - /// - FLOAT offset; - - /// - /// Height of the tallest run where the underline applies. - /// - FLOAT runHeight; - - /// - /// Reading direction of the text associated with the underline. This - /// value is used to interpret whether the width value runs horizontally - /// or vertically. - /// - DWRITE_READING_DIRECTION readingDirection; - - /// - /// Flow direction of the text associated with the underline. This value - /// is used to interpret whether the thickness value advances top to - /// bottom, left to right, or right to left. - /// - DWRITE_FLOW_DIRECTION flowDirection; - - /// - /// Locale of the text the underline is being drawn under. Can be - /// pertinent where the locale affects how the underline is drawn. - /// For example, in vertical text, the underline belongs on the - /// left for Chinese but on the right for Japanese. - /// This choice is completely left up to higher levels. - /// - __nullterminated WCHAR const* localeName; - - /// - /// The measuring mode can be useful to the renderer to determine how - /// underlines are rendered, e.g. rounding the thickness to a whole pixel - /// in GDI-compatible modes. - /// - DWRITE_MEASURING_MODE measuringMode; -}; - -/// -/// The DWRITE_STRIKETHROUGH structure contains about the size and placement of -/// strickthroughs. All coordinates are in device independent pixels (DIPs). -/// -struct DWRITE_STRIKETHROUGH -{ - /// - /// Width of the strikethrough, measured parallel to the baseline. - /// - FLOAT width; - - /// - /// Thickness of the strikethrough, measured perpendicular to the - /// baseline. - /// - FLOAT thickness; - - /// - /// Offset of the stikethrough from the baseline. - /// A positive offset represents a position below the baseline and - /// a negative offset is above. - /// - FLOAT offset; - - /// - /// Reading direction of the text associated with the strikethrough. This - /// value is used to interpret whether the width value runs horizontally - /// or vertically. - /// - DWRITE_READING_DIRECTION readingDirection; - - /// - /// Flow direction of the text associated with the strikethrough. This - /// value is used to interpret whether the thickness value advances top to - /// bottom, left to right, or right to left. - /// - DWRITE_FLOW_DIRECTION flowDirection; - - /// - /// Locale of the range. Can be pertinent where the locale affects the style. - /// - __nullterminated WCHAR const* localeName; - - /// - /// The measuring mode can be useful to the renderer to determine how - /// underlines are rendered, e.g. rounding the thickness to a whole pixel - /// in GDI-compatible modes. - /// - DWRITE_MEASURING_MODE measuringMode; -}; - -/// -/// The DWRITE_LINE_METRICS structure contains information about a formatted -/// line of text. -/// -struct DWRITE_LINE_METRICS -{ - /// - /// The number of total text positions in the line. - /// This includes any trailing whitespace and newline characters. - /// - UINT32 length; - - /// - /// The number of whitespace positions at the end of the line. Newline - /// sequences are considered whitespace. - /// - UINT32 trailingWhitespaceLength; - - /// - /// The number of characters in the newline sequence at the end of the line. - /// If the count is zero, then the line was either wrapped or it is the - /// end of the text. - /// - UINT32 newlineLength; - - /// - /// Height of the line as measured from top to bottom. - /// - FLOAT height; - - /// - /// Distance from the top of the line to its baseline. - /// - FLOAT baseline; - - /// - /// The line is trimmed. - /// - BOOL isTrimmed; -}; - - -/// -/// The DWRITE_CLUSTER_METRICS structure contains information about a glyph cluster. -/// -struct DWRITE_CLUSTER_METRICS -{ - /// - /// The total advance width of all glyphs in the cluster. - /// - FLOAT width; - - /// - /// The number of text positions in the cluster. - /// - UINT16 length; - - /// - /// Indicate whether line can be broken right after the cluster. - /// - UINT16 canWrapLineAfter : 1; - - /// - /// Indicate whether the cluster corresponds to whitespace character. - /// - UINT16 isWhitespace : 1; - - /// - /// Indicate whether the cluster corresponds to a newline character. - /// - UINT16 isNewline : 1; - - /// - /// Indicate whether the cluster corresponds to soft hyphen character. - /// - UINT16 isSoftHyphen : 1; - - /// - /// Indicate whether the cluster is read from right to left. - /// - UINT16 isRightToLeft : 1; - - UINT16 padding : 11; -}; - - -/// -/// Overall metrics associated with text after layout. -/// All coordinates are in device independent pixels (DIPs). -/// -struct DWRITE_TEXT_METRICS -{ - /// - /// Left-most point of formatted text relative to layout box - /// (excluding any glyph overhang). - /// - FLOAT left; - - /// - /// Top-most point of formatted text relative to layout box - /// (excluding any glyph overhang). - /// - FLOAT top; - - /// - /// The width of the formatted text ignoring trailing whitespace - /// at the end of each line. - /// - FLOAT width; - - /// - /// The width of the formatted text taking into account the - /// trailing whitespace at the end of each line. - /// - FLOAT widthIncludingTrailingWhitespace; - - /// - /// The height of the formatted text. The height of an empty string - /// is determined by the size of the default font's line height. - /// - FLOAT height; - - /// - /// Initial width given to the layout. Depending on whether the text - /// was wrapped or not, it can be either larger or smaller than the - /// text content width. - /// - FLOAT layoutWidth; - - /// - /// Initial height given to the layout. Depending on the length of the - /// text, it may be larger or smaller than the text content height. - /// - FLOAT layoutHeight; - - /// - /// The maximum reordering count of any line of text, used - /// to calculate the most number of hit-testing boxes needed. - /// If the layout has no bidirectional text or no text at all, - /// the minimum level is 1. - /// - UINT32 maxBidiReorderingDepth; - - /// - /// Total number of lines. - /// - UINT32 lineCount; -}; - - -/// -/// Properties describing the geometric measurement of an -/// application-defined inline object. -/// -struct DWRITE_INLINE_OBJECT_METRICS -{ - /// - /// Width of the inline object. - /// - FLOAT width; - - /// - /// Height of the inline object as measured from top to bottom. - /// - FLOAT height; - - /// - /// Distance from the top of the object to the baseline where it is lined up with the adjacent text. - /// If the baseline is at the bottom, baseline simply equals height. - /// - FLOAT baseline; - - /// - /// Flag indicating whether the object is to be placed upright or alongside the text baseline - /// for vertical text. - /// - BOOL supportsSideways; -}; - - -/// -/// The DWRITE_OVERHANG_METRICS structure holds how much any visible pixels -/// (in DIPs) overshoot each side of the layout or inline objects. -/// -/// -/// Positive overhangs indicate that the visible area extends outside the layout -/// box or inline object, while negative values mean there is whitespace inside. -/// The returned values are unaffected by rendering transforms or pixel snapping. -/// Additionally, they may not exactly match final target's pixel bounds after -/// applying grid fitting and hinting. -/// -struct DWRITE_OVERHANG_METRICS -{ - /// - /// The distance from the left-most visible DIP to its left alignment edge. - /// - FLOAT left; - - /// - /// The distance from the top-most visible DIP to its top alignment edge. - /// - FLOAT top; - - /// - /// The distance from the right-most visible DIP to its right alignment edge. - /// - FLOAT right; - - /// - /// The distance from the bottom-most visible DIP to its bottom alignment edge. - /// - FLOAT bottom; -}; - - -/// -/// Geometry enclosing of text positions. -/// -struct DWRITE_HIT_TEST_METRICS -{ - /// - /// First text position within the geometry. - /// - UINT32 textPosition; - - /// - /// Number of text positions within the geometry. - /// - UINT32 length; - - /// - /// Left position of the top-left coordinate of the geometry. - /// - FLOAT left; - - /// - /// Top position of the top-left coordinate of the geometry. - /// - FLOAT top; - - /// - /// Geometry's width. - /// - FLOAT width; - - /// - /// Geometry's height. - /// - FLOAT height; - - /// - /// Bidi level of text positions enclosed within the geometry. - /// - UINT32 bidiLevel; - - /// - /// Geometry encloses text? - /// - BOOL isText; - - /// - /// Range is trimmed. - /// - BOOL isTrimmed; -}; - - -interface IDWriteTextRenderer; - - -/// -/// The IDWriteInlineObject interface wraps an application defined inline graphic, -/// allowing DWrite to query metrics as if it was a glyph inline with the text. -/// -interface DWRITE_DECLARE_INTERFACE("8339FDE3-106F-47ab-8373-1C6295EB10B3") IDWriteInlineObject : public IUnknown -{ - /// - /// The application implemented rendering callback (IDWriteTextRenderer::DrawInlineObject) - /// can use this to draw the inline object without needing to cast or query the object - /// type. The text layout does not call this method directly. - /// - /// The context passed to IDWriteTextLayout::Draw. - /// The renderer passed to IDWriteTextLayout::Draw as the object's containing parent. - /// X-coordinate at the top-left corner of the inline object. - /// Y-coordinate at the top-left corner of the inline object. - /// The object should be drawn on its side. - /// The object is in an right-to-left context and should be drawn flipped. - /// The drawing effect set in IDWriteTextLayout::SetDrawingEffect. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(Draw)( - __maybenull void* clientDrawingContext, - IDWriteTextRenderer* renderer, - FLOAT originX, - FLOAT originY, - BOOL isSideways, - BOOL isRightToLeft, - __maybenull IUnknown* clientDrawingEffect - ) PURE; - - /// - /// TextLayout calls this callback function to get the measurement of the inline object. - /// - /// Returned metrics - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetMetrics)( - __out DWRITE_INLINE_OBJECT_METRICS* metrics - ) PURE; - - /// - /// TextLayout calls this callback function to get the visible extents (in DIPs) of the inline object. - /// In the case of a simple bitmap, with no padding and no overhang, all the overhangs will - /// simply be zeroes. - /// - /// Overshoot of visible extents (in DIPs) outside the object. - /// - /// Standard HRESULT error code. - /// - /// - /// The overhangs should be returned relative to the reported size of the object - /// (DWRITE_INLINE_OBJECT_METRICS::width/height), and should not be baseline - /// adjusted. If you have an image that is actually 100x100 DIPs, but you want it - /// slightly inset (perhaps it has a glow) by 20 DIPs on each side, you would - /// return a width/height of 60x60 and four overhangs of 20 DIPs. - /// - STDMETHOD(GetOverhangMetrics)( - __out DWRITE_OVERHANG_METRICS* overhangs - ) PURE; - - /// - /// Layout uses this to determine the line breaking behavior of the inline object - /// amidst the text. - /// - /// Line-breaking condition between the object and the content immediately preceding it. - /// Line-breaking condition between the object and the content immediately following it. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetBreakConditions)( - __out DWRITE_BREAK_CONDITION* breakConditionBefore, - __out DWRITE_BREAK_CONDITION* breakConditionAfter - ) PURE; -}; - -/// -/// The IDWritePixelSnapping interface defines the pixel snapping properties of a text renderer. -/// -interface DWRITE_DECLARE_INTERFACE("eaf3a2da-ecf4-4d24-b644-b34f6842024b") IDWritePixelSnapping : public IUnknown -{ - /// - /// Determines whether pixel snapping is disabled. The recommended default is FALSE, - /// unless doing animation that requires subpixel vertical placement. - /// - /// The context passed to IDWriteTextLayout::Draw. - /// Receives TRUE if pixel snapping is disabled or FALSE if it not. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(IsPixelSnappingDisabled)( - __maybenull void* clientDrawingContext, - __out BOOL* isDisabled - ) PURE; - - /// - /// Gets the current transform that maps abstract coordinates to DIPs, - /// which may disable pixel snapping upon any rotation or shear. - /// - /// The context passed to IDWriteTextLayout::Draw. - /// Receives the transform. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetCurrentTransform)( - __maybenull void* clientDrawingContext, - __out DWRITE_MATRIX* transform - ) PURE; - - /// - /// Gets the number of physical pixels per DIP. A DIP (device-independent pixel) is 1/96 inch, - /// so the pixelsPerDip value is the number of logical pixels per inch divided by 96 (yielding - /// a value of 1 for 96 DPI and 1.25 for 120). - /// - /// The context passed to IDWriteTextLayout::Draw. - /// Receives the number of physical pixels per DIP. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetPixelsPerDip)( - __maybenull void* clientDrawingContext, - __out FLOAT* pixelsPerDip - ) PURE; -}; - -/// -/// The IDWriteTextLayout interface represents a set of application-defined -/// callbacks that perform rendering of text, inline objects, and decorations -/// such as underlines. -/// -interface DWRITE_DECLARE_INTERFACE("ef8a8135-5cc6-45fe-8825-c5a0724eb819") IDWriteTextRenderer : public IDWritePixelSnapping -{ - /// - /// IDWriteTextLayout::Draw calls this function to instruct the client to - /// render a run of glyphs. - /// - /// The context passed to - /// IDWriteTextLayout::Draw. - /// X-coordinate of the baseline. - /// Y-coordinate of the baseline. - /// Specifies measuring method for glyphs in the run. - /// Renderer implementations may choose different rendering modes for given measuring methods, - /// but best results are seen when the rendering mode matches the corresponding measuring mode: - /// DWRITE_RENDERING_MODE_CLEARTYPE_NATURAL for DWRITE_MEASURING_MODE_NATURAL - /// DWRITE_RENDERING_MODE_CLEARTYPE_GDI_CLASSIC for DWRITE_MEASURING_MODE_GDI_CLASSIC - /// DWRITE_RENDERING_MODE_CLEARTYPE_GDI_NATURAL for DWRITE_MEASURING_MODE_GDI_NATURAL - /// - /// The glyph run to draw. - /// Properties of the characters - /// associated with this run. - /// The drawing effect set in - /// IDWriteTextLayout::SetDrawingEffect. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(DrawGlyphRun)( - __maybenull void* clientDrawingContext, - FLOAT baselineOriginX, - FLOAT baselineOriginY, - DWRITE_MEASURING_MODE measuringMode, - __in DWRITE_GLYPH_RUN const* glyphRun, - __in DWRITE_GLYPH_RUN_DESCRIPTION const* glyphRunDescription, - __maybenull IUnknown* clientDrawingEffect - ) PURE; - - /// - /// IDWriteTextLayout::Draw calls this function to instruct the client to draw - /// an underline. - /// - /// The context passed to - /// IDWriteTextLayout::Draw. - /// X-coordinate of the baseline. - /// Y-coordinate of the baseline. - /// Underline logical information. - /// The drawing effect set in - /// IDWriteTextLayout::SetDrawingEffect. - /// - /// Standard HRESULT error code. - /// - /// - /// A single underline can be broken into multiple calls, depending on - /// how the formatting changes attributes. If font sizes/styles change - /// within an underline, the thickness and offset will be averaged - /// weighted according to characters. - /// To get the correct top coordinate of the underline rect, add underline::offset - /// to the baseline's Y. Otherwise the underline will be immediately under the text. - /// The x coordinate will always be passed as the left side, regardless - /// of text directionality. This simplifies drawing and reduces the - /// problem of round-off that could potentially cause gaps or a double - /// stamped alpha blend. To avoid alpha overlap, round the end points - /// to the nearest device pixel. - /// - STDMETHOD(DrawUnderline)( - __maybenull void* clientDrawingContext, - FLOAT baselineOriginX, - FLOAT baselineOriginY, - __in DWRITE_UNDERLINE const* underline, - __maybenull IUnknown* clientDrawingEffect - ) PURE; - - /// - /// IDWriteTextLayout::Draw calls this function to instruct the client to draw - /// a strikethrough. - /// - /// The context passed to - /// IDWriteTextLayout::Draw. - /// X-coordinate of the baseline. - /// Y-coordinate of the baseline. - /// Strikethrough logical information. - /// The drawing effect set in - /// IDWriteTextLayout::SetDrawingEffect. - /// - /// Standard HRESULT error code. - /// - /// - /// A single strikethrough can be broken into multiple calls, depending on - /// how the formatting changes attributes. Strikethrough is not averaged - /// across font sizes/styles changes. - /// To get the correct top coordinate of the strikethrough rect, - /// add strikethrough::offset to the baseline's Y. - /// Like underlines, the x coordinate will always be passed as the left side, - /// regardless of text directionality. - /// - STDMETHOD(DrawStrikethrough)( - __maybenull void* clientDrawingContext, - FLOAT baselineOriginX, - FLOAT baselineOriginY, - __in DWRITE_STRIKETHROUGH const* strikethrough, - __maybenull IUnknown* clientDrawingEffect - ) PURE; - - /// - /// IDWriteTextLayout::Draw calls this application callback when it needs to - /// draw an inline object. - /// - /// The context passed to IDWriteTextLayout::Draw. - /// X-coordinate at the top-left corner of the inline object. - /// Y-coordinate at the top-left corner of the inline object. - /// The object set using IDWriteTextLayout::SetInlineObject. - /// The object should be drawn on its side. - /// The object is in an right-to-left context and should be drawn flipped. - /// The drawing effect set in - /// IDWriteTextLayout::SetDrawingEffect. - /// - /// Standard HRESULT error code. - /// - /// - /// The right-to-left flag is a hint for those cases where it would look - /// strange for the image to be shown normally (like an arrow pointing to - /// right to indicate a submenu). - /// - STDMETHOD(DrawInlineObject)( - __maybenull void* clientDrawingContext, - FLOAT originX, - FLOAT originY, - IDWriteInlineObject* inlineObject, - BOOL isSideways, - BOOL isRightToLeft, - __maybenull IUnknown* clientDrawingEffect - ) PURE; -}; - -/// -/// The IDWriteTextLayout interface represents a block of text after it has -/// been fully analyzed and formatted. -/// -/// All coordinates are in device independent pixels (DIPs). -/// -interface DWRITE_DECLARE_INTERFACE("53737037-6d14-410b-9bfe-0b182bb70961") IDWriteTextLayout : public IDWriteTextFormat -{ - /// - /// Set layout maximum width - /// - /// Layout maximum width - /// - /// Standard HRESULT error code. - /// - STDMETHOD(SetMaxWidth)( - FLOAT maxWidth - ) PURE; - - /// - /// Set layout maximum height - /// - /// Layout maximum height - /// - /// Standard HRESULT error code. - /// - STDMETHOD(SetMaxHeight)( - FLOAT maxHeight - ) PURE; - - /// - /// Set the font collection. - /// - /// The font collection to set - /// Text range to which this change applies. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(SetFontCollection)( - IDWriteFontCollection* fontCollection, - DWRITE_TEXT_RANGE textRange - ) PURE; - - /// - /// Set null-terminated font family name. - /// - /// Font family name - /// Text range to which this change applies. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(SetFontFamilyName)( - __in_z WCHAR const* fontFamilyName, - DWRITE_TEXT_RANGE textRange - ) PURE; - - /// - /// Set font weight. - /// - /// Font weight - /// Text range to which this change applies. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(SetFontWeight)( - DWRITE_FONT_WEIGHT fontWeight, - DWRITE_TEXT_RANGE textRange - ) PURE; - - /// - /// Set font style. - /// - /// Font style - /// Text range to which this change applies. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(SetFontStyle)( - DWRITE_FONT_STYLE fontStyle, - DWRITE_TEXT_RANGE textRange - ) PURE; - - /// - /// Set font stretch. - /// - /// font stretch - /// Text range to which this change applies. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(SetFontStretch)( - DWRITE_FONT_STRETCH fontStretch, - DWRITE_TEXT_RANGE textRange - ) PURE; - - /// - /// Set font em height. - /// - /// Font em height - /// Text range to which this change applies. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(SetFontSize)( - FLOAT fontSize, - DWRITE_TEXT_RANGE textRange - ) PURE; - - /// - /// Set underline. - /// - /// The Boolean flag indicates whether underline takes place - /// Text range to which this change applies. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(SetUnderline)( - BOOL hasUnderline, - DWRITE_TEXT_RANGE textRange - ) PURE; - - /// - /// Set strikethrough. - /// - /// The Boolean flag indicates whether strikethrough takes place - /// Text range to which this change applies. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(SetStrikethrough)( - BOOL hasStrikethrough, - DWRITE_TEXT_RANGE textRange - ) PURE; - - /// - /// Set application-defined drawing effect. - /// - /// Pointer to an application-defined drawing effect. - /// Text range to which this change applies. - /// - /// Standard HRESULT error code. - /// - /// - /// This drawing effect is associated with the specified range and will be passed back - /// to the application via the callback when the range is drawn at drawing time. - /// - STDMETHOD(SetDrawingEffect)( - IUnknown* drawingEffect, - DWRITE_TEXT_RANGE textRange - ) PURE; - - /// - /// Set inline object. - /// - /// Pointer to an application-implemented inline object. - /// Text range to which this change applies. - /// - /// Standard HRESULT error code. - /// - /// - /// This inline object applies to the specified range and will be passed back - /// to the application via the DrawInlineObject callback when the range is drawn. - /// Any text in that range will be suppressed. - /// - STDMETHOD(SetInlineObject)( - IDWriteInlineObject* inlineObject, - DWRITE_TEXT_RANGE textRange - ) PURE; - - /// - /// Set font typography features. - /// - /// Pointer to font typography setting. - /// Text range to which this change applies. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(SetTypography)( - IDWriteTypography* typography, - DWRITE_TEXT_RANGE textRange - ) PURE; - - /// - /// Set locale name. - /// - /// Locale name - /// Text range to which this change applies. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(SetLocaleName)( - __in_z WCHAR const* localeName, - DWRITE_TEXT_RANGE textRange - ) PURE; - - /// - /// Get layout maximum width - /// - STDMETHOD_(FLOAT, GetMaxWidth)() PURE; - - /// - /// Get layout maximum height - /// - STDMETHOD_(FLOAT, GetMaxHeight)() PURE; - - /// - /// Get the font collection where the current position is at. - /// - /// The current text position. - /// The current font collection - /// Text range to which this change applies. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetFontCollection)( - UINT32 currentPosition, - __out IDWriteFontCollection** fontCollection, - __out_opt DWRITE_TEXT_RANGE* textRange = NULL - ) PURE; - - /// - /// Get the length of the font family name where the current position is at. - /// - /// The current text position. - /// Size of the character array in character count not including the terminated NULL character. - /// The position range of the current format. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetFontFamilyNameLength)( - UINT32 currentPosition, - __out UINT32* nameLength, - __out_opt DWRITE_TEXT_RANGE* textRange = NULL - ) PURE; - - /// - /// Copy the font family name where the current position is at. - /// - /// The current text position. - /// Character array that receives the current font family name - /// Size of the character array in character count including the terminated NULL character. - /// The position range of the current format. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetFontFamilyName)( - UINT32 currentPosition, - __out_ecount_z(nameSize) WCHAR* fontFamilyName, - UINT32 nameSize, - __out_opt DWRITE_TEXT_RANGE* textRange = NULL - ) PURE; - - /// - /// Get the font weight where the current position is at. - /// - /// The current text position. - /// The current font weight - /// The position range of the current format. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetFontWeight)( - UINT32 currentPosition, - __out DWRITE_FONT_WEIGHT* fontWeight, - __out_opt DWRITE_TEXT_RANGE* textRange = NULL - ) PURE; - - /// - /// Get the font style where the current position is at. - /// - /// The current text position. - /// The current font style - /// The position range of the current format. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetFontStyle)( - UINT32 currentPosition, - __out DWRITE_FONT_STYLE* fontStyle, - __out_opt DWRITE_TEXT_RANGE* textRange = NULL - ) PURE; - - /// - /// Get the font stretch where the current position is at. - /// - /// The current text position. - /// The current font stretch - /// The position range of the current format. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetFontStretch)( - UINT32 currentPosition, - __out DWRITE_FONT_STRETCH* fontStretch, - __out_opt DWRITE_TEXT_RANGE* textRange = NULL - ) PURE; - - /// - /// Get the font em height where the current position is at. - /// - /// The current text position. - /// The current font em height - /// The position range of the current format. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetFontSize)( - UINT32 currentPosition, - __out FLOAT* fontSize, - __out_opt DWRITE_TEXT_RANGE* textRange = NULL - ) PURE; - - /// - /// Get the underline presence where the current position is at. - /// - /// The current text position. - /// The Boolean flag indicates whether text is underlined. - /// The position range of the current format. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetUnderline)( - UINT32 currentPosition, - __out BOOL* hasUnderline, - __out_opt DWRITE_TEXT_RANGE* textRange = NULL - ) PURE; - - /// - /// Get the strikethrough presence where the current position is at. - /// - /// The current text position. - /// The Boolean flag indicates whether text has strikethrough. - /// The position range of the current format. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetStrikethrough)( - UINT32 currentPosition, - __out BOOL* hasStrikethrough, - __out_opt DWRITE_TEXT_RANGE* textRange = NULL - ) PURE; - - /// - /// Get the application-defined drawing effect where the current position is at. - /// - /// The current text position. - /// The current application-defined drawing effect. - /// The position range of the current format. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetDrawingEffect)( - UINT32 currentPosition, - __out IUnknown** drawingEffect, - __out_opt DWRITE_TEXT_RANGE* textRange = NULL - ) PURE; - - /// - /// Get the inline object at the given position. - /// - /// The given text position. - /// The inline object. - /// The position range of the current format. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetInlineObject)( - UINT32 currentPosition, - __out IDWriteInlineObject** inlineObject, - __out_opt DWRITE_TEXT_RANGE* textRange = NULL - ) PURE; - - /// - /// Get the typography setting where the current position is at. - /// - /// The current text position. - /// The current typography setting. - /// The position range of the current format. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetTypography)( - UINT32 currentPosition, - __out IDWriteTypography** typography, - __out_opt DWRITE_TEXT_RANGE* textRange = NULL - ) PURE; - - /// - /// Get the length of the locale name where the current position is at. - /// - /// The current text position. - /// Size of the character array in character count not including the terminated NULL character. - /// The position range of the current format. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetLocaleNameLength)( - UINT32 currentPosition, - __out UINT32* nameLength, - __out_opt DWRITE_TEXT_RANGE* textRange = NULL - ) PURE; - - /// - /// Get the locale name where the current position is at. - /// - /// The current text position. - /// Character array that receives the current locale name - /// Size of the character array in character count including the terminated NULL character. - /// The position range of the current format. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetLocaleName)( - UINT32 currentPosition, - __out_ecount_z(nameSize) WCHAR* localeName, - UINT32 nameSize, - __out_opt DWRITE_TEXT_RANGE* textRange = NULL - ) PURE; - - /// - /// Initiate drawing of the text. - /// - /// An application defined value - /// included in rendering callbacks. - /// The set of application-defined callbacks that do - /// the actual rendering. - /// X-coordinate of the layout's left side. - /// Y-coordinate of the layout's top side. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(Draw)( - __maybenull void* clientDrawingContext, - IDWriteTextRenderer* renderer, - FLOAT originX, - FLOAT originY - ) PURE; - - /// - /// GetLineMetrics returns properties of each line. - /// - /// The array to fill with line information. - /// The maximum size of the lineMetrics array. - /// The actual size of the lineMetrics - /// array that is needed. - /// - /// Standard HRESULT error code. - /// - /// - /// If maxLineCount is not large enough E_NOT_SUFFICIENT_BUFFER, - /// which is equivalent to HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER), - /// is returned and *actualLineCount is set to the number of lines - /// needed. - /// - STDMETHOD(GetLineMetrics)( - __out_ecount_opt(maxLineCount) DWRITE_LINE_METRICS* lineMetrics, - UINT32 maxLineCount, - __out UINT32* actualLineCount - ) PURE; - - /// - /// GetMetrics retrieves overall metrics for the formatted string. - /// - /// The returned metrics. - /// - /// Standard HRESULT error code. - /// - /// - /// Drawing effects like underline and strikethrough do not contribute - /// to the text size, which is essentially the sum of advance widths and - /// line heights. Additionally, visible swashes and other graphic - /// adornments may extend outside the returned width and height. - /// - STDMETHOD(GetMetrics)( - __out DWRITE_TEXT_METRICS* textMetrics - ) PURE; - - /// - /// GetOverhangMetrics returns the overhangs (in DIPs) of the layout and all - /// objects contained in it, including text glyphs and inline objects. - /// - /// Overshoots of visible extents (in DIPs) outside the layout. - /// - /// Standard HRESULT error code. - /// - /// - /// Any underline and strikethrough do not contribute to the black box - /// determination, since these are actually drawn by the renderer, which - /// is allowed to draw them in any variety of styles. - /// - STDMETHOD(GetOverhangMetrics)( - __out DWRITE_OVERHANG_METRICS* overhangs - ) PURE; - - /// - /// Retrieve logical properties and measurement of each cluster. - /// - /// The array to fill with cluster information. - /// The maximum size of the clusterMetrics array. - /// The actual size of the clusterMetrics array that is needed. - /// - /// Standard HRESULT error code. - /// - /// - /// If maxClusterCount is not large enough E_NOT_SUFFICIENT_BUFFER, - /// which is equivalent to HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER), - /// is returned and *actualClusterCount is set to the number of clusters - /// needed. - /// - STDMETHOD(GetClusterMetrics)( - __out_ecount_opt(maxClusterCount) DWRITE_CLUSTER_METRICS* clusterMetrics, - UINT32 maxClusterCount, - __out UINT32* actualClusterCount - ) PURE; - - /// - /// Determines the minimum possible width the layout can be set to without - /// emergency breaking between the characters of whole words. - /// - /// Minimum width. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(DetermineMinWidth)( - __out FLOAT* minWidth - ) PURE; - - /// - /// Given a coordinate (in DIPs) relative to the top-left of the layout box, - /// this returns the corresponding hit-test metrics of the text string where - /// the hit-test has occurred. This is useful for mapping mouse clicks to caret - /// positions. When the given coordinate is outside the text string, the function - /// sets the output value *isInside to false but returns the nearest character - /// position. - /// - /// X coordinate to hit-test, relative to the top-left location of the layout box. - /// Y coordinate to hit-test, relative to the top-left location of the layout box. - /// Output flag indicating whether the hit-test location is at the leading or the trailing - /// side of the character. When the output *isInside value is set to false, this value is set according to the output - /// *position value to represent the edge closest to the hit-test location. - /// Output flag indicating whether the hit-test location is inside the text string. - /// When false, the position nearest the text's edge is returned. - /// Output geometry fully enclosing the hit-test location. When the output *isInside value - /// is set to false, this structure represents the geometry enclosing the edge closest to the hit-test location. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(HitTestPoint)( - FLOAT pointX, - FLOAT pointY, - __out BOOL* isTrailingHit, - __out BOOL* isInside, - __out DWRITE_HIT_TEST_METRICS* hitTestMetrics - ) PURE; - - /// - /// Given a text position and whether the caret is on the leading or trailing - /// edge of that position, this returns the corresponding coordinate (in DIPs) - /// relative to the top-left of the layout box. This is most useful for drawing - /// the caret's current position, but it could also be used to anchor an IME to the - /// typed text or attach a floating menu near the point of interest. It may also be - /// used to programmatically obtain the geometry of a particular text position - /// for UI automation. - /// - /// Text position to get the coordinate of. - /// Flag indicating whether the location is of the leading or the trailing side of the specified text position. - /// Output caret X, relative to the top-left of the layout box. - /// Output caret Y, relative to the top-left of the layout box. - /// Output geometry fully enclosing the specified text position. - /// - /// Standard HRESULT error code. - /// - /// - /// When drawing a caret at the returned X,Y, it should should be centered on X - /// and drawn from the Y coordinate down. The height will be the size of the - /// hit-tested text (which can vary in size within a line). - /// Reading direction also affects which side of the character the caret is drawn. - /// However, the returned X coordinate will be correct for either case. - /// You can get a text length back that is larger than a single character. - /// This happens for complex scripts when multiple characters form a single cluster, - /// when diacritics join their base character, or when you test a surrogate pair. - /// - STDMETHOD(HitTestTextPosition)( - UINT32 textPosition, - BOOL isTrailingHit, - __out FLOAT* pointX, - __out FLOAT* pointY, - __out DWRITE_HIT_TEST_METRICS* hitTestMetrics - ) PURE; - - /// - /// The application calls this function to get a set of hit-test metrics - /// corresponding to a range of text positions. The main usage for this - /// is to draw highlighted selection of the text string. - /// - /// The function returns E_NOT_SUFFICIENT_BUFFER, which is equivalent to - /// HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER), when the buffer size of - /// hitTestMetrics is too small to hold all the regions calculated by the - /// function. In such situation, the function sets the output value - /// *actualHitTestMetricsCount to the number of geometries calculated. - /// The application is responsible to allocate a new buffer of greater - /// size and call the function again. - /// - /// A good value to use as an initial value for maxHitTestMetricsCount may - /// be calculated from the following equation: - /// maxHitTestMetricsCount = lineCount * maxBidiReorderingDepth - /// - /// where lineCount is obtained from the value of the output argument - /// *actualLineCount from the function IDWriteTextLayout::GetLineMetrics, - /// and the maxBidiReorderingDepth value from the DWRITE_TEXT_METRICS - /// structure of the output argument *textMetrics from the function - /// IDWriteFactory::CreateTextLayout. - /// - /// First text position of the specified range. - /// Number of positions of the specified range. - /// Offset of the X origin (left of the layout box) which is added to each of the hit-test metrics returned. - /// Offset of the Y origin (top of the layout box) which is added to each of the hit-test metrics returned. - /// Pointer to a buffer of the output geometry fully enclosing the specified position range. - /// Maximum number of distinct metrics it could hold in its buffer memory. - /// Actual number of metrics returned or needed. - /// - /// Standard HRESULT error code. - /// - /// - /// There are no gaps in the returned metrics. While there could be visual gaps, - /// depending on bidi ordering, each range is contiguous and reports all the text, - /// including any hidden characters and trimmed text. - /// The height of each returned range will be the same within each line, regardless - /// of how the font sizes vary. - /// - STDMETHOD(HitTestTextRange)( - UINT32 textPosition, - UINT32 textLength, - FLOAT originX, - FLOAT originY, - __out_ecount_opt(maxHitTestMetricsCount) DWRITE_HIT_TEST_METRICS* hitTestMetrics, - UINT32 maxHitTestMetricsCount, - __out UINT32* actualHitTestMetricsCount - ) PURE; -}; - -/// -/// Encapsulates a 32-bit device independent bitmap and device context, which can be used for rendering glyphs. -/// -interface DWRITE_DECLARE_INTERFACE("5e5a32a3-8dff-4773-9ff6-0696eab77267") IDWriteBitmapRenderTarget : public IUnknown -{ - /// - /// Draws a run of glyphs to the bitmap. - /// - /// Horizontal position of the baseline origin, in DIPs, relative to the upper-left corner of the DIB. - /// Vertical position of the baseline origin, in DIPs, relative to the upper-left corner of the DIB. - /// Specifies measuring method for glyphs in the run. - /// Renderer implementations may choose different rendering modes for different measuring methods, for example - /// DWRITE_RENDERING_MODE_CLEARTYPE_NATURAL for DWRITE_MEASURING_MODE_NATURAL, - /// DWRITE_RENDERING_MODE_CLEARTYPE_GDI_CLASSIC for DWRITE_MEASURING_MODE_GDI_CLASSIC, and - /// DWRITE_RENDERING_MODE_CLEARTYPE_GDI_NATURAL for DWRITE_MEASURING_MODE_GDI_NATURAL. - /// - /// Structure containing the properties of the glyph run. - /// Object that controls rendering behavior. - /// Specifies the foreground color of the text. - /// Optional rectangle that receives the bounding box (in pixels not DIPs) of all the pixels affected by - /// drawing the glyph run. The black box rectangle may extend beyond the dimensions of the bitmap. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(DrawGlyphRun)( - FLOAT baselineOriginX, - FLOAT baselineOriginY, - DWRITE_MEASURING_MODE measuringMode, - __in DWRITE_GLYPH_RUN const* glyphRun, - IDWriteRenderingParams* renderingParams, - COLORREF textColor, - __out_opt RECT* blackBoxRect = NULL - ) PURE; - - /// - /// Gets a handle to the memory device context. - /// - /// - /// Returns the device context handle. - /// - /// - /// An application can use the device context to draw using GDI functions. An application can obtain the bitmap handle - /// (HBITMAP) by calling GetCurrentObject. An application that wants information about the underlying bitmap, including - /// a pointer to the pixel data, can call GetObject to fill in a DIBSECTION structure. The bitmap is always a 32-bit - /// top-down DIB. - /// - STDMETHOD_(HDC, GetMemoryDC)() PURE; - - /// - /// Gets the number of bitmap pixels per DIP. A DIP (device-independent pixel) is 1/96 inch so this value is the number - /// if pixels per inch divided by 96. - /// - /// - /// Returns the number of bitmap pixels per DIP. - /// - STDMETHOD_(FLOAT, GetPixelsPerDip)() PURE; - - /// - /// Sets the number of bitmap pixels per DIP. A DIP (device-independent pixel) is 1/96 inch so this value is the number - /// if pixels per inch divided by 96. - /// - /// Specifies the number of pixels per DIP. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(SetPixelsPerDip)( - FLOAT pixelsPerDip - ) PURE; - - /// - /// Gets the transform that maps abstract coordinate to DIPs. By default this is the identity - /// transform. Note that this is unrelated to the world transform of the underlying device - /// context. - /// - /// Receives the transform. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetCurrentTransform)( - __out DWRITE_MATRIX* transform - ) PURE; - - /// - /// Sets the transform that maps abstract coordinate to DIPs. This does not affect the world - /// transform of the underlying device context. - /// - /// Specifies the new transform. This parameter can be NULL, in which - /// case the identity transform is implied. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(SetCurrentTransform)( - __in_opt DWRITE_MATRIX const* transform - ) PURE; - - /// - /// Gets the dimensions of the bitmap. - /// - /// Receives the size of the bitmap in pixels. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetSize)( - __out SIZE* size - ) PURE; - - /// - /// Resizes the bitmap. - /// - /// New bitmap width, in pixels. - /// New bitmap height, in pixels. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(Resize)( - UINT32 width, - UINT32 height - ) PURE; -}; - -/// -/// The GDI interop interface provides interoperability with GDI. -/// -interface DWRITE_DECLARE_INTERFACE("1edd9491-9853-4299-898f-6432983b6f3a") IDWriteGdiInterop : public IUnknown -{ - /// - /// Creates a font object that matches the properties specified by the LOGFONT structure. - /// - /// Structure containing a GDI-compatible font description. - /// Receives a newly created font object if successful, or NULL in case of error. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(CreateFontFromLOGFONT)( - __in LOGFONTW const* logFont, - __out IDWriteFont** font - ) PURE; - - /// - /// Initializes a LOGFONT structure based on the GDI-compatible properties of the specified font. - /// - /// Specifies a font in the system font collection. - /// Structure that receives a GDI-compatible font description. - /// Contains TRUE if the specified font object is part of the system font collection - /// or FALSE otherwise. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(ConvertFontToLOGFONT)( - IDWriteFont* font, - __out LOGFONTW* logFont, - __out BOOL* isSystemFont - ) PURE; - - /// - /// Initializes a LOGFONT structure based on the GDI-compatible properties of the specified font. - /// - /// Specifies a font face. - /// Structure that receives a GDI-compatible font description. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(ConvertFontFaceToLOGFONT)( - IDWriteFontFace* font, - __out LOGFONTW* logFont - ) PURE; - - /// - /// Creates a font face object that corresponds to the currently selected HFONT. - /// - /// Handle to a device context into which a font has been selected. It is assumed that the client - /// has already performed font mapping and that the font selected into the DC is the actual font that would be used - /// for rendering glyphs. - /// Contains the newly created font face object, or NULL in case of failure. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(CreateFontFaceFromHdc)( - HDC hdc, - __out IDWriteFontFace** fontFace - ) PURE; - - /// - /// Creates an object that encapsulates a bitmap and memory DC which can be used for rendering glyphs. - /// - /// Optional device context used to create a compatible memory DC. - /// Width of the bitmap. - /// Height of the bitmap. - /// Receives a pointer to the newly created render target. - STDMETHOD(CreateBitmapRenderTarget)( - __in_opt HDC hdc, - UINT32 width, - UINT32 height, - __out IDWriteBitmapRenderTarget** renderTarget - ) PURE; -}; - -/// -/// The DWRITE_TEXTURE_TYPE enumeration identifies a type of alpha texture. An alpha texture is a bitmap of alpha values, each -/// representing the darkness (i.e., opacity) of a pixel or subpixel. -/// -enum DWRITE_TEXTURE_TYPE -{ - /// - /// Specifies an alpha texture for aliased text rendering (i.e., bi-level, where each pixel is either fully opaque or fully transparent), - /// with one byte per pixel. - /// - DWRITE_TEXTURE_ALIASED_1x1, - - /// - /// Specifies an alpha texture for ClearType text rendering, with three bytes per pixel in the horizontal dimension and - /// one byte per pixel in the vertical dimension. - /// - DWRITE_TEXTURE_CLEARTYPE_3x1 -}; - -/// -/// Maximum alpha value in a texture returned by IDWriteGlyphRunAnalysis::CreateAlphaTexture. -/// -#define DWRITE_ALPHA_MAX 255 - -/// -/// Interface that encapsulates information used to render a glyph run. -/// -interface DWRITE_DECLARE_INTERFACE("7d97dbf7-e085-42d4-81e3-6a883bded118") IDWriteGlyphRunAnalysis : public IUnknown -{ - /// - /// Gets the bounding rectangle of the physical pixels affected by the glyph run. - /// - /// Specifies the type of texture requested. If a bi-level texture is requested, the - /// bounding rectangle includes only bi-level glyphs. Otherwise, the bounding rectangle includes only anti-aliased - /// glyphs. - /// Receives the bounding rectangle, or an empty rectangle if there are no glyphs - /// if the specified type. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetAlphaTextureBounds)( - DWRITE_TEXTURE_TYPE textureType, - __out RECT* textureBounds - ) PURE; - - /// - /// Creates an alpha texture of the specified type. - /// - /// Specifies the type of texture requested. If a bi-level texture is requested, the - /// texture contains only bi-level glyphs. Otherwise, the texture contains only anti-aliased glyphs. - /// Specifies the bounding rectangle of the texture, which can be different than - /// the bounding rectangle returned by GetAlphaTextureBounds. - /// Receives the array of alpha values. - /// Size of the alphaValues array. The minimum size depends on the dimensions of the - /// rectangle and the type of texture requested. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(CreateAlphaTexture)( - DWRITE_TEXTURE_TYPE textureType, - __in RECT const* textureBounds, - __out_bcount(bufferSize) BYTE* alphaValues, - UINT32 bufferSize - ) PURE; - - /// - /// Gets properties required for ClearType blending. - /// - /// Rendering parameters object. In most cases, the values returned in the output - /// parameters are based on the properties of this object. The exception is if a GDI-compatible rendering mode - /// is specified. - /// Receives the gamma value to use for gamma correction. - /// Receives the enhanced contrast value. - /// Receives the ClearType level. - STDMETHOD(GetAlphaBlendParams)( - IDWriteRenderingParams* renderingParams, - __out FLOAT* blendGamma, - __out FLOAT* blendEnhancedContrast, - __out FLOAT* blendClearTypeLevel - ) PURE; -}; - -/// -/// The root factory interface for all DWrite objects. -/// -interface DWRITE_DECLARE_INTERFACE("b859ee5a-d838-4b5b-a2e8-1adc7d93db48") IDWriteFactory : public IUnknown -{ - /// - /// Gets a font collection representing the set of installed fonts. - /// - /// Receives a pointer to the system font collection object, or NULL in case of failure. - /// If this parameter is nonzero, the function performs an immediate check for changes to the set of - /// installed fonts. If this parameter is FALSE, the function will still detect changes if the font cache service is running, but - /// there may be some latency. For example, an application might specify TRUE if it has itself just installed a font and wants to - /// be sure the font collection contains that font. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetSystemFontCollection)( - __out IDWriteFontCollection** fontCollection, - BOOL checkForUpdates = FALSE - ) PURE; - - /// - /// Creates a font collection using a custom font collection loader. - /// - /// Application-defined font collection loader, which must have been previously - /// registered using RegisterFontCollectionLoader. - /// Key used by the loader to identify a collection of font files. - /// Size in bytes of the collection key. - /// Receives a pointer to the system font collection object, or NULL in case of failure. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(CreateCustomFontCollection)( - IDWriteFontCollectionLoader* collectionLoader, - __in_bcount(collectionKeySize) void const* collectionKey, - UINT32 collectionKeySize, - __out IDWriteFontCollection** fontCollection - ) PURE; - - /// - /// Registers a custom font collection loader with the factory object. - /// - /// Application-defined font collection loader. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(RegisterFontCollectionLoader)( - IDWriteFontCollectionLoader* fontCollectionLoader - ) PURE; - - /// - /// Unregisters a custom font collection loader that was previously registered using RegisterFontCollectionLoader. - /// - /// Application-defined font collection loader. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(UnregisterFontCollectionLoader)( - IDWriteFontCollectionLoader* fontCollectionLoader - ) PURE; - - /// - /// CreateFontFileReference creates a font file reference object from a local font file. - /// - /// Absolute file path. Subsequent operations on the constructed object may fail - /// if the user provided filePath doesn't correspond to a valid file on the disk. - /// Last modified time of the input file path. If the parameter is omitted, - /// the function will access the font file to obtain its last write time, so the clients are encouraged to specify this value - /// to avoid extra disk access. Subsequent operations on the constructed object may fail - /// if the user provided lastWriteTime doesn't match the file on the disk. - /// Contains newly created font file reference object, or NULL in case of failure. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(CreateFontFileReference)( - __in_z WCHAR const* filePath, - __in_opt FILETIME const* lastWriteTime, - __out IDWriteFontFile** fontFile - ) PURE; - - /// - /// CreateCustomFontFileReference creates a reference to an application specific font file resource. - /// This function enables an application or a document to use a font without having to install it on the system. - /// The fontFileReferenceKey has to be unique only in the scope of the fontFileLoader used in this call. - /// - /// Font file reference key that uniquely identifies the font file resource - /// during the lifetime of fontFileLoader. - /// Size of font file reference key in bytes. - /// Font file loader that will be used by the font system to load data from the file identified by - /// fontFileReferenceKey. - /// Contains the newly created font file object, or NULL in case of failure. - /// - /// Standard HRESULT error code. - /// - /// - /// This function is provided for cases when an application or a document needs to use a font - /// without having to install it on the system. fontFileReferenceKey has to be unique only in the scope - /// of the fontFileLoader used in this call. - /// - STDMETHOD(CreateCustomFontFileReference)( - __in_bcount(fontFileReferenceKeySize) void const* fontFileReferenceKey, - UINT32 fontFileReferenceKeySize, - IDWriteFontFileLoader* fontFileLoader, - __out IDWriteFontFile** fontFile - ) PURE; - - /// - /// Creates a font face object. - /// - /// The file format of the font face. - /// The number of font files require to represent the font face. - /// Font files representing the font face. Since IDWriteFontFace maintains its own references - /// to the input font file objects, it's OK to release them after this call. - /// The zero based index of a font face in cases when the font files contain a collection of font faces. - /// If the font files contain a single face, this value should be zero. - /// Font face simulation flags for algorithmic emboldening and italicization. - /// Contains the newly created font face object, or NULL in case of failure. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(CreateFontFace)( - DWRITE_FONT_FACE_TYPE fontFaceType, - UINT32 numberOfFiles, - __in_ecount(numberOfFiles) IDWriteFontFile* const* fontFiles, - UINT32 faceIndex, - DWRITE_FONT_SIMULATIONS fontFaceSimulationFlags, - __out IDWriteFontFace** fontFace - ) PURE; - - /// - /// Creates a rendering parameters object with default settings for the primary monitor. - /// - /// Holds the newly created rendering parameters object, or NULL in case of failure. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(CreateRenderingParams)( - __out IDWriteRenderingParams** renderingParams - ) PURE; - - /// - /// Creates a rendering parameters object with default settings for the specified monitor. - /// - /// The monitor to read the default values from. - /// Holds the newly created rendering parameters object, or NULL in case of failure. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(CreateMonitorRenderingParams)( - HMONITOR monitor, - __out IDWriteRenderingParams** renderingParams - ) PURE; - - /// - /// Creates a rendering parameters object with the specified properties. - /// - /// The gamma value used for gamma correction, which must be greater than zero and cannot exceed 256. - /// The amount of contrast enhancement, zero or greater. - /// The degree of ClearType level, from 0.0f (no ClearType) to 1.0f (full ClearType). - /// The geometry of a device pixel. - /// Method of rendering glyphs. In most cases, this should be DWRITE_RENDERING_MODE_DEFAULT to automatically use an appropriate mode. - /// Holds the newly created rendering parameters object, or NULL in case of failure. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(CreateCustomRenderingParams)( - FLOAT gamma, - FLOAT enhancedContrast, - FLOAT clearTypeLevel, - DWRITE_PIXEL_GEOMETRY pixelGeometry, - DWRITE_RENDERING_MODE renderingMode, - __out IDWriteRenderingParams** renderingParams - ) PURE; - - /// - /// Registers a font file loader with DirectWrite. - /// - /// Pointer to the implementation of the IDWriteFontFileLoader for a particular file resource type. - /// - /// Standard HRESULT error code. - /// - /// - /// This function registers a font file loader with DirectWrite. - /// Font file loader interface handles loading font file resources of a particular type from a key. - /// The font file loader interface is recommended to be implemented by a singleton object. - /// A given instance can only be registered once. - /// Succeeding attempts will return an error that it has already been registered. - /// IMPORTANT: font file loader implementations must not register themselves with DirectWrite - /// inside their constructors and must not unregister themselves in their destructors, because - /// registration and unregistraton operations increment and decrement the object reference count respectively. - /// Instead, registration and unregistration of font file loaders with DirectWrite should be performed - /// outside of the font file loader implementation as a separate step. - /// - STDMETHOD(RegisterFontFileLoader)( - IDWriteFontFileLoader* fontFileLoader - ) PURE; - - /// - /// Unregisters a font file loader that was previously registered with the DirectWrite font system using RegisterFontFileLoader. - /// - /// Pointer to the file loader that was previously registered with the DirectWrite font system using RegisterFontFileLoader. - /// - /// This function will succeed if the user loader is requested to be removed. - /// It will fail if the pointer to the file loader identifies a standard DirectWrite loader, - /// or a loader that is never registered or has already been unregistered. - /// - /// - /// This function unregisters font file loader callbacks with the DirectWrite font system. - /// The font file loader interface is recommended to be implemented by a singleton object. - /// IMPORTANT: font file loader implementations must not register themselves with DirectWrite - /// inside their constructors and must not unregister themselves in their destructors, because - /// registration and unregistraton operations increment and decrement the object reference count respectively. - /// Instead, registration and unregistration of font file loaders with DirectWrite should be performed - /// outside of the font file loader implementation as a separate step. - /// - STDMETHOD(UnregisterFontFileLoader)( - IDWriteFontFileLoader* fontFileLoader - ) PURE; - - /// - /// Create a text format object used for text layout. - /// - /// Name of the font family - /// Font collection. NULL indicates the system font collection. - /// Font weight - /// Font style - /// Font stretch - /// Logical size of the font in DIP units. A DIP ("device-independent pixel") equals 1/96 inch. - /// Locale name - /// Contains newly created text format object, or NULL in case of failure. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(CreateTextFormat)( - __in_z WCHAR const* fontFamilyName, - __maybenull IDWriteFontCollection* fontCollection, - DWRITE_FONT_WEIGHT fontWeight, - DWRITE_FONT_STYLE fontStyle, - DWRITE_FONT_STRETCH fontStretch, - FLOAT fontSize, - __in_z WCHAR const* localeName, - __out IDWriteTextFormat** textFormat - ) PURE; - - /// - /// Create a typography object used in conjunction with text format for text layout. - /// - /// Contains newly created typography object, or NULL in case of failure. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(CreateTypography)( - __out IDWriteTypography** typography - ) PURE; - - /// - /// Create an object used for interoperability with GDI. - /// - /// Receives the GDI interop object if successful, or NULL in case of failure. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(GetGdiInterop)( - __out IDWriteGdiInterop** gdiInterop - ) PURE; - - /// - /// CreateTextLayout takes a string, format, and associated constraints - /// and produces and object representing the fully analyzed - /// and formatted result. - /// - /// The string to layout. - /// The length of the string. - /// The format to apply to the string. - /// Width of the layout box. - /// Height of the layout box. - /// The resultant object. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(CreateTextLayout)( - __in_ecount(stringLength) WCHAR const* string, - UINT32 stringLength, - IDWriteTextFormat* textFormat, - FLOAT maxWidth, - FLOAT maxHeight, - __out IDWriteTextLayout** textLayout - ) PURE; - - /// - /// CreateGdiCompatibleTextLayout takes a string, format, and associated constraints - /// and produces and object representing the result formatted for a particular display resolution - /// and measuring method. The resulting text layout should only be used for the intended resolution, - /// and for cases where text scalability is desired, CreateTextLayout should be used instead. - /// - /// The string to layout. - /// The length of the string. - /// The format to apply to the string. - /// Width of the layout box. - /// Height of the layout box. - /// Number of physical pixels per DIP. For example, if rendering onto a 96 DPI device then pixelsPerDip - /// is 1. If rendering onto a 120 DPI device then pixelsPerDip is 120/96. - /// Optional transform applied to the glyphs and their positions. This transform is applied after the - /// scaling specified the font size and pixelsPerDip. - /// - /// When set to FALSE, instructs the text layout to use the same metrics as GDI aliased text. - /// When set to TRUE, instructs the text layout to use the same metrics as text measured by GDI using a font - /// created with CLEARTYPE_NATURAL_QUALITY. - /// - /// The resultant object. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(CreateGdiCompatibleTextLayout)( - __in_ecount(stringLength) WCHAR const* string, - UINT32 stringLength, - IDWriteTextFormat* textFormat, - FLOAT layoutWidth, - FLOAT layoutHeight, - FLOAT pixelsPerDip, - __in_opt DWRITE_MATRIX const* transform, - BOOL useGdiNatural, - __out IDWriteTextLayout** textLayout - ) PURE; - - /// - /// The application may call this function to create an inline object for trimming, using an ellipsis as the omission sign. - /// The ellipsis will be created using the current settings of the format, including base font, style, and any effects. - /// Alternate omission signs can be created by the application by implementing IDWriteInlineObject. - /// - /// Text format used as a template for the omission sign. - /// Created omission sign. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(CreateEllipsisTrimmingSign)( - IDWriteTextFormat* textFormat, - __out IDWriteInlineObject** trimmingSign - ) PURE; - - /// - /// Return an interface to perform text analysis with. - /// - /// The resultant object. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(CreateTextAnalyzer)( - __out IDWriteTextAnalyzer** textAnalyzer - ) PURE; - - /// - /// Creates a number substitution object using a locale name, - /// substitution method, and whether to ignore user overrides (uses NLS - /// defaults for the given culture instead). - /// - /// Method of number substitution to use. - /// Which locale to obtain the digits from. - /// Ignore the user's settings and use the locale defaults - /// Receives a pointer to the newly created object. - STDMETHOD(CreateNumberSubstitution)( - __in DWRITE_NUMBER_SUBSTITUTION_METHOD substitutionMethod, - __in_z WCHAR const* localeName, - __in BOOL ignoreUserOverride, - __out IDWriteNumberSubstitution** numberSubstitution - ) PURE; - - /// - /// Creates a glyph run analysis object, which encapsulates information - /// used to render a glyph run. - /// - /// Structure specifying the properties of the glyph run. - /// Number of physical pixels per DIP. For example, if rendering onto a 96 DPI bitmap then pixelsPerDip - /// is 1. If rendering onto a 120 DPI bitmap then pixelsPerDip is 120/96. - /// Optional transform applied to the glyphs and their positions. This transform is applied after the - /// scaling specified the emSize and pixelsPerDip. - /// Specifies the rendering mode, which must be one of the raster rendering modes (i.e., not default - /// and not outline). - /// Specifies the method to measure glyphs. - /// Horizontal position of the baseline origin, in DIPs. - /// Vertical position of the baseline origin, in DIPs. - /// Receives a pointer to the newly created object. - /// - /// Standard HRESULT error code. - /// - STDMETHOD(CreateGlyphRunAnalysis)( - __in DWRITE_GLYPH_RUN const* glyphRun, - FLOAT pixelsPerDip, - __in_opt DWRITE_MATRIX const* transform, - DWRITE_RENDERING_MODE renderingMode, - DWRITE_MEASURING_MODE measuringMode, - FLOAT baselineOriginX, - FLOAT baselineOriginY, - __out IDWriteGlyphRunAnalysis** glyphRunAnalysis - ) PURE; - -}; // interface IDWriteFactory - -/// -/// Creates a DirectWrite factory object that is used for subsequent creation of individual DirectWrite objects. -/// -/// Identifies whether the factory object will be shared or isolated. -/// Identifies the DirectWrite factory interface, such as __uuidof(IDWriteFactory). -/// Receives the DirectWrite factory object. -/// -/// Standard HRESULT error code. -/// -/// -/// Obtains DirectWrite factory object that is used for subsequent creation of individual DirectWrite classes. -/// DirectWrite factory contains internal state such as font loader registration and cached font data. -/// In most cases it is recommended to use the shared factory object, because it allows multiple components -/// that use DirectWrite to share internal DirectWrite state and reduce memory usage. -/// However, there are cases when it is desirable to reduce the impact of a component, -/// such as a plug-in from an untrusted source, on the rest of the process by sandboxing and isolating it -/// from the rest of the process components. In such cases, it is recommended to use an isolated factory for the sandboxed -/// component. -/// -EXTERN_C HRESULT DWRITE_EXPORT DWriteCreateFactory( - __in DWRITE_FACTORY_TYPE factoryType, - __in REFIID iid, - __out IUnknown **factory - ); - -// Macros used to define DirectWrite error codes. -#define FACILITY_DWRITE 0x898 -#define DWRITE_ERR_BASE 0x5000 -#define MAKE_DWRITE_HR(severity, code) MAKE_HRESULT(severity, FACILITY_DWRITE, (DWRITE_ERR_BASE + code)) -#define MAKE_DWRITE_HR_ERR(code) MAKE_DWRITE_HR(SEVERITY_ERROR, code) - -/// -/// Indicates an error in an input file such as a font file. -/// -#define DWRITE_E_FILEFORMAT MAKE_DWRITE_HR_ERR(0x000) - -/// -/// Indicates an error originating in DirectWrite code, which is not expected to occur but is safe to recover from. -/// -#define DWRITE_E_UNEXPECTED MAKE_DWRITE_HR_ERR(0x001) - -/// -/// Indicates the specified font does not exist. -/// -#define DWRITE_E_NOFONT MAKE_DWRITE_HR_ERR(0x002) - -/// -/// A font file could not be opened because the file, directory, network location, drive, or other storage -/// location does not exist or is unavailable. -/// -#define DWRITE_E_FILENOTFOUND MAKE_DWRITE_HR_ERR(0x003) - -/// -/// A font file exists but could not be opened due to access denied, sharing violation, or similar error. -/// -#define DWRITE_E_FILEACCESS MAKE_DWRITE_HR_ERR(0x004) - -/// -/// A font collection is obsolete due to changes in the system. -/// -#define DWRITE_E_FONTCOLLECTIONOBSOLETE MAKE_DWRITE_HR_ERR(0x005) - -/// -/// The given interface is already registered. -/// -#define DWRITE_E_ALREADYREGISTERED MAKE_DWRITE_HR_ERR(0x006) - -#endif /* DWRITE_H_INCLUDED */ diff --git a/SDK/Include/DXGI.h b/SDK/Include/DXGI.h deleted file mode 100644 index 1bfb39e..0000000 --- a/SDK/Include/DXGI.h +++ /dev/null @@ -1,2901 +0,0 @@ - - -/* this ALWAYS GENERATED file contains the definitions for the interfaces */ - - - /* File created by MIDL compiler version 7.00.0555 */ -/* @@MIDL_FILE_HEADING( ) */ - -#pragma warning( disable: 4049 ) /* more than 64k source lines */ - - -/* verify that the version is high enough to compile this file*/ -#ifndef __REQUIRED_RPCNDR_H_VERSION__ -#define __REQUIRED_RPCNDR_H_VERSION__ 475 -#endif - -/* verify that the version is high enough to compile this file*/ -#ifndef __REQUIRED_RPCSAL_H_VERSION__ -#define __REQUIRED_RPCSAL_H_VERSION__ 100 -#endif - -#include "rpc.h" -#include "rpcndr.h" - -#ifndef __RPCNDR_H_VERSION__ -#error this stub requires an updated version of -#endif // __RPCNDR_H_VERSION__ - -#ifndef COM_NO_WINDOWS_H -#include "windows.h" -#include "ole2.h" -#endif /*COM_NO_WINDOWS_H*/ - -#ifndef __dxgi_h__ -#define __dxgi_h__ - -#if defined(_MSC_VER) && (_MSC_VER >= 1020) -#pragma once -#endif - -/* Forward Declarations */ - -#ifndef __IDXGIObject_FWD_DEFINED__ -#define __IDXGIObject_FWD_DEFINED__ -typedef interface IDXGIObject IDXGIObject; -#endif /* __IDXGIObject_FWD_DEFINED__ */ - - -#ifndef __IDXGIDeviceSubObject_FWD_DEFINED__ -#define __IDXGIDeviceSubObject_FWD_DEFINED__ -typedef interface IDXGIDeviceSubObject IDXGIDeviceSubObject; -#endif /* __IDXGIDeviceSubObject_FWD_DEFINED__ */ - - -#ifndef __IDXGIResource_FWD_DEFINED__ -#define __IDXGIResource_FWD_DEFINED__ -typedef interface IDXGIResource IDXGIResource; -#endif /* __IDXGIResource_FWD_DEFINED__ */ - - -#ifndef __IDXGIKeyedMutex_FWD_DEFINED__ -#define __IDXGIKeyedMutex_FWD_DEFINED__ -typedef interface IDXGIKeyedMutex IDXGIKeyedMutex; -#endif /* __IDXGIKeyedMutex_FWD_DEFINED__ */ - - -#ifndef __IDXGISurface_FWD_DEFINED__ -#define __IDXGISurface_FWD_DEFINED__ -typedef interface IDXGISurface IDXGISurface; -#endif /* __IDXGISurface_FWD_DEFINED__ */ - - -#ifndef __IDXGISurface1_FWD_DEFINED__ -#define __IDXGISurface1_FWD_DEFINED__ -typedef interface IDXGISurface1 IDXGISurface1; -#endif /* __IDXGISurface1_FWD_DEFINED__ */ - - -#ifndef __IDXGIAdapter_FWD_DEFINED__ -#define __IDXGIAdapter_FWD_DEFINED__ -typedef interface IDXGIAdapter IDXGIAdapter; -#endif /* __IDXGIAdapter_FWD_DEFINED__ */ - - -#ifndef __IDXGIOutput_FWD_DEFINED__ -#define __IDXGIOutput_FWD_DEFINED__ -typedef interface IDXGIOutput IDXGIOutput; -#endif /* __IDXGIOutput_FWD_DEFINED__ */ - - -#ifndef __IDXGISwapChain_FWD_DEFINED__ -#define __IDXGISwapChain_FWD_DEFINED__ -typedef interface IDXGISwapChain IDXGISwapChain; -#endif /* __IDXGISwapChain_FWD_DEFINED__ */ - - -#ifndef __IDXGIFactory_FWD_DEFINED__ -#define __IDXGIFactory_FWD_DEFINED__ -typedef interface IDXGIFactory IDXGIFactory; -#endif /* __IDXGIFactory_FWD_DEFINED__ */ - - -#ifndef __IDXGIDevice_FWD_DEFINED__ -#define __IDXGIDevice_FWD_DEFINED__ -typedef interface IDXGIDevice IDXGIDevice; -#endif /* __IDXGIDevice_FWD_DEFINED__ */ - - -#ifndef __IDXGIFactory1_FWD_DEFINED__ -#define __IDXGIFactory1_FWD_DEFINED__ -typedef interface IDXGIFactory1 IDXGIFactory1; -#endif /* __IDXGIFactory1_FWD_DEFINED__ */ - - -#ifndef __IDXGIAdapter1_FWD_DEFINED__ -#define __IDXGIAdapter1_FWD_DEFINED__ -typedef interface IDXGIAdapter1 IDXGIAdapter1; -#endif /* __IDXGIAdapter1_FWD_DEFINED__ */ - - -#ifndef __IDXGIDevice1_FWD_DEFINED__ -#define __IDXGIDevice1_FWD_DEFINED__ -typedef interface IDXGIDevice1 IDXGIDevice1; -#endif /* __IDXGIDevice1_FWD_DEFINED__ */ - - -/* header files for imported files */ -#include "oaidl.h" -#include "ocidl.h" -#include "dxgitype.h" - -#ifdef __cplusplus -extern "C"{ -#endif - - -/* interface __MIDL_itf_dxgi_0000_0000 */ -/* [local] */ - -#define DXGI_CPU_ACCESS_NONE ( 0 ) -#define DXGI_CPU_ACCESS_DYNAMIC ( 1 ) -#define DXGI_CPU_ACCESS_READ_WRITE ( 2 ) -#define DXGI_CPU_ACCESS_SCRATCH ( 3 ) -#define DXGI_CPU_ACCESS_FIELD 15 -#define DXGI_USAGE_SHADER_INPUT ( 1L << (0 + 4) ) -#define DXGI_USAGE_RENDER_TARGET_OUTPUT ( 1L << (1 + 4) ) -#define DXGI_USAGE_BACK_BUFFER ( 1L << (2 + 4) ) -#define DXGI_USAGE_SHARED ( 1L << (3 + 4) ) -#define DXGI_USAGE_READ_ONLY ( 1L << (4 + 4) ) -#define DXGI_USAGE_DISCARD_ON_PRESENT ( 1L << (5 + 4) ) -#define DXGI_USAGE_UNORDERED_ACCESS ( 1L << (6 + 4) ) -typedef UINT DXGI_USAGE; - -typedef struct DXGI_FRAME_STATISTICS - { - UINT PresentCount; - UINT PresentRefreshCount; - UINT SyncRefreshCount; - LARGE_INTEGER SyncQPCTime; - LARGE_INTEGER SyncGPUTime; - } DXGI_FRAME_STATISTICS; - -typedef struct DXGI_MAPPED_RECT - { - INT Pitch; - BYTE *pBits; - } DXGI_MAPPED_RECT; - -#ifdef __midl -typedef struct _LUID - { - DWORD LowPart; - LONG HighPart; - } LUID; - -typedef struct _LUID *PLUID; - -#endif -typedef struct DXGI_ADAPTER_DESC - { - WCHAR Description[ 128 ]; - UINT VendorId; - UINT DeviceId; - UINT SubSysId; - UINT Revision; - SIZE_T DedicatedVideoMemory; - SIZE_T DedicatedSystemMemory; - SIZE_T SharedSystemMemory; - LUID AdapterLuid; - } DXGI_ADAPTER_DESC; - -#if !defined(HMONITOR_DECLARED) && !defined(HMONITOR) && (WINVER < 0x0500) -#define HMONITOR_DECLARED -#if 0 -typedef HANDLE HMONITOR; - -#endif -DECLARE_HANDLE(HMONITOR); -#endif -typedef struct DXGI_OUTPUT_DESC - { - WCHAR DeviceName[ 32 ]; - RECT DesktopCoordinates; - BOOL AttachedToDesktop; - DXGI_MODE_ROTATION Rotation; - HMONITOR Monitor; - } DXGI_OUTPUT_DESC; - -typedef struct DXGI_SHARED_RESOURCE - { - HANDLE Handle; - } DXGI_SHARED_RESOURCE; - -#define DXGI_RESOURCE_PRIORITY_MINIMUM ( 0x28000000 ) - -#define DXGI_RESOURCE_PRIORITY_LOW ( 0x50000000 ) - -#define DXGI_RESOURCE_PRIORITY_NORMAL ( 0x78000000 ) - -#define DXGI_RESOURCE_PRIORITY_HIGH ( 0xa0000000 ) - -#define DXGI_RESOURCE_PRIORITY_MAXIMUM ( 0xc8000000 ) - -typedef -enum DXGI_RESIDENCY - { DXGI_RESIDENCY_FULLY_RESIDENT = 1, - DXGI_RESIDENCY_RESIDENT_IN_SHARED_MEMORY = 2, - DXGI_RESIDENCY_EVICTED_TO_DISK = 3 - } DXGI_RESIDENCY; - -typedef struct DXGI_SURFACE_DESC - { - UINT Width; - UINT Height; - DXGI_FORMAT Format; - DXGI_SAMPLE_DESC SampleDesc; - } DXGI_SURFACE_DESC; - -typedef -enum DXGI_SWAP_EFFECT - { DXGI_SWAP_EFFECT_DISCARD = 0, - DXGI_SWAP_EFFECT_SEQUENTIAL = 1 - } DXGI_SWAP_EFFECT; - -typedef -enum DXGI_SWAP_CHAIN_FLAG - { DXGI_SWAP_CHAIN_FLAG_NONPREROTATED = 1, - DXGI_SWAP_CHAIN_FLAG_ALLOW_MODE_SWITCH = 2, - DXGI_SWAP_CHAIN_FLAG_GDI_COMPATIBLE = 4 - } DXGI_SWAP_CHAIN_FLAG; - -typedef struct DXGI_SWAP_CHAIN_DESC - { - DXGI_MODE_DESC BufferDesc; - DXGI_SAMPLE_DESC SampleDesc; - DXGI_USAGE BufferUsage; - UINT BufferCount; - HWND OutputWindow; - BOOL Windowed; - DXGI_SWAP_EFFECT SwapEffect; - UINT Flags; - } DXGI_SWAP_CHAIN_DESC; - - - -extern RPC_IF_HANDLE __MIDL_itf_dxgi_0000_0000_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_dxgi_0000_0000_v0_0_s_ifspec; - -#ifndef __IDXGIObject_INTERFACE_DEFINED__ -#define __IDXGIObject_INTERFACE_DEFINED__ - -/* interface IDXGIObject */ -/* [unique][local][uuid][object] */ - - -EXTERN_C const IID IID_IDXGIObject; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("aec22fb8-76f3-4639-9be0-28eb43a67a2e") - IDXGIObject : public IUnknown - { - public: - virtual HRESULT STDMETHODCALLTYPE SetPrivateData( - /* [annotation][in] */ - __in REFGUID Name, - /* [in] */ UINT DataSize, - /* [annotation][in] */ - __in_bcount(DataSize) const void *pData) = 0; - - virtual HRESULT STDMETHODCALLTYPE SetPrivateDataInterface( - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][in] */ - __in const IUnknown *pUnknown) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetPrivateData( - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][out][in] */ - __inout UINT *pDataSize, - /* [annotation][out] */ - __out_bcount(*pDataSize) void *pData) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetParent( - /* [annotation][in] */ - __in REFIID riid, - /* [annotation][retval][out] */ - __out void **ppParent) = 0; - - }; - -#else /* C style interface */ - - typedef struct IDXGIObjectVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - IDXGIObject * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - IDXGIObject * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - IDXGIObject * This); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - IDXGIObject * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [in] */ UINT DataSize, - /* [annotation][in] */ - __in_bcount(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - IDXGIObject * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][in] */ - __in const IUnknown *pUnknown); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - IDXGIObject * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][out][in] */ - __inout UINT *pDataSize, - /* [annotation][out] */ - __out_bcount(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *GetParent )( - IDXGIObject * This, - /* [annotation][in] */ - __in REFIID riid, - /* [annotation][retval][out] */ - __out void **ppParent); - - END_INTERFACE - } IDXGIObjectVtbl; - - interface IDXGIObject - { - CONST_VTBL struct IDXGIObjectVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define IDXGIObject_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define IDXGIObject_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define IDXGIObject_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define IDXGIObject_SetPrivateData(This,Name,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,Name,DataSize,pData) ) - -#define IDXGIObject_SetPrivateDataInterface(This,Name,pUnknown) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,Name,pUnknown) ) - -#define IDXGIObject_GetPrivateData(This,Name,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,Name,pDataSize,pData) ) - -#define IDXGIObject_GetParent(This,riid,ppParent) \ - ( (This)->lpVtbl -> GetParent(This,riid,ppParent) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __IDXGIObject_INTERFACE_DEFINED__ */ - - -#ifndef __IDXGIDeviceSubObject_INTERFACE_DEFINED__ -#define __IDXGIDeviceSubObject_INTERFACE_DEFINED__ - -/* interface IDXGIDeviceSubObject */ -/* [unique][local][uuid][object] */ - - -EXTERN_C const IID IID_IDXGIDeviceSubObject; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("3d3e0379-f9de-4d58-bb6c-18d62992f1a6") - IDXGIDeviceSubObject : public IDXGIObject - { - public: - virtual HRESULT STDMETHODCALLTYPE GetDevice( - /* [annotation][in] */ - __in REFIID riid, - /* [annotation][retval][out] */ - __out void **ppDevice) = 0; - - }; - -#else /* C style interface */ - - typedef struct IDXGIDeviceSubObjectVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - IDXGIDeviceSubObject * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - IDXGIDeviceSubObject * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - IDXGIDeviceSubObject * This); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - IDXGIDeviceSubObject * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [in] */ UINT DataSize, - /* [annotation][in] */ - __in_bcount(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - IDXGIDeviceSubObject * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][in] */ - __in const IUnknown *pUnknown); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - IDXGIDeviceSubObject * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][out][in] */ - __inout UINT *pDataSize, - /* [annotation][out] */ - __out_bcount(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *GetParent )( - IDXGIDeviceSubObject * This, - /* [annotation][in] */ - __in REFIID riid, - /* [annotation][retval][out] */ - __out void **ppParent); - - HRESULT ( STDMETHODCALLTYPE *GetDevice )( - IDXGIDeviceSubObject * This, - /* [annotation][in] */ - __in REFIID riid, - /* [annotation][retval][out] */ - __out void **ppDevice); - - END_INTERFACE - } IDXGIDeviceSubObjectVtbl; - - interface IDXGIDeviceSubObject - { - CONST_VTBL struct IDXGIDeviceSubObjectVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define IDXGIDeviceSubObject_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define IDXGIDeviceSubObject_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define IDXGIDeviceSubObject_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define IDXGIDeviceSubObject_SetPrivateData(This,Name,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,Name,DataSize,pData) ) - -#define IDXGIDeviceSubObject_SetPrivateDataInterface(This,Name,pUnknown) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,Name,pUnknown) ) - -#define IDXGIDeviceSubObject_GetPrivateData(This,Name,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,Name,pDataSize,pData) ) - -#define IDXGIDeviceSubObject_GetParent(This,riid,ppParent) \ - ( (This)->lpVtbl -> GetParent(This,riid,ppParent) ) - - -#define IDXGIDeviceSubObject_GetDevice(This,riid,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,riid,ppDevice) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __IDXGIDeviceSubObject_INTERFACE_DEFINED__ */ - - -#ifndef __IDXGIResource_INTERFACE_DEFINED__ -#define __IDXGIResource_INTERFACE_DEFINED__ - -/* interface IDXGIResource */ -/* [unique][local][uuid][object] */ - - -EXTERN_C const IID IID_IDXGIResource; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("035f3ab4-482e-4e50-b41f-8a7f8bd8960b") - IDXGIResource : public IDXGIDeviceSubObject - { - public: - virtual HRESULT STDMETHODCALLTYPE GetSharedHandle( - /* [annotation][out] */ - __out HANDLE *pSharedHandle) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetUsage( - /* [annotation][out] */ - __out DXGI_USAGE *pUsage) = 0; - - virtual HRESULT STDMETHODCALLTYPE SetEvictionPriority( - /* [in] */ UINT EvictionPriority) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetEvictionPriority( - /* [annotation][retval][out] */ - __out UINT *pEvictionPriority) = 0; - - }; - -#else /* C style interface */ - - typedef struct IDXGIResourceVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - IDXGIResource * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - IDXGIResource * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - IDXGIResource * This); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - IDXGIResource * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [in] */ UINT DataSize, - /* [annotation][in] */ - __in_bcount(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - IDXGIResource * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][in] */ - __in const IUnknown *pUnknown); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - IDXGIResource * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][out][in] */ - __inout UINT *pDataSize, - /* [annotation][out] */ - __out_bcount(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *GetParent )( - IDXGIResource * This, - /* [annotation][in] */ - __in REFIID riid, - /* [annotation][retval][out] */ - __out void **ppParent); - - HRESULT ( STDMETHODCALLTYPE *GetDevice )( - IDXGIResource * This, - /* [annotation][in] */ - __in REFIID riid, - /* [annotation][retval][out] */ - __out void **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetSharedHandle )( - IDXGIResource * This, - /* [annotation][out] */ - __out HANDLE *pSharedHandle); - - HRESULT ( STDMETHODCALLTYPE *GetUsage )( - IDXGIResource * This, - /* [annotation][out] */ - __out DXGI_USAGE *pUsage); - - HRESULT ( STDMETHODCALLTYPE *SetEvictionPriority )( - IDXGIResource * This, - /* [in] */ UINT EvictionPriority); - - HRESULT ( STDMETHODCALLTYPE *GetEvictionPriority )( - IDXGIResource * This, - /* [annotation][retval][out] */ - __out UINT *pEvictionPriority); - - END_INTERFACE - } IDXGIResourceVtbl; - - interface IDXGIResource - { - CONST_VTBL struct IDXGIResourceVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define IDXGIResource_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define IDXGIResource_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define IDXGIResource_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define IDXGIResource_SetPrivateData(This,Name,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,Name,DataSize,pData) ) - -#define IDXGIResource_SetPrivateDataInterface(This,Name,pUnknown) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,Name,pUnknown) ) - -#define IDXGIResource_GetPrivateData(This,Name,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,Name,pDataSize,pData) ) - -#define IDXGIResource_GetParent(This,riid,ppParent) \ - ( (This)->lpVtbl -> GetParent(This,riid,ppParent) ) - - -#define IDXGIResource_GetDevice(This,riid,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,riid,ppDevice) ) - - -#define IDXGIResource_GetSharedHandle(This,pSharedHandle) \ - ( (This)->lpVtbl -> GetSharedHandle(This,pSharedHandle) ) - -#define IDXGIResource_GetUsage(This,pUsage) \ - ( (This)->lpVtbl -> GetUsage(This,pUsage) ) - -#define IDXGIResource_SetEvictionPriority(This,EvictionPriority) \ - ( (This)->lpVtbl -> SetEvictionPriority(This,EvictionPriority) ) - -#define IDXGIResource_GetEvictionPriority(This,pEvictionPriority) \ - ( (This)->lpVtbl -> GetEvictionPriority(This,pEvictionPriority) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __IDXGIResource_INTERFACE_DEFINED__ */ - - -#ifndef __IDXGIKeyedMutex_INTERFACE_DEFINED__ -#define __IDXGIKeyedMutex_INTERFACE_DEFINED__ - -/* interface IDXGIKeyedMutex */ -/* [unique][local][uuid][object] */ - - -EXTERN_C const IID IID_IDXGIKeyedMutex; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("9d8e1289-d7b3-465f-8126-250e349af85d") - IDXGIKeyedMutex : public IDXGIDeviceSubObject - { - public: - virtual HRESULT STDMETHODCALLTYPE AcquireSync( - /* [in] */ UINT64 Key, - /* [in] */ DWORD dwMilliseconds) = 0; - - virtual HRESULT STDMETHODCALLTYPE ReleaseSync( - /* [in] */ UINT64 Key) = 0; - - }; - -#else /* C style interface */ - - typedef struct IDXGIKeyedMutexVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - IDXGIKeyedMutex * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - IDXGIKeyedMutex * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - IDXGIKeyedMutex * This); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - IDXGIKeyedMutex * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [in] */ UINT DataSize, - /* [annotation][in] */ - __in_bcount(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - IDXGIKeyedMutex * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][in] */ - __in const IUnknown *pUnknown); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - IDXGIKeyedMutex * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][out][in] */ - __inout UINT *pDataSize, - /* [annotation][out] */ - __out_bcount(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *GetParent )( - IDXGIKeyedMutex * This, - /* [annotation][in] */ - __in REFIID riid, - /* [annotation][retval][out] */ - __out void **ppParent); - - HRESULT ( STDMETHODCALLTYPE *GetDevice )( - IDXGIKeyedMutex * This, - /* [annotation][in] */ - __in REFIID riid, - /* [annotation][retval][out] */ - __out void **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *AcquireSync )( - IDXGIKeyedMutex * This, - /* [in] */ UINT64 Key, - /* [in] */ DWORD dwMilliseconds); - - HRESULT ( STDMETHODCALLTYPE *ReleaseSync )( - IDXGIKeyedMutex * This, - /* [in] */ UINT64 Key); - - END_INTERFACE - } IDXGIKeyedMutexVtbl; - - interface IDXGIKeyedMutex - { - CONST_VTBL struct IDXGIKeyedMutexVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define IDXGIKeyedMutex_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define IDXGIKeyedMutex_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define IDXGIKeyedMutex_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define IDXGIKeyedMutex_SetPrivateData(This,Name,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,Name,DataSize,pData) ) - -#define IDXGIKeyedMutex_SetPrivateDataInterface(This,Name,pUnknown) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,Name,pUnknown) ) - -#define IDXGIKeyedMutex_GetPrivateData(This,Name,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,Name,pDataSize,pData) ) - -#define IDXGIKeyedMutex_GetParent(This,riid,ppParent) \ - ( (This)->lpVtbl -> GetParent(This,riid,ppParent) ) - - -#define IDXGIKeyedMutex_GetDevice(This,riid,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,riid,ppDevice) ) - - -#define IDXGIKeyedMutex_AcquireSync(This,Key,dwMilliseconds) \ - ( (This)->lpVtbl -> AcquireSync(This,Key,dwMilliseconds) ) - -#define IDXGIKeyedMutex_ReleaseSync(This,Key) \ - ( (This)->lpVtbl -> ReleaseSync(This,Key) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __IDXGIKeyedMutex_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_dxgi_0000_0004 */ -/* [local] */ - -#define DXGI_MAP_READ ( 1UL ) - -#define DXGI_MAP_WRITE ( 2UL ) - -#define DXGI_MAP_DISCARD ( 4UL ) - - - -extern RPC_IF_HANDLE __MIDL_itf_dxgi_0000_0004_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_dxgi_0000_0004_v0_0_s_ifspec; - -#ifndef __IDXGISurface_INTERFACE_DEFINED__ -#define __IDXGISurface_INTERFACE_DEFINED__ - -/* interface IDXGISurface */ -/* [unique][local][uuid][object] */ - - -EXTERN_C const IID IID_IDXGISurface; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("cafcb56c-6ac3-4889-bf47-9e23bbd260ec") - IDXGISurface : public IDXGIDeviceSubObject - { - public: - virtual HRESULT STDMETHODCALLTYPE GetDesc( - /* [annotation][out] */ - __out DXGI_SURFACE_DESC *pDesc) = 0; - - virtual HRESULT STDMETHODCALLTYPE Map( - /* [annotation][out] */ - __out DXGI_MAPPED_RECT *pLockedRect, - /* [in] */ UINT MapFlags) = 0; - - virtual HRESULT STDMETHODCALLTYPE Unmap( void) = 0; - - }; - -#else /* C style interface */ - - typedef struct IDXGISurfaceVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - IDXGISurface * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - IDXGISurface * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - IDXGISurface * This); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - IDXGISurface * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [in] */ UINT DataSize, - /* [annotation][in] */ - __in_bcount(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - IDXGISurface * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][in] */ - __in const IUnknown *pUnknown); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - IDXGISurface * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][out][in] */ - __inout UINT *pDataSize, - /* [annotation][out] */ - __out_bcount(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *GetParent )( - IDXGISurface * This, - /* [annotation][in] */ - __in REFIID riid, - /* [annotation][retval][out] */ - __out void **ppParent); - - HRESULT ( STDMETHODCALLTYPE *GetDevice )( - IDXGISurface * This, - /* [annotation][in] */ - __in REFIID riid, - /* [annotation][retval][out] */ - __out void **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetDesc )( - IDXGISurface * This, - /* [annotation][out] */ - __out DXGI_SURFACE_DESC *pDesc); - - HRESULT ( STDMETHODCALLTYPE *Map )( - IDXGISurface * This, - /* [annotation][out] */ - __out DXGI_MAPPED_RECT *pLockedRect, - /* [in] */ UINT MapFlags); - - HRESULT ( STDMETHODCALLTYPE *Unmap )( - IDXGISurface * This); - - END_INTERFACE - } IDXGISurfaceVtbl; - - interface IDXGISurface - { - CONST_VTBL struct IDXGISurfaceVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define IDXGISurface_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define IDXGISurface_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define IDXGISurface_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define IDXGISurface_SetPrivateData(This,Name,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,Name,DataSize,pData) ) - -#define IDXGISurface_SetPrivateDataInterface(This,Name,pUnknown) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,Name,pUnknown) ) - -#define IDXGISurface_GetPrivateData(This,Name,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,Name,pDataSize,pData) ) - -#define IDXGISurface_GetParent(This,riid,ppParent) \ - ( (This)->lpVtbl -> GetParent(This,riid,ppParent) ) - - -#define IDXGISurface_GetDevice(This,riid,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,riid,ppDevice) ) - - -#define IDXGISurface_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#define IDXGISurface_Map(This,pLockedRect,MapFlags) \ - ( (This)->lpVtbl -> Map(This,pLockedRect,MapFlags) ) - -#define IDXGISurface_Unmap(This) \ - ( (This)->lpVtbl -> Unmap(This) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __IDXGISurface_INTERFACE_DEFINED__ */ - - -#ifndef __IDXGISurface1_INTERFACE_DEFINED__ -#define __IDXGISurface1_INTERFACE_DEFINED__ - -/* interface IDXGISurface1 */ -/* [unique][local][uuid][object] */ - - -EXTERN_C const IID IID_IDXGISurface1; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("4AE63092-6327-4c1b-80AE-BFE12EA32B86") - IDXGISurface1 : public IDXGISurface - { - public: - virtual HRESULT STDMETHODCALLTYPE GetDC( - /* [in] */ BOOL Discard, - /* [annotation][out] */ - __out HDC *phdc) = 0; - - virtual HRESULT STDMETHODCALLTYPE ReleaseDC( - /* [annotation][in] */ - __in_opt RECT *pDirtyRect) = 0; - - }; - -#else /* C style interface */ - - typedef struct IDXGISurface1Vtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - IDXGISurface1 * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - IDXGISurface1 * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - IDXGISurface1 * This); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - IDXGISurface1 * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [in] */ UINT DataSize, - /* [annotation][in] */ - __in_bcount(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - IDXGISurface1 * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][in] */ - __in const IUnknown *pUnknown); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - IDXGISurface1 * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][out][in] */ - __inout UINT *pDataSize, - /* [annotation][out] */ - __out_bcount(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *GetParent )( - IDXGISurface1 * This, - /* [annotation][in] */ - __in REFIID riid, - /* [annotation][retval][out] */ - __out void **ppParent); - - HRESULT ( STDMETHODCALLTYPE *GetDevice )( - IDXGISurface1 * This, - /* [annotation][in] */ - __in REFIID riid, - /* [annotation][retval][out] */ - __out void **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *GetDesc )( - IDXGISurface1 * This, - /* [annotation][out] */ - __out DXGI_SURFACE_DESC *pDesc); - - HRESULT ( STDMETHODCALLTYPE *Map )( - IDXGISurface1 * This, - /* [annotation][out] */ - __out DXGI_MAPPED_RECT *pLockedRect, - /* [in] */ UINT MapFlags); - - HRESULT ( STDMETHODCALLTYPE *Unmap )( - IDXGISurface1 * This); - - HRESULT ( STDMETHODCALLTYPE *GetDC )( - IDXGISurface1 * This, - /* [in] */ BOOL Discard, - /* [annotation][out] */ - __out HDC *phdc); - - HRESULT ( STDMETHODCALLTYPE *ReleaseDC )( - IDXGISurface1 * This, - /* [annotation][in] */ - __in_opt RECT *pDirtyRect); - - END_INTERFACE - } IDXGISurface1Vtbl; - - interface IDXGISurface1 - { - CONST_VTBL struct IDXGISurface1Vtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define IDXGISurface1_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define IDXGISurface1_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define IDXGISurface1_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define IDXGISurface1_SetPrivateData(This,Name,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,Name,DataSize,pData) ) - -#define IDXGISurface1_SetPrivateDataInterface(This,Name,pUnknown) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,Name,pUnknown) ) - -#define IDXGISurface1_GetPrivateData(This,Name,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,Name,pDataSize,pData) ) - -#define IDXGISurface1_GetParent(This,riid,ppParent) \ - ( (This)->lpVtbl -> GetParent(This,riid,ppParent) ) - - -#define IDXGISurface1_GetDevice(This,riid,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,riid,ppDevice) ) - - -#define IDXGISurface1_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#define IDXGISurface1_Map(This,pLockedRect,MapFlags) \ - ( (This)->lpVtbl -> Map(This,pLockedRect,MapFlags) ) - -#define IDXGISurface1_Unmap(This) \ - ( (This)->lpVtbl -> Unmap(This) ) - - -#define IDXGISurface1_GetDC(This,Discard,phdc) \ - ( (This)->lpVtbl -> GetDC(This,Discard,phdc) ) - -#define IDXGISurface1_ReleaseDC(This,pDirtyRect) \ - ( (This)->lpVtbl -> ReleaseDC(This,pDirtyRect) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __IDXGISurface1_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_dxgi_0000_0006 */ -/* [local] */ - - - - -extern RPC_IF_HANDLE __MIDL_itf_dxgi_0000_0006_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_dxgi_0000_0006_v0_0_s_ifspec; - -#ifndef __IDXGIAdapter_INTERFACE_DEFINED__ -#define __IDXGIAdapter_INTERFACE_DEFINED__ - -/* interface IDXGIAdapter */ -/* [unique][local][uuid][object] */ - - -EXTERN_C const IID IID_IDXGIAdapter; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("2411e7e1-12ac-4ccf-bd14-9798e8534dc0") - IDXGIAdapter : public IDXGIObject - { - public: - virtual HRESULT STDMETHODCALLTYPE EnumOutputs( - /* [in] */ UINT Output, - /* [annotation][out][in] */ - __out IDXGIOutput **ppOutput) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetDesc( - /* [annotation][out] */ - __out DXGI_ADAPTER_DESC *pDesc) = 0; - - virtual HRESULT STDMETHODCALLTYPE CheckInterfaceSupport( - /* [annotation][in] */ - __in REFGUID InterfaceName, - /* [annotation][out] */ - __out LARGE_INTEGER *pUMDVersion) = 0; - - }; - -#else /* C style interface */ - - typedef struct IDXGIAdapterVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - IDXGIAdapter * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - IDXGIAdapter * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - IDXGIAdapter * This); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - IDXGIAdapter * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [in] */ UINT DataSize, - /* [annotation][in] */ - __in_bcount(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - IDXGIAdapter * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][in] */ - __in const IUnknown *pUnknown); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - IDXGIAdapter * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][out][in] */ - __inout UINT *pDataSize, - /* [annotation][out] */ - __out_bcount(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *GetParent )( - IDXGIAdapter * This, - /* [annotation][in] */ - __in REFIID riid, - /* [annotation][retval][out] */ - __out void **ppParent); - - HRESULT ( STDMETHODCALLTYPE *EnumOutputs )( - IDXGIAdapter * This, - /* [in] */ UINT Output, - /* [annotation][out][in] */ - __out IDXGIOutput **ppOutput); - - HRESULT ( STDMETHODCALLTYPE *GetDesc )( - IDXGIAdapter * This, - /* [annotation][out] */ - __out DXGI_ADAPTER_DESC *pDesc); - - HRESULT ( STDMETHODCALLTYPE *CheckInterfaceSupport )( - IDXGIAdapter * This, - /* [annotation][in] */ - __in REFGUID InterfaceName, - /* [annotation][out] */ - __out LARGE_INTEGER *pUMDVersion); - - END_INTERFACE - } IDXGIAdapterVtbl; - - interface IDXGIAdapter - { - CONST_VTBL struct IDXGIAdapterVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define IDXGIAdapter_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define IDXGIAdapter_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define IDXGIAdapter_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define IDXGIAdapter_SetPrivateData(This,Name,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,Name,DataSize,pData) ) - -#define IDXGIAdapter_SetPrivateDataInterface(This,Name,pUnknown) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,Name,pUnknown) ) - -#define IDXGIAdapter_GetPrivateData(This,Name,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,Name,pDataSize,pData) ) - -#define IDXGIAdapter_GetParent(This,riid,ppParent) \ - ( (This)->lpVtbl -> GetParent(This,riid,ppParent) ) - - -#define IDXGIAdapter_EnumOutputs(This,Output,ppOutput) \ - ( (This)->lpVtbl -> EnumOutputs(This,Output,ppOutput) ) - -#define IDXGIAdapter_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#define IDXGIAdapter_CheckInterfaceSupport(This,InterfaceName,pUMDVersion) \ - ( (This)->lpVtbl -> CheckInterfaceSupport(This,InterfaceName,pUMDVersion) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __IDXGIAdapter_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_dxgi_0000_0007 */ -/* [local] */ - -#define DXGI_ENUM_MODES_INTERLACED ( 1UL ) - -#define DXGI_ENUM_MODES_SCALING ( 2UL ) - - - -extern RPC_IF_HANDLE __MIDL_itf_dxgi_0000_0007_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_dxgi_0000_0007_v0_0_s_ifspec; - -#ifndef __IDXGIOutput_INTERFACE_DEFINED__ -#define __IDXGIOutput_INTERFACE_DEFINED__ - -/* interface IDXGIOutput */ -/* [unique][local][uuid][object] */ - - -EXTERN_C const IID IID_IDXGIOutput; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("ae02eedb-c735-4690-8d52-5a8dc20213aa") - IDXGIOutput : public IDXGIObject - { - public: - virtual HRESULT STDMETHODCALLTYPE GetDesc( - /* [annotation][out] */ - __out DXGI_OUTPUT_DESC *pDesc) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetDisplayModeList( - /* [in] */ DXGI_FORMAT EnumFormat, - /* [in] */ UINT Flags, - /* [annotation][out][in] */ - __inout UINT *pNumModes, - /* [annotation][out] */ - __out_ecount_part_opt(*pNumModes,*pNumModes) DXGI_MODE_DESC *pDesc) = 0; - - virtual HRESULT STDMETHODCALLTYPE FindClosestMatchingMode( - /* [annotation][in] */ - __in const DXGI_MODE_DESC *pModeToMatch, - /* [annotation][out] */ - __out DXGI_MODE_DESC *pClosestMatch, - /* [annotation][in] */ - __in_opt IUnknown *pConcernedDevice) = 0; - - virtual HRESULT STDMETHODCALLTYPE WaitForVBlank( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE TakeOwnership( - /* [annotation][in] */ - __in IUnknown *pDevice, - BOOL Exclusive) = 0; - - virtual void STDMETHODCALLTYPE ReleaseOwnership( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetGammaControlCapabilities( - /* [annotation][out] */ - __out DXGI_GAMMA_CONTROL_CAPABILITIES *pGammaCaps) = 0; - - virtual HRESULT STDMETHODCALLTYPE SetGammaControl( - /* [annotation][in] */ - __in const DXGI_GAMMA_CONTROL *pArray) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetGammaControl( - /* [annotation][out] */ - __out DXGI_GAMMA_CONTROL *pArray) = 0; - - virtual HRESULT STDMETHODCALLTYPE SetDisplaySurface( - /* [annotation][in] */ - __in IDXGISurface *pScanoutSurface) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetDisplaySurfaceData( - /* [annotation][in] */ - __in IDXGISurface *pDestination) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetFrameStatistics( - /* [annotation][out] */ - __out DXGI_FRAME_STATISTICS *pStats) = 0; - - }; - -#else /* C style interface */ - - typedef struct IDXGIOutputVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - IDXGIOutput * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - IDXGIOutput * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - IDXGIOutput * This); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - IDXGIOutput * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [in] */ UINT DataSize, - /* [annotation][in] */ - __in_bcount(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - IDXGIOutput * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][in] */ - __in const IUnknown *pUnknown); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - IDXGIOutput * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][out][in] */ - __inout UINT *pDataSize, - /* [annotation][out] */ - __out_bcount(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *GetParent )( - IDXGIOutput * This, - /* [annotation][in] */ - __in REFIID riid, - /* [annotation][retval][out] */ - __out void **ppParent); - - HRESULT ( STDMETHODCALLTYPE *GetDesc )( - IDXGIOutput * This, - /* [annotation][out] */ - __out DXGI_OUTPUT_DESC *pDesc); - - HRESULT ( STDMETHODCALLTYPE *GetDisplayModeList )( - IDXGIOutput * This, - /* [in] */ DXGI_FORMAT EnumFormat, - /* [in] */ UINT Flags, - /* [annotation][out][in] */ - __inout UINT *pNumModes, - /* [annotation][out] */ - __out_ecount_part_opt(*pNumModes,*pNumModes) DXGI_MODE_DESC *pDesc); - - HRESULT ( STDMETHODCALLTYPE *FindClosestMatchingMode )( - IDXGIOutput * This, - /* [annotation][in] */ - __in const DXGI_MODE_DESC *pModeToMatch, - /* [annotation][out] */ - __out DXGI_MODE_DESC *pClosestMatch, - /* [annotation][in] */ - __in_opt IUnknown *pConcernedDevice); - - HRESULT ( STDMETHODCALLTYPE *WaitForVBlank )( - IDXGIOutput * This); - - HRESULT ( STDMETHODCALLTYPE *TakeOwnership )( - IDXGIOutput * This, - /* [annotation][in] */ - __in IUnknown *pDevice, - BOOL Exclusive); - - void ( STDMETHODCALLTYPE *ReleaseOwnership )( - IDXGIOutput * This); - - HRESULT ( STDMETHODCALLTYPE *GetGammaControlCapabilities )( - IDXGIOutput * This, - /* [annotation][out] */ - __out DXGI_GAMMA_CONTROL_CAPABILITIES *pGammaCaps); - - HRESULT ( STDMETHODCALLTYPE *SetGammaControl )( - IDXGIOutput * This, - /* [annotation][in] */ - __in const DXGI_GAMMA_CONTROL *pArray); - - HRESULT ( STDMETHODCALLTYPE *GetGammaControl )( - IDXGIOutput * This, - /* [annotation][out] */ - __out DXGI_GAMMA_CONTROL *pArray); - - HRESULT ( STDMETHODCALLTYPE *SetDisplaySurface )( - IDXGIOutput * This, - /* [annotation][in] */ - __in IDXGISurface *pScanoutSurface); - - HRESULT ( STDMETHODCALLTYPE *GetDisplaySurfaceData )( - IDXGIOutput * This, - /* [annotation][in] */ - __in IDXGISurface *pDestination); - - HRESULT ( STDMETHODCALLTYPE *GetFrameStatistics )( - IDXGIOutput * This, - /* [annotation][out] */ - __out DXGI_FRAME_STATISTICS *pStats); - - END_INTERFACE - } IDXGIOutputVtbl; - - interface IDXGIOutput - { - CONST_VTBL struct IDXGIOutputVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define IDXGIOutput_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define IDXGIOutput_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define IDXGIOutput_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define IDXGIOutput_SetPrivateData(This,Name,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,Name,DataSize,pData) ) - -#define IDXGIOutput_SetPrivateDataInterface(This,Name,pUnknown) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,Name,pUnknown) ) - -#define IDXGIOutput_GetPrivateData(This,Name,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,Name,pDataSize,pData) ) - -#define IDXGIOutput_GetParent(This,riid,ppParent) \ - ( (This)->lpVtbl -> GetParent(This,riid,ppParent) ) - - -#define IDXGIOutput_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#define IDXGIOutput_GetDisplayModeList(This,EnumFormat,Flags,pNumModes,pDesc) \ - ( (This)->lpVtbl -> GetDisplayModeList(This,EnumFormat,Flags,pNumModes,pDesc) ) - -#define IDXGIOutput_FindClosestMatchingMode(This,pModeToMatch,pClosestMatch,pConcernedDevice) \ - ( (This)->lpVtbl -> FindClosestMatchingMode(This,pModeToMatch,pClosestMatch,pConcernedDevice) ) - -#define IDXGIOutput_WaitForVBlank(This) \ - ( (This)->lpVtbl -> WaitForVBlank(This) ) - -#define IDXGIOutput_TakeOwnership(This,pDevice,Exclusive) \ - ( (This)->lpVtbl -> TakeOwnership(This,pDevice,Exclusive) ) - -#define IDXGIOutput_ReleaseOwnership(This) \ - ( (This)->lpVtbl -> ReleaseOwnership(This) ) - -#define IDXGIOutput_GetGammaControlCapabilities(This,pGammaCaps) \ - ( (This)->lpVtbl -> GetGammaControlCapabilities(This,pGammaCaps) ) - -#define IDXGIOutput_SetGammaControl(This,pArray) \ - ( (This)->lpVtbl -> SetGammaControl(This,pArray) ) - -#define IDXGIOutput_GetGammaControl(This,pArray) \ - ( (This)->lpVtbl -> GetGammaControl(This,pArray) ) - -#define IDXGIOutput_SetDisplaySurface(This,pScanoutSurface) \ - ( (This)->lpVtbl -> SetDisplaySurface(This,pScanoutSurface) ) - -#define IDXGIOutput_GetDisplaySurfaceData(This,pDestination) \ - ( (This)->lpVtbl -> GetDisplaySurfaceData(This,pDestination) ) - -#define IDXGIOutput_GetFrameStatistics(This,pStats) \ - ( (This)->lpVtbl -> GetFrameStatistics(This,pStats) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __IDXGIOutput_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_dxgi_0000_0008 */ -/* [local] */ - -#define DXGI_MAX_SWAP_CHAIN_BUFFERS ( 16 ) -#define DXGI_PRESENT_TEST 0x00000001UL -#define DXGI_PRESENT_DO_NOT_SEQUENCE 0x00000002UL -#define DXGI_PRESENT_RESTART 0x00000004UL - - -extern RPC_IF_HANDLE __MIDL_itf_dxgi_0000_0008_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_dxgi_0000_0008_v0_0_s_ifspec; - -#ifndef __IDXGISwapChain_INTERFACE_DEFINED__ -#define __IDXGISwapChain_INTERFACE_DEFINED__ - -/* interface IDXGISwapChain */ -/* [unique][local][uuid][object] */ - - -EXTERN_C const IID IID_IDXGISwapChain; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("310d36a0-d2e7-4c0a-aa04-6a9d23b8886a") - IDXGISwapChain : public IDXGIDeviceSubObject - { - public: - virtual HRESULT STDMETHODCALLTYPE Present( - /* [in] */ UINT SyncInterval, - /* [in] */ UINT Flags) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetBuffer( - /* [in] */ UINT Buffer, - /* [annotation][in] */ - __in REFIID riid, - /* [annotation][out][in] */ - __out void **ppSurface) = 0; - - virtual HRESULT STDMETHODCALLTYPE SetFullscreenState( - /* [in] */ BOOL Fullscreen, - /* [annotation][in] */ - __in_opt IDXGIOutput *pTarget) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetFullscreenState( - /* [annotation][out] */ - __out BOOL *pFullscreen, - /* [annotation][out] */ - __out IDXGIOutput **ppTarget) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetDesc( - /* [annotation][out] */ - __out DXGI_SWAP_CHAIN_DESC *pDesc) = 0; - - virtual HRESULT STDMETHODCALLTYPE ResizeBuffers( - /* [in] */ UINT BufferCount, - /* [in] */ UINT Width, - /* [in] */ UINT Height, - /* [in] */ DXGI_FORMAT NewFormat, - /* [in] */ UINT SwapChainFlags) = 0; - - virtual HRESULT STDMETHODCALLTYPE ResizeTarget( - /* [annotation][in] */ - __in const DXGI_MODE_DESC *pNewTargetParameters) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetContainingOutput( - /* [annotation][out] */ - __out IDXGIOutput **ppOutput) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetFrameStatistics( - /* [annotation][out] */ - __out DXGI_FRAME_STATISTICS *pStats) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetLastPresentCount( - /* [annotation][out] */ - __out UINT *pLastPresentCount) = 0; - - }; - -#else /* C style interface */ - - typedef struct IDXGISwapChainVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - IDXGISwapChain * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - IDXGISwapChain * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - IDXGISwapChain * This); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - IDXGISwapChain * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [in] */ UINT DataSize, - /* [annotation][in] */ - __in_bcount(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - IDXGISwapChain * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][in] */ - __in const IUnknown *pUnknown); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - IDXGISwapChain * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][out][in] */ - __inout UINT *pDataSize, - /* [annotation][out] */ - __out_bcount(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *GetParent )( - IDXGISwapChain * This, - /* [annotation][in] */ - __in REFIID riid, - /* [annotation][retval][out] */ - __out void **ppParent); - - HRESULT ( STDMETHODCALLTYPE *GetDevice )( - IDXGISwapChain * This, - /* [annotation][in] */ - __in REFIID riid, - /* [annotation][retval][out] */ - __out void **ppDevice); - - HRESULT ( STDMETHODCALLTYPE *Present )( - IDXGISwapChain * This, - /* [in] */ UINT SyncInterval, - /* [in] */ UINT Flags); - - HRESULT ( STDMETHODCALLTYPE *GetBuffer )( - IDXGISwapChain * This, - /* [in] */ UINT Buffer, - /* [annotation][in] */ - __in REFIID riid, - /* [annotation][out][in] */ - __out void **ppSurface); - - HRESULT ( STDMETHODCALLTYPE *SetFullscreenState )( - IDXGISwapChain * This, - /* [in] */ BOOL Fullscreen, - /* [annotation][in] */ - __in_opt IDXGIOutput *pTarget); - - HRESULT ( STDMETHODCALLTYPE *GetFullscreenState )( - IDXGISwapChain * This, - /* [annotation][out] */ - __out BOOL *pFullscreen, - /* [annotation][out] */ - __out IDXGIOutput **ppTarget); - - HRESULT ( STDMETHODCALLTYPE *GetDesc )( - IDXGISwapChain * This, - /* [annotation][out] */ - __out DXGI_SWAP_CHAIN_DESC *pDesc); - - HRESULT ( STDMETHODCALLTYPE *ResizeBuffers )( - IDXGISwapChain * This, - /* [in] */ UINT BufferCount, - /* [in] */ UINT Width, - /* [in] */ UINT Height, - /* [in] */ DXGI_FORMAT NewFormat, - /* [in] */ UINT SwapChainFlags); - - HRESULT ( STDMETHODCALLTYPE *ResizeTarget )( - IDXGISwapChain * This, - /* [annotation][in] */ - __in const DXGI_MODE_DESC *pNewTargetParameters); - - HRESULT ( STDMETHODCALLTYPE *GetContainingOutput )( - IDXGISwapChain * This, - /* [annotation][out] */ - __out IDXGIOutput **ppOutput); - - HRESULT ( STDMETHODCALLTYPE *GetFrameStatistics )( - IDXGISwapChain * This, - /* [annotation][out] */ - __out DXGI_FRAME_STATISTICS *pStats); - - HRESULT ( STDMETHODCALLTYPE *GetLastPresentCount )( - IDXGISwapChain * This, - /* [annotation][out] */ - __out UINT *pLastPresentCount); - - END_INTERFACE - } IDXGISwapChainVtbl; - - interface IDXGISwapChain - { - CONST_VTBL struct IDXGISwapChainVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define IDXGISwapChain_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define IDXGISwapChain_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define IDXGISwapChain_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define IDXGISwapChain_SetPrivateData(This,Name,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,Name,DataSize,pData) ) - -#define IDXGISwapChain_SetPrivateDataInterface(This,Name,pUnknown) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,Name,pUnknown) ) - -#define IDXGISwapChain_GetPrivateData(This,Name,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,Name,pDataSize,pData) ) - -#define IDXGISwapChain_GetParent(This,riid,ppParent) \ - ( (This)->lpVtbl -> GetParent(This,riid,ppParent) ) - - -#define IDXGISwapChain_GetDevice(This,riid,ppDevice) \ - ( (This)->lpVtbl -> GetDevice(This,riid,ppDevice) ) - - -#define IDXGISwapChain_Present(This,SyncInterval,Flags) \ - ( (This)->lpVtbl -> Present(This,SyncInterval,Flags) ) - -#define IDXGISwapChain_GetBuffer(This,Buffer,riid,ppSurface) \ - ( (This)->lpVtbl -> GetBuffer(This,Buffer,riid,ppSurface) ) - -#define IDXGISwapChain_SetFullscreenState(This,Fullscreen,pTarget) \ - ( (This)->lpVtbl -> SetFullscreenState(This,Fullscreen,pTarget) ) - -#define IDXGISwapChain_GetFullscreenState(This,pFullscreen,ppTarget) \ - ( (This)->lpVtbl -> GetFullscreenState(This,pFullscreen,ppTarget) ) - -#define IDXGISwapChain_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#define IDXGISwapChain_ResizeBuffers(This,BufferCount,Width,Height,NewFormat,SwapChainFlags) \ - ( (This)->lpVtbl -> ResizeBuffers(This,BufferCount,Width,Height,NewFormat,SwapChainFlags) ) - -#define IDXGISwapChain_ResizeTarget(This,pNewTargetParameters) \ - ( (This)->lpVtbl -> ResizeTarget(This,pNewTargetParameters) ) - -#define IDXGISwapChain_GetContainingOutput(This,ppOutput) \ - ( (This)->lpVtbl -> GetContainingOutput(This,ppOutput) ) - -#define IDXGISwapChain_GetFrameStatistics(This,pStats) \ - ( (This)->lpVtbl -> GetFrameStatistics(This,pStats) ) - -#define IDXGISwapChain_GetLastPresentCount(This,pLastPresentCount) \ - ( (This)->lpVtbl -> GetLastPresentCount(This,pLastPresentCount) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __IDXGISwapChain_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_dxgi_0000_0009 */ -/* [local] */ - -#define DXGI_MWA_NO_WINDOW_CHANGES ( 1 << 0 ) -#define DXGI_MWA_NO_ALT_ENTER ( 1 << 1 ) -#define DXGI_MWA_NO_PRINT_SCREEN ( 1 << 2 ) -#define DXGI_MWA_VALID ( 0x7 ) - - -extern RPC_IF_HANDLE __MIDL_itf_dxgi_0000_0009_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_dxgi_0000_0009_v0_0_s_ifspec; - -#ifndef __IDXGIFactory_INTERFACE_DEFINED__ -#define __IDXGIFactory_INTERFACE_DEFINED__ - -/* interface IDXGIFactory */ -/* [unique][local][uuid][object] */ - - -EXTERN_C const IID IID_IDXGIFactory; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("7b7166ec-21c7-44ae-b21a-c9ae321ae369") - IDXGIFactory : public IDXGIObject - { - public: - virtual HRESULT STDMETHODCALLTYPE EnumAdapters( - /* [in] */ UINT Adapter, - /* [annotation][out] */ - __out IDXGIAdapter **ppAdapter) = 0; - - virtual HRESULT STDMETHODCALLTYPE MakeWindowAssociation( - HWND WindowHandle, - UINT Flags) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetWindowAssociation( - /* [annotation][out] */ - __out HWND *pWindowHandle) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateSwapChain( - /* [annotation][in] */ - __in IUnknown *pDevice, - /* [annotation][in] */ - __in DXGI_SWAP_CHAIN_DESC *pDesc, - /* [annotation][out] */ - __out IDXGISwapChain **ppSwapChain) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateSoftwareAdapter( - /* [in] */ HMODULE Module, - /* [annotation][out] */ - __out IDXGIAdapter **ppAdapter) = 0; - - }; - -#else /* C style interface */ - - typedef struct IDXGIFactoryVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - IDXGIFactory * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - IDXGIFactory * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - IDXGIFactory * This); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - IDXGIFactory * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [in] */ UINT DataSize, - /* [annotation][in] */ - __in_bcount(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - IDXGIFactory * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][in] */ - __in const IUnknown *pUnknown); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - IDXGIFactory * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][out][in] */ - __inout UINT *pDataSize, - /* [annotation][out] */ - __out_bcount(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *GetParent )( - IDXGIFactory * This, - /* [annotation][in] */ - __in REFIID riid, - /* [annotation][retval][out] */ - __out void **ppParent); - - HRESULT ( STDMETHODCALLTYPE *EnumAdapters )( - IDXGIFactory * This, - /* [in] */ UINT Adapter, - /* [annotation][out] */ - __out IDXGIAdapter **ppAdapter); - - HRESULT ( STDMETHODCALLTYPE *MakeWindowAssociation )( - IDXGIFactory * This, - HWND WindowHandle, - UINT Flags); - - HRESULT ( STDMETHODCALLTYPE *GetWindowAssociation )( - IDXGIFactory * This, - /* [annotation][out] */ - __out HWND *pWindowHandle); - - HRESULT ( STDMETHODCALLTYPE *CreateSwapChain )( - IDXGIFactory * This, - /* [annotation][in] */ - __in IUnknown *pDevice, - /* [annotation][in] */ - __in DXGI_SWAP_CHAIN_DESC *pDesc, - /* [annotation][out] */ - __out IDXGISwapChain **ppSwapChain); - - HRESULT ( STDMETHODCALLTYPE *CreateSoftwareAdapter )( - IDXGIFactory * This, - /* [in] */ HMODULE Module, - /* [annotation][out] */ - __out IDXGIAdapter **ppAdapter); - - END_INTERFACE - } IDXGIFactoryVtbl; - - interface IDXGIFactory - { - CONST_VTBL struct IDXGIFactoryVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define IDXGIFactory_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define IDXGIFactory_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define IDXGIFactory_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define IDXGIFactory_SetPrivateData(This,Name,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,Name,DataSize,pData) ) - -#define IDXGIFactory_SetPrivateDataInterface(This,Name,pUnknown) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,Name,pUnknown) ) - -#define IDXGIFactory_GetPrivateData(This,Name,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,Name,pDataSize,pData) ) - -#define IDXGIFactory_GetParent(This,riid,ppParent) \ - ( (This)->lpVtbl -> GetParent(This,riid,ppParent) ) - - -#define IDXGIFactory_EnumAdapters(This,Adapter,ppAdapter) \ - ( (This)->lpVtbl -> EnumAdapters(This,Adapter,ppAdapter) ) - -#define IDXGIFactory_MakeWindowAssociation(This,WindowHandle,Flags) \ - ( (This)->lpVtbl -> MakeWindowAssociation(This,WindowHandle,Flags) ) - -#define IDXGIFactory_GetWindowAssociation(This,pWindowHandle) \ - ( (This)->lpVtbl -> GetWindowAssociation(This,pWindowHandle) ) - -#define IDXGIFactory_CreateSwapChain(This,pDevice,pDesc,ppSwapChain) \ - ( (This)->lpVtbl -> CreateSwapChain(This,pDevice,pDesc,ppSwapChain) ) - -#define IDXGIFactory_CreateSoftwareAdapter(This,Module,ppAdapter) \ - ( (This)->lpVtbl -> CreateSoftwareAdapter(This,Module,ppAdapter) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __IDXGIFactory_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_dxgi_0000_0010 */ -/* [local] */ - -HRESULT WINAPI CreateDXGIFactory(REFIID riid, void **ppFactory); -HRESULT WINAPI CreateDXGIFactory1(REFIID riid, void **ppFactory); - - -extern RPC_IF_HANDLE __MIDL_itf_dxgi_0000_0010_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_dxgi_0000_0010_v0_0_s_ifspec; - -#ifndef __IDXGIDevice_INTERFACE_DEFINED__ -#define __IDXGIDevice_INTERFACE_DEFINED__ - -/* interface IDXGIDevice */ -/* [unique][local][uuid][object] */ - - -EXTERN_C const IID IID_IDXGIDevice; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("54ec77fa-1377-44e6-8c32-88fd5f44c84c") - IDXGIDevice : public IDXGIObject - { - public: - virtual HRESULT STDMETHODCALLTYPE GetAdapter( - /* [annotation][out] */ - __out IDXGIAdapter **pAdapter) = 0; - - virtual HRESULT STDMETHODCALLTYPE CreateSurface( - /* [annotation][in] */ - __in const DXGI_SURFACE_DESC *pDesc, - /* [in] */ UINT NumSurfaces, - /* [in] */ DXGI_USAGE Usage, - /* [annotation][in] */ - __in_opt const DXGI_SHARED_RESOURCE *pSharedResource, - /* [annotation][out] */ - __out IDXGISurface **ppSurface) = 0; - - virtual HRESULT STDMETHODCALLTYPE QueryResourceResidency( - /* [annotation][size_is][in] */ - __in_ecount(NumResources) IUnknown *const *ppResources, - /* [annotation][size_is][out] */ - __out_ecount(NumResources) DXGI_RESIDENCY *pResidencyStatus, - /* [in] */ UINT NumResources) = 0; - - virtual HRESULT STDMETHODCALLTYPE SetGPUThreadPriority( - /* [in] */ INT Priority) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetGPUThreadPriority( - /* [annotation][retval][out] */ - __out INT *pPriority) = 0; - - }; - -#else /* C style interface */ - - typedef struct IDXGIDeviceVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - IDXGIDevice * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - IDXGIDevice * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - IDXGIDevice * This); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - IDXGIDevice * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [in] */ UINT DataSize, - /* [annotation][in] */ - __in_bcount(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - IDXGIDevice * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][in] */ - __in const IUnknown *pUnknown); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - IDXGIDevice * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][out][in] */ - __inout UINT *pDataSize, - /* [annotation][out] */ - __out_bcount(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *GetParent )( - IDXGIDevice * This, - /* [annotation][in] */ - __in REFIID riid, - /* [annotation][retval][out] */ - __out void **ppParent); - - HRESULT ( STDMETHODCALLTYPE *GetAdapter )( - IDXGIDevice * This, - /* [annotation][out] */ - __out IDXGIAdapter **pAdapter); - - HRESULT ( STDMETHODCALLTYPE *CreateSurface )( - IDXGIDevice * This, - /* [annotation][in] */ - __in const DXGI_SURFACE_DESC *pDesc, - /* [in] */ UINT NumSurfaces, - /* [in] */ DXGI_USAGE Usage, - /* [annotation][in] */ - __in_opt const DXGI_SHARED_RESOURCE *pSharedResource, - /* [annotation][out] */ - __out IDXGISurface **ppSurface); - - HRESULT ( STDMETHODCALLTYPE *QueryResourceResidency )( - IDXGIDevice * This, - /* [annotation][size_is][in] */ - __in_ecount(NumResources) IUnknown *const *ppResources, - /* [annotation][size_is][out] */ - __out_ecount(NumResources) DXGI_RESIDENCY *pResidencyStatus, - /* [in] */ UINT NumResources); - - HRESULT ( STDMETHODCALLTYPE *SetGPUThreadPriority )( - IDXGIDevice * This, - /* [in] */ INT Priority); - - HRESULT ( STDMETHODCALLTYPE *GetGPUThreadPriority )( - IDXGIDevice * This, - /* [annotation][retval][out] */ - __out INT *pPriority); - - END_INTERFACE - } IDXGIDeviceVtbl; - - interface IDXGIDevice - { - CONST_VTBL struct IDXGIDeviceVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define IDXGIDevice_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define IDXGIDevice_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define IDXGIDevice_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define IDXGIDevice_SetPrivateData(This,Name,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,Name,DataSize,pData) ) - -#define IDXGIDevice_SetPrivateDataInterface(This,Name,pUnknown) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,Name,pUnknown) ) - -#define IDXGIDevice_GetPrivateData(This,Name,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,Name,pDataSize,pData) ) - -#define IDXGIDevice_GetParent(This,riid,ppParent) \ - ( (This)->lpVtbl -> GetParent(This,riid,ppParent) ) - - -#define IDXGIDevice_GetAdapter(This,pAdapter) \ - ( (This)->lpVtbl -> GetAdapter(This,pAdapter) ) - -#define IDXGIDevice_CreateSurface(This,pDesc,NumSurfaces,Usage,pSharedResource,ppSurface) \ - ( (This)->lpVtbl -> CreateSurface(This,pDesc,NumSurfaces,Usage,pSharedResource,ppSurface) ) - -#define IDXGIDevice_QueryResourceResidency(This,ppResources,pResidencyStatus,NumResources) \ - ( (This)->lpVtbl -> QueryResourceResidency(This,ppResources,pResidencyStatus,NumResources) ) - -#define IDXGIDevice_SetGPUThreadPriority(This,Priority) \ - ( (This)->lpVtbl -> SetGPUThreadPriority(This,Priority) ) - -#define IDXGIDevice_GetGPUThreadPriority(This,pPriority) \ - ( (This)->lpVtbl -> GetGPUThreadPriority(This,pPriority) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __IDXGIDevice_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_dxgi_0000_0011 */ -/* [local] */ - -typedef -enum DXGI_ADAPTER_FLAG - { DXGI_ADAPTER_FLAG_NONE = 0, - DXGI_ADAPTER_FLAG_REMOTE = 1, - DXGI_ADAPTER_FLAG_FORCE_DWORD = 0xffffffff - } DXGI_ADAPTER_FLAG; - -typedef struct DXGI_ADAPTER_DESC1 - { - WCHAR Description[ 128 ]; - UINT VendorId; - UINT DeviceId; - UINT SubSysId; - UINT Revision; - SIZE_T DedicatedVideoMemory; - SIZE_T DedicatedSystemMemory; - SIZE_T SharedSystemMemory; - LUID AdapterLuid; - UINT Flags; - } DXGI_ADAPTER_DESC1; - -typedef struct DXGI_DISPLAY_COLOR_SPACE - { - FLOAT PrimaryCoordinates[ 8 ][ 2 ]; - FLOAT WhitePoints[ 16 ][ 2 ]; - } DXGI_DISPLAY_COLOR_SPACE; - - - - -extern RPC_IF_HANDLE __MIDL_itf_dxgi_0000_0011_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_dxgi_0000_0011_v0_0_s_ifspec; - -#ifndef __IDXGIFactory1_INTERFACE_DEFINED__ -#define __IDXGIFactory1_INTERFACE_DEFINED__ - -/* interface IDXGIFactory1 */ -/* [unique][local][uuid][object] */ - - -EXTERN_C const IID IID_IDXGIFactory1; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("770aae78-f26f-4dba-a829-253c83d1b387") - IDXGIFactory1 : public IDXGIFactory - { - public: - virtual HRESULT STDMETHODCALLTYPE EnumAdapters1( - /* [in] */ UINT Adapter, - /* [annotation][out] */ - __out IDXGIAdapter1 **ppAdapter) = 0; - - virtual BOOL STDMETHODCALLTYPE IsCurrent( void) = 0; - - }; - -#else /* C style interface */ - - typedef struct IDXGIFactory1Vtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - IDXGIFactory1 * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - IDXGIFactory1 * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - IDXGIFactory1 * This); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - IDXGIFactory1 * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [in] */ UINT DataSize, - /* [annotation][in] */ - __in_bcount(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - IDXGIFactory1 * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][in] */ - __in const IUnknown *pUnknown); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - IDXGIFactory1 * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][out][in] */ - __inout UINT *pDataSize, - /* [annotation][out] */ - __out_bcount(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *GetParent )( - IDXGIFactory1 * This, - /* [annotation][in] */ - __in REFIID riid, - /* [annotation][retval][out] */ - __out void **ppParent); - - HRESULT ( STDMETHODCALLTYPE *EnumAdapters )( - IDXGIFactory1 * This, - /* [in] */ UINT Adapter, - /* [annotation][out] */ - __out IDXGIAdapter **ppAdapter); - - HRESULT ( STDMETHODCALLTYPE *MakeWindowAssociation )( - IDXGIFactory1 * This, - HWND WindowHandle, - UINT Flags); - - HRESULT ( STDMETHODCALLTYPE *GetWindowAssociation )( - IDXGIFactory1 * This, - /* [annotation][out] */ - __out HWND *pWindowHandle); - - HRESULT ( STDMETHODCALLTYPE *CreateSwapChain )( - IDXGIFactory1 * This, - /* [annotation][in] */ - __in IUnknown *pDevice, - /* [annotation][in] */ - __in DXGI_SWAP_CHAIN_DESC *pDesc, - /* [annotation][out] */ - __out IDXGISwapChain **ppSwapChain); - - HRESULT ( STDMETHODCALLTYPE *CreateSoftwareAdapter )( - IDXGIFactory1 * This, - /* [in] */ HMODULE Module, - /* [annotation][out] */ - __out IDXGIAdapter **ppAdapter); - - HRESULT ( STDMETHODCALLTYPE *EnumAdapters1 )( - IDXGIFactory1 * This, - /* [in] */ UINT Adapter, - /* [annotation][out] */ - __out IDXGIAdapter1 **ppAdapter); - - BOOL ( STDMETHODCALLTYPE *IsCurrent )( - IDXGIFactory1 * This); - - END_INTERFACE - } IDXGIFactory1Vtbl; - - interface IDXGIFactory1 - { - CONST_VTBL struct IDXGIFactory1Vtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define IDXGIFactory1_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define IDXGIFactory1_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define IDXGIFactory1_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define IDXGIFactory1_SetPrivateData(This,Name,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,Name,DataSize,pData) ) - -#define IDXGIFactory1_SetPrivateDataInterface(This,Name,pUnknown) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,Name,pUnknown) ) - -#define IDXGIFactory1_GetPrivateData(This,Name,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,Name,pDataSize,pData) ) - -#define IDXGIFactory1_GetParent(This,riid,ppParent) \ - ( (This)->lpVtbl -> GetParent(This,riid,ppParent) ) - - -#define IDXGIFactory1_EnumAdapters(This,Adapter,ppAdapter) \ - ( (This)->lpVtbl -> EnumAdapters(This,Adapter,ppAdapter) ) - -#define IDXGIFactory1_MakeWindowAssociation(This,WindowHandle,Flags) \ - ( (This)->lpVtbl -> MakeWindowAssociation(This,WindowHandle,Flags) ) - -#define IDXGIFactory1_GetWindowAssociation(This,pWindowHandle) \ - ( (This)->lpVtbl -> GetWindowAssociation(This,pWindowHandle) ) - -#define IDXGIFactory1_CreateSwapChain(This,pDevice,pDesc,ppSwapChain) \ - ( (This)->lpVtbl -> CreateSwapChain(This,pDevice,pDesc,ppSwapChain) ) - -#define IDXGIFactory1_CreateSoftwareAdapter(This,Module,ppAdapter) \ - ( (This)->lpVtbl -> CreateSoftwareAdapter(This,Module,ppAdapter) ) - - -#define IDXGIFactory1_EnumAdapters1(This,Adapter,ppAdapter) \ - ( (This)->lpVtbl -> EnumAdapters1(This,Adapter,ppAdapter) ) - -#define IDXGIFactory1_IsCurrent(This) \ - ( (This)->lpVtbl -> IsCurrent(This) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __IDXGIFactory1_INTERFACE_DEFINED__ */ - - -#ifndef __IDXGIAdapter1_INTERFACE_DEFINED__ -#define __IDXGIAdapter1_INTERFACE_DEFINED__ - -/* interface IDXGIAdapter1 */ -/* [unique][local][uuid][object] */ - - -EXTERN_C const IID IID_IDXGIAdapter1; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("29038f61-3839-4626-91fd-086879011a05") - IDXGIAdapter1 : public IDXGIAdapter - { - public: - virtual HRESULT STDMETHODCALLTYPE GetDesc1( - /* [annotation][out] */ - __out DXGI_ADAPTER_DESC1 *pDesc) = 0; - - }; - -#else /* C style interface */ - - typedef struct IDXGIAdapter1Vtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - IDXGIAdapter1 * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - IDXGIAdapter1 * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - IDXGIAdapter1 * This); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - IDXGIAdapter1 * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [in] */ UINT DataSize, - /* [annotation][in] */ - __in_bcount(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - IDXGIAdapter1 * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][in] */ - __in const IUnknown *pUnknown); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - IDXGIAdapter1 * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][out][in] */ - __inout UINT *pDataSize, - /* [annotation][out] */ - __out_bcount(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *GetParent )( - IDXGIAdapter1 * This, - /* [annotation][in] */ - __in REFIID riid, - /* [annotation][retval][out] */ - __out void **ppParent); - - HRESULT ( STDMETHODCALLTYPE *EnumOutputs )( - IDXGIAdapter1 * This, - /* [in] */ UINT Output, - /* [annotation][out][in] */ - __out IDXGIOutput **ppOutput); - - HRESULT ( STDMETHODCALLTYPE *GetDesc )( - IDXGIAdapter1 * This, - /* [annotation][out] */ - __out DXGI_ADAPTER_DESC *pDesc); - - HRESULT ( STDMETHODCALLTYPE *CheckInterfaceSupport )( - IDXGIAdapter1 * This, - /* [annotation][in] */ - __in REFGUID InterfaceName, - /* [annotation][out] */ - __out LARGE_INTEGER *pUMDVersion); - - HRESULT ( STDMETHODCALLTYPE *GetDesc1 )( - IDXGIAdapter1 * This, - /* [annotation][out] */ - __out DXGI_ADAPTER_DESC1 *pDesc); - - END_INTERFACE - } IDXGIAdapter1Vtbl; - - interface IDXGIAdapter1 - { - CONST_VTBL struct IDXGIAdapter1Vtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define IDXGIAdapter1_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define IDXGIAdapter1_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define IDXGIAdapter1_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define IDXGIAdapter1_SetPrivateData(This,Name,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,Name,DataSize,pData) ) - -#define IDXGIAdapter1_SetPrivateDataInterface(This,Name,pUnknown) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,Name,pUnknown) ) - -#define IDXGIAdapter1_GetPrivateData(This,Name,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,Name,pDataSize,pData) ) - -#define IDXGIAdapter1_GetParent(This,riid,ppParent) \ - ( (This)->lpVtbl -> GetParent(This,riid,ppParent) ) - - -#define IDXGIAdapter1_EnumOutputs(This,Output,ppOutput) \ - ( (This)->lpVtbl -> EnumOutputs(This,Output,ppOutput) ) - -#define IDXGIAdapter1_GetDesc(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc(This,pDesc) ) - -#define IDXGIAdapter1_CheckInterfaceSupport(This,InterfaceName,pUMDVersion) \ - ( (This)->lpVtbl -> CheckInterfaceSupport(This,InterfaceName,pUMDVersion) ) - - -#define IDXGIAdapter1_GetDesc1(This,pDesc) \ - ( (This)->lpVtbl -> GetDesc1(This,pDesc) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __IDXGIAdapter1_INTERFACE_DEFINED__ */ - - -#ifndef __IDXGIDevice1_INTERFACE_DEFINED__ -#define __IDXGIDevice1_INTERFACE_DEFINED__ - -/* interface IDXGIDevice1 */ -/* [unique][local][uuid][object] */ - - -EXTERN_C const IID IID_IDXGIDevice1; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("77db970f-6276-48ba-ba28-070143b4392c") - IDXGIDevice1 : public IDXGIDevice - { - public: - virtual HRESULT STDMETHODCALLTYPE SetMaximumFrameLatency( - /* [in] */ UINT MaxLatency) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetMaximumFrameLatency( - /* [annotation][out] */ - __out UINT *pMaxLatency) = 0; - - }; - -#else /* C style interface */ - - typedef struct IDXGIDevice1Vtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - IDXGIDevice1 * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - IDXGIDevice1 * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - IDXGIDevice1 * This); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( - IDXGIDevice1 * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [in] */ UINT DataSize, - /* [annotation][in] */ - __in_bcount(DataSize) const void *pData); - - HRESULT ( STDMETHODCALLTYPE *SetPrivateDataInterface )( - IDXGIDevice1 * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][in] */ - __in const IUnknown *pUnknown); - - HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( - IDXGIDevice1 * This, - /* [annotation][in] */ - __in REFGUID Name, - /* [annotation][out][in] */ - __inout UINT *pDataSize, - /* [annotation][out] */ - __out_bcount(*pDataSize) void *pData); - - HRESULT ( STDMETHODCALLTYPE *GetParent )( - IDXGIDevice1 * This, - /* [annotation][in] */ - __in REFIID riid, - /* [annotation][retval][out] */ - __out void **ppParent); - - HRESULT ( STDMETHODCALLTYPE *GetAdapter )( - IDXGIDevice1 * This, - /* [annotation][out] */ - __out IDXGIAdapter **pAdapter); - - HRESULT ( STDMETHODCALLTYPE *CreateSurface )( - IDXGIDevice1 * This, - /* [annotation][in] */ - __in const DXGI_SURFACE_DESC *pDesc, - /* [in] */ UINT NumSurfaces, - /* [in] */ DXGI_USAGE Usage, - /* [annotation][in] */ - __in_opt const DXGI_SHARED_RESOURCE *pSharedResource, - /* [annotation][out] */ - __out IDXGISurface **ppSurface); - - HRESULT ( STDMETHODCALLTYPE *QueryResourceResidency )( - IDXGIDevice1 * This, - /* [annotation][size_is][in] */ - __in_ecount(NumResources) IUnknown *const *ppResources, - /* [annotation][size_is][out] */ - __out_ecount(NumResources) DXGI_RESIDENCY *pResidencyStatus, - /* [in] */ UINT NumResources); - - HRESULT ( STDMETHODCALLTYPE *SetGPUThreadPriority )( - IDXGIDevice1 * This, - /* [in] */ INT Priority); - - HRESULT ( STDMETHODCALLTYPE *GetGPUThreadPriority )( - IDXGIDevice1 * This, - /* [annotation][retval][out] */ - __out INT *pPriority); - - HRESULT ( STDMETHODCALLTYPE *SetMaximumFrameLatency )( - IDXGIDevice1 * This, - /* [in] */ UINT MaxLatency); - - HRESULT ( STDMETHODCALLTYPE *GetMaximumFrameLatency )( - IDXGIDevice1 * This, - /* [annotation][out] */ - __out UINT *pMaxLatency); - - END_INTERFACE - } IDXGIDevice1Vtbl; - - interface IDXGIDevice1 - { - CONST_VTBL struct IDXGIDevice1Vtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define IDXGIDevice1_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define IDXGIDevice1_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define IDXGIDevice1_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define IDXGIDevice1_SetPrivateData(This,Name,DataSize,pData) \ - ( (This)->lpVtbl -> SetPrivateData(This,Name,DataSize,pData) ) - -#define IDXGIDevice1_SetPrivateDataInterface(This,Name,pUnknown) \ - ( (This)->lpVtbl -> SetPrivateDataInterface(This,Name,pUnknown) ) - -#define IDXGIDevice1_GetPrivateData(This,Name,pDataSize,pData) \ - ( (This)->lpVtbl -> GetPrivateData(This,Name,pDataSize,pData) ) - -#define IDXGIDevice1_GetParent(This,riid,ppParent) \ - ( (This)->lpVtbl -> GetParent(This,riid,ppParent) ) - - -#define IDXGIDevice1_GetAdapter(This,pAdapter) \ - ( (This)->lpVtbl -> GetAdapter(This,pAdapter) ) - -#define IDXGIDevice1_CreateSurface(This,pDesc,NumSurfaces,Usage,pSharedResource,ppSurface) \ - ( (This)->lpVtbl -> CreateSurface(This,pDesc,NumSurfaces,Usage,pSharedResource,ppSurface) ) - -#define IDXGIDevice1_QueryResourceResidency(This,ppResources,pResidencyStatus,NumResources) \ - ( (This)->lpVtbl -> QueryResourceResidency(This,ppResources,pResidencyStatus,NumResources) ) - -#define IDXGIDevice1_SetGPUThreadPriority(This,Priority) \ - ( (This)->lpVtbl -> SetGPUThreadPriority(This,Priority) ) - -#define IDXGIDevice1_GetGPUThreadPriority(This,pPriority) \ - ( (This)->lpVtbl -> GetGPUThreadPriority(This,pPriority) ) - - -#define IDXGIDevice1_SetMaximumFrameLatency(This,MaxLatency) \ - ( (This)->lpVtbl -> SetMaximumFrameLatency(This,MaxLatency) ) - -#define IDXGIDevice1_GetMaximumFrameLatency(This,pMaxLatency) \ - ( (This)->lpVtbl -> GetMaximumFrameLatency(This,pMaxLatency) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __IDXGIDevice1_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_dxgi_0000_0014 */ -/* [local] */ - -#ifdef __cplusplus -#endif /*__cplusplus*/ -DEFINE_GUID(IID_IDXGIObject,0xaec22fb8,0x76f3,0x4639,0x9b,0xe0,0x28,0xeb,0x43,0xa6,0x7a,0x2e); -DEFINE_GUID(IID_IDXGIDeviceSubObject,0x3d3e0379,0xf9de,0x4d58,0xbb,0x6c,0x18,0xd6,0x29,0x92,0xf1,0xa6); -DEFINE_GUID(IID_IDXGIResource,0x035f3ab4,0x482e,0x4e50,0xb4,0x1f,0x8a,0x7f,0x8b,0xd8,0x96,0x0b); -DEFINE_GUID(IID_IDXGIKeyedMutex,0x9d8e1289,0xd7b3,0x465f,0x81,0x26,0x25,0x0e,0x34,0x9a,0xf8,0x5d); -DEFINE_GUID(IID_IDXGISurface,0xcafcb56c,0x6ac3,0x4889,0xbf,0x47,0x9e,0x23,0xbb,0xd2,0x60,0xec); -DEFINE_GUID(IID_IDXGISurface1,0x4AE63092,0x6327,0x4c1b,0x80,0xAE,0xBF,0xE1,0x2E,0xA3,0x2B,0x86); -DEFINE_GUID(IID_IDXGIAdapter,0x2411e7e1,0x12ac,0x4ccf,0xbd,0x14,0x97,0x98,0xe8,0x53,0x4d,0xc0); -DEFINE_GUID(IID_IDXGIOutput,0xae02eedb,0xc735,0x4690,0x8d,0x52,0x5a,0x8d,0xc2,0x02,0x13,0xaa); -DEFINE_GUID(IID_IDXGISwapChain,0x310d36a0,0xd2e7,0x4c0a,0xaa,0x04,0x6a,0x9d,0x23,0xb8,0x88,0x6a); -DEFINE_GUID(IID_IDXGIFactory,0x7b7166ec,0x21c7,0x44ae,0xb2,0x1a,0xc9,0xae,0x32,0x1a,0xe3,0x69); -DEFINE_GUID(IID_IDXGIDevice,0x54ec77fa,0x1377,0x44e6,0x8c,0x32,0x88,0xfd,0x5f,0x44,0xc8,0x4c); -DEFINE_GUID(IID_IDXGIFactory1,0x770aae78,0xf26f,0x4dba,0xa8,0x29,0x25,0x3c,0x83,0xd1,0xb3,0x87); -DEFINE_GUID(IID_IDXGIAdapter1,0x29038f61,0x3839,0x4626,0x91,0xfd,0x08,0x68,0x79,0x01,0x1a,0x05); -DEFINE_GUID(IID_IDXGIDevice1,0x77db970f,0x6276,0x48ba,0xba,0x28,0x07,0x01,0x43,0xb4,0x39,0x2c); - - -extern RPC_IF_HANDLE __MIDL_itf_dxgi_0000_0014_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_dxgi_0000_0014_v0_0_s_ifspec; - -/* Additional Prototypes for ALL interfaces */ - -/* end of Additional Prototypes */ - -#ifdef __cplusplus -} -#endif - -#endif - - diff --git a/SDK/Include/DXGIFormat.h b/SDK/Include/DXGIFormat.h deleted file mode 100644 index e84f7f5..0000000 --- a/SDK/Include/DXGIFormat.h +++ /dev/null @@ -1,112 +0,0 @@ - -#ifndef __dxgiformat_h__ -#define __dxgiformat_h__ - -#define DXGI_FORMAT_DEFINED 1 - -typedef enum DXGI_FORMAT -{ - DXGI_FORMAT_UNKNOWN = 0, - DXGI_FORMAT_R32G32B32A32_TYPELESS = 1, - DXGI_FORMAT_R32G32B32A32_FLOAT = 2, - DXGI_FORMAT_R32G32B32A32_UINT = 3, - DXGI_FORMAT_R32G32B32A32_SINT = 4, - DXGI_FORMAT_R32G32B32_TYPELESS = 5, - DXGI_FORMAT_R32G32B32_FLOAT = 6, - DXGI_FORMAT_R32G32B32_UINT = 7, - DXGI_FORMAT_R32G32B32_SINT = 8, - DXGI_FORMAT_R16G16B16A16_TYPELESS = 9, - DXGI_FORMAT_R16G16B16A16_FLOAT = 10, - DXGI_FORMAT_R16G16B16A16_UNORM = 11, - DXGI_FORMAT_R16G16B16A16_UINT = 12, - DXGI_FORMAT_R16G16B16A16_SNORM = 13, - DXGI_FORMAT_R16G16B16A16_SINT = 14, - DXGI_FORMAT_R32G32_TYPELESS = 15, - DXGI_FORMAT_R32G32_FLOAT = 16, - DXGI_FORMAT_R32G32_UINT = 17, - DXGI_FORMAT_R32G32_SINT = 18, - DXGI_FORMAT_R32G8X24_TYPELESS = 19, - DXGI_FORMAT_D32_FLOAT_S8X24_UINT = 20, - DXGI_FORMAT_R32_FLOAT_X8X24_TYPELESS = 21, - DXGI_FORMAT_X32_TYPELESS_G8X24_UINT = 22, - DXGI_FORMAT_R10G10B10A2_TYPELESS = 23, - DXGI_FORMAT_R10G10B10A2_UNORM = 24, - DXGI_FORMAT_R10G10B10A2_UINT = 25, - DXGI_FORMAT_R11G11B10_FLOAT = 26, - DXGI_FORMAT_R8G8B8A8_TYPELESS = 27, - DXGI_FORMAT_R8G8B8A8_UNORM = 28, - DXGI_FORMAT_R8G8B8A8_UNORM_SRGB = 29, - DXGI_FORMAT_R8G8B8A8_UINT = 30, - DXGI_FORMAT_R8G8B8A8_SNORM = 31, - DXGI_FORMAT_R8G8B8A8_SINT = 32, - DXGI_FORMAT_R16G16_TYPELESS = 33, - DXGI_FORMAT_R16G16_FLOAT = 34, - DXGI_FORMAT_R16G16_UNORM = 35, - DXGI_FORMAT_R16G16_UINT = 36, - DXGI_FORMAT_R16G16_SNORM = 37, - DXGI_FORMAT_R16G16_SINT = 38, - DXGI_FORMAT_R32_TYPELESS = 39, - DXGI_FORMAT_D32_FLOAT = 40, - DXGI_FORMAT_R32_FLOAT = 41, - DXGI_FORMAT_R32_UINT = 42, - DXGI_FORMAT_R32_SINT = 43, - DXGI_FORMAT_R24G8_TYPELESS = 44, - DXGI_FORMAT_D24_UNORM_S8_UINT = 45, - DXGI_FORMAT_R24_UNORM_X8_TYPELESS = 46, - DXGI_FORMAT_X24_TYPELESS_G8_UINT = 47, - DXGI_FORMAT_R8G8_TYPELESS = 48, - DXGI_FORMAT_R8G8_UNORM = 49, - DXGI_FORMAT_R8G8_UINT = 50, - DXGI_FORMAT_R8G8_SNORM = 51, - DXGI_FORMAT_R8G8_SINT = 52, - DXGI_FORMAT_R16_TYPELESS = 53, - DXGI_FORMAT_R16_FLOAT = 54, - DXGI_FORMAT_D16_UNORM = 55, - DXGI_FORMAT_R16_UNORM = 56, - DXGI_FORMAT_R16_UINT = 57, - DXGI_FORMAT_R16_SNORM = 58, - DXGI_FORMAT_R16_SINT = 59, - DXGI_FORMAT_R8_TYPELESS = 60, - DXGI_FORMAT_R8_UNORM = 61, - DXGI_FORMAT_R8_UINT = 62, - DXGI_FORMAT_R8_SNORM = 63, - DXGI_FORMAT_R8_SINT = 64, - DXGI_FORMAT_A8_UNORM = 65, - DXGI_FORMAT_R1_UNORM = 66, - DXGI_FORMAT_R9G9B9E5_SHAREDEXP = 67, - DXGI_FORMAT_R8G8_B8G8_UNORM = 68, - DXGI_FORMAT_G8R8_G8B8_UNORM = 69, - DXGI_FORMAT_BC1_TYPELESS = 70, - DXGI_FORMAT_BC1_UNORM = 71, - DXGI_FORMAT_BC1_UNORM_SRGB = 72, - DXGI_FORMAT_BC2_TYPELESS = 73, - DXGI_FORMAT_BC2_UNORM = 74, - DXGI_FORMAT_BC2_UNORM_SRGB = 75, - DXGI_FORMAT_BC3_TYPELESS = 76, - DXGI_FORMAT_BC3_UNORM = 77, - DXGI_FORMAT_BC3_UNORM_SRGB = 78, - DXGI_FORMAT_BC4_TYPELESS = 79, - DXGI_FORMAT_BC4_UNORM = 80, - DXGI_FORMAT_BC4_SNORM = 81, - DXGI_FORMAT_BC5_TYPELESS = 82, - DXGI_FORMAT_BC5_UNORM = 83, - DXGI_FORMAT_BC5_SNORM = 84, - DXGI_FORMAT_B5G6R5_UNORM = 85, - DXGI_FORMAT_B5G5R5A1_UNORM = 86, - DXGI_FORMAT_B8G8R8A8_UNORM = 87, - DXGI_FORMAT_B8G8R8X8_UNORM = 88, - DXGI_FORMAT_R10G10B10_XR_BIAS_A2_UNORM = 89, - DXGI_FORMAT_B8G8R8A8_TYPELESS = 90, - DXGI_FORMAT_B8G8R8A8_UNORM_SRGB = 91, - DXGI_FORMAT_B8G8R8X8_TYPELESS = 92, - DXGI_FORMAT_B8G8R8X8_UNORM_SRGB = 93, - DXGI_FORMAT_BC6H_TYPELESS = 94, - DXGI_FORMAT_BC6H_UF16 = 95, - DXGI_FORMAT_BC6H_SF16 = 96, - DXGI_FORMAT_BC7_TYPELESS = 97, - DXGI_FORMAT_BC7_UNORM = 98, - DXGI_FORMAT_BC7_UNORM_SRGB = 99, - DXGI_FORMAT_FORCE_UINT = 0xffffffff -} DXGI_FORMAT; - -#endif // __dxgiformat_h__ diff --git a/SDK/Include/DXGIType.h b/SDK/Include/DXGIType.h deleted file mode 100644 index 89dd86a..0000000 --- a/SDK/Include/DXGIType.h +++ /dev/null @@ -1,123 +0,0 @@ - -#ifndef __dxgitype_h__ -#define __dxgitype_h__ - - -#include "dxgiformat.h" - -#define _FACDXGI 0x87a -#define MAKE_DXGI_HRESULT(code) MAKE_HRESULT(1, _FACDXGI, code) -#define MAKE_DXGI_STATUS(code) MAKE_HRESULT(0, _FACDXGI, code) - -#define DXGI_STATUS_OCCLUDED MAKE_DXGI_STATUS(1) -#define DXGI_STATUS_CLIPPED MAKE_DXGI_STATUS(2) -#define DXGI_STATUS_NO_REDIRECTION MAKE_DXGI_STATUS(4) -#define DXGI_STATUS_NO_DESKTOP_ACCESS MAKE_DXGI_STATUS(5) -#define DXGI_STATUS_GRAPHICS_VIDPN_SOURCE_IN_USE MAKE_DXGI_STATUS(6) -#define DXGI_STATUS_MODE_CHANGED MAKE_DXGI_STATUS(7) -#define DXGI_STATUS_MODE_CHANGE_IN_PROGRESS MAKE_DXGI_STATUS(8) - - -#define DXGI_ERROR_INVALID_CALL MAKE_DXGI_HRESULT(1) -#define DXGI_ERROR_NOT_FOUND MAKE_DXGI_HRESULT(2) -#define DXGI_ERROR_MORE_DATA MAKE_DXGI_HRESULT(3) -#define DXGI_ERROR_UNSUPPORTED MAKE_DXGI_HRESULT(4) -#define DXGI_ERROR_DEVICE_REMOVED MAKE_DXGI_HRESULT(5) -#define DXGI_ERROR_DEVICE_HUNG MAKE_DXGI_HRESULT(6) -#define DXGI_ERROR_DEVICE_RESET MAKE_DXGI_HRESULT(7) -#define DXGI_ERROR_WAS_STILL_DRAWING MAKE_DXGI_HRESULT(10) -#define DXGI_ERROR_FRAME_STATISTICS_DISJOINT MAKE_DXGI_HRESULT(11) -#define DXGI_ERROR_GRAPHICS_VIDPN_SOURCE_IN_USE MAKE_DXGI_HRESULT(12) -#define DXGI_ERROR_DRIVER_INTERNAL_ERROR MAKE_DXGI_HRESULT(32) -#define DXGI_ERROR_NONEXCLUSIVE MAKE_DXGI_HRESULT(33) -#define DXGI_ERROR_NOT_CURRENTLY_AVAILABLE MAKE_DXGI_HRESULT(34) -#define DXGI_ERROR_REMOTE_CLIENT_DISCONNECTED MAKE_DXGI_HRESULT(35) -#define DXGI_ERROR_REMOTE_OUTOFMEMORY MAKE_DXGI_HRESULT(36) - - - -#define DXGI_CPU_ACCESS_NONE ( 0 ) -#define DXGI_CPU_ACCESS_DYNAMIC ( 1 ) -#define DXGI_CPU_ACCESS_READ_WRITE ( 2 ) -#define DXGI_CPU_ACCESS_SCRATCH ( 3 ) -#define DXGI_CPU_ACCESS_FIELD 15 - -#define DXGI_USAGE_SHADER_INPUT ( 1L << (0 + 4) ) -#define DXGI_USAGE_RENDER_TARGET_OUTPUT ( 1L << (1 + 4) ) -#define DXGI_USAGE_BACK_BUFFER ( 1L << (2 + 4) ) -#define DXGI_USAGE_SHARED ( 1L << (3 + 4) ) -#define DXGI_USAGE_READ_ONLY ( 1L << (4 + 4) ) -#define DXGI_USAGE_DISCARD_ON_PRESENT ( 1L << (5 + 4) ) -#define DXGI_USAGE_UNORDERED_ACCESS ( 1L << (6 + 4) ) - -typedef struct DXGI_RGB -{ - float Red; - float Green; - float Blue; -} DXGI_RGB; - -typedef struct DXGI_GAMMA_CONTROL -{ - DXGI_RGB Scale; - DXGI_RGB Offset; - DXGI_RGB GammaCurve[ 1025 ]; -} DXGI_GAMMA_CONTROL; - -typedef struct DXGI_GAMMA_CONTROL_CAPABILITIES -{ - BOOL ScaleAndOffsetSupported; - float MaxConvertedValue; - float MinConvertedValue; - UINT NumGammaControlPoints; - float ControlPointPositions[1025]; -} DXGI_GAMMA_CONTROL_CAPABILITIES; - -typedef struct DXGI_RATIONAL -{ - UINT Numerator; - UINT Denominator; -} DXGI_RATIONAL; - -typedef enum DXGI_MODE_SCANLINE_ORDER -{ - DXGI_MODE_SCANLINE_ORDER_UNSPECIFIED = 0, - DXGI_MODE_SCANLINE_ORDER_PROGRESSIVE = 1, - DXGI_MODE_SCANLINE_ORDER_UPPER_FIELD_FIRST = 2, - DXGI_MODE_SCANLINE_ORDER_LOWER_FIELD_FIRST = 3 -} DXGI_MODE_SCANLINE_ORDER; - -typedef enum DXGI_MODE_SCALING -{ - DXGI_MODE_SCALING_UNSPECIFIED = 0, - DXGI_MODE_SCALING_CENTERED = 1, - DXGI_MODE_SCALING_STRETCHED = 2 -} DXGI_MODE_SCALING; - -typedef enum DXGI_MODE_ROTATION -{ - DXGI_MODE_ROTATION_UNSPECIFIED = 0, - DXGI_MODE_ROTATION_IDENTITY = 1, - DXGI_MODE_ROTATION_ROTATE90 = 2, - DXGI_MODE_ROTATION_ROTATE180 = 3, - DXGI_MODE_ROTATION_ROTATE270 = 4 -} DXGI_MODE_ROTATION; - -typedef struct DXGI_MODE_DESC -{ - UINT Width; - UINT Height; - DXGI_RATIONAL RefreshRate; - DXGI_FORMAT Format; - DXGI_MODE_SCANLINE_ORDER ScanlineOrdering; - DXGI_MODE_SCALING Scaling; -} DXGI_MODE_DESC; - -typedef struct DXGI_SAMPLE_DESC -{ - UINT Count; - UINT Quality; -} DXGI_SAMPLE_DESC; - -#endif // __dxgitype_h__ - diff --git a/SDK/Include/Dcommon.h b/SDK/Include/Dcommon.h deleted file mode 100644 index 4ecc5c1..0000000 --- a/SDK/Include/Dcommon.h +++ /dev/null @@ -1,65 +0,0 @@ -//+-------------------------------------------------------------------------- -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// -// Abstract: -// Public API definitions for DWrite and D2D -// -//---------------------------------------------------------------------------- - -#ifndef DCOMMON_H_INCLUDED -#define DCOMMON_H_INCLUDED - -// -//These macros are defined in the Windows 7 SDK, however to enable development using the technical preview, -//they are included here temporarily. -// -#ifndef DEFINE_ENUM_FLAG_OPERATORS -#define DEFINE_ENUM_FLAG_OPERATORS(ENUMTYPE) \ -extern "C++" { \ -inline ENUMTYPE operator | (ENUMTYPE a, ENUMTYPE b) { return ENUMTYPE(((int)a) | ((int)b)); } \ -inline ENUMTYPE &operator |= (ENUMTYPE &a, ENUMTYPE b) { return (ENUMTYPE &)(((int &)a) |= ((int)b)); } \ -inline ENUMTYPE operator & (ENUMTYPE a, ENUMTYPE b) { return ENUMTYPE(((int)a) & ((int)b)); } \ -inline ENUMTYPE &operator &= (ENUMTYPE &a, ENUMTYPE b) { return (ENUMTYPE &)(((int &)a) &= ((int)b)); } \ -inline ENUMTYPE operator ~ (ENUMTYPE a) { return ENUMTYPE(~((int)a)); } \ -inline ENUMTYPE operator ^ (ENUMTYPE a, ENUMTYPE b) { return ENUMTYPE(((int)a) ^ ((int)b)); } \ -inline ENUMTYPE &operator ^= (ENUMTYPE &a, ENUMTYPE b) { return (ENUMTYPE &)(((int &)a) ^= ((int)b)); } \ -} -#endif - -#ifndef __field_ecount_opt -#define __field_ecount_opt(x) -#endif - -#ifndef __range -#define __range(x,y) -#endif - -#ifndef __field_ecount -#define __field_ecount(x) -#endif - -/// -/// The measuring method used for text layout. -/// -typedef enum DWRITE_MEASURING_MODE -{ - /// - /// Text is measured using glyph ideal metrics whose values are independent to the current display resolution. - /// - DWRITE_MEASURING_MODE_NATURAL, - - /// - /// Text is measured using glyph display compatible metrics whose values tuned for the current display resolution. - /// - DWRITE_MEASURING_MODE_GDI_CLASSIC, - - /// - /// Text is measured using the same glyph display metrics as text measured by GDI using a font - /// created with CLEARTYPE_NATURAL_QUALITY. - /// - DWRITE_MEASURING_MODE_GDI_NATURAL - -} DWRITE_MEASURING_MODE; - -#endif /* DCOMMON_H_INCLUDED */ diff --git a/SDK/Include/DxErr.h b/SDK/Include/DxErr.h deleted file mode 100644 index 2bd7591..0000000 --- a/SDK/Include/DxErr.h +++ /dev/null @@ -1,99 +0,0 @@ -/*==========================================================================; - * - * - * File: dxerr.h - * Content: DirectX Error Library Include File - * - ****************************************************************************/ - -#ifndef _DXERR_H_ -#define _DXERR_H_ - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - -// -// DXGetErrorString -// -// Desc: Converts a DirectX HRESULT to a string -// -// Args: HRESULT hr Can be any error code from -// XACT XAUDIO2 XAPO XINPUT DXGI D3D10 D3DX10 D3D9 D3DX9 DDRAW DSOUND DINPUT DSHOW -// -// Return: Converted string -// -const char* WINAPI DXGetErrorStringA(__in HRESULT hr); -const WCHAR* WINAPI DXGetErrorStringW(__in HRESULT hr); - -#ifdef UNICODE -#define DXGetErrorString DXGetErrorStringW -#else -#define DXGetErrorString DXGetErrorStringA -#endif - - -// -// DXGetErrorDescription -// -// Desc: Returns a string description of a DirectX HRESULT -// -// Args: HRESULT hr Can be any error code from -// XACT XAUDIO2 XAPO XINPUT DXGI D3D10 D3DX10 D3D9 D3DX9 DDRAW DSOUND DINPUT DSHOW -// -// Return: String description -// -const char* WINAPI DXGetErrorDescriptionA(__in HRESULT hr); -const WCHAR* WINAPI DXGetErrorDescriptionW(__in HRESULT hr); - -#ifdef UNICODE - #define DXGetErrorDescription DXGetErrorDescriptionW -#else - #define DXGetErrorDescription DXGetErrorDescriptionA -#endif - - -// -// DXTrace -// -// Desc: Outputs a formatted error message to the debug stream -// -// Args: CHAR* strFile The current file, typically passed in using the -// __FILE__ macro. -// DWORD dwLine The current line number, typically passed in using the -// __LINE__ macro. -// HRESULT hr An HRESULT that will be traced to the debug stream. -// CHAR* strMsg A string that will be traced to the debug stream (may be NULL) -// BOOL bPopMsgBox If TRUE, then a message box will popup also containing the passed info. -// -// Return: The hr that was passed in. -// -HRESULT WINAPI DXTraceA( __in_z const char* strFile, __in DWORD dwLine, __in HRESULT hr, __in_z_opt const char* strMsg, __in BOOL bPopMsgBox ); -HRESULT WINAPI DXTraceW( __in_z const char* strFile, __in DWORD dwLine, __in HRESULT hr, __in_z_opt const WCHAR* strMsg, __in BOOL bPopMsgBox ); - -#ifdef UNICODE -#define DXTrace DXTraceW -#else -#define DXTrace DXTraceA -#endif - - -// -// Helper macros -// -#if defined(DEBUG) | defined(_DEBUG) -#define DXTRACE_MSG(str) DXTrace( __FILE__, (DWORD)__LINE__, 0, str, FALSE ) -#define DXTRACE_ERR(str,hr) DXTrace( __FILE__, (DWORD)__LINE__, hr, str, FALSE ) -#define DXTRACE_ERR_MSGBOX(str,hr) DXTrace( __FILE__, (DWORD)__LINE__, hr, str, TRUE ) -#else -#define DXTRACE_MSG(str) (0L) -#define DXTRACE_ERR(str,hr) (hr) -#define DXTRACE_ERR_MSGBOX(str,hr) (hr) -#endif - - -#ifdef __cplusplus -} -#endif //__cplusplus - -#endif // _DXERR_H_ diff --git a/SDK/Include/PIXPlugin.h b/SDK/Include/PIXPlugin.h deleted file mode 100644 index 9c249af..0000000 --- a/SDK/Include/PIXPlugin.h +++ /dev/null @@ -1,120 +0,0 @@ -//================================================================================================== -// PIXPlugin.h -// -// Microsoft PIX Plugin Header -// -// Copyright (c) Microsoft Corporation, All rights reserved -//================================================================================================== - -#pragma once - -#ifdef __cplusplus -extern "C" -{ -#endif - - -//================================================================================================== -// PIX_PLUGIN_SYSTEM_VERSION - Indicates version of the plugin interface the plugin is built with. -//================================================================================================== -#define PIX_PLUGIN_SYSTEM_VERSION 0x101 - - -//================================================================================================== -// PIXCOUNTERID - A unique identifier for each PIX plugin counter. -//================================================================================================== -typedef int PIXCOUNTERID; - - -//================================================================================================== -// PIXCOUNTERDATATYPE - Indicates what type of data the counter produces. -//================================================================================================== -enum PIXCOUNTERDATATYPE -{ - PCDT_RESERVED, - PCDT_FLOAT, - PCDT_INT, - PCDT_INT64, - PCDT_STRING, -}; - - -//================================================================================================== -// PIXPLUGININFO - This structure is filled out by PIXGetPluginInfo and passed back to PIX. -//================================================================================================== -struct PIXPLUGININFO -{ - // Filled in by caller: - HINSTANCE hinst; - - // Filled in by PIXGetPluginInfo: - WCHAR* pstrPluginName; // Name of plugin - int iPluginVersion; // Version of this particular plugin - int iPluginSystemVersion; // Version of PIX's plugin system this plugin was designed for -}; - - -//================================================================================================== -// PIXCOUNTERINFO - This structure is filled out by PIXGetCounterInfo and passed back to PIX -// to allow PIX to determine information about the counters in the plugin. -//================================================================================================== -struct PIXCOUNTERINFO -{ - PIXCOUNTERID counterID; // Used to uniquely ID this counter - WCHAR* pstrName; // String name of the counter - PIXCOUNTERDATATYPE pcdtDataType; // Data type returned by this counter -}; - - -//================================================================================================== -// PIXGetPluginInfo - This returns basic information about this plugin to PIX. -//================================================================================================== -BOOL WINAPI PIXGetPluginInfo( PIXPLUGININFO* pPIXPluginInfo ); - - -//================================================================================================== -// PIXGetCounterInfo - This returns an array of PIXCOUNTERINFO structs to PIX. -// These PIXCOUNTERINFOs allow PIX to enumerate the counters contained -// in this plugin. -//================================================================================================== -BOOL WINAPI PIXGetCounterInfo( DWORD* pdwReturnCounters, PIXCOUNTERINFO** ppCounterInfoList ); - - -//================================================================================================== -// PIXGetCounterDesc - This is called by PIX to request a description of the indicated counter. -//================================================================================================== -BOOL WINAPI PIXGetCounterDesc( PIXCOUNTERID id, WCHAR** ppstrCounterDesc ); - - -//================================================================================================== -// PIXBeginExperiment - This called by PIX once per counter when instrumentation starts. -//================================================================================================== -BOOL WINAPI PIXBeginExperiment( PIXCOUNTERID id, const WCHAR* pstrApplication ); - - -//================================================================================================== -// PIXEndFrame - This is called by PIX once per counter at the end of each frame to gather the -// counter value for that frame. Note that the pointer to the return data must -// continue to point to valid counter data until the next call to PIXEndFrame (or -// PIXEndExperiment) for the same counter. So do not set *ppReturnData to the same -// pointer for multiple counters, or point to a local variable that will go out of -// scope. See the sample PIX plugin for an example of how to structure a plugin -// properly. -//================================================================================================== -BOOL WINAPI PIXEndFrame( PIXCOUNTERID id, UINT iFrame, DWORD* pdwReturnBytes, BYTE** ppReturnData ); - - -//================================================================================================== -// PIXEndExperiment - This is called by PIX once per counter when instrumentation ends. -//================================================================================================== -BOOL WINAPI PIXEndExperiment( PIXCOUNTERID id ); - - -#ifdef __cplusplus -}; -#endif - -//================================================================================================== -// eof: PIXPlugin.h -//================================================================================================== - diff --git a/SDK/Include/X3DAudio.h b/SDK/Include/X3DAudio.h deleted file mode 100644 index c25d98f..0000000 --- a/SDK/Include/X3DAudio.h +++ /dev/null @@ -1,316 +0,0 @@ -/*-========================================================================-_ - | - X3DAUDIO - | - | Copyright (c) Microsoft Corporation. All rights reserved. | - |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| - |PROJECT: X3DAudio MODEL: Unmanaged User-mode | - |VERSION: 1.7 EXCEPT: No Exceptions | - |CLASS: N / A MINREQ: WinXP, Xbox360 | - |BASE: N / A DIALECT: MSC++ 14.00 | - |>------------------------------------------------------------------------<| - | DUTY: Cross-platform stand-alone 3D audio math library | - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ - NOTES: - 1. USE THE DEBUG DLL TO ENABLE PARAMETER VALIDATION VIA ASSERTS! - Here's how: - Copy X3DAudioDX_X.dll to where your application exists. - The debug DLL can be found under %WINDIR%\system32. - Rename X3DAudioDX_X.dll to X3DAudioX_X.dll to use the debug version. - - Only parameters required by DSP settings being calculated as - stipulated by the calculation control flags are validated. - - 2. Definition of terms: - LFE: Low Frequency Effect -- always omnidirectional. - LPF: Low Pass Filter, divided into two classifications: - Direct -- Applied to the direct signal path, - used for obstruction/occlusion effects. - Reverb -- Applied to the reverb signal path, - used for occlusion effects only. - - 3. Volume level is expressed as a linear amplitude scaler: - 1.0f represents no attenuation applied to the original signal, - 0.5f denotes an attenuation of 6dB, and 0.0f results in silence. - Amplification (volume > 1.0f) is also allowed, and is not clamped. - - LPF values range from 1.0f representing all frequencies pass through, - to 0.0f which results in silence as all frequencies are filtered out. - - 4. X3DAudio uses a left-handed Cartesian coordinate system with values - on the x-axis increasing from left to right, on the y-axis from - bottom to top, and on the z-axis from near to far. - Azimuths are measured clockwise from a given reference direction. - - Distance measurement is with respect to user-defined world units. - Applications may provide coordinates using any system of measure - as all non-normalized calculations are scale invariant, with such - operations natively occurring in user-defined world unit space. - Metric constants are supplied only as a convenience. - Distance is calculated using the Euclidean norm formula. - - 5. Only real values are permissible with functions using 32-bit - float parameters -- NAN and infinite values are not accepted. - All computation occurs in 32-bit precision mode. */ - -#pragma once -//---------------------------------------------------// -#include // general windows types -#if defined(_XBOX) - #include -#endif -#include // for D3DVECTOR - -// speaker geometry configuration flags, specifies assignment of channels to speaker positions, defined as per WAVEFORMATEXTENSIBLE.dwChannelMask -#if !defined(_SPEAKER_POSITIONS_) - #define _SPEAKER_POSITIONS_ - #define SPEAKER_FRONT_LEFT 0x00000001 - #define SPEAKER_FRONT_RIGHT 0x00000002 - #define SPEAKER_FRONT_CENTER 0x00000004 - #define SPEAKER_LOW_FREQUENCY 0x00000008 - #define SPEAKER_BACK_LEFT 0x00000010 - #define SPEAKER_BACK_RIGHT 0x00000020 - #define SPEAKER_FRONT_LEFT_OF_CENTER 0x00000040 - #define SPEAKER_FRONT_RIGHT_OF_CENTER 0x00000080 - #define SPEAKER_BACK_CENTER 0x00000100 - #define SPEAKER_SIDE_LEFT 0x00000200 - #define SPEAKER_SIDE_RIGHT 0x00000400 - #define SPEAKER_TOP_CENTER 0x00000800 - #define SPEAKER_TOP_FRONT_LEFT 0x00001000 - #define SPEAKER_TOP_FRONT_CENTER 0x00002000 - #define SPEAKER_TOP_FRONT_RIGHT 0x00004000 - #define SPEAKER_TOP_BACK_LEFT 0x00008000 - #define SPEAKER_TOP_BACK_CENTER 0x00010000 - #define SPEAKER_TOP_BACK_RIGHT 0x00020000 - #define SPEAKER_RESERVED 0x7FFC0000 // bit mask locations reserved for future use - #define SPEAKER_ALL 0x80000000 // used to specify that any possible permutation of speaker configurations -#endif - -// standard speaker geometry configurations, used with X3DAudioInitialize -#if !defined(SPEAKER_MONO) - #define SPEAKER_MONO SPEAKER_FRONT_CENTER - #define SPEAKER_STEREO (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT) - #define SPEAKER_2POINT1 (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_LOW_FREQUENCY) - #define SPEAKER_SURROUND (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_FRONT_CENTER | SPEAKER_BACK_CENTER) - #define SPEAKER_QUAD (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_BACK_LEFT | SPEAKER_BACK_RIGHT) - #define SPEAKER_4POINT1 (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_LOW_FREQUENCY | SPEAKER_BACK_LEFT | SPEAKER_BACK_RIGHT) - #define SPEAKER_5POINT1 (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_FRONT_CENTER | SPEAKER_LOW_FREQUENCY | SPEAKER_BACK_LEFT | SPEAKER_BACK_RIGHT) - #define SPEAKER_7POINT1 (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_FRONT_CENTER | SPEAKER_LOW_FREQUENCY | SPEAKER_BACK_LEFT | SPEAKER_BACK_RIGHT | SPEAKER_FRONT_LEFT_OF_CENTER | SPEAKER_FRONT_RIGHT_OF_CENTER) - #define SPEAKER_5POINT1_SURROUND (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_FRONT_CENTER | SPEAKER_LOW_FREQUENCY | SPEAKER_SIDE_LEFT | SPEAKER_SIDE_RIGHT) - #define SPEAKER_7POINT1_SURROUND (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_FRONT_CENTER | SPEAKER_LOW_FREQUENCY | SPEAKER_BACK_LEFT | SPEAKER_BACK_RIGHT | SPEAKER_SIDE_LEFT | SPEAKER_SIDE_RIGHT) -#endif - -// Xbox360 speaker geometry configuration, used with X3DAudioInitialize -#if defined(_XBOX) - #define SPEAKER_XBOX SPEAKER_5POINT1 -#endif - - -// size of instance handle in bytes -#define X3DAUDIO_HANDLE_BYTESIZE 20 - -// float math constants -#define X3DAUDIO_PI 3.141592654f -#define X3DAUDIO_2PI 6.283185307f - -// speed of sound in meters per second for dry air at approximately 20C, used with X3DAudioInitialize -#define X3DAUDIO_SPEED_OF_SOUND 343.5f - -// calculation control flags, used with X3DAudioCalculate -#define X3DAUDIO_CALCULATE_MATRIX 0x00000001 // enable matrix coefficient table calculation -#define X3DAUDIO_CALCULATE_DELAY 0x00000002 // enable delay time array calculation (stereo final mix only) -#define X3DAUDIO_CALCULATE_LPF_DIRECT 0x00000004 // enable LPF direct-path coefficient calculation -#define X3DAUDIO_CALCULATE_LPF_REVERB 0x00000008 // enable LPF reverb-path coefficient calculation -#define X3DAUDIO_CALCULATE_REVERB 0x00000010 // enable reverb send level calculation -#define X3DAUDIO_CALCULATE_DOPPLER 0x00000020 // enable doppler shift factor calculation -#define X3DAUDIO_CALCULATE_EMITTER_ANGLE 0x00000040 // enable emitter-to-listener interior angle calculation - -#define X3DAUDIO_CALCULATE_ZEROCENTER 0x00010000 // do not position to front center speaker, signal positioned to remaining speakers instead, front center destination channel will be zero in returned matrix coefficient table, valid only for matrix calculations with final mix formats that have a front center channel -#define X3DAUDIO_CALCULATE_REDIRECT_TO_LFE 0x00020000 // apply equal mix of all source channels to LFE destination channel, valid only for matrix calculations with sources that have no LFE channel and final mix formats that have an LFE channel - - -//-----------------------------------------------------// -#pragma pack(push, 1) // set packing alignment to ensure consistency across arbitrary build environments - - -// primitive types -typedef float FLOAT32; // 32-bit IEEE float -typedef D3DVECTOR X3DAUDIO_VECTOR; // float 3D vector - -// instance handle of precalculated constants -typedef BYTE X3DAUDIO_HANDLE[X3DAUDIO_HANDLE_BYTESIZE]; - - -// Distance curve point: -// Defines a DSP setting at a given normalized distance. -typedef struct X3DAUDIO_DISTANCE_CURVE_POINT -{ - FLOAT32 Distance; // normalized distance, must be within [0.0f, 1.0f] - FLOAT32 DSPSetting; // DSP setting -} X3DAUDIO_DISTANCE_CURVE_POINT, *LPX3DAUDIO_DISTANCE_CURVE_POINT; - -// Distance curve: -// A piecewise curve made up of linear segments used to -// define DSP behaviour with respect to normalized distance. -// -// Note that curve point distances are normalized within [0.0f, 1.0f]. -// X3DAUDIO_EMITTER.CurveDistanceScaler must be used to scale the -// normalized distances to user-defined world units. -// For distances beyond CurveDistanceScaler * 1.0f, -// pPoints[PointCount-1].DSPSetting is used as the DSP setting. -// -// All distance curve spans must be such that: -// pPoints[k-1].DSPSetting + ((pPoints[k].DSPSetting-pPoints[k-1].DSPSetting) / (pPoints[k].Distance-pPoints[k-1].Distance)) * (pPoints[k].Distance-pPoints[k-1].Distance) != NAN or infinite values -// For all points in the distance curve where 1 <= k < PointCount. -typedef struct X3DAUDIO_DISTANCE_CURVE -{ - X3DAUDIO_DISTANCE_CURVE_POINT* pPoints; // distance curve point array, must have at least PointCount elements with no duplicates and be sorted in ascending order with respect to Distance - UINT32 PointCount; // number of distance curve points, must be >= 2 as all distance curves must have at least two endpoints, defining DSP settings at 0.0f and 1.0f normalized distance -} X3DAUDIO_DISTANCE_CURVE, *LPX3DAUDIO_DISTANCE_CURVE; -static const X3DAUDIO_DISTANCE_CURVE_POINT X3DAudioDefault_LinearCurvePoints[2] = { 0.0f, 1.0f, 1.0f, 0.0f }; -static const X3DAUDIO_DISTANCE_CURVE X3DAudioDefault_LinearCurve = { (X3DAUDIO_DISTANCE_CURVE_POINT*)&X3DAudioDefault_LinearCurvePoints[0], 2 }; - -// Cone: -// Specifies directionality for a listener or single-channel emitter by -// modifying DSP behaviour with respect to its front orientation. -// This is modeled using two sound cones: an inner cone and an outer cone. -// On/within the inner cone, DSP settings are scaled by the inner values. -// On/beyond the outer cone, DSP settings are scaled by the outer values. -// If on both the cones, DSP settings are scaled by the inner values only. -// Between the two cones, the scaler is linearly interpolated between the -// inner and outer values. Set both cone angles to 0 or X3DAUDIO_2PI for -// omnidirectionality using only the outer or inner values respectively. -typedef struct X3DAUDIO_CONE -{ - FLOAT32 InnerAngle; // inner cone angle in radians, must be within [0.0f, X3DAUDIO_2PI] - FLOAT32 OuterAngle; // outer cone angle in radians, must be within [InnerAngle, X3DAUDIO_2PI] - - FLOAT32 InnerVolume; // volume level scaler on/within inner cone, used only for matrix calculations, must be within [0.0f, 2.0f] when used - FLOAT32 OuterVolume; // volume level scaler on/beyond outer cone, used only for matrix calculations, must be within [0.0f, 2.0f] when used - FLOAT32 InnerLPF; // LPF (both direct and reverb paths) coefficient subtrahend on/within inner cone, used only for LPF (both direct and reverb paths) calculations, must be within [0.0f, 1.0f] when used - FLOAT32 OuterLPF; // LPF (both direct and reverb paths) coefficient subtrahend on/beyond outer cone, used only for LPF (both direct and reverb paths) calculations, must be within [0.0f, 1.0f] when used - FLOAT32 InnerReverb; // reverb send level scaler on/within inner cone, used only for reverb calculations, must be within [0.0f, 2.0f] when used - FLOAT32 OuterReverb; // reverb send level scaler on/beyond outer cone, used only for reverb calculations, must be within [0.0f, 2.0f] when used -} X3DAUDIO_CONE, *LPX3DAUDIO_CONE; -static const X3DAUDIO_CONE X3DAudioDefault_DirectionalCone = { X3DAUDIO_PI/2, X3DAUDIO_PI, 1.0f, 0.708f, 0.0f, 0.25f, 0.708f, 1.0f }; - - -// Listener: -// Defines a point of 3D audio reception. -// -// The cone is directed by the listener's front orientation. -typedef struct X3DAUDIO_LISTENER -{ - X3DAUDIO_VECTOR OrientFront; // orientation of front direction, used only for matrix and delay calculations or listeners with cones for matrix, LPF (both direct and reverb paths), and reverb calculations, must be normalized when used - X3DAUDIO_VECTOR OrientTop; // orientation of top direction, used only for matrix and delay calculations, must be orthonormal with OrientFront when used - - X3DAUDIO_VECTOR Position; // position in user-defined world units, does not affect Velocity - X3DAUDIO_VECTOR Velocity; // velocity vector in user-defined world units/second, used only for doppler calculations, does not affect Position - - X3DAUDIO_CONE* pCone; // sound cone, used only for matrix, LPF (both direct and reverb paths), and reverb calculations, NULL specifies omnidirectionality -} X3DAUDIO_LISTENER, *LPX3DAUDIO_LISTENER; - -// Emitter: -// Defines a 3D audio source, divided into two classifications: -// -// Single-point -- For use with single-channel sounds. -// Positioned at the emitter base, i.e. the channel radius -// and azimuth are ignored if the number of channels == 1. -// -// May be omnidirectional or directional using a cone. -// The cone originates from the emitter base position, -// and is directed by the emitter's front orientation. -// -// Multi-point -- For use with multi-channel sounds. -// Each non-LFE channel is positioned using an -// azimuth along the channel radius with respect to the -// front orientation vector in the plane orthogonal to the -// top orientation vector. An azimuth of X3DAUDIO_2PI -// specifies a channel is an LFE. Such channels are -// positioned at the emitter base and are calculated -// with respect to pLFECurve only, never pVolumeCurve. -// -// Multi-point emitters are always omnidirectional, -// i.e. the cone is ignored if the number of channels > 1. -// -// Note that many properties are shared among all channel points, -// locking certain behaviour with respect to the emitter base position. -// For example, doppler shift is always calculated with respect to the -// emitter base position and so is constant for all its channel points. -// Distance curve calculations are also with respect to the emitter base -// position, with the curves being calculated independently of each other. -// For instance, volume and LFE calculations do not affect one another. -typedef struct X3DAUDIO_EMITTER -{ - X3DAUDIO_CONE* pCone; // sound cone, used only with single-channel emitters for matrix, LPF (both direct and reverb paths), and reverb calculations, NULL specifies omnidirectionality - X3DAUDIO_VECTOR OrientFront; // orientation of front direction, used only for emitter angle calculations or with multi-channel emitters for matrix calculations or single-channel emitters with cones for matrix, LPF (both direct and reverb paths), and reverb calculations, must be normalized when used - X3DAUDIO_VECTOR OrientTop; // orientation of top direction, used only with multi-channel emitters for matrix calculations, must be orthonormal with OrientFront when used - - X3DAUDIO_VECTOR Position; // position in user-defined world units, does not affect Velocity - X3DAUDIO_VECTOR Velocity; // velocity vector in user-defined world units/second, used only for doppler calculations, does not affect Position - - FLOAT32 InnerRadius; // inner radius, must be within [0.0f, FLT_MAX] - FLOAT32 InnerRadiusAngle; // inner radius angle, must be within [0.0f, X3DAUDIO_PI/4.0) - - UINT32 ChannelCount; // number of sound channels, must be > 0 - FLOAT32 ChannelRadius; // channel radius, used only with multi-channel emitters for matrix calculations, must be >= 0.0f when used - FLOAT32* pChannelAzimuths; // channel azimuth array, used only with multi-channel emitters for matrix calculations, contains positions of each channel expressed in radians along the channel radius with respect to the front orientation vector in the plane orthogonal to the top orientation vector, or X3DAUDIO_2PI to specify an LFE channel, must have at least ChannelCount elements, all within [0.0f, X3DAUDIO_2PI] when used - - X3DAUDIO_DISTANCE_CURVE* pVolumeCurve; // volume level distance curve, used only for matrix calculations, NULL specifies a default curve that conforms to the inverse square law, calculated in user-defined world units with distances <= CurveDistanceScaler clamped to no attenuation - X3DAUDIO_DISTANCE_CURVE* pLFECurve; // LFE level distance curve, used only for matrix calculations, NULL specifies a default curve that conforms to the inverse square law, calculated in user-defined world units with distances <= CurveDistanceScaler clamped to no attenuation - X3DAUDIO_DISTANCE_CURVE* pLPFDirectCurve; // LPF direct-path coefficient distance curve, used only for LPF direct-path calculations, NULL specifies the default curve: [0.0f,1.0f], [1.0f,0.75f] - X3DAUDIO_DISTANCE_CURVE* pLPFReverbCurve; // LPF reverb-path coefficient distance curve, used only for LPF reverb-path calculations, NULL specifies the default curve: [0.0f,0.75f], [1.0f,0.75f] - X3DAUDIO_DISTANCE_CURVE* pReverbCurve; // reverb send level distance curve, used only for reverb calculations, NULL specifies the default curve: [0.0f,1.0f], [1.0f,0.0f] - - FLOAT32 CurveDistanceScaler; // curve distance scaler, used to scale normalized distance curves to user-defined world units and/or exaggerate their effect, used only for matrix, LPF (both direct and reverb paths), and reverb calculations, must be within [FLT_MIN, FLT_MAX] when used - FLOAT32 DopplerScaler; // doppler shift scaler, used to exaggerate doppler shift effect, used only for doppler calculations, must be within [0.0f, FLT_MAX] when used -} X3DAUDIO_EMITTER, *LPX3DAUDIO_EMITTER; - - -// DSP settings: -// Receives results from a call to X3DAudioCalculate to be sent -// to the low-level audio rendering API for 3D signal processing. -// -// The user is responsible for allocating the matrix coefficient table, -// delay time array, and initializing the channel counts when used. -typedef struct X3DAUDIO_DSP_SETTINGS -{ - FLOAT32* pMatrixCoefficients; // [inout] matrix coefficient table, receives an array representing the volume level used to send from source channel S to destination channel D, stored as pMatrixCoefficients[SrcChannelCount * D + S], must have at least SrcChannelCount*DstChannelCount elements - FLOAT32* pDelayTimes; // [inout] delay time array, receives delays for each destination channel in milliseconds, must have at least DstChannelCount elements (stereo final mix only) - UINT32 SrcChannelCount; // [in] number of source channels, must equal number of channels in respective emitter - UINT32 DstChannelCount; // [in] number of destination channels, must equal number of channels of the final mix - - FLOAT32 LPFDirectCoefficient; // [out] LPF direct-path coefficient - FLOAT32 LPFReverbCoefficient; // [out] LPF reverb-path coefficient - FLOAT32 ReverbLevel; // [out] reverb send level - FLOAT32 DopplerFactor; // [out] doppler shift factor, scales resampler ratio for doppler shift effect, where the effective frequency = DopplerFactor * original frequency - FLOAT32 EmitterToListenerAngle; // [out] emitter-to-listener interior angle, expressed in radians with respect to the emitter's front orientation - - FLOAT32 EmitterToListenerDistance; // [out] distance in user-defined world units from the emitter base to listener position, always calculated - FLOAT32 EmitterVelocityComponent; // [out] component of emitter velocity vector projected onto emitter->listener vector in user-defined world units/second, calculated only for doppler - FLOAT32 ListenerVelocityComponent; // [out] component of listener velocity vector projected onto emitter->listener vector in user-defined world units/second, calculated only for doppler -} X3DAUDIO_DSP_SETTINGS, *LPX3DAUDIO_DSP_SETTINGS; - - -//-------------------------------------------------------------// -// function storage-class attribute and calltype -#if defined(_XBOX) || defined(X3DAUDIOSTATIC) - #define X3DAUDIO_API_(type) EXTERN_C type STDAPIVCALLTYPE -#else - #if defined(X3DEXPORT) - #define X3DAUDIO_API_(type) EXTERN_C __declspec(dllexport) type STDAPIVCALLTYPE - #else - #define X3DAUDIO_API_(type) EXTERN_C __declspec(dllimport) type STDAPIVCALLTYPE - #endif -#endif -#define X3DAUDIO_IMP_(type) type STDMETHODVCALLTYPE - - -//-------------------------------------------------------// -// initializes instance handle -X3DAUDIO_API_(void) X3DAudioInitialize (UINT32 SpeakerChannelMask, FLOAT32 SpeedOfSound, __out X3DAUDIO_HANDLE Instance); - -// calculates DSP settings with respect to 3D parameters -X3DAUDIO_API_(void) X3DAudioCalculate (__in const X3DAUDIO_HANDLE Instance, __in const X3DAUDIO_LISTENER* pListener, __in const X3DAUDIO_EMITTER* pEmitter, UINT32 Flags, __inout X3DAUDIO_DSP_SETTINGS* pDSPSettings); - - -#pragma pack(pop) // revert packing alignment -//---------------------------------<-EOF->----------------------------------// diff --git a/SDK/Include/XAPO.h b/SDK/Include/XAPO.h deleted file mode 100644 index 17947d6..0000000 --- a/SDK/Include/XAPO.h +++ /dev/null @@ -1,645 +0,0 @@ -/*-========================================================================-_ - | - XAPO - | - | Copyright (c) Microsoft Corporation. All rights reserved. | - |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| - |PROJECT: XAPO MODEL: Unmanaged User-mode | - |VERSION: 1.0 EXCEPT: No Exceptions | - |CLASS: N / A MINREQ: WinXP, Xbox360 | - |BASE: N / A DIALECT: MSC++ 14.00 | - |>------------------------------------------------------------------------<| - | DUTY: Cross-platform Audio Processing Object interfaces | - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ - NOTES: - 1. Definition of terms: - DSP: Digital Signal Processing. - - CBR: Constant BitRate -- DSP that consumes a constant number of - input samples to produce an output sample. - For example, a 22kHz to 44kHz resampler is CBR DSP. - Even though the number of input to output samples differ, - the ratio between input to output rate remains constant. - All user-defined XAPOs are assumed to be CBR as - XAudio2 only allows CBR DSP to be added to an effect chain. - - XAPO: Cross-platform Audio Processing Object -- - a thin wrapper that manages DSP code, allowing it - to be easily plugged into an XAudio2 effect chain. - - Frame: A block of samples, one per channel, - to be played simultaneously. - - In-Place: Processing such that the input buffer equals the - output buffer (i.e. input data modified directly). - This form of processing is generally more efficient - than using separate memory for input and output. - However, an XAPO may not perform format conversion - when processing in-place. - - 2. XAPO member variables are divided into three classifications: - Immutable: Set once via IXAPO::Initialize and remain - constant during the lifespan of the XAPO. - - Locked: May change before the XAPO is locked via - IXAPO::LockForProcess but remain constant - until IXAPO::UnlockForProcess is called. - - Dynamic: May change from one processing pass to the next, - usually via IXAPOParameters::SetParameters. - XAPOs should assign reasonable defaults to their dynamic - variables during IXAPO::Initialize/LockForProcess so - that calling IXAPOParameters::SetParameters is not - required before processing begins. - - When implementing an XAPO, determine the type of each variable and - initialize them in the appropriate method. Immutable variables are - generally preferable over locked which are preferable over dynamic. - That is, one should strive to minimize XAPO state changes for - best performance, maintainability, and ease of use. - - 3. To minimize glitches, the realtime audio processing thread must - not block. XAPO methods called by the realtime thread are commented - as non-blocking and therefore should not use blocking synchronization, - allocate memory, access the disk, etc. The XAPO interfaces were - designed to allow an effect implementer to move such operations - into other methods called on an application controlled thread. - - 4. Extending functionality is accomplished through the addition of new - COM interfaces. For example, if a new member is added to a parameter - structure, a new interface using the new structure should be added, - leaving the original interface unchanged. - This ensures consistent communication between future versions of - XAudio2 and various versions of XAPOs that may exist in an application. - - 5. All audio data is interleaved in XAudio2. - The default audio format for an effect chain is WAVE_FORMAT_IEEE_FLOAT. - - 6. User-defined XAPOs should assume all input and output buffers are - 16-byte aligned. - - 7. See XAPOBase.h for an XAPO base class which provides a default - implementation for most of the interface methods defined below. */ - -#pragma once -//---------------------------------------------------// -#include "comdecl.h" // for DEFINE_IID - -// XAPO interface IDs -DEFINE_IID(IXAPO, A90BC001, E897, E897, 55, E4, 9E, 47, 00, 00, 00, 00); -DEFINE_IID(IXAPOParameters, A90BC001, E897, E897, 55, E4, 9E, 47, 00, 00, 00, 01); - - -#if !defined(GUID_DEFS_ONLY) // ignore rest if only GUID definitions requested - #if defined(_XBOX) // general windows and COM declarations - #include - #include - #else - #include - #include - #endif - #include "audiodefs.h" // for WAVEFORMATEX etc. - - // XAPO error codes - #define FACILITY_XAPO 0x897 - #define XAPO_E_FORMAT_UNSUPPORTED MAKE_HRESULT(SEVERITY_ERROR, FACILITY_XAPO, 0x01) // requested audio format unsupported - - // supported number of channels (samples per frame) range - #define XAPO_MIN_CHANNELS 1 - #define XAPO_MAX_CHANNELS 64 - - // supported framerate range - #define XAPO_MIN_FRAMERATE 1000 - #define XAPO_MAX_FRAMERATE 200000 - - // unicode string length, including terminator, used with XAPO_REGISTRATION_PROPERTIES - #define XAPO_REGISTRATION_STRING_LENGTH 256 - - - // XAPO property flags, used with XAPO_REGISTRATION_PROPERTIES.Flags: - // Number of channels of input and output buffers must match, - // applies to XAPO_LOCKFORPROCESS_BUFFER_PARAMETERS.pFormat. - #define XAPO_FLAG_CHANNELS_MUST_MATCH 0x00000001 - - // Framerate of input and output buffers must match, - // applies to XAPO_LOCKFORPROCESS_BUFFER_PARAMETERS.pFormat. - #define XAPO_FLAG_FRAMERATE_MUST_MATCH 0x00000002 - - // Bit depth of input and output buffers must match, - // applies to XAPO_LOCKFORPROCESS_BUFFER_PARAMETERS.pFormat. - // Container size of input and output buffers must also match if - // XAPO_LOCKFORPROCESS_BUFFER_PARAMETERS.pFormat is WAVEFORMATEXTENSIBLE. - #define XAPO_FLAG_BITSPERSAMPLE_MUST_MATCH 0x00000004 - - // Number of input and output buffers must match, - // applies to XAPO_LOCKFORPROCESS_BUFFER_PARAMETERS. - // - // Also, XAPO_REGISTRATION_PROPERTIES.MinInputBufferCount must - // equal XAPO_REGISTRATION_PROPERTIES.MinOutputBufferCount and - // XAPO_REGISTRATION_PROPERTIES.MaxInputBufferCount must equal - // XAPO_REGISTRATION_PROPERTIES.MaxOutputBufferCount when used. - #define XAPO_FLAG_BUFFERCOUNT_MUST_MATCH 0x00000008 - - // XAPO must be run in-place. Use this flag only if your DSP - // implementation cannot process separate input and output buffers. - // If set, the following flags must also be set: - // XAPO_FLAG_CHANNELS_MUST_MATCH - // XAPO_FLAG_FRAMERATE_MUST_MATCH - // XAPO_FLAG_BITSPERSAMPLE_MUST_MATCH - // XAPO_FLAG_BUFFERCOUNT_MUST_MATCH - // XAPO_FLAG_INPLACE_SUPPORTED - // - // Multiple input and output buffers may be used with in-place XAPOs, - // though the input buffer count must equal the output buffer count. - // When multiple input/output buffers are used, the XAPO may assume - // input buffer [N] equals output buffer [N] for in-place processing. - #define XAPO_FLAG_INPLACE_REQUIRED 0x00000020 - - // XAPO may be run in-place. If the XAPO is used in a chain - // such that the requirements for XAPO_FLAG_INPLACE_REQUIRED are met, - // XAudio2 will ensure the XAPO is run in-place. If not met, XAudio2 - // will still run the XAPO albeit with separate input and output buffers. - // - // For example, consider an effect which may be ran in stereo->5.1 mode or - // mono->mono mode. When set to stereo->5.1, it will be run with separate - // input and output buffers as format conversion is not permitted in-place. - // However, if configured to run mono->mono, the same XAPO can be run - // in-place. Thus the same implementation may be conveniently reused - // for various input/output configurations, while taking advantage of - // in-place processing when possible. - #define XAPO_FLAG_INPLACE_SUPPORTED 0x00000010 - - -//-----------------------------------------------------// - #pragma pack(push, 1) // set packing alignment to ensure consistency across arbitrary build environments - - - // XAPO registration properties, describes general XAPO characteristics, used with IXAPO::GetRegistrationProperties - typedef struct XAPO_REGISTRATION_PROPERTIES { - CLSID clsid; // COM class ID, used with CoCreate - WCHAR FriendlyName[XAPO_REGISTRATION_STRING_LENGTH]; // friendly name unicode string - WCHAR CopyrightInfo[XAPO_REGISTRATION_STRING_LENGTH]; // copyright information unicode string - UINT32 MajorVersion; // major version - UINT32 MinorVersion; // minor version - UINT32 Flags; // XAPO property flags, describes supported input/output configuration - UINT32 MinInputBufferCount; // minimum number of input buffers required for processing, can be 0 - UINT32 MaxInputBufferCount; // maximum number of input buffers supported for processing, must be >= MinInputBufferCount - UINT32 MinOutputBufferCount; // minimum number of output buffers required for processing, can be 0, must match MinInputBufferCount when XAPO_FLAG_BUFFERCOUNT_MUST_MATCH used - UINT32 MaxOutputBufferCount; // maximum number of output buffers supported for processing, must be >= MinOutputBufferCount, must match MaxInputBufferCount when XAPO_FLAG_BUFFERCOUNT_MUST_MATCH used - } XAPO_REGISTRATION_PROPERTIES; - - - // LockForProcess buffer parameters: - // Defines buffer parameters that remain constant while an XAPO is locked. - // Used with IXAPO::LockForProcess. - // - // For CBR XAPOs, MaxFrameCount is the only number of frames - // IXAPO::Process would have to handle for the respective buffer. - typedef struct XAPO_LOCKFORPROCESS_BUFFER_PARAMETERS { - const WAVEFORMATEX* pFormat; // buffer audio format - UINT32 MaxFrameCount; // maximum number of frames in respective buffer that IXAPO::Process would have to handle, irrespective of dynamic variable settings, can be 0 - } XAPO_LOCKFORPROCESS_PARAMETERS; - - // Buffer flags: - // Describes assumed content of the respective buffer. - // Used with XAPO_PROCESS_BUFFER_PARAMETERS.BufferFlags. - // - // This meta-data can be used by an XAPO to implement - // optimizations that require knowledge of a buffer's content. - // - // For example, XAPOs that always produce silent output from silent input - // can check the flag on the input buffer to determine if any signal - // processing is necessary. If silent, the XAPO may simply set the flag - // on the output buffer to silent and return, optimizing out the work of - // processing silent data: XAPOs that generate silence for any reason may - // set the buffer's flag accordingly rather than writing out silent - // frames to the buffer itself. - // - // The flags represent what should be assumed is in the respective buffer. - // The flags may not reflect what is actually stored in memory. - typedef enum XAPO_BUFFER_FLAGS { - XAPO_BUFFER_SILENT, // silent data should be assumed, respective memory may be uninitialized - XAPO_BUFFER_VALID, // arbitrary data should be assumed (may or may not be silent frames), respective memory initialized - } XAPO_BUFFER_FLAGS; - - // Process buffer parameters: - // Defines buffer parameters that may change from one - // processing pass to the next. Used with IXAPO::Process. - // - // Note the byte size of the respective buffer must be at least: - // XAPO_LOCKFORPROCESS_BUFFER_PARAMETERS.MaxFrameCount * XAPO_LOCKFORPROCESS_BUFFER_PARAMETERS.pFormat->nBlockAlign - // - // Although the audio format and maximum size of the respective - // buffer is locked (defined by XAPO_LOCKFORPROCESS_BUFFER_PARAMETERS), - // the actual memory address of the buffer given is permitted to change - // from one processing pass to the next. - // - // For CBR XAPOs, ValidFrameCount is constant while locked and equals - // the respective XAPO_LOCKFORPROCESS_BUFFER_PARAMETERS.MaxFrameCount. - typedef struct XAPO_PROCESS_BUFFER_PARAMETERS { - void* pBuffer; // audio data buffer, must be non-NULL - XAPO_BUFFER_FLAGS BufferFlags; // describes assumed content of pBuffer, does not affect ValidFrameCount - UINT32 ValidFrameCount; // number of frames of valid data, must be within respective [0, XAPO_LOCKFORPROCESS_BUFFER_PARAMETERS.MaxFrameCount], always XAPO_LOCKFORPROCESS_BUFFER_PARAMETERS.MaxFrameCount for CBR/user-defined XAPOs, does not affect BufferFlags - } XAPO_PROCESS_BUFFER_PARAMETERS; - - -//-------------------------------------------------------------// - // Memory allocation macros that allow one module to allocate memory and - // another to free it, by guaranteeing that the same heap manager is used - // regardless of differences between build environments of the two modules. - // - // Used by IXAPO methods that must allocate arbitrary sized structures - // such as WAVEFORMATEX that are subsequently returned to the application. - #if defined(_XBOX) - #define XAPO_ALLOC_ATTRIBUTES MAKE_XALLOC_ATTRIBUTES ( \ - 0, /* ObjectType */ \ - FALSE, /* HeapTracksAttributes */ \ - FALSE, /* MustSucceed */ \ - FALSE, /* FixedSize */ \ - eXALLOCAllocatorId_XAUDIO2, /* AllocatorId */ \ - XALLOC_ALIGNMENT_DEFAULT, /* Alignment */ \ - XALLOC_MEMPROTECT_READWRITE, /* MemoryProtect */ \ - FALSE, /* ZeroInitialize */ \ - XALLOC_MEMTYPE_HEAP /* MemoryType */ \ - ) - #define XAPOAlloc(size) XMemAlloc(size, XAPO_ALLOC_ATTRIBUTES) - #define XAPOFree(p) XMemFree(p, XAPO_ALLOC_ATTRIBUTES) - #else - #define XAPOAlloc(size) CoTaskMemAlloc(size) - #define XAPOFree(p) CoTaskMemFree(p) - #endif - - -//-----------------------------------------------------// - // IXAPO: - // The only mandatory XAPO COM interface -- a thin wrapper that manages - // DSP code, allowing it to be easily plugged into an XAudio2 effect chain. - #undef INTERFACE - #define INTERFACE IXAPO - DECLARE_INTERFACE_(IXAPO, IUnknown) { - //// - // DESCRIPTION: - // Allocates a copy of the registration properties of the XAPO. - // - // PARAMETERS: - // ppRegistrationProperties - [out] receives pointer to copy of registration properties, use XAPOFree to free structure, left untouched on failure - // - // RETURN VALUE: - // COM error code - //// - STDMETHOD(GetRegistrationProperties) (THIS_ __deref_out XAPO_REGISTRATION_PROPERTIES** ppRegistrationProperties) PURE; - - //// - // DESCRIPTION: - // Queries if an input/output configuration is supported. - // - // REMARKS: - // This method allows XAPOs to express dependency of input format - // with respect to output format. - // - // If the input/output format pair configuration is unsupported, - // this method also determines the nearest input format supported. - // Nearest meaning closest bit depth, framerate, and channel count, - // in that order of importance. - // - // The behaviour of this method should remain constant after the - // XAPO has been initialized. - // - // PARAMETERS: - // pOutputFormat - [in] output format known to be supported - // pRequestedInputFormat - [in] input format to examine - // ppSupportedInputFormat - [out] receives pointer to nearest input format supported if not NULL and input/output configuration unsupported, use XAPOFree to free structure, left untouched on any failure except XAPO_E_FORMAT_UNSUPPORTED - // - // RETURN VALUE: - // COM error code, including: - // S_OK - input/output configuration supported, ppSupportedInputFormat left untouched - // XAPO_E_FORMAT_UNSUPPORTED - input/output configuration unsupported, ppSupportedInputFormat receives pointer to nearest input format supported if not NULL - // E_INVALIDARG - either audio format invalid, ppSupportedInputFormat left untouched - //// - STDMETHOD(IsInputFormatSupported) (THIS_ const WAVEFORMATEX* pOutputFormat, const WAVEFORMATEX* pRequestedInputFormat, __deref_opt_out WAVEFORMATEX** ppSupportedInputFormat) PURE; - - //// - // DESCRIPTION: - // Queries if an input/output configuration is supported. - // - // REMARKS: - // This method allows XAPOs to express dependency of output format - // with respect to input format. - // - // If the input/output format pair configuration is unsupported, - // this method also determines the nearest output format supported. - // Nearest meaning closest bit depth, framerate, and channel count, - // in that order of importance. - // - // The behaviour of this method should remain constant after the - // XAPO has been initialized. - // - // PARAMETERS: - // pInputFormat - [in] input format known to be supported - // pRequestedOutputFormat - [in] output format to examine - // ppSupportedOutputFormat - [out] receives pointer to nearest output format supported if not NULL and input/output configuration unsupported, use XAPOFree to free structure, left untouched on any failure except XAPO_E_FORMAT_UNSUPPORTED - // - // RETURN VALUE: - // COM error code, including: - // S_OK - input/output configuration supported, ppSupportedOutputFormat left untouched - // XAPO_E_FORMAT_UNSUPPORTED - input/output configuration unsupported, ppSupportedOutputFormat receives pointer to nearest output format supported if not NULL - // E_INVALIDARG - either audio format invalid, ppSupportedOutputFormat left untouched - //// - STDMETHOD(IsOutputFormatSupported) (THIS_ const WAVEFORMATEX* pInputFormat, const WAVEFORMATEX* pRequestedOutputFormat, __deref_opt_out WAVEFORMATEX** ppSupportedOutputFormat) PURE; - - //// - // DESCRIPTION: - // Performs any effect-specific initialization if required. - // - // REMARKS: - // The contents of pData are defined by the XAPO. - // Immutable variables (constant during the lifespan of the XAPO) - // should be set once via this method. - // Once initialized, an XAPO cannot be initialized again. - // - // An XAPO should be initialized before passing it to XAudio2 - // as part of an effect chain. XAudio2 will not call this method; - // it exists for future content-driven initialization by XACT. - // - // PARAMETERS: - // pData - [in] effect-specific initialization parameters, may be NULL if DataByteSize == 0 - // DataByteSize - [in] size of pData in bytes, may be 0 if DataByteSize is NULL - // - // RETURN VALUE: - // COM error code - //// - STDMETHOD(Initialize) (THIS_ __in_bcount_opt(DataByteSize) const void* pData, UINT32 DataByteSize) PURE; - - //// - // DESCRIPTION: - // Resets variables dependent on frame history. - // - // REMARKS: - // All other variables remain unchanged, including variables set by - // IXAPOParameters::SetParameters. - // - // For example, an effect with delay should zero out its delay line - // during this method, but should not reallocate anything as the - // XAPO remains locked with a constant input/output configuration. - // - // XAudio2 calls this method only if the XAPO is locked. - // This method should not block as it is called from the - // realtime thread. - // - // PARAMETERS: - // void - // - // RETURN VALUE: - // void - //// - STDMETHOD_(void, Reset) (THIS) PURE; - - //// - // DESCRIPTION: - // Locks the XAPO to a specific input/output configuration, - // allowing it to do any final initialization before Process - // is called on the realtime thread. - // - // REMARKS: - // Once locked, the input/output configuration and any other locked - // variables remain constant until UnlockForProcess is called. - // - // XAPOs should assert the input/output configuration is supported - // and that any required effect-specific initialization is complete. - // IsInputFormatSupported, IsOutputFormatSupported, and Initialize - // should be called as necessary before this method is called. - // - // All internal memory buffers required for Process should be - // allocated by the time this method returns successfully - // as Process is non-blocking and should not allocate memory. - // - // Once locked, an XAPO cannot be locked again until - // UnLockForProcess is called. - // - // PARAMETERS: - // InputLockedParameterCount - [in] number of input buffers, must be within [XAPO_REGISTRATION_PROPERTIES.MinInputBufferCount, XAPO_REGISTRATION_PROPERTIES.MaxInputBufferCount] - // pInputLockedParameters - [in] array of input locked buffer parameter structures, may be NULL if InputLockedParameterCount == 0, otherwise must have InputLockedParameterCount elements - // OutputLockedParameterCount - [in] number of output buffers, must be within [XAPO_REGISTRATION_PROPERTIES.MinOutputBufferCount, XAPO_REGISTRATION_PROPERTIES.MaxOutputBufferCount], must match InputLockedParameterCount when XAPO_FLAG_BUFFERCOUNT_MUST_MATCH used - // pOutputLockedParameters - [in] array of output locked buffer parameter structures, may be NULL if OutputLockedParameterCount == 0, otherwise must have OutputLockedParameterCount elements - // - // RETURN VALUE: - // COM error code - //// - STDMETHOD(LockForProcess) (THIS_ UINT32 InputLockedParameterCount, __in_ecount_opt(InputLockedParameterCount) const XAPO_LOCKFORPROCESS_BUFFER_PARAMETERS* pInputLockedParameters, UINT32 OutputLockedParameterCount, __in_ecount_opt(OutputLockedParameterCount) const XAPO_LOCKFORPROCESS_BUFFER_PARAMETERS* pOutputLockedParameters) PURE; - - //// - // DESCRIPTION: - // Opposite of LockForProcess. Variables allocated during - // LockForProcess should be deallocated by this method. - // - // REMARKS: - // Unlocking an XAPO allows an XAPO instance to be reused with - // different input/output configurations. - // - // PARAMETERS: - // void - // - // RETURN VALUE: - // void - //// - STDMETHOD_(void, UnlockForProcess) (THIS) PURE; - - //// - // DESCRIPTION: - // Runs the XAPO's DSP code on the given input/output buffers. - // - // REMARKS: - // In addition to writing to the output buffers as appropriate, - // an XAPO must set the BufferFlags and ValidFrameCount members - // of all elements in pOutputProcessParameters accordingly. - // - // ppInputProcessParameters will not necessarily be the same as - // ppOutputProcessParameters for in-place processing, rather - // the pBuffer members of each will point to the same memory. - // - // Multiple input/output buffers may be used with in-place XAPOs, - // though the input buffer count must equal the output buffer count. - // When multiple input/output buffers are used with in-place XAPOs, - // the XAPO may assume input buffer [N] equals output buffer [N]. - // - // When IsEnabled is FALSE, the XAPO should process thru. - // Thru processing means an XAPO should not apply its normal - // processing to the given input/output buffers during Process. - // It should instead pass data from input to output with as little - // modification possible. Effects that perform format conversion - // should continue to do so. The effect must ensure transitions - // between normal and thru processing do not introduce - // discontinuities into the signal. - // - // XAudio2 calls this method only if the XAPO is locked. - // This method should not block as it is called from the - // realtime thread. - // - // PARAMETERS: - // InputProcessParameterCount - [in] number of input buffers, matches respective InputLockedParameterCount parameter given to LockForProcess - // pInputProcessParameters - [in] array of input process buffer parameter structures, may be NULL if InputProcessParameterCount == 0, otherwise must have InputProcessParameterCount elements - // OutputProcessParameterCount - [in] number of output buffers, matches respective OutputLockedParameterCount parameter given to LockForProcess - // pOutputProcessParameters - [in/out] array of output process buffer parameter structures, may be NULL if OutputProcessParameterCount == 0, otherwise must have OutputProcessParameterCount elements - // IsEnabled - [in] TRUE to process normally, FALSE to process thru - // - // RETURN VALUE: - // void - //// - STDMETHOD_(void, Process) (THIS_ UINT32 InputProcessParameterCount, __in_ecount_opt(InputProcessParameterCount) const XAPO_PROCESS_BUFFER_PARAMETERS* pInputProcessParameters, UINT32 OutputProcessParameterCount, __inout_ecount_opt(OutputProcessParameterCount) XAPO_PROCESS_BUFFER_PARAMETERS* pOutputProcessParameters, BOOL IsEnabled) PURE; - - //// - // DESCRIPTION: - // Returns the number of input frames required to generate the - // requested number of output frames. - // - // REMARKS: - // XAudio2 may call this method to determine how many input frames - // an XAPO requires. This is constant for locked CBR XAPOs; - // this method need only be called once while an XAPO is locked. - // - // XAudio2 calls this method only if the XAPO is locked. - // This method should not block as it is called from the - // realtime thread. - // - // PARAMETERS: - // OutputFrameCount - [in] requested number of output frames, must be within respective [0, XAPO_LOCKFORPROCESS_BUFFER_PARAMETERS.MaxFrameCount], always XAPO_LOCKFORPROCESS_BUFFER_PARAMETERS.MaxFrameCount for CBR/user-defined XAPOs - // - // RETURN VALUE: - // number of input frames required - //// - STDMETHOD_(UINT32, CalcInputFrames) (THIS_ UINT32 OutputFrameCount) PURE; - - //// - // DESCRIPTION: - // Returns the number of output frames generated for the - // requested number of input frames. - // - // REMARKS: - // XAudio2 may call this method to determine how many output frames - // an XAPO will generate. This is constant for locked CBR XAPOs; - // this method need only be called once while an XAPO is locked. - // - // XAudio2 calls this method only if the XAPO is locked. - // This method should not block as it is called from the - // realtime thread. - // - // PARAMETERS: - // InputFrameCount - [in] requested number of input frames, must be within respective [0, XAPO_LOCKFORPROCESS_BUFFER_PARAMETERS.MaxFrameCount], always XAPO_LOCKFORPROCESS_BUFFER_PARAMETERS.MaxFrameCount for CBR/user-defined XAPOs - // - // RETURN VALUE: - // number of output frames generated - //// - STDMETHOD_(UINT32, CalcOutputFrames) (THIS_ UINT32 InputFrameCount) PURE; - }; - - - - // IXAPOParameters: - // Optional XAPO COM interface that allows an XAPO to use - // effect-specific parameters. - #undef INTERFACE - #define INTERFACE IXAPOParameters - DECLARE_INTERFACE_(IXAPOParameters, IUnknown) { - //// - // DESCRIPTION: - // Sets effect-specific parameters. - // - // REMARKS: - // This method may only be called on the realtime thread; - // no synchronization between it and IXAPO::Process is necessary. - // - // This method should not block as it is called from the - // realtime thread. - // - // PARAMETERS: - // pParameters - [in] effect-specific parameter block, must be != NULL - // ParameterByteSize - [in] size of pParameters in bytes, must be > 0 - // - // RETURN VALUE: - // void - //// - STDMETHOD_(void, SetParameters) (THIS_ __in_bcount(ParameterByteSize) const void* pParameters, UINT32 ParameterByteSize) PURE; - - //// - // DESCRIPTION: - // Gets effect-specific parameters. - // - // REMARKS: - // Unlike SetParameters, XAudio2 does not call this method on the - // realtime thread. Thus, the XAPO must protect variables shared - // with SetParameters/Process using appropriate synchronization. - // - // PARAMETERS: - // pParameters - [out] receives effect-specific parameter block, must be != NULL - // ParameterByteSize - [in] size of pParameters in bytes, must be > 0 - // - // RETURN VALUE: - // void - //// - STDMETHOD_(void, GetParameters) (THIS_ __out_bcount(ParameterByteSize) void* pParameters, UINT32 ParameterByteSize) PURE; - }; - - -//-------------------------------------------------------------// - // macros to allow XAPO interfaces to be used in C code - #if !defined(__cplusplus) - // IXAPO - #define IXAPO_QueryInterface(This, riid, ppInterface) \ - ( (This)->lpVtbl->QueryInterface(This, riid, ppInterface) ) - - #define IXAPO_AddRef(This) \ - ( (This)->lpVtbl->AddRef(This) ) - - #define IXAPO_Release(This) \ - ( (This)->lpVtbl->Release(This) ) - - #define IXAPO_GetRegistrationProperties(This, ppRegistrationProperties) \ - ( (This)->lpVtbl->GetRegistrationProperties(This, ppRegistrationProperties) ) - - #define IXAPO_IsInputFormatSupported(This, pOutputFormat, pRequestedInputFormat, ppSupportedInputFormat) \ - ( (This)->lpVtbl->IsInputFormatSupported(This, pOutputFormat, pRequestedInputFormat, ppSupportedInputFormat) ) - - #define IXAPO_IsOutputFormatSupported(This, pInputFormat, pRequestedOutputFormat, ppSupportedOutputFormat) \ - ( (This)->lpVtbl->IsOutputFormatSupported(This, pInputFormat, pRequestedOutputFormat, ppSupportedOutputFormat) ) - - #define IXAPO_Initialize(This, pData, DataByteSize) \ - ( (This)->lpVtbl->Initialize(This, pData, DataByteSize) ) - - #define IXAPO_Reset(This) \ - ( (This)->lpVtbl->Reset(This) ) - - #define IXAPO_LockForProcess(This, InputLockedParameterCount, pInputLockedParameters, OutputLockedParameterCount, pOutputLockedParameters) \ - ( (This)->lpVtbl->LockForProcess(This, InputLockedParameterCount, pInputLockedParameters, OutputLockedParameterCount, pOutputLockedParameters) ) - - #define IXAPO_UnlockForProcess(This) \ - ( (This)->lpVtbl->UnlockForProcess(This) ) - - #define IXAPO_Process(This, InputProcessParameterCount, pInputProcessParameters, OutputProcessParameterCount, pOutputProcessParameters, IsEnabled) \ - ( (This)->lpVtbl->Process(This, InputProcessParameterCount, pInputProcessParameters, OutputProcessParameterCount, pOutputProcessParameters, IsEnabled) ) - - #define IXAPO_CalcInputFrames(This, OutputFrameCount) \ - ( (This)->lpVtbl->CalcInputFrames(This, OutputFrameCount) ) - - #define IXAPO_CalcOutputFrames(This, InputFrameCount) \ - ( (This)->lpVtbl->CalcOutputFrames(This, InputFrameCount) ) - - - // IXAPOParameters - #define IXAPOParameters_QueryInterface(This, riid, ppInterface) \ - ( (This)->lpVtbl->QueryInterface(This, riid, ppInterface) ) - - #define IXAPOParameters_AddRef(This) \ - ( (This)->lpVtbl->AddRef(This) ) - - #define IXAPOParameters_Release(This) \ - ( (This)->lpVtbl->Release(This) ) - - #define IXAPOParameters_SetParameters(This, pParameters, ParameterByteSize) \ - ( (This)->lpVtbl->SetParameters(This, pParameters, ParameterByteSize) ) - - #define IXAPOParameters_GetParameters(This, pParameters, ParameterByteSize) \ - ( (This)->lpVtbl->GetParameters(This, pParameters, ParameterByteSize) ) - #endif // !defined(__cplusplus) - - - #pragma pack(pop) // revert packing alignment -#endif // !defined(GUID_DEFS_ONLY) -//---------------------------------<-EOF->----------------------------------// diff --git a/SDK/Include/XAPOBase.h b/SDK/Include/XAPOBase.h deleted file mode 100644 index 24c5c6f..0000000 --- a/SDK/Include/XAPOBase.h +++ /dev/null @@ -1,337 +0,0 @@ -/*-========================================================================-_ - | - XAPO - | - | Copyright (c) Microsoft Corporation. All rights reserved. | - |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| - |PROJECT: XAPO MODEL: Unmanaged User-mode | - |VERSION: 1.0 EXCEPT: No Exceptions | - |CLASS: N / A MINREQ: WinXP, Xbox360 | - |BASE: N / A DIALECT: MSC++ 14.00 | - |>------------------------------------------------------------------------<| - | DUTY: XAPO base classes | - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ - NOTES: - 1. See XAPO.h for the rules governing XAPO interface behaviour. */ - -#pragma once -//---------------------------------------------------// -#include "XAPO.h" - -// default audio format ranges supported, applies to XAPO_LOCKFORPROCESS_BUFFER_PARAMETERS.pFormat -#define XAPOBASE_DEFAULT_FORMAT_TAG WAVE_FORMAT_IEEE_FLOAT // 32-bit float only, applies to WAVEFORMATEX.wFormatTag or WAVEFORMATEXTENSIBLE.SubFormat when used -#define XAPOBASE_DEFAULT_FORMAT_MIN_CHANNELS XAPO_MIN_CHANNELS // minimum channel count, applies to WAVEFORMATEX.nChannels -#define XAPOBASE_DEFAULT_FORMAT_MAX_CHANNELS XAPO_MAX_CHANNELS // maximum channel count, applies to WAVEFORMATEX.nChannels -#define XAPOBASE_DEFAULT_FORMAT_MIN_FRAMERATE XAPO_MIN_FRAMERATE // minimum framerate, applies to WAVEFORMATEX.nSamplesPerSec -#define XAPOBASE_DEFAULT_FORMAT_MAX_FRAMERATE XAPO_MAX_FRAMERATE // maximum framerate, applies to WAVEFORMATEX.nSamplesPerSec -#define XAPOBASE_DEFAULT_FORMAT_BITSPERSAMPLE 32 // 32-bit float only, applies to WAVEFORMATEX.wBitsPerSample and WAVEFORMATEXTENSIBLE.wValidBitsPerSample when used - -// default XAPO property flags supported, applies to XAPO_LOCKFORPROCESS_BUFFER_PARAMETERS -#define XAPOBASE_DEFAULT_FLAG (XAPO_FLAG_CHANNELS_MUST_MATCH | XAPO_FLAG_FRAMERATE_MUST_MATCH | XAPO_FLAG_BITSPERSAMPLE_MUST_MATCH | XAPO_FLAG_BUFFERCOUNT_MUST_MATCH | XAPO_FLAG_INPLACE_SUPPORTED) - -// default number of input and output buffers supported, applies to XAPO_LOCKFORPROCESS_BUFFER_PARAMETERS -#define XAPOBASE_DEFAULT_BUFFER_COUNT 1 - - -//-------------------------------------------------------------// -// assertion -#if !defined(XAPOASSERT) - #if XAPODEBUG - #define XAPOASSERT(exp) if (!(exp)) { OutputDebugStringA("XAPO ASSERT: " #exp ", {" __FUNCTION__ "}\n"); __debugbreak(); } - #else - #define XAPOASSERT(exp) __assume(exp) - #endif -#endif - - -//-----------------------------------------------------// -#pragma pack(push, 8) // set packing alignment to ensure consistency across arbitrary build environments, and ensure synchronization variables used by Interlocked functionality are correctly aligned - - -// primitive types -typedef float FLOAT32; // 32-bit IEEE float - - - //// - // DESCRIPTION: - // Default implementation of the IXAPO and IUnknown interfaces. - // Provides overridable implementations for all methods save IXAPO::Process. - //// -class __declspec(novtable) CXAPOBase: public IXAPO { -private: - const XAPO_REGISTRATION_PROPERTIES* m_pRegistrationProperties; // pointer to registration properties of the XAPO, set via constructor - - void* m_pfnMatrixMixFunction; // optimal matrix function pointer, used for thru processing - FLOAT32* m_pfl32MatrixCoefficients; // matrix coefficient table, used for thru processing - UINT32 m_nSrcFormatType; // input format type, used for thru processing - BOOL m_fIsScalarMatrix; // TRUE if m_pfl32MatrixCoefficients is diagonal matrix with all main diagonal entries equal, i.e. m_pfnMatrixMixFunction only used for type conversion (no channel conversion), used for thru processing - BOOL m_fIsLocked; // TRUE if XAPO locked via CXAPOBase.LockForProcess - - -protected: - LONG m_lReferenceCount; // COM reference count, must be aligned for atomic operations - - //// - // DESCRIPTION: - // Verifies an audio format falls within the default ranges supported. - // - // REMARKS: - // If pFormat is unsupported, and fOverwrite is TRUE, - // pFormat is overwritten with the nearest format supported. - // Nearest meaning closest bit depth, framerate, and channel count, - // in that order of importance. - // - // PARAMETERS: - // pFormat - [in/out] audio format to examine - // fOverwrite - [in] TRUE to overwrite pFormat if audio format unsupported - // - // RETURN VALUE: - // COM error code, including: - // S_OK - audio format supported, pFormat left untouched - // XAPO_E_FORMAT_UNSUPPORTED - audio format unsupported, pFormat overwritten with nearest audio format supported if fOverwrite TRUE - // E_INVALIDARG - audio format invalid, pFormat left untouched - //// - virtual HRESULT ValidateFormatDefault (__inout WAVEFORMATEX* pFormat, BOOL fOverwrite); - - //// - // DESCRIPTION: - // Verifies that an input/output format pair configuration is supported - // with respect to the XAPO property flags. - // - // REMARKS: - // If pRequestedFormat is unsupported, and fOverwrite is TRUE, - // pRequestedFormat is overwritten with the nearest format supported. - // Nearest meaning closest bit depth, framerate, and channel count, - // in that order of importance. - // - // PARAMETERS: - // pSupportedFormat - [in] audio format known to be supported - // pRequestedFormat - [in/out] audio format to examine, must be WAVEFORMATEXTENSIBLE if fOverwrite TRUE - // fOverwrite - [in] TRUE to overwrite pRequestedFormat if input/output configuration unsupported - // - // RETURN VALUE: - // COM error code, including: - // S_OK - input/output configuration supported, pRequestedFormat left untouched - // XAPO_E_FORMAT_UNSUPPORTED - input/output configuration unsupported, pRequestedFormat overwritten with nearest audio format supported if fOverwrite TRUE - // E_INVALIDARG - either audio format invalid, pRequestedFormat left untouched - //// - HRESULT ValidateFormatPair (const WAVEFORMATEX* pSupportedFormat, __inout WAVEFORMATEX* pRequestedFormat, BOOL fOverwrite); - - //// - // DESCRIPTION: - // This method may be called by an IXAPO::Process implementation - // for thru processing. It copies/mixes data from source to - // destination, making as few changes as possible to the audio data. - // - // REMARKS: - // However, this method is capable of channel upmix/downmix and uses - // the same matrix coefficient table used by windows Vista to do so. - // - // For in-place processing (input buffer == output buffer) - // this method does nothing. - // - // This method should be called only if the XAPO is locked and - // XAPO_FLAG_FRAMERATE_MUST_MATCH is used. - // - // PARAMETERS: - // pInputBuffer - [in] input buffer, format may be INT8, INT16, INT20 (contained in 24 or 32 bits), INT24 (contained in 24 or 32 bits), INT32, or FLOAT32 - // pOutputBuffer - [out] output buffer, format must be FLOAT32 - // FrameCount - [in] number of frames to process - // InputChannelCount - [in] number of input channels - // OutputChannelCount - [in] number of output channels - // MixWithOutput - [in] TRUE to mix with output, FALSE to overwrite output - // - // RETURN VALUE: - // void - //// - void ProcessThru (__in void* pInputBuffer, __inout FLOAT32* pOutputBuffer, UINT32 FrameCount, WORD InputChannelCount, WORD OutputChannelCount, BOOL MixWithOutput); - - // accessors - const XAPO_REGISTRATION_PROPERTIES* GetRegistrationPropertiesInternal () { return m_pRegistrationProperties; } - BOOL IsLocked () { return m_fIsLocked; } - - -public: - CXAPOBase (const XAPO_REGISTRATION_PROPERTIES* pRegistrationProperties); - virtual ~CXAPOBase (); - - // IUnknown methods: - // retrieves the requested interface pointer if supported - STDMETHOD(QueryInterface) (REFIID riid, __deref_out_opt void** ppInterface) - { - XAPOASSERT(ppInterface != NULL); - HRESULT hr = S_OK; - - if (riid == __uuidof(IXAPO)) { - *ppInterface = static_cast(this); - AddRef(); - } else if (riid == __uuidof(IUnknown)) { - *ppInterface = static_cast(this); - AddRef(); - } else { - *ppInterface = NULL; - hr = E_NOINTERFACE; - } - - return hr; - } - - // increments reference count - STDMETHOD_(ULONG, AddRef) () - { - return (ULONG)InterlockedIncrement(&m_lReferenceCount); - } - - // decrements reference count and deletes the object if the reference count falls to zero - STDMETHOD_(ULONG, Release) () - { - ULONG uTmpReferenceCount = (ULONG)InterlockedDecrement(&m_lReferenceCount); - if (uTmpReferenceCount == 0) { - delete this; - } - return uTmpReferenceCount; - } - - // IXAPO methods: - // Allocates a copy of the registration properties of the XAPO. - // This default implementation returns a copy of the registration - // properties given to the constructor, allocated via XAPOAlloc. - STDMETHOD(GetRegistrationProperties) (__deref_out XAPO_REGISTRATION_PROPERTIES** ppRegistrationProperties); - - // Queries if a specific input format is supported for a given output format. - // This default implementation assumes only the format described by the - // XAPOBASE_DEFAULT_FORMAT values are supported for both input and output. - STDMETHOD(IsInputFormatSupported) (const WAVEFORMATEX* pOutputFormat, const WAVEFORMATEX* pRequestedInputFormat, __deref_opt_out WAVEFORMATEX** ppSupportedInputFormat); - - // Queries if a specific output format is supported for a given input format. - // This default implementation assumes only the format described by the - // XAPOBASE_DEFAULT_FORMAT values are supported for both input and output. - STDMETHOD(IsOutputFormatSupported) (const WAVEFORMATEX* pInputFormat, const WAVEFORMATEX* pRequestedOutputFormat, __deref_opt_out WAVEFORMATEX** ppSupportedOutputFormat); - - // Performs any effect-specific initialization. - // This default implementation is a no-op and only returns S_OK. - STDMETHOD(Initialize) (__in_bcount_opt(DataByteSize) const void*, UINT32 DataByteSize) - { - UNREFERENCED_PARAMETER(DataByteSize); - return S_OK; - } - - // Resets variables dependent on frame history. - // This default implementation is a no-op: this base class contains no - // relevant state to reset. - STDMETHOD_(void, Reset) () { return; } - - // Notifies XAPO of buffer formats Process() will be given. - // This default implementation performs basic input/output format - // validation against the XAPO's registration properties. - // Derived XAPOs should call the base implementation first. - STDMETHOD(LockForProcess) (UINT32 InputLockedParameterCount, __in_ecount_opt(InputLockedParameterCount) const XAPO_LOCKFORPROCESS_BUFFER_PARAMETERS* pInputLockedParameters, UINT32 OutputLockedParameterCount, __in_ecount_opt(OutputLockedParameterCount) const XAPO_LOCKFORPROCESS_BUFFER_PARAMETERS* pOutputLockedParameters); - - // Opposite of LockForProcess. - // Derived XAPOs should call the base implementation first. - STDMETHOD_(void, UnlockForProcess) (); - - // Returns the number of input frames required to generate the requested number of output frames. - // By default, this method returns the same number of frames it was passed. - STDMETHOD_(UINT32, CalcInputFrames) (UINT32 OutputFrameCount) { return OutputFrameCount; } - - // Returns the number of output frames generated for the requested number of input frames. - // By default, this method returns the same number of frames it was passed. - STDMETHOD_(UINT32, CalcOutputFrames) (UINT32 InputFrameCount) { return InputFrameCount; } -}; - - - - - -//--------------------------------------------------------------------------// - //// - // DESCRIPTION: - // Extends CXAPOBase, providing a default implementation of the - // IXAPOParameters interface with appropriate synchronization to - // protect variables shared between IXAPOParameters::GetParameters - // and IXAPOParameters::SetParameters/IXAPO::Process. - // - // This class is for parameter blocks whose size is larger than 4 bytes. - // For smaller parameter blocks, use atomic operations directly - // on the parameters for synchronization. - //// -class __declspec(novtable) CXAPOParametersBase: public CXAPOBase, public IXAPOParameters { -private: - BYTE* m_pParameterBlocks; // three contiguous process parameter blocks used for synchronization, user responsible for initialization of parameter blocks before IXAPO::Process/SetParameters/GetParameters called - BYTE* m_pCurrentParameters; // pointer to current process parameters, must be aligned for atomic operations - BYTE* m_pCurrentParametersInternal; // pointer to current process parameters (temp pointer read by SetParameters/BeginProcess/EndProcess) - UINT32 m_uCurrentParametersIndex; // index of current process parameters - UINT32 m_uParameterBlockByteSize; // size of a single parameter block in bytes, must be > 0 - BOOL m_fNewerResultsReady; // TRUE if there exists new processing results not yet picked up by GetParameters(), must be aligned for atomic operations - BOOL m_fProducer; // IXAPO::Process produces data to be returned by GetParameters(); SetParameters() disallowed - - -public: - //// - // PARAMETERS: - // pRegistrationProperties - [in] registration properties of the XAPO - // pParameterBlocks - [in] three contiguous process parameter blocks used for synchronization - // uParameterBlockByteSize - [in] size of one of the parameter blocks, must be > 0 - // fProducer - [in] TRUE if IXAPO::Process produces data to be returned by GetParameters() (SetParameters() and ParametersChanged() disallowed) - //// - CXAPOParametersBase (const XAPO_REGISTRATION_PROPERTIES* pRegistrationProperties, BYTE* pParameterBlocks, UINT32 uParameterBlockByteSize, BOOL fProducer); - virtual ~CXAPOParametersBase (); - - // IUnknown methods: - // retrieves the requested interface pointer if supported - STDMETHOD(QueryInterface) (REFIID riid, __deref_out_opt void** ppInterface) - { - XAPOASSERT(ppInterface != NULL); - HRESULT hr = S_OK; - - if (riid == __uuidof(IXAPOParameters)) { - *ppInterface = static_cast(this); - CXAPOBase::AddRef(); - } else { - hr = CXAPOBase::QueryInterface(riid, ppInterface); - } - - return hr; - } - - // increments reference count - STDMETHOD_(ULONG, AddRef)() { return CXAPOBase::AddRef(); } - - // decrements reference count and deletes the object if the reference count falls to zero - STDMETHOD_(ULONG, Release)() { return CXAPOBase::Release(); } - - // IXAPOParameters methods: - // Sets effect-specific parameters. - // This method may only be called on the realtime audio processing thread. - STDMETHOD_(void, SetParameters) (__in_bcount(ParameterByteSize) const void* pParameters, UINT32 ParameterByteSize); - - // Gets effect-specific parameters. - // This method may block and should not be called from the realtime thread. - // Get the current parameters via BeginProcess. - STDMETHOD_(void, GetParameters) (__out_bcount(ParameterByteSize) void* pParameters, UINT32 ParameterByteSize); - - // Called by SetParameters() to allow for user-defined parameter validation. - // SetParameters validates that ParameterByteSize == m_uParameterBlockByteSize - // so the user may assume/assert ParameterByteSize == m_uParameterBlockByteSize. - // This method should not block as it is called from the realtime thread. - virtual void OnSetParameters (const void*, UINT32) { } - - // Returns TRUE if SetParameters() has been called since the last processing pass. - // May only be used within the XAPO's IXAPO::Process implementation, - // before BeginProcess is called. - BOOL ParametersChanged (); - - // Returns latest process parameters. - // XAPOs must call this method within their IXAPO::Process - // implementation to access latest process parameters in threadsafe manner. - BYTE* BeginProcess (); - - // Notifies CXAPOParametersBase that the XAPO has finished accessing - // the latest process parameters. - // XAPOs must call this method within their IXAPO::Process - // implementation to access latest process parameters in threadsafe manner. - void EndProcess (); -}; - - -#pragma pack(pop) // revert packing alignment -//---------------------------------<-EOF->----------------------------------// diff --git a/SDK/Include/XAPOFX.h b/SDK/Include/XAPOFX.h deleted file mode 100644 index a5dbeef..0000000 --- a/SDK/Include/XAPOFX.h +++ /dev/null @@ -1,167 +0,0 @@ -/*-========================================================================-_ - | - XAPOFX - | - | Copyright (c) Microsoft Corporation. All rights reserved. | - |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| - |PROJECT: XAPOFX MODEL: Unmanaged User-mode | - |VERSION: 1.3 EXCEPT: No Exceptions | - |CLASS: N / A MINREQ: WinXP, Xbox360 | - |BASE: N / A DIALECT: MSC++ 14.00 | - |>------------------------------------------------------------------------<| - | DUTY: Cross-platform Audio Processing Objects | - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ - NOTES: - 1. USE THE DEBUG DLL TO ENABLE PARAMETER VALIDATION VIA ASSERTS! - Here's how: - Copy XAPOFXDX_X.dll to where your application exists. - The debug DLL can be found under %WINDIR%\system32. - Rename XAPOFXDX_X.dll to XAPOFXX_X.dll to use the debug version. */ - -#pragma once -//---------------------------------------------------// -#include "comdecl.h" // for DEFINE_CLSID - -// FX class IDs -DEFINE_CLSID(FXEQ, A90BC001, E897, E897, 74, 39, 43, 55, 00, 00, 00, 00); -DEFINE_CLSID(FXMasteringLimiter, A90BC001, E897, E897, 74, 39, 43, 55, 00, 00, 00, 01); -DEFINE_CLSID(FXReverb, A90BC001, E897, E897, 74, 39, 43, 55, 00, 00, 00, 02); -DEFINE_CLSID(FXEcho, A90BC001, E897, E897, 74, 39, 43, 55, 00, 00, 00, 03); - - -#if !defined(GUID_DEFS_ONLY) // ignore rest if only GUID definitions requested - #if defined(_XBOX) // general windows and COM declarations - #include - #include - #else - #include - #include - #endif - #include // float bounds - - - // EQ parameter bounds (inclusive), used with XEQ: - #define FXEQ_MIN_FRAMERATE 22000 - #define FXEQ_MAX_FRAMERATE 48000 - - #define FXEQ_MIN_FREQUENCY_CENTER 20.0f - #define FXEQ_MAX_FREQUENCY_CENTER 20000.0f - #define FXEQ_DEFAULT_FREQUENCY_CENTER_0 100.0f // band 0 - #define FXEQ_DEFAULT_FREQUENCY_CENTER_1 800.0f // band 1 - #define FXEQ_DEFAULT_FREQUENCY_CENTER_2 2000.0f // band 2 - #define FXEQ_DEFAULT_FREQUENCY_CENTER_3 10000.0f // band 3 - - #define FXEQ_MIN_GAIN 0.126f // -18dB - #define FXEQ_MAX_GAIN 7.94f // +18dB - #define FXEQ_DEFAULT_GAIN 1.0f // 0dB change, all bands - - #define FXEQ_MIN_BANDWIDTH 0.1f - #define FXEQ_MAX_BANDWIDTH 2.0f - #define FXEQ_DEFAULT_BANDWIDTH 1.0f // all bands - - - // Mastering limiter parameter bounds (inclusive), used with XMasteringLimiter: - #define FXMASTERINGLIMITER_MIN_RELEASE 1 - #define FXMASTERINGLIMITER_MAX_RELEASE 20 - #define FXMASTERINGLIMITER_DEFAULT_RELEASE 6 - - #define FXMASTERINGLIMITER_MIN_LOUDNESS 1 - #define FXMASTERINGLIMITER_MAX_LOUDNESS 1800 - #define FXMASTERINGLIMITER_DEFAULT_LOUDNESS 1000 - - - // Reverb parameter bounds (inclusive), used with XReverb: - #define FXREVERB_MIN_DIFFUSION 0.0f - #define FXREVERB_MAX_DIFFUSION 1.0f - #define FXREVERB_DEFAULT_DIFFUSION 0.9f - - #define FXREVERB_MIN_ROOMSIZE 0.0001f - #define FXREVERB_MAX_ROOMSIZE 1.0f - #define FXREVERB_DEFAULT_ROOMSIZE 0.6f - - - // Echo parameter bounds (inclusive), used with XEcho: - #define FXECHO_MIN_WETDRYMIX 0.0f - #define FXECHO_MAX_WETDRYMIX 1.0f - #define FXECHO_DEFAULT_WETDRYMIX 0.5f - - #define FXECHO_MIN_FEEDBACK 0.0f - #define FXECHO_MAX_FEEDBACK 1.0f - #define FXECHO_DEFAULT_FEEDBACK 0.5f - - #define FXECHO_MIN_DELAY 1.0f - #define FXECHO_MAX_DELAY 2000.0f - #define FXECHO_DEFAULT_DELAY 500.0f - - -//-----------------------------------------------------// - #pragma pack(push, 1) // set packing alignment to ensure consistency across arbitrary build environments - - - // EQ parameters (4 bands), used with IXAPOParameters::SetParameters: - // The EQ supports only FLOAT32 audio foramts. - // The framerate must be within [22000, 48000] Hz. - typedef struct FXEQ_PARAMETERS { - float FrequencyCenter0; // center frequency in Hz, band 0 - float Gain0; // boost/cut - float Bandwidth0; // bandwidth, region of EQ is center frequency +/- bandwidth/2 - float FrequencyCenter1; // band 1 - float Gain1; - float Bandwidth1; - float FrequencyCenter2; // band 2 - float Gain2; - float Bandwidth2; - float FrequencyCenter3; // band 3 - float Gain3; - float Bandwidth3; - } FXEQ_PARAMETERS; - - - // Mastering limiter parameters, used with IXAPOParameters::SetParameters: - // The mastering limiter supports only FLOAT32 audio formats. - typedef struct FXMASTERINGLIMITER_PARAMETERS { - UINT32 Release; // release time (tuning factor with no specific units) - UINT32 Loudness; // loudness target (threshold) - } FXMASTERINGLIMITER_PARAMETERS; - - - // Reverb parameters, used with IXAPOParameters::SetParameters: - // The reverb supports only FLOAT32 audio formats with the following - // channel configurations: - // Input: Mono Output: Mono - // Input: Stereo Output: Stereo - typedef struct FXREVERB_PARAMETERS { - float Diffusion; // diffusion - float RoomSize; // room size - } FXREVERB_PARAMETERS; - - - // Echo parameters, used with IXAPOParameters::SetParameters: - // The echo supports only FLOAT32 audio formats. - typedef struct FXECHO_PARAMETERS { - float WetDryMix; // ratio of wet (processed) signal to dry (original) signal - float Feedback; // amount of output fed back into input - float Delay; // delay (all channels) in milliseconds - } FXECHO_PARAMETERS; - - -//-------------------------------------------------------------// - // function storage-class attribute and calltype - #if defined(_XBOX) || !defined(FXDLL) - #define FX_API_(type) EXTERN_C type STDAPIVCALLTYPE - #else - #if defined(FXEXPORT) - #define FX_API_(type) EXTERN_C __declspec(dllexport) type STDAPIVCALLTYPE - #else - #define FX_API_(type) EXTERN_C __declspec(dllimport) type STDAPIVCALLTYPE - #endif - #endif - #define FX_IMP_(type) type STDMETHODVCALLTYPE - - -//-------------------------------------------------------// - // creates instance of requested XAPO, use Release to free instance - FX_API_(HRESULT) CreateFX (REFCLSID clsid, __deref_out IUnknown** pEffect); - - - #pragma pack(pop) // revert packing alignment -#endif // !defined(GUID_DEFS_ONLY) -//---------------------------------<-EOF->----------------------------------// diff --git a/SDK/Include/XAudio2.h b/SDK/Include/XAudio2.h deleted file mode 100644 index 885b92f..0000000 --- a/SDK/Include/XAudio2.h +++ /dev/null @@ -1,1282 +0,0 @@ -/************************************************************************** - * - * Copyright (c) Microsoft Corporation. All rights reserved. - * - * File: xaudio2.h - * Content: Declarations for the XAudio2 game audio API. - * - **************************************************************************/ - -#ifndef __XAUDIO2_INCLUDED__ -#define __XAUDIO2_INCLUDED__ - - -/************************************************************************** - * - * XAudio2 COM object class and interface IDs. - * - **************************************************************************/ - -#include // For DEFINE_CLSID and DEFINE_IID - -// XAudio 2.0 (March 2008 SDK) -//DEFINE_CLSID(XAudio2, fac23f48, 31f5, 45a8, b4, 9b, 52, 25, d6, 14, 01, aa); -//DEFINE_CLSID(XAudio2_Debug, fac23f48, 31f5, 45a8, b4, 9b, 52, 25, d6, 14, 01, db); - -// XAudio 2.1 (June 2008 SDK) -//DEFINE_CLSID(XAudio2, e21a7345, eb21, 468e, be, 50, 80, 4d, b9, 7c, f7, 08); -//DEFINE_CLSID(XAudio2_Debug, f7a76c21, 53d4, 46bb, ac, 53, 8b, 45, 9c, ae, 46, bd); - -// XAudio 2.2 (August 2008 SDK) -//DEFINE_CLSID(XAudio2, b802058a, 464a, 42db, bc, 10, b6, 50, d6, f2, 58, 6a); -//DEFINE_CLSID(XAudio2_Debug, 97dfb7e7, 5161, 4015, 87, a9, c7, 9e, 6a, 19, 52, cc); - -// XAudio 2.3 (November 2008 SDK) -//DEFINE_CLSID(XAudio2, 4c5e637a, 16c7, 4de3, 9c, 46, 5e, d2, 21, 81, 96, 2d); -//DEFINE_CLSID(XAudio2_Debug, ef0aa05d, 8075, 4e5d, be, ad, 45, be, 0c, 3c, cb, b3); - -// XAudio 2.4 (March 2009 SDK) -//DEFINE_CLSID(XAudio2, 03219e78, 5bc3, 44d1, b9, 2e, f6, 3d, 89, cc, 65, 26); -//DEFINE_CLSID(XAudio2_Debug, 4256535c, 1ea4, 4d4b, 8a, d5, f9, db, 76, 2e, ca, 9e); - -// XAudio 2.5 (August 2009 SDK) -//DEFINE_CLSID(XAudio2, 4c9b6dde, 6809, 46e6, a2, 78, 9b, 6a, 97, 58, 86, 70); -//DEFINE_CLSID(XAudio2_Debug, 715bdd1a, aa82, 436b, b0, fa, 6a, ce, a3, 9b, d0, a1); - -// XAudio 2.6 (February 2010 SDK) -//DEFINE_CLSID(XAudio2, 3eda9b49, 2085, 498b, 9b, b2, 39, a6, 77, 84, 93, de); -//DEFINE_CLSID(XAudio2_Debug, 47199894, 7cc2, 444d, 98, 73, ce, d2, 56, 2c, c6, 0e); - -// XAudio 2.7 (June 2010 SDK) -DEFINE_CLSID(XAudio2, 5a508685, a254, 4fba, 9b, 82, 9a, 24, b0, 03, 06, af); -DEFINE_CLSID(XAudio2_Debug, db05ea35, 0329, 4d4b, a5, 3a, 6d, ea, d0, 3d, 38, 52); -DEFINE_IID(IXAudio2, 8bcf1f58, 9fe7, 4583, 8a, c6, e2, ad, c4, 65, c8, bb); - - -// Ignore the rest of this header if only the GUID definitions were requested -#ifndef GUID_DEFS_ONLY - -#ifdef _XBOX - #include // Xbox COM declarations (IUnknown, etc) -#else - #include // Windows COM declarations -#endif - -#include // Markers for documenting API semantics -#include // Basic audio data types and constants -#include // Data types and constants for XMA2 audio - -// All structures defined in this file use tight field packing -#pragma pack(push, 1) - - -/************************************************************************** - * - * XAudio2 constants, flags and error codes. - * - **************************************************************************/ - -// Numeric boundary values -#define XAUDIO2_MAX_BUFFER_BYTES 0x80000000 // Maximum bytes allowed in a source buffer -#define XAUDIO2_MAX_QUEUED_BUFFERS 64 // Maximum buffers allowed in a voice queue -#define XAUDIO2_MAX_BUFFERS_SYSTEM 2 // Maximum buffers allowed for system threads (Xbox 360 only) -#define XAUDIO2_MAX_AUDIO_CHANNELS 64 // Maximum channels in an audio stream -#define XAUDIO2_MIN_SAMPLE_RATE 1000 // Minimum audio sample rate supported -#define XAUDIO2_MAX_SAMPLE_RATE 200000 // Maximum audio sample rate supported -#define XAUDIO2_MAX_VOLUME_LEVEL 16777216.0f // Maximum acceptable volume level (2^24) -#define XAUDIO2_MIN_FREQ_RATIO (1/1024.0f) // Minimum SetFrequencyRatio argument -#define XAUDIO2_MAX_FREQ_RATIO 1024.0f // Maximum MaxFrequencyRatio argument -#define XAUDIO2_DEFAULT_FREQ_RATIO 2.0f // Default MaxFrequencyRatio argument -#define XAUDIO2_MAX_FILTER_ONEOVERQ 1.5f // Maximum XAUDIO2_FILTER_PARAMETERS.OneOverQ -#define XAUDIO2_MAX_FILTER_FREQUENCY 1.0f // Maximum XAUDIO2_FILTER_PARAMETERS.Frequency -#define XAUDIO2_MAX_LOOP_COUNT 254 // Maximum non-infinite XAUDIO2_BUFFER.LoopCount -#define XAUDIO2_MAX_INSTANCES 8 // Maximum simultaneous XAudio2 objects on Xbox 360 - -// For XMA voices on Xbox 360 there is an additional restriction on the MaxFrequencyRatio -// argument and the voice's sample rate: the product of these numbers cannot exceed 600000 -// for one-channel voices or 300000 for voices with more than one channel. -#define XAUDIO2_MAX_RATIO_TIMES_RATE_XMA_MONO 600000 -#define XAUDIO2_MAX_RATIO_TIMES_RATE_XMA_MULTICHANNEL 300000 - -// Numeric values with special meanings -#define XAUDIO2_COMMIT_NOW 0 // Used as an OperationSet argument -#define XAUDIO2_COMMIT_ALL 0 // Used in IXAudio2::CommitChanges -#define XAUDIO2_INVALID_OPSET (UINT32)(-1) // Not allowed for OperationSet arguments -#define XAUDIO2_NO_LOOP_REGION 0 // Used in XAUDIO2_BUFFER.LoopCount -#define XAUDIO2_LOOP_INFINITE 255 // Used in XAUDIO2_BUFFER.LoopCount -#define XAUDIO2_DEFAULT_CHANNELS 0 // Used in CreateMasteringVoice -#define XAUDIO2_DEFAULT_SAMPLERATE 0 // Used in CreateMasteringVoice - -// Flags -#define XAUDIO2_DEBUG_ENGINE 0x0001 // Used in XAudio2Create on Windows only -#define XAUDIO2_VOICE_NOPITCH 0x0002 // Used in IXAudio2::CreateSourceVoice -#define XAUDIO2_VOICE_NOSRC 0x0004 // Used in IXAudio2::CreateSourceVoice -#define XAUDIO2_VOICE_USEFILTER 0x0008 // Used in IXAudio2::CreateSource/SubmixVoice -#define XAUDIO2_VOICE_MUSIC 0x0010 // Used in IXAudio2::CreateSourceVoice -#define XAUDIO2_PLAY_TAILS 0x0020 // Used in IXAudio2SourceVoice::Stop -#define XAUDIO2_END_OF_STREAM 0x0040 // Used in XAUDIO2_BUFFER.Flags -#define XAUDIO2_SEND_USEFILTER 0x0080 // Used in XAUDIO2_SEND_DESCRIPTOR.Flags - -// Default parameters for the built-in filter -#define XAUDIO2_DEFAULT_FILTER_TYPE LowPassFilter -#define XAUDIO2_DEFAULT_FILTER_FREQUENCY XAUDIO2_MAX_FILTER_FREQUENCY -#define XAUDIO2_DEFAULT_FILTER_ONEOVERQ 1.0f - -// Internal XAudio2 constants -#ifdef _XBOX - #define XAUDIO2_QUANTUM_NUMERATOR 2 // On Xbox 360, XAudio2 processes audio - #define XAUDIO2_QUANTUM_DENOMINATOR 375 // in 5.333ms chunks (= 2/375 seconds) -#else - #define XAUDIO2_QUANTUM_NUMERATOR 1 // On Windows, XAudio2 processes audio - #define XAUDIO2_QUANTUM_DENOMINATOR 100 // in 10ms chunks (= 1/100 seconds) -#endif -#define XAUDIO2_QUANTUM_MS (1000.0f * XAUDIO2_QUANTUM_NUMERATOR / XAUDIO2_QUANTUM_DENOMINATOR) - -// XAudio2 error codes -#define FACILITY_XAUDIO2 0x896 -#define XAUDIO2_E_INVALID_CALL 0x88960001 // An API call or one of its arguments was illegal -#define XAUDIO2_E_XMA_DECODER_ERROR 0x88960002 // The XMA hardware suffered an unrecoverable error -#define XAUDIO2_E_XAPO_CREATION_FAILED 0x88960003 // XAudio2 failed to initialize an XAPO effect -#define XAUDIO2_E_DEVICE_INVALIDATED 0x88960004 // An audio device became unusable (unplugged, etc) - - -/************************************************************************** - * - * Forward declarations for the XAudio2 interfaces. - * - **************************************************************************/ - -#ifdef __cplusplus - #define FWD_DECLARE(x) interface x -#else - #define FWD_DECLARE(x) typedef interface x x -#endif - -FWD_DECLARE(IXAudio2); -FWD_DECLARE(IXAudio2Voice); -FWD_DECLARE(IXAudio2SourceVoice); -FWD_DECLARE(IXAudio2SubmixVoice); -FWD_DECLARE(IXAudio2MasteringVoice); -FWD_DECLARE(IXAudio2EngineCallback); -FWD_DECLARE(IXAudio2VoiceCallback); - - -/************************************************************************** - * - * XAudio2 structures and enumerations. - * - **************************************************************************/ - -// Used in IXAudio2::Initialize -#ifdef _XBOX - typedef enum XAUDIO2_XBOX_HWTHREAD_SPECIFIER - { - XboxThread0 = 0x01, - XboxThread1 = 0x02, - XboxThread2 = 0x04, - XboxThread3 = 0x08, - XboxThread4 = 0x10, - XboxThread5 = 0x20, - XAUDIO2_ANY_PROCESSOR = XboxThread4, - XAUDIO2_DEFAULT_PROCESSOR = XAUDIO2_ANY_PROCESSOR - } XAUDIO2_XBOX_HWTHREAD_SPECIFIER, XAUDIO2_PROCESSOR; -#else - typedef enum XAUDIO2_WINDOWS_PROCESSOR_SPECIFIER - { - Processor1 = 0x00000001, - Processor2 = 0x00000002, - Processor3 = 0x00000004, - Processor4 = 0x00000008, - Processor5 = 0x00000010, - Processor6 = 0x00000020, - Processor7 = 0x00000040, - Processor8 = 0x00000080, - Processor9 = 0x00000100, - Processor10 = 0x00000200, - Processor11 = 0x00000400, - Processor12 = 0x00000800, - Processor13 = 0x00001000, - Processor14 = 0x00002000, - Processor15 = 0x00004000, - Processor16 = 0x00008000, - Processor17 = 0x00010000, - Processor18 = 0x00020000, - Processor19 = 0x00040000, - Processor20 = 0x00080000, - Processor21 = 0x00100000, - Processor22 = 0x00200000, - Processor23 = 0x00400000, - Processor24 = 0x00800000, - Processor25 = 0x01000000, - Processor26 = 0x02000000, - Processor27 = 0x04000000, - Processor28 = 0x08000000, - Processor29 = 0x10000000, - Processor30 = 0x20000000, - Processor31 = 0x40000000, - Processor32 = 0x80000000, - XAUDIO2_ANY_PROCESSOR = 0xffffffff, - XAUDIO2_DEFAULT_PROCESSOR = XAUDIO2_ANY_PROCESSOR - } XAUDIO2_WINDOWS_PROCESSOR_SPECIFIER, XAUDIO2_PROCESSOR; -#endif - -// Used in XAUDIO2_DEVICE_DETAILS below to describe the types of applications -// that the user has specified each device as a default for. 0 means that the -// device isn't the default for any role. -typedef enum XAUDIO2_DEVICE_ROLE -{ - NotDefaultDevice = 0x0, - DefaultConsoleDevice = 0x1, - DefaultMultimediaDevice = 0x2, - DefaultCommunicationsDevice = 0x4, - DefaultGameDevice = 0x8, - GlobalDefaultDevice = 0xf, - InvalidDeviceRole = ~GlobalDefaultDevice -} XAUDIO2_DEVICE_ROLE; - -// Returned by IXAudio2::GetDeviceDetails -typedef struct XAUDIO2_DEVICE_DETAILS -{ - WCHAR DeviceID[256]; // String identifier for the audio device. - WCHAR DisplayName[256]; // Friendly name suitable for display to a human. - XAUDIO2_DEVICE_ROLE Role; // Roles that the device should be used for. - WAVEFORMATEXTENSIBLE OutputFormat; // The device's native PCM audio output format. -} XAUDIO2_DEVICE_DETAILS; - -// Returned by IXAudio2Voice::GetVoiceDetails -typedef struct XAUDIO2_VOICE_DETAILS -{ - UINT32 CreationFlags; // Flags the voice was created with. - UINT32 InputChannels; // Channels in the voice's input audio. - UINT32 InputSampleRate; // Sample rate of the voice's input audio. -} XAUDIO2_VOICE_DETAILS; - -// Used in XAUDIO2_VOICE_SENDS below -typedef struct XAUDIO2_SEND_DESCRIPTOR -{ - UINT32 Flags; // Either 0 or XAUDIO2_SEND_USEFILTER. - IXAudio2Voice* pOutputVoice; // This send's destination voice. -} XAUDIO2_SEND_DESCRIPTOR; - -// Used in the voice creation functions and in IXAudio2Voice::SetOutputVoices -typedef struct XAUDIO2_VOICE_SENDS -{ - UINT32 SendCount; // Number of sends from this voice. - XAUDIO2_SEND_DESCRIPTOR* pSends; // Array of SendCount send descriptors. -} XAUDIO2_VOICE_SENDS; - -// Used in XAUDIO2_EFFECT_CHAIN below -typedef struct XAUDIO2_EFFECT_DESCRIPTOR -{ - IUnknown* pEffect; // Pointer to the effect object's IUnknown interface. - BOOL InitialState; // TRUE if the effect should begin in the enabled state. - UINT32 OutputChannels; // How many output channels the effect should produce. -} XAUDIO2_EFFECT_DESCRIPTOR; - -// Used in the voice creation functions and in IXAudio2Voice::SetEffectChain -typedef struct XAUDIO2_EFFECT_CHAIN -{ - UINT32 EffectCount; // Number of effects in this voice's effect chain. - XAUDIO2_EFFECT_DESCRIPTOR* pEffectDescriptors; // Array of effect descriptors. -} XAUDIO2_EFFECT_CHAIN; - -// Used in XAUDIO2_FILTER_PARAMETERS below -typedef enum XAUDIO2_FILTER_TYPE -{ - LowPassFilter, // Attenuates frequencies above the cutoff frequency. - BandPassFilter, // Attenuates frequencies outside a given range. - HighPassFilter, // Attenuates frequencies below the cutoff frequency. - NotchFilter // Attenuates frequencies inside a given range. -} XAUDIO2_FILTER_TYPE; - -// Used in IXAudio2Voice::Set/GetFilterParameters and Set/GetOutputFilterParameters -typedef struct XAUDIO2_FILTER_PARAMETERS -{ - XAUDIO2_FILTER_TYPE Type; // Low-pass, band-pass or high-pass. - float Frequency; // Radian frequency (2 * sin(pi*CutoffFrequency/SampleRate)); - // must be >= 0 and <= XAUDIO2_MAX_FILTER_FREQUENCY - // (giving a maximum CutoffFrequency of SampleRate/6). - float OneOverQ; // Reciprocal of the filter's quality factor Q; - // must be > 0 and <= XAUDIO2_MAX_FILTER_ONEOVERQ. -} XAUDIO2_FILTER_PARAMETERS; - -// Used in IXAudio2SourceVoice::SubmitSourceBuffer -typedef struct XAUDIO2_BUFFER -{ - UINT32 Flags; // Either 0 or XAUDIO2_END_OF_STREAM. - UINT32 AudioBytes; // Size of the audio data buffer in bytes. - const BYTE* pAudioData; // Pointer to the audio data buffer. - UINT32 PlayBegin; // First sample in this buffer to be played. - UINT32 PlayLength; // Length of the region to be played in samples, - // or 0 to play the whole buffer. - UINT32 LoopBegin; // First sample of the region to be looped. - UINT32 LoopLength; // Length of the desired loop region in samples, - // or 0 to loop the entire buffer. - UINT32 LoopCount; // Number of times to repeat the loop region, - // or XAUDIO2_LOOP_INFINITE to loop forever. - void* pContext; // Context value to be passed back in callbacks. -} XAUDIO2_BUFFER; - -// Used in IXAudio2SourceVoice::SubmitSourceBuffer when submitting XWMA data. -// NOTE: If an XWMA sound is submitted in more than one buffer, each buffer's -// pDecodedPacketCumulativeBytes[PacketCount-1] value must be subtracted from -// all the entries in the next buffer's pDecodedPacketCumulativeBytes array. -// And whether a sound is submitted in more than one buffer or not, the final -// buffer of the sound should use the XAUDIO2_END_OF_STREAM flag, or else the -// client must call IXAudio2SourceVoice::Discontinuity after submitting it. -typedef struct XAUDIO2_BUFFER_WMA -{ - const UINT32* pDecodedPacketCumulativeBytes; // Decoded packet's cumulative size array. - // Each element is the number of bytes accumulated - // when the corresponding XWMA packet is decoded in - // order. The array must have PacketCount elements. - UINT32 PacketCount; // Number of XWMA packets submitted. Must be >= 1 and - // divide evenly into XAUDIO2_BUFFER.AudioBytes. -} XAUDIO2_BUFFER_WMA; - -// Returned by IXAudio2SourceVoice::GetState -typedef struct XAUDIO2_VOICE_STATE -{ - void* pCurrentBufferContext; // The pContext value provided in the XAUDIO2_BUFFER - // that is currently being processed, or NULL if - // there are no buffers in the queue. - UINT32 BuffersQueued; // Number of buffers currently queued on the voice - // (including the one that is being processed). - UINT64 SamplesPlayed; // Total number of samples produced by the voice since - // it began processing the current audio stream. -} XAUDIO2_VOICE_STATE; - -// Returned by IXAudio2::GetPerformanceData -typedef struct XAUDIO2_PERFORMANCE_DATA -{ - // CPU usage information - UINT64 AudioCyclesSinceLastQuery; // CPU cycles spent on audio processing since the - // last call to StartEngine or GetPerformanceData. - UINT64 TotalCyclesSinceLastQuery; // Total CPU cycles elapsed since the last call - // (only counts the CPU XAudio2 is running on). - UINT32 MinimumCyclesPerQuantum; // Fewest CPU cycles spent processing any one - // audio quantum since the last call. - UINT32 MaximumCyclesPerQuantum; // Most CPU cycles spent processing any one - // audio quantum since the last call. - - // Memory usage information - UINT32 MemoryUsageInBytes; // Total heap space currently in use. - - // Audio latency and glitching information - UINT32 CurrentLatencyInSamples; // Minimum delay from when a sample is read from a - // source buffer to when it reaches the speakers. - UINT32 GlitchesSinceEngineStarted; // Audio dropouts since the engine was started. - - // Data about XAudio2's current workload - UINT32 ActiveSourceVoiceCount; // Source voices currently playing. - UINT32 TotalSourceVoiceCount; // Source voices currently existing. - UINT32 ActiveSubmixVoiceCount; // Submix voices currently playing/existing. - - UINT32 ActiveResamplerCount; // Resample xAPOs currently active. - UINT32 ActiveMatrixMixCount; // MatrixMix xAPOs currently active. - - // Usage of the hardware XMA decoder (Xbox 360 only) - UINT32 ActiveXmaSourceVoices; // Number of source voices decoding XMA data. - UINT32 ActiveXmaStreams; // A voice can use more than one XMA stream. -} XAUDIO2_PERFORMANCE_DATA; - -// Used in IXAudio2::SetDebugConfiguration -typedef struct XAUDIO2_DEBUG_CONFIGURATION -{ - UINT32 TraceMask; // Bitmap of enabled debug message types. - UINT32 BreakMask; // Message types that will break into the debugger. - BOOL LogThreadID; // Whether to log the thread ID with each message. - BOOL LogFileline; // Whether to log the source file and line number. - BOOL LogFunctionName; // Whether to log the function name. - BOOL LogTiming; // Whether to log message timestamps. -} XAUDIO2_DEBUG_CONFIGURATION; - -// Values for the TraceMask and BreakMask bitmaps. Only ERRORS and WARNINGS -// are valid in BreakMask. WARNINGS implies ERRORS, DETAIL implies INFO, and -// FUNC_CALLS implies API_CALLS. By default, TraceMask is ERRORS and WARNINGS -// and all the other settings are zero. -#define XAUDIO2_LOG_ERRORS 0x0001 // For handled errors with serious effects. -#define XAUDIO2_LOG_WARNINGS 0x0002 // For handled errors that may be recoverable. -#define XAUDIO2_LOG_INFO 0x0004 // Informational chit-chat (e.g. state changes). -#define XAUDIO2_LOG_DETAIL 0x0008 // More detailed chit-chat. -#define XAUDIO2_LOG_API_CALLS 0x0010 // Public API function entries and exits. -#define XAUDIO2_LOG_FUNC_CALLS 0x0020 // Internal function entries and exits. -#define XAUDIO2_LOG_TIMING 0x0040 // Delays detected and other timing data. -#define XAUDIO2_LOG_LOCKS 0x0080 // Usage of critical sections and mutexes. -#define XAUDIO2_LOG_MEMORY 0x0100 // Memory heap usage information. -#define XAUDIO2_LOG_STREAMING 0x1000 // Audio streaming information. - - -/************************************************************************** - * - * IXAudio2: Top-level XAudio2 COM interface. - * - **************************************************************************/ - -// Use default arguments if compiling as C++ -#ifdef __cplusplus - #define X2DEFAULT(x) =x -#else - #define X2DEFAULT(x) -#endif - -#undef INTERFACE -#define INTERFACE IXAudio2 -DECLARE_INTERFACE_(IXAudio2, IUnknown) -{ - // NAME: IXAudio2::QueryInterface - // DESCRIPTION: Queries for a given COM interface on the XAudio2 object. - // Only IID_IUnknown and IID_IXAudio2 are supported. - // - // ARGUMENTS: - // riid - IID of the interface to be obtained. - // ppvInterface - Returns a pointer to the requested interface. - // - STDMETHOD(QueryInterface) (THIS_ REFIID riid, __deref_out void** ppvInterface) PURE; - - // NAME: IXAudio2::AddRef - // DESCRIPTION: Adds a reference to the XAudio2 object. - // - STDMETHOD_(ULONG, AddRef) (THIS) PURE; - - // NAME: IXAudio2::Release - // DESCRIPTION: Releases a reference to the XAudio2 object. - // - STDMETHOD_(ULONG, Release) (THIS) PURE; - - // NAME: IXAudio2::GetDeviceCount - // DESCRIPTION: Returns the number of audio output devices available. - // - // ARGUMENTS: - // pCount - Returns the device count. - // - STDMETHOD(GetDeviceCount) (THIS_ __out UINT32* pCount) PURE; - - // NAME: IXAudio2::GetDeviceDetails - // DESCRIPTION: Returns information about the device with the given index. - // - // ARGUMENTS: - // Index - Index of the device to be queried. - // pDeviceDetails - Returns the device details. - // - STDMETHOD(GetDeviceDetails) (THIS_ UINT32 Index, __out XAUDIO2_DEVICE_DETAILS* pDeviceDetails) PURE; - - // NAME: IXAudio2::Initialize - // DESCRIPTION: Sets global XAudio2 parameters and prepares it for use. - // - // ARGUMENTS: - // Flags - Flags specifying the XAudio2 object's behavior. Currently unused. - // XAudio2Processor - An XAUDIO2_PROCESSOR enumeration value that specifies - // the hardware thread (Xbox) or processor (Windows) that XAudio2 will use. - // The enumeration values are platform-specific; platform-independent code - // can use XAUDIO2_DEFAULT_PROCESSOR to use the default on each platform. - // - STDMETHOD(Initialize) (THIS_ UINT32 Flags X2DEFAULT(0), - XAUDIO2_PROCESSOR XAudio2Processor X2DEFAULT(XAUDIO2_DEFAULT_PROCESSOR)) PURE; - - // NAME: IXAudio2::RegisterForCallbacks - // DESCRIPTION: Adds a new client to receive XAudio2's engine callbacks. - // - // ARGUMENTS: - // pCallback - Callback interface to be called during each processing pass. - // - STDMETHOD(RegisterForCallbacks) (__in IXAudio2EngineCallback* pCallback) PURE; - - // NAME: IXAudio2::UnregisterForCallbacks - // DESCRIPTION: Removes an existing receiver of XAudio2 engine callbacks. - // - // ARGUMENTS: - // pCallback - Previously registered callback interface to be removed. - // - STDMETHOD_(void, UnregisterForCallbacks) (__in IXAudio2EngineCallback* pCallback) PURE; - - // NAME: IXAudio2::CreateSourceVoice - // DESCRIPTION: Creates and configures a source voice. - // - // ARGUMENTS: - // ppSourceVoice - Returns the new object's IXAudio2SourceVoice interface. - // pSourceFormat - Format of the audio that will be fed to the voice. - // Flags - XAUDIO2_VOICE flags specifying the source voice's behavior. - // MaxFrequencyRatio - Maximum SetFrequencyRatio argument to be allowed. - // pCallback - Optional pointer to a client-provided callback interface. - // pSendList - Optional list of voices this voice should send audio to. - // pEffectChain - Optional list of effects to apply to the audio data. - // - STDMETHOD(CreateSourceVoice) (THIS_ __deref_out IXAudio2SourceVoice** ppSourceVoice, - __in const WAVEFORMATEX* pSourceFormat, - UINT32 Flags X2DEFAULT(0), - float MaxFrequencyRatio X2DEFAULT(XAUDIO2_DEFAULT_FREQ_RATIO), - __in_opt IXAudio2VoiceCallback* pCallback X2DEFAULT(NULL), - __in_opt const XAUDIO2_VOICE_SENDS* pSendList X2DEFAULT(NULL), - __in_opt const XAUDIO2_EFFECT_CHAIN* pEffectChain X2DEFAULT(NULL)) PURE; - - // NAME: IXAudio2::CreateSubmixVoice - // DESCRIPTION: Creates and configures a submix voice. - // - // ARGUMENTS: - // ppSubmixVoice - Returns the new object's IXAudio2SubmixVoice interface. - // InputChannels - Number of channels in this voice's input audio data. - // InputSampleRate - Sample rate of this voice's input audio data. - // Flags - XAUDIO2_VOICE flags specifying the submix voice's behavior. - // ProcessingStage - Arbitrary number that determines the processing order. - // pSendList - Optional list of voices this voice should send audio to. - // pEffectChain - Optional list of effects to apply to the audio data. - // - STDMETHOD(CreateSubmixVoice) (THIS_ __deref_out IXAudio2SubmixVoice** ppSubmixVoice, - UINT32 InputChannels, UINT32 InputSampleRate, - UINT32 Flags X2DEFAULT(0), UINT32 ProcessingStage X2DEFAULT(0), - __in_opt const XAUDIO2_VOICE_SENDS* pSendList X2DEFAULT(NULL), - __in_opt const XAUDIO2_EFFECT_CHAIN* pEffectChain X2DEFAULT(NULL)) PURE; - - - // NAME: IXAudio2::CreateMasteringVoice - // DESCRIPTION: Creates and configures a mastering voice. - // - // ARGUMENTS: - // ppMasteringVoice - Returns the new object's IXAudio2MasteringVoice interface. - // InputChannels - Number of channels in this voice's input audio data. - // InputSampleRate - Sample rate of this voice's input audio data. - // Flags - XAUDIO2_VOICE flags specifying the mastering voice's behavior. - // DeviceIndex - Identifier of the device to receive the output audio. - // pEffectChain - Optional list of effects to apply to the audio data. - // - STDMETHOD(CreateMasteringVoice) (THIS_ __deref_out IXAudio2MasteringVoice** ppMasteringVoice, - UINT32 InputChannels X2DEFAULT(XAUDIO2_DEFAULT_CHANNELS), - UINT32 InputSampleRate X2DEFAULT(XAUDIO2_DEFAULT_SAMPLERATE), - UINT32 Flags X2DEFAULT(0), UINT32 DeviceIndex X2DEFAULT(0), - __in_opt const XAUDIO2_EFFECT_CHAIN* pEffectChain X2DEFAULT(NULL)) PURE; - - // NAME: IXAudio2::StartEngine - // DESCRIPTION: Creates and starts the audio processing thread. - // - STDMETHOD(StartEngine) (THIS) PURE; - - // NAME: IXAudio2::StopEngine - // DESCRIPTION: Stops and destroys the audio processing thread. - // - STDMETHOD_(void, StopEngine) (THIS) PURE; - - // NAME: IXAudio2::CommitChanges - // DESCRIPTION: Atomically applies a set of operations previously tagged - // with a given identifier. - // - // ARGUMENTS: - // OperationSet - Identifier of the set of operations to be applied. - // - STDMETHOD(CommitChanges) (THIS_ UINT32 OperationSet) PURE; - - // NAME: IXAudio2::GetPerformanceData - // DESCRIPTION: Returns current resource usage details: memory, CPU, etc. - // - // ARGUMENTS: - // pPerfData - Returns the performance data structure. - // - STDMETHOD_(void, GetPerformanceData) (THIS_ __out XAUDIO2_PERFORMANCE_DATA* pPerfData) PURE; - - // NAME: IXAudio2::SetDebugConfiguration - // DESCRIPTION: Configures XAudio2's debug output (in debug builds only). - // - // ARGUMENTS: - // pDebugConfiguration - Structure describing the debug output behavior. - // pReserved - Optional parameter; must be NULL. - // - STDMETHOD_(void, SetDebugConfiguration) (THIS_ __in_opt const XAUDIO2_DEBUG_CONFIGURATION* pDebugConfiguration, - __in_opt __reserved void* pReserved X2DEFAULT(NULL)) PURE; -}; - - -/************************************************************************** - * - * IXAudio2Voice: Base voice management interface. - * - **************************************************************************/ - -#undef INTERFACE -#define INTERFACE IXAudio2Voice -DECLARE_INTERFACE(IXAudio2Voice) -{ - // These methods are declared in a macro so that the same declarations - // can be used in the derived voice types (IXAudio2SourceVoice, etc). - - #define Declare_IXAudio2Voice_Methods() \ - \ - /* NAME: IXAudio2Voice::GetVoiceDetails - // DESCRIPTION: Returns the basic characteristics of this voice. - // - // ARGUMENTS: - // pVoiceDetails - Returns the voice's details. - */\ - STDMETHOD_(void, GetVoiceDetails) (THIS_ __out XAUDIO2_VOICE_DETAILS* pVoiceDetails) PURE; \ - \ - /* NAME: IXAudio2Voice::SetOutputVoices - // DESCRIPTION: Replaces the set of submix/mastering voices that receive - // this voice's output. - // - // ARGUMENTS: - // pSendList - Optional list of voices this voice should send audio to. - */\ - STDMETHOD(SetOutputVoices) (THIS_ __in_opt const XAUDIO2_VOICE_SENDS* pSendList) PURE; \ - \ - /* NAME: IXAudio2Voice::SetEffectChain - // DESCRIPTION: Replaces this voice's current effect chain with a new one. - // - // ARGUMENTS: - // pEffectChain - Structure describing the new effect chain to be used. - */\ - STDMETHOD(SetEffectChain) (THIS_ __in_opt const XAUDIO2_EFFECT_CHAIN* pEffectChain) PURE; \ - \ - /* NAME: IXAudio2Voice::EnableEffect - // DESCRIPTION: Enables an effect in this voice's effect chain. - // - // ARGUMENTS: - // EffectIndex - Index of an effect within this voice's effect chain. - // OperationSet - Used to identify this call as part of a deferred batch. - */\ - STDMETHOD(EnableEffect) (THIS_ UINT32 EffectIndex, \ - UINT32 OperationSet X2DEFAULT(XAUDIO2_COMMIT_NOW)) PURE; \ - \ - /* NAME: IXAudio2Voice::DisableEffect - // DESCRIPTION: Disables an effect in this voice's effect chain. - // - // ARGUMENTS: - // EffectIndex - Index of an effect within this voice's effect chain. - // OperationSet - Used to identify this call as part of a deferred batch. - */\ - STDMETHOD(DisableEffect) (THIS_ UINT32 EffectIndex, \ - UINT32 OperationSet X2DEFAULT(XAUDIO2_COMMIT_NOW)) PURE; \ - \ - /* NAME: IXAudio2Voice::GetEffectState - // DESCRIPTION: Returns the running state of an effect. - // - // ARGUMENTS: - // EffectIndex - Index of an effect within this voice's effect chain. - // pEnabled - Returns the enabled/disabled state of the given effect. - */\ - STDMETHOD_(void, GetEffectState) (THIS_ UINT32 EffectIndex, __out BOOL* pEnabled) PURE; \ - \ - /* NAME: IXAudio2Voice::SetEffectParameters - // DESCRIPTION: Sets effect-specific parameters. - // - // REMARKS: Unlike IXAPOParameters::SetParameters, this method may - // be called from any thread. XAudio2 implements - // appropriate synchronization to copy the parameters to the - // realtime audio processing thread. - // - // ARGUMENTS: - // EffectIndex - Index of an effect within this voice's effect chain. - // pParameters - Pointer to an effect-specific parameters block. - // ParametersByteSize - Size of the pParameters array in bytes. - // OperationSet - Used to identify this call as part of a deferred batch. - */\ - STDMETHOD(SetEffectParameters) (THIS_ UINT32 EffectIndex, \ - __in_bcount(ParametersByteSize) const void* pParameters, \ - UINT32 ParametersByteSize, \ - UINT32 OperationSet X2DEFAULT(XAUDIO2_COMMIT_NOW)) PURE; \ - \ - /* NAME: IXAudio2Voice::GetEffectParameters - // DESCRIPTION: Obtains the current effect-specific parameters. - // - // ARGUMENTS: - // EffectIndex - Index of an effect within this voice's effect chain. - // pParameters - Returns the current values of the effect-specific parameters. - // ParametersByteSize - Size of the pParameters array in bytes. - */\ - STDMETHOD(GetEffectParameters) (THIS_ UINT32 EffectIndex, \ - __out_bcount(ParametersByteSize) void* pParameters, \ - UINT32 ParametersByteSize) PURE; \ - \ - /* NAME: IXAudio2Voice::SetFilterParameters - // DESCRIPTION: Sets this voice's filter parameters. - // - // ARGUMENTS: - // pParameters - Pointer to the filter's parameter structure. - // OperationSet - Used to identify this call as part of a deferred batch. - */\ - STDMETHOD(SetFilterParameters) (THIS_ __in const XAUDIO2_FILTER_PARAMETERS* pParameters, \ - UINT32 OperationSet X2DEFAULT(XAUDIO2_COMMIT_NOW)) PURE; \ - \ - /* NAME: IXAudio2Voice::GetFilterParameters - // DESCRIPTION: Returns this voice's current filter parameters. - // - // ARGUMENTS: - // pParameters - Returns the filter parameters. - */\ - STDMETHOD_(void, GetFilterParameters) (THIS_ __out XAUDIO2_FILTER_PARAMETERS* pParameters) PURE; \ - \ - /* NAME: IXAudio2Voice::SetOutputFilterParameters - // DESCRIPTION: Sets the filter parameters on one of this voice's sends. - // - // ARGUMENTS: - // pDestinationVoice - Destination voice of the send whose filter parameters will be set. - // pParameters - Pointer to the filter's parameter structure. - // OperationSet - Used to identify this call as part of a deferred batch. - */\ - STDMETHOD(SetOutputFilterParameters) (THIS_ __in_opt IXAudio2Voice* pDestinationVoice, \ - __in const XAUDIO2_FILTER_PARAMETERS* pParameters, \ - UINT32 OperationSet X2DEFAULT(XAUDIO2_COMMIT_NOW)) PURE; \ - \ - /* NAME: IXAudio2Voice::GetOutputFilterParameters - // DESCRIPTION: Returns the filter parameters from one of this voice's sends. - // - // ARGUMENTS: - // pDestinationVoice - Destination voice of the send whose filter parameters will be read. - // pParameters - Returns the filter parameters. - */\ - STDMETHOD_(void, GetOutputFilterParameters) (THIS_ __in_opt IXAudio2Voice* pDestinationVoice, \ - __out XAUDIO2_FILTER_PARAMETERS* pParameters) PURE; \ - \ - /* NAME: IXAudio2Voice::SetVolume - // DESCRIPTION: Sets this voice's overall volume level. - // - // ARGUMENTS: - // Volume - New overall volume level to be used, as an amplitude factor. - // OperationSet - Used to identify this call as part of a deferred batch. - */\ - STDMETHOD(SetVolume) (THIS_ float Volume, \ - UINT32 OperationSet X2DEFAULT(XAUDIO2_COMMIT_NOW)) PURE; \ - \ - /* NAME: IXAudio2Voice::GetVolume - // DESCRIPTION: Obtains this voice's current overall volume level. - // - // ARGUMENTS: - // pVolume: Returns the voice's current overall volume level. - */\ - STDMETHOD_(void, GetVolume) (THIS_ __out float* pVolume) PURE; \ - \ - /* NAME: IXAudio2Voice::SetChannelVolumes - // DESCRIPTION: Sets this voice's per-channel volume levels. - // - // ARGUMENTS: - // Channels - Used to confirm the voice's channel count. - // pVolumes - Array of per-channel volume levels to be used. - // OperationSet - Used to identify this call as part of a deferred batch. - */\ - STDMETHOD(SetChannelVolumes) (THIS_ UINT32 Channels, __in_ecount(Channels) const float* pVolumes, \ - UINT32 OperationSet X2DEFAULT(XAUDIO2_COMMIT_NOW)) PURE; \ - \ - /* NAME: IXAudio2Voice::GetChannelVolumes - // DESCRIPTION: Returns this voice's current per-channel volume levels. - // - // ARGUMENTS: - // Channels - Used to confirm the voice's channel count. - // pVolumes - Returns an array of the current per-channel volume levels. - */\ - STDMETHOD_(void, GetChannelVolumes) (THIS_ UINT32 Channels, __out_ecount(Channels) float* pVolumes) PURE; \ - \ - /* NAME: IXAudio2Voice::SetOutputMatrix - // DESCRIPTION: Sets the volume levels used to mix from each channel of this - // voice's output audio to each channel of a given destination - // voice's input audio. - // - // ARGUMENTS: - // pDestinationVoice - The destination voice whose mix matrix to change. - // SourceChannels - Used to confirm this voice's output channel count - // (the number of channels produced by the last effect in the chain). - // DestinationChannels - Confirms the destination voice's input channels. - // pLevelMatrix - Array of [SourceChannels * DestinationChannels] send - // levels. The level used to send from source channel S to destination - // channel D should be in pLevelMatrix[S + SourceChannels * D]. - // OperationSet - Used to identify this call as part of a deferred batch. - */\ - STDMETHOD(SetOutputMatrix) (THIS_ __in_opt IXAudio2Voice* pDestinationVoice, \ - UINT32 SourceChannels, UINT32 DestinationChannels, \ - __in_ecount(SourceChannels * DestinationChannels) const float* pLevelMatrix, \ - UINT32 OperationSet X2DEFAULT(XAUDIO2_COMMIT_NOW)) PURE; \ - \ - /* NAME: IXAudio2Voice::GetOutputMatrix - // DESCRIPTION: Obtains the volume levels used to send each channel of this - // voice's output audio to each channel of a given destination - // voice's input audio. - // - // ARGUMENTS: - // pDestinationVoice - The destination voice whose mix matrix to obtain. - // SourceChannels - Used to confirm this voice's output channel count - // (the number of channels produced by the last effect in the chain). - // DestinationChannels - Confirms the destination voice's input channels. - // pLevelMatrix - Array of send levels, as above. - */\ - STDMETHOD_(void, GetOutputMatrix) (THIS_ __in_opt IXAudio2Voice* pDestinationVoice, \ - UINT32 SourceChannels, UINT32 DestinationChannels, \ - __out_ecount(SourceChannels * DestinationChannels) float* pLevelMatrix) PURE; \ - \ - /* NAME: IXAudio2Voice::DestroyVoice - // DESCRIPTION: Destroys this voice, stopping it if necessary and removing - // it from the XAudio2 graph. - */\ - STDMETHOD_(void, DestroyVoice) (THIS) PURE - - Declare_IXAudio2Voice_Methods(); -}; - - -/************************************************************************** - * - * IXAudio2SourceVoice: Source voice management interface. - * - **************************************************************************/ - -#undef INTERFACE -#define INTERFACE IXAudio2SourceVoice -DECLARE_INTERFACE_(IXAudio2SourceVoice, IXAudio2Voice) -{ - // Methods from IXAudio2Voice base interface - Declare_IXAudio2Voice_Methods(); - - // NAME: IXAudio2SourceVoice::Start - // DESCRIPTION: Makes this voice start consuming and processing audio. - // - // ARGUMENTS: - // Flags - Flags controlling how the voice should be started. - // OperationSet - Used to identify this call as part of a deferred batch. - // - STDMETHOD(Start) (THIS_ UINT32 Flags X2DEFAULT(0), UINT32 OperationSet X2DEFAULT(XAUDIO2_COMMIT_NOW)) PURE; - - // NAME: IXAudio2SourceVoice::Stop - // DESCRIPTION: Makes this voice stop consuming audio. - // - // ARGUMENTS: - // Flags - Flags controlling how the voice should be stopped. - // OperationSet - Used to identify this call as part of a deferred batch. - // - STDMETHOD(Stop) (THIS_ UINT32 Flags X2DEFAULT(0), UINT32 OperationSet X2DEFAULT(XAUDIO2_COMMIT_NOW)) PURE; - - // NAME: IXAudio2SourceVoice::SubmitSourceBuffer - // DESCRIPTION: Adds a new audio buffer to this voice's input queue. - // - // ARGUMENTS: - // pBuffer - Pointer to the buffer structure to be queued. - // pBufferWMA - Additional structure used only when submitting XWMA data. - // - STDMETHOD(SubmitSourceBuffer) (THIS_ __in const XAUDIO2_BUFFER* pBuffer, __in_opt const XAUDIO2_BUFFER_WMA* pBufferWMA X2DEFAULT(NULL)) PURE; - - // NAME: IXAudio2SourceVoice::FlushSourceBuffers - // DESCRIPTION: Removes all pending audio buffers from this voice's queue. - // - STDMETHOD(FlushSourceBuffers) (THIS) PURE; - - // NAME: IXAudio2SourceVoice::Discontinuity - // DESCRIPTION: Notifies the voice of an intentional break in the stream of - // audio buffers (e.g. the end of a sound), to prevent XAudio2 - // from interpreting an empty buffer queue as a glitch. - // - STDMETHOD(Discontinuity) (THIS) PURE; - - // NAME: IXAudio2SourceVoice::ExitLoop - // DESCRIPTION: Breaks out of the current loop when its end is reached. - // - // ARGUMENTS: - // OperationSet - Used to identify this call as part of a deferred batch. - // - STDMETHOD(ExitLoop) (THIS_ UINT32 OperationSet X2DEFAULT(XAUDIO2_COMMIT_NOW)) PURE; - - // NAME: IXAudio2SourceVoice::GetState - // DESCRIPTION: Returns the number of buffers currently queued on this voice, - // the pContext value associated with the currently processing - // buffer (if any), and other voice state information. - // - // ARGUMENTS: - // pVoiceState - Returns the state information. - // - STDMETHOD_(void, GetState) (THIS_ __out XAUDIO2_VOICE_STATE* pVoiceState) PURE; - - // NAME: IXAudio2SourceVoice::SetFrequencyRatio - // DESCRIPTION: Sets this voice's frequency adjustment, i.e. its pitch. - // - // ARGUMENTS: - // Ratio - Frequency change, expressed as source frequency / target frequency. - // OperationSet - Used to identify this call as part of a deferred batch. - // - STDMETHOD(SetFrequencyRatio) (THIS_ float Ratio, - UINT32 OperationSet X2DEFAULT(XAUDIO2_COMMIT_NOW)) PURE; - - // NAME: IXAudio2SourceVoice::GetFrequencyRatio - // DESCRIPTION: Returns this voice's current frequency adjustment ratio. - // - // ARGUMENTS: - // pRatio - Returns the frequency adjustment. - // - STDMETHOD_(void, GetFrequencyRatio) (THIS_ __out float* pRatio) PURE; - - // NAME: IXAudio2SourceVoice::SetSourceSampleRate - // DESCRIPTION: Reconfigures this voice to treat its source data as being - // at a different sample rate than the original one specified - // in CreateSourceVoice's pSourceFormat argument. - // - // ARGUMENTS: - // UINT32 - The intended sample rate of further submitted source data. - // - STDMETHOD(SetSourceSampleRate) (THIS_ UINT32 NewSourceSampleRate) PURE; -}; - - -/************************************************************************** - * - * IXAudio2SubmixVoice: Submixing voice management interface. - * - **************************************************************************/ - -#undef INTERFACE -#define INTERFACE IXAudio2SubmixVoice -DECLARE_INTERFACE_(IXAudio2SubmixVoice, IXAudio2Voice) -{ - // Methods from IXAudio2Voice base interface - Declare_IXAudio2Voice_Methods(); - - // There are currently no methods specific to submix voices. -}; - - -/************************************************************************** - * - * IXAudio2MasteringVoice: Mastering voice management interface. - * - **************************************************************************/ - -#undef INTERFACE -#define INTERFACE IXAudio2MasteringVoice -DECLARE_INTERFACE_(IXAudio2MasteringVoice, IXAudio2Voice) -{ - // Methods from IXAudio2Voice base interface - Declare_IXAudio2Voice_Methods(); - - // There are currently no methods specific to mastering voices. -}; - - -/************************************************************************** - * - * IXAudio2EngineCallback: Client notification interface for engine events. - * - * REMARKS: Contains methods to notify the client when certain events happen - * in the XAudio2 engine. This interface should be implemented by - * the client. XAudio2 will call these methods via the interface - * pointer provided by the client when it calls XAudio2Create or - * IXAudio2::Initialize. - * - **************************************************************************/ - -#undef INTERFACE -#define INTERFACE IXAudio2EngineCallback -DECLARE_INTERFACE(IXAudio2EngineCallback) -{ - // Called by XAudio2 just before an audio processing pass begins. - STDMETHOD_(void, OnProcessingPassStart) (THIS) PURE; - - // Called just after an audio processing pass ends. - STDMETHOD_(void, OnProcessingPassEnd) (THIS) PURE; - - // Called in the event of a critical system error which requires XAudio2 - // to be closed down and restarted. The error code is given in Error. - STDMETHOD_(void, OnCriticalError) (THIS_ HRESULT Error) PURE; -}; - - -/************************************************************************** - * - * IXAudio2VoiceCallback: Client notification interface for voice events. - * - * REMARKS: Contains methods to notify the client when certain events happen - * in an XAudio2 voice. This interface should be implemented by the - * client. XAudio2 will call these methods via an interface pointer - * provided by the client in the IXAudio2::CreateSourceVoice call. - * - **************************************************************************/ - -#undef INTERFACE -#define INTERFACE IXAudio2VoiceCallback -DECLARE_INTERFACE(IXAudio2VoiceCallback) -{ - // Called just before this voice's processing pass begins. - STDMETHOD_(void, OnVoiceProcessingPassStart) (THIS_ UINT32 BytesRequired) PURE; - - // Called just after this voice's processing pass ends. - STDMETHOD_(void, OnVoiceProcessingPassEnd) (THIS) PURE; - - // Called when this voice has just finished playing a buffer stream - // (as marked with the XAUDIO2_END_OF_STREAM flag on the last buffer). - STDMETHOD_(void, OnStreamEnd) (THIS) PURE; - - // Called when this voice is about to start processing a new buffer. - STDMETHOD_(void, OnBufferStart) (THIS_ void* pBufferContext) PURE; - - // Called when this voice has just finished processing a buffer. - // The buffer can now be reused or destroyed. - STDMETHOD_(void, OnBufferEnd) (THIS_ void* pBufferContext) PURE; - - // Called when this voice has just reached the end position of a loop. - STDMETHOD_(void, OnLoopEnd) (THIS_ void* pBufferContext) PURE; - - // Called in the event of a critical error during voice processing, - // such as a failing xAPO or an error from the hardware XMA decoder. - // The voice may have to be destroyed and re-created to recover from - // the error. The callback arguments report which buffer was being - // processed when the error occurred, and its HRESULT code. - STDMETHOD_(void, OnVoiceError) (THIS_ void* pBufferContext, HRESULT Error) PURE; -}; - - -/************************************************************************** - * - * Macros to make it easier to use the XAudio2 COM interfaces in C code. - * - **************************************************************************/ - -#ifndef __cplusplus - -// IXAudio2 -#define IXAudio2_QueryInterface(This,riid,ppvInterface) ((This)->lpVtbl->QueryInterface(This,riid,ppvInterface)) -#define IXAudio2_AddRef(This) ((This)->lpVtbl->AddRef(This)) -#define IXAudio2_Release(This) ((This)->lpVtbl->Release(This)) -#define IXAudio2_GetDeviceCount(This,puCount) ((This)->lpVtbl->GetDeviceCount(This,puCount)) -#define IXAudio2_GetDeviceDetails(This,Index,pDeviceDetails) ((This)->lpVtbl->GetDeviceDetails(This,Index,pDeviceDetails)) -#define IXAudio2_Initialize(This,Flags,XAudio2Processor) ((This)->lpVtbl->Initialize(This,Flags,XAudio2Processor)) -#define IXAudio2_CreateSourceVoice(This,ppSourceVoice,pSourceFormat,Flags,MaxFrequencyRatio,pCallback,pSendList,pEffectChain) ((This)->lpVtbl->CreateSourceVoice(This,ppSourceVoice,pSourceFormat,Flags,MaxFrequencyRatio,pCallback,pSendList,pEffectChain)) -#define IXAudio2_CreateSubmixVoice(This,ppSubmixVoice,InputChannels,InputSampleRate,Flags,ProcessingStage,pSendList,pEffectChain) ((This)->lpVtbl->CreateSubmixVoice(This,ppSubmixVoice,InputChannels,InputSampleRate,Flags,ProcessingStage,pSendList,pEffectChain)) -#define IXAudio2_CreateMasteringVoice(This,ppMasteringVoice,InputChannels,InputSampleRate,Flags,DeviceIndex,pEffectChain) ((This)->lpVtbl->CreateMasteringVoice(This,ppMasteringVoice,InputChannels,InputSampleRate,Flags,DeviceIndex,pEffectChain)) -#define IXAudio2_StartEngine(This) ((This)->lpVtbl->StartEngine(This)) -#define IXAudio2_StopEngine(This) ((This)->lpVtbl->StopEngine(This)) -#define IXAudio2_CommitChanges(This,OperationSet) ((This)->lpVtbl->CommitChanges(This,OperationSet)) -#define IXAudio2_GetPerformanceData(This,pPerfData) ((This)->lpVtbl->GetPerformanceData(This,pPerfData)) -#define IXAudio2_SetDebugConfiguration(This,pDebugConfiguration,pReserved) ((This)->lpVtbl->SetDebugConfiguration(This,pDebugConfiguration,pReserved)) - -// IXAudio2Voice -#define IXAudio2Voice_GetVoiceDetails(This,pVoiceDetails) ((This)->lpVtbl->GetVoiceDetails(This,pVoiceDetails)) -#define IXAudio2Voice_SetOutputVoices(This,pSendList) ((This)->lpVtbl->SetOutputVoices(This,pSendList)) -#define IXAudio2Voice_SetEffectChain(This,pEffectChain) ((This)->lpVtbl->SetEffectChain(This,pEffectChain)) -#define IXAudio2Voice_EnableEffect(This,EffectIndex,OperationSet) ((This)->lpVtbl->EnableEffect(This,EffectIndex,OperationSet)) -#define IXAudio2Voice_DisableEffect(This,EffectIndex,OperationSet) ((This)->lpVtbl->DisableEffect(This,EffectIndex,OperationSet)) -#define IXAudio2Voice_GetEffectState(This,EffectIndex,pEnabled) ((This)->lpVtbl->GetEffectState(This,EffectIndex,pEnabled)) -#define IXAudio2Voice_SetEffectParameters(This,EffectIndex,pParameters,ParametersByteSize, OperationSet) ((This)->lpVtbl->SetEffectParameters(This,EffectIndex,pParameters,ParametersByteSize,OperationSet)) -#define IXAudio2Voice_GetEffectParameters(This,EffectIndex,pParameters,ParametersByteSize) ((This)->lpVtbl->GetEffectParameters(This,EffectIndex,pParameters,ParametersByteSize)) -#define IXAudio2Voice_SetFilterParameters(This,pParameters,OperationSet) ((This)->lpVtbl->SetFilterParameters(This,pParameters,OperationSet)) -#define IXAudio2Voice_GetFilterParameters(This,pParameters) ((This)->lpVtbl->GetFilterParameters(This,pParameters)) -#define IXAudio2Voice_SetOutputFilterParameters(This,pDestinationVoice,pParameters,OperationSet) ((This)->lpVtbl->SetOutputFilterParameters(This,pDestinationVoice,pParameters,OperationSet)) -#define IXAudio2Voice_GetOutputFilterParameters(This,pDestinationVoice,pParameters) ((This)->lpVtbl->GetOutputFilterParameters(This,pDestinationVoice,pParameters)) -#define IXAudio2Voice_SetVolume(This,Volume,OperationSet) ((This)->lpVtbl->SetVolume(This,Volume,OperationSet)) -#define IXAudio2Voice_GetVolume(This,pVolume) ((This)->lpVtbl->GetVolume(This,pVolume)) -#define IXAudio2Voice_SetChannelVolumes(This,Channels,pVolumes,OperationSet) ((This)->lpVtbl->SetChannelVolumes(This,Channels,pVolumes,OperationSet)) -#define IXAudio2Voice_GetChannelVolumes(This,Channels,pVolumes) ((This)->lpVtbl->GetChannelVolumes(This,Channels,pVolumes)) -#define IXAudio2Voice_SetOutputMatrix(This,pDestinationVoice,SourceChannels,DestinationChannels,pLevelMatrix,OperationSet) ((This)->lpVtbl->SetOutputMatrix(This,pDestinationVoice,SourceChannels,DestinationChannels,pLevelMatrix,OperationSet)) -#define IXAudio2Voice_GetOutputMatrix(This,pDestinationVoice,SourceChannels,DestinationChannels,pLevelMatrix) ((This)->lpVtbl->GetOutputMatrix(This,pDestinationVoice,SourceChannels,DestinationChannels,pLevelMatrix)) -#define IXAudio2Voice_DestroyVoice(This) ((This)->lpVtbl->DestroyVoice(This)) - -// IXAudio2SourceVoice -#define IXAudio2SourceVoice_GetVoiceDetails IXAudio2Voice_GetVoiceDetails -#define IXAudio2SourceVoice_SetOutputVoices IXAudio2Voice_SetOutputVoices -#define IXAudio2SourceVoice_SetEffectChain IXAudio2Voice_SetEffectChain -#define IXAudio2SourceVoice_EnableEffect IXAudio2Voice_EnableEffect -#define IXAudio2SourceVoice_DisableEffect IXAudio2Voice_DisableEffect -#define IXAudio2SourceVoice_GetEffectState IXAudio2Voice_GetEffectState -#define IXAudio2SourceVoice_SetEffectParameters IXAudio2Voice_SetEffectParameters -#define IXAudio2SourceVoice_GetEffectParameters IXAudio2Voice_GetEffectParameters -#define IXAudio2SourceVoice_SetFilterParameters IXAudio2Voice_SetFilterParameters -#define IXAudio2SourceVoice_GetFilterParameters IXAudio2Voice_GetFilterParameters -#define IXAudio2SourceVoice_SetOutputFilterParameters IXAudio2Voice_SetOutputFilterParameters -#define IXAudio2SourceVoice_GetOutputFilterParameters IXAudio2Voice_GetOutputFilterParameters -#define IXAudio2SourceVoice_SetVolume IXAudio2Voice_SetVolume -#define IXAudio2SourceVoice_GetVolume IXAudio2Voice_GetVolume -#define IXAudio2SourceVoice_SetChannelVolumes IXAudio2Voice_SetChannelVolumes -#define IXAudio2SourceVoice_GetChannelVolumes IXAudio2Voice_GetChannelVolumes -#define IXAudio2SourceVoice_SetOutputMatrix IXAudio2Voice_SetOutputMatrix -#define IXAudio2SourceVoice_GetOutputMatrix IXAudio2Voice_GetOutputMatrix -#define IXAudio2SourceVoice_DestroyVoice IXAudio2Voice_DestroyVoice -#define IXAudio2SourceVoice_Start(This,Flags,OperationSet) ((This)->lpVtbl->Start(This,Flags,OperationSet)) -#define IXAudio2SourceVoice_Stop(This,Flags,OperationSet) ((This)->lpVtbl->Stop(This,Flags,OperationSet)) -#define IXAudio2SourceVoice_SubmitSourceBuffer(This,pBuffer,pBufferWMA) ((This)->lpVtbl->SubmitSourceBuffer(This,pBuffer,pBufferWMA)) -#define IXAudio2SourceVoice_FlushSourceBuffers(This) ((This)->lpVtbl->FlushSourceBuffers(This)) -#define IXAudio2SourceVoice_Discontinuity(This) ((This)->lpVtbl->Discontinuity(This)) -#define IXAudio2SourceVoice_ExitLoop(This,OperationSet) ((This)->lpVtbl->ExitLoop(This,OperationSet)) -#define IXAudio2SourceVoice_GetState(This,pVoiceState) ((This)->lpVtbl->GetState(This,pVoiceState)) -#define IXAudio2SourceVoice_SetFrequencyRatio(This,Ratio,OperationSet) ((This)->lpVtbl->SetFrequencyRatio(This,Ratio,OperationSet)) -#define IXAudio2SourceVoice_GetFrequencyRatio(This,pRatio) ((This)->lpVtbl->GetFrequencyRatio(This,pRatio)) -#define IXAudio2SourceVoice_SetSourceSampleRate(This,NewSourceSampleRate) ((This)->lpVtbl->SetSourceSampleRate(This,NewSourceSampleRate)) - -// IXAudio2SubmixVoice -#define IXAudio2SubmixVoice_GetVoiceDetails IXAudio2Voice_GetVoiceDetails -#define IXAudio2SubmixVoice_SetOutputVoices IXAudio2Voice_SetOutputVoices -#define IXAudio2SubmixVoice_SetEffectChain IXAudio2Voice_SetEffectChain -#define IXAudio2SubmixVoice_EnableEffect IXAudio2Voice_EnableEffect -#define IXAudio2SubmixVoice_DisableEffect IXAudio2Voice_DisableEffect -#define IXAudio2SubmixVoice_GetEffectState IXAudio2Voice_GetEffectState -#define IXAudio2SubmixVoice_SetEffectParameters IXAudio2Voice_SetEffectParameters -#define IXAudio2SubmixVoice_GetEffectParameters IXAudio2Voice_GetEffectParameters -#define IXAudio2SubmixVoice_SetFilterParameters IXAudio2Voice_SetFilterParameters -#define IXAudio2SubmixVoice_GetFilterParameters IXAudio2Voice_GetFilterParameters -#define IXAudio2SubmixVoice_SetOutputFilterParameters IXAudio2Voice_SetOutputFilterParameters -#define IXAudio2SubmixVoice_GetOutputFilterParameters IXAudio2Voice_GetOutputFilterParameters -#define IXAudio2SubmixVoice_SetVolume IXAudio2Voice_SetVolume -#define IXAudio2SubmixVoice_GetVolume IXAudio2Voice_GetVolume -#define IXAudio2SubmixVoice_SetChannelVolumes IXAudio2Voice_SetChannelVolumes -#define IXAudio2SubmixVoice_GetChannelVolumes IXAudio2Voice_GetChannelVolumes -#define IXAudio2SubmixVoice_SetOutputMatrix IXAudio2Voice_SetOutputMatrix -#define IXAudio2SubmixVoice_GetOutputMatrix IXAudio2Voice_GetOutputMatrix -#define IXAudio2SubmixVoice_DestroyVoice IXAudio2Voice_DestroyVoice - -// IXAudio2MasteringVoice -#define IXAudio2MasteringVoice_GetVoiceDetails IXAudio2Voice_GetVoiceDetails -#define IXAudio2MasteringVoice_SetOutputVoices IXAudio2Voice_SetOutputVoices -#define IXAudio2MasteringVoice_SetEffectChain IXAudio2Voice_SetEffectChain -#define IXAudio2MasteringVoice_EnableEffect IXAudio2Voice_EnableEffect -#define IXAudio2MasteringVoice_DisableEffect IXAudio2Voice_DisableEffect -#define IXAudio2MasteringVoice_GetEffectState IXAudio2Voice_GetEffectState -#define IXAudio2MasteringVoice_SetEffectParameters IXAudio2Voice_SetEffectParameters -#define IXAudio2MasteringVoice_GetEffectParameters IXAudio2Voice_GetEffectParameters -#define IXAudio2MasteringVoice_SetFilterParameters IXAudio2Voice_SetFilterParameters -#define IXAudio2MasteringVoice_GetFilterParameters IXAudio2Voice_GetFilterParameters -#define IXAudio2MasteringVoice_SetOutputFilterParameters IXAudio2Voice_SetOutputFilterParameters -#define IXAudio2MasteringVoice_GetOutputFilterParameters IXAudio2Voice_GetOutputFilterParameters -#define IXAudio2MasteringVoice_SetVolume IXAudio2Voice_SetVolume -#define IXAudio2MasteringVoice_GetVolume IXAudio2Voice_GetVolume -#define IXAudio2MasteringVoice_SetChannelVolumes IXAudio2Voice_SetChannelVolumes -#define IXAudio2MasteringVoice_GetChannelVolumes IXAudio2Voice_GetChannelVolumes -#define IXAudio2MasteringVoice_SetOutputMatrix IXAudio2Voice_SetOutputMatrix -#define IXAudio2MasteringVoice_GetOutputMatrix IXAudio2Voice_GetOutputMatrix -#define IXAudio2MasteringVoice_DestroyVoice IXAudio2Voice_DestroyVoice - -#endif // #ifndef __cplusplus - - -/************************************************************************** - * - * Utility functions used to convert from pitch in semitones and volume - * in decibels to the frequency and amplitude ratio units used by XAudio2. - * These are only defined if the client #defines XAUDIO2_HELPER_FUNCTIONS - * prior to #including xaudio2.h. - * - **************************************************************************/ - -#ifdef XAUDIO2_HELPER_FUNCTIONS - -#define _USE_MATH_DEFINES // Make math.h define M_PI -#include // For powf, log10f, sinf and asinf - -// Calculate the argument to SetVolume from a decibel value -__inline float XAudio2DecibelsToAmplitudeRatio(float Decibels) -{ - return powf(10.0f, Decibels / 20.0f); -} - -// Recover a volume in decibels from an amplitude factor -__inline float XAudio2AmplitudeRatioToDecibels(float Volume) -{ - if (Volume == 0) - { - return -3.402823466e+38f; // Smallest float value (-FLT_MAX) - } - return 20.0f * log10f(Volume); -} - -// Calculate the argument to SetFrequencyRatio from a semitone value -__inline float XAudio2SemitonesToFrequencyRatio(float Semitones) -{ - // FrequencyRatio = 2 ^ Octaves - // = 2 ^ (Semitones / 12) - return powf(2.0f, Semitones / 12.0f); -} - -// Recover a pitch in semitones from a frequency ratio -__inline float XAudio2FrequencyRatioToSemitones(float FrequencyRatio) -{ - // Semitones = 12 * log2(FrequencyRatio) - // = 12 * log2(10) * log10(FrequencyRatio) - return 39.86313713864835f * log10f(FrequencyRatio); -} - -// Convert from filter cutoff frequencies expressed in Hertz to the radian -// frequency values used in XAUDIO2_FILTER_PARAMETERS.Frequency. Note that -// the highest CutoffFrequency supported is SampleRate/6. Higher values of -// CutoffFrequency will return XAUDIO2_MAX_FILTER_FREQUENCY. -__inline float XAudio2CutoffFrequencyToRadians(float CutoffFrequency, UINT32 SampleRate) -{ - if ((UINT32)(CutoffFrequency * 6.0f) >= SampleRate) - { - return XAUDIO2_MAX_FILTER_FREQUENCY; - } - return 2.0f * sinf((float)M_PI * CutoffFrequency / SampleRate); -} - -// Convert from radian frequencies back to absolute frequencies in Hertz -__inline float XAudio2RadiansToCutoffFrequency(float Radians, float SampleRate) -{ - return SampleRate * asinf(Radians / 2.0f) / (float)M_PI; -} -#endif // #ifdef XAUDIO2_HELPER_FUNCTIONS - - -/************************************************************************** - * - * XAudio2Create: Top-level function that creates an XAudio2 instance. - * - * On Windows this is just an inline function that calls CoCreateInstance - * and Initialize. The arguments are described above, under Initialize, - * except that the XAUDIO2_DEBUG_ENGINE flag can be used here to select - * the debug version of XAudio2. - * - * On Xbox, this function is implemented in the XAudio2 library, and the - * XAUDIO2_DEBUG_ENGINE flag has no effect; the client must explicitly - * link with the debug version of the library to obtain debug behavior. - * - **************************************************************************/ - -#ifdef _XBOX - -STDAPI XAudio2Create(__deref_out IXAudio2** ppXAudio2, UINT32 Flags X2DEFAULT(0), - XAUDIO2_PROCESSOR XAudio2Processor X2DEFAULT(XAUDIO2_DEFAULT_PROCESSOR)); - -#else // Windows - -__inline HRESULT XAudio2Create(__deref_out IXAudio2** ppXAudio2, UINT32 Flags X2DEFAULT(0), - XAUDIO2_PROCESSOR XAudio2Processor X2DEFAULT(XAUDIO2_DEFAULT_PROCESSOR)) -{ - // Instantiate the appropriate XAudio2 engine - IXAudio2* pXAudio2; - - #ifdef __cplusplus - - HRESULT hr = CoCreateInstance((Flags & XAUDIO2_DEBUG_ENGINE) ? __uuidof(XAudio2_Debug) : __uuidof(XAudio2), - NULL, CLSCTX_INPROC_SERVER, __uuidof(IXAudio2), (void**)&pXAudio2); - if (SUCCEEDED(hr)) - { - hr = pXAudio2->Initialize(Flags, XAudio2Processor); - - if (SUCCEEDED(hr)) - { - *ppXAudio2 = pXAudio2; - } - else - { - pXAudio2->Release(); - } - } - - #else - - HRESULT hr = CoCreateInstance((Flags & XAUDIO2_DEBUG_ENGINE) ? &CLSID_XAudio2_Debug : &CLSID_XAudio2, - NULL, CLSCTX_INPROC_SERVER, &IID_IXAudio2, (void**)&pXAudio2); - if (SUCCEEDED(hr)) - { - hr = pXAudio2->lpVtbl->Initialize(pXAudio2, Flags, XAudio2Processor); - - if (SUCCEEDED(hr)) - { - *ppXAudio2 = pXAudio2; - } - else - { - pXAudio2->lpVtbl->Release(pXAudio2); - } - } - - #endif // #ifdef __cplusplus - - return hr; -} - -#endif // #ifdef _XBOX - - -// Undo the #pragma pack(push, 1) directive at the top of this file -#pragma pack(pop) - -#endif // #ifndef GUID_DEFS_ONLY -#endif // #ifndef __XAUDIO2_INCLUDED__ diff --git a/SDK/Include/XAudio2fx.h b/SDK/Include/XAudio2fx.h deleted file mode 100644 index 4284bd2..0000000 --- a/SDK/Include/XAudio2fx.h +++ /dev/null @@ -1,431 +0,0 @@ -/************************************************************************** - * - * Copyright (c) Microsoft Corporation. All rights reserved. - * - * File: xaudio2fx.h - * Content: Declarations for the audio effects included with XAudio2. - * - **************************************************************************/ - -#ifndef __XAUDIO2FX_INCLUDED__ -#define __XAUDIO2FX_INCLUDED__ - - -/************************************************************************** - * - * XAudio2 effect class IDs. - * - **************************************************************************/ - -#include "comdecl.h" // For DEFINE_CLSID and DEFINE_IID - -// XAudio 2.0 (March 2008 SDK) -//DEFINE_CLSID(AudioVolumeMeter, C0C56F46, 29B1, 44E9, 99, 39, A3, 2C, E8, 68, 67, E2); -//DEFINE_CLSID(AudioVolumeMeter_Debug, C0C56F46, 29B1, 44E9, 99, 39, A3, 2C, E8, 68, 67, DB); -//DEFINE_CLSID(AudioReverb, 6F6EA3A9, 2CF5, 41CF, 91, C1, 21, 70, B1, 54, 00, 63); -//DEFINE_CLSID(AudioReverb_Debug, 6F6EA3A9, 2CF5, 41CF, 91, C1, 21, 70, B1, 54, 00, DB); - -// XAudio 2.1 (June 2008 SDK) -//DEFINE_CLSID(AudioVolumeMeter, c1e3f122, a2ea, 442c, 85, 4f, 20, d9, 8f, 83, 57, a1); -//DEFINE_CLSID(AudioVolumeMeter_Debug, 6d97a461, b02d, 48ae, b5, 43, 82, bc, 35, fd, fa, e2); -//DEFINE_CLSID(AudioReverb, f4769300, b949, 4df9, b3, 33, 00, d3, 39, 32, e9, a6); -//DEFINE_CLSID(AudioReverb_Debug, aea2cabc, 8c7c, 46aa, ba, 44, 0e, 6d, 75, 88, a1, f2); - -// XAudio 2.2 (August 2008 SDK) -//DEFINE_CLSID(AudioVolumeMeter, f5ca7b34, 8055, 42c0, b8, 36, 21, 61, 29, eb, 7e, 30); -//DEFINE_CLSID(AudioVolumeMeter_Debug, f796f5f7, 6059, 4a9f, 98, 2d, 61, ee, c2, ed, 67, ca); -//DEFINE_CLSID(AudioReverb, 629cf0de, 3ecc, 41e7, 99, 26, f7, e4, 3e, eb, ec, 51); -//DEFINE_CLSID(AudioReverb_Debug, 4aae4299, 3260, 46d4, 97, cc, 6c, c7, 60, c8, 53, 29); - -// XAudio 2.3 (November 2008 SDK) -//DEFINE_CLSID(AudioVolumeMeter, e180344b, ac83, 4483, 95, 9e, 18, a5, c5, 6a, 5e, 19); -//DEFINE_CLSID(AudioVolumeMeter_Debug, 922a0a56, 7d13, 40ae, a4, 81, 3c, 6c, 60, f1, 14, 01); -//DEFINE_CLSID(AudioReverb, 9cab402c, 1d37, 44b4, 88, 6d, fa, 4f, 36, 17, 0a, 4c); -//DEFINE_CLSID(AudioReverb_Debug, eadda998, 3be6, 4505, 84, be, ea, 06, 36, 5d, b9, 6b); - -// XAudio 2.4 (March 2009 SDK) -//DEFINE_CLSID(AudioVolumeMeter, c7338b95, 52b8, 4542, aa, 79, 42, eb, 01, 6c, 8c, 1c); -//DEFINE_CLSID(AudioVolumeMeter_Debug, 524bd872, 5c0b, 4217, bd, b8, 0a, 86, 81, 83, 0b, a5); -//DEFINE_CLSID(AudioReverb, 8bb7778b, 645b, 4475, 9a, 73, 1d, e3, 17, 0b, d3, af); -//DEFINE_CLSID(AudioReverb_Debug, da7738a2, cd0c, 4367, 9a, ac, d7, ea, d7, c6, 4f, 98); - -// XAudio 2.5 (March 2009 SDK) -//DEFINE_CLSID(AudioVolumeMeter, 2139e6da, c341, 4774, 9a, c3, b4, e0, 26, 34, 7f, 64); -//DEFINE_CLSID(AudioVolumeMeter_Debug, a5cc4e13, ca00, 416b, a6, ee, 49, fe, e7, b5, 43, d0); -//DEFINE_CLSID(AudioReverb, d06df0d0, 8518, 441e, 82, 2f, 54, 51, d5, c5, 95, b8); -//DEFINE_CLSID(AudioReverb_Debug, 613604ec, 304c, 45ec, a4, ed, 7a, 1c, 61, 2e, 9e, 72); - -// XAudio 2.6 (February 2010 SDK) -//DEFINE_CLSID(AudioVolumeMeter, e48c5a3f, 93ef, 43bb, a0, 92, 2c, 7c, eb, 94, 6f, 27); -//DEFINE_CLSID(AudioVolumeMeter_Debug, 9a9eaef7, a9e0, 4088, 9b, 1b, 9c, a0, 3a, 1a, ec, d4); -//DEFINE_CLSID(AudioReverb, cecec95a, d894, 491a, be, e3, 5e, 10, 6f, b5, 9f, 2d); -//DEFINE_CLSID(AudioReverb_Debug, 99a1c72e, 364c, 4c1b, 96, 23, fd, 5c, 8a, bd, 90, c7); - -// XAudio 2.7 (June 2010 SDK) -DEFINE_CLSID(AudioVolumeMeter, cac1105f, 619b, 4d04, 83, 1a, 44, e1, cb, f1, 2d, 57); -DEFINE_CLSID(AudioVolumeMeter_Debug, 2d9a0f9c, e67b, 4b24, ab, 44, 92, b3, e7, 70, c0, 20); -DEFINE_CLSID(AudioReverb, 6a93130e, 1d53, 41d1, a9, cf, e7, 58, 80, 0b, b1, 79); -DEFINE_CLSID(AudioReverb_Debug, c4f82dd4, cb4e, 4ce1, 8b, db, ee, 32, d4, 19, 82, 69); - -// Ignore the rest of this header if only the GUID definitions were requested -#ifndef GUID_DEFS_ONLY - -#ifdef _XBOX - #include // Xbox COM declarations (IUnknown, etc) -#else - #include // Windows COM declarations -#endif -#include // For log10() - - -// All structures defined in this file should use tight packing -#pragma pack(push, 1) - - -/************************************************************************** - * - * Effect creation functions. On Windows, these are just inline functions - * that call CoCreateInstance and Initialize; the XAUDIO2FX_DEBUG flag can - * be used to select the debug version of the effects. On Xbox, these map - * to real functions included in xaudio2.lib, and the XAUDIO2FX_DEBUG flag - * is ignored; the application must link with the debug library to use the - * debug functionality. - * - **************************************************************************/ - -// Use default values for some parameters if building C++ code -#ifdef __cplusplus - #define DEFAULT(x) =x -#else - #define DEFAULT(x) -#endif - -#define XAUDIO2FX_DEBUG 1 // To select the debug version of an effect - -#ifdef _XBOX - - STDAPI CreateAudioVolumeMeter(__deref_out IUnknown** ppApo); - STDAPI CreateAudioReverb(__deref_out IUnknown** ppApo); - - __inline HRESULT XAudio2CreateVolumeMeter(__deref_out IUnknown** ppApo, UINT32 /*Flags*/ DEFAULT(0)) - { - return CreateAudioVolumeMeter(ppApo); - } - - __inline HRESULT XAudio2CreateReverb(__deref_out IUnknown** ppApo, UINT32 /*Flags*/ DEFAULT(0)) - { - return CreateAudioReverb(ppApo); - } - -#else // Windows - - __inline HRESULT XAudio2CreateVolumeMeter(__deref_out IUnknown** ppApo, UINT32 Flags DEFAULT(0)) - { - #ifdef __cplusplus - return CoCreateInstance((Flags & XAUDIO2FX_DEBUG) ? __uuidof(AudioVolumeMeter_Debug) - : __uuidof(AudioVolumeMeter), - NULL, CLSCTX_INPROC_SERVER, __uuidof(IUnknown), (void**)ppApo); - #else - return CoCreateInstance((Flags & XAUDIO2FX_DEBUG) ? &CLSID_AudioVolumeMeter_Debug - : &CLSID_AudioVolumeMeter, - NULL, CLSCTX_INPROC_SERVER, &IID_IUnknown, (void**)ppApo); - #endif - } - - __inline HRESULT XAudio2CreateReverb(__deref_out IUnknown** ppApo, UINT32 Flags DEFAULT(0)) - { - #ifdef __cplusplus - return CoCreateInstance((Flags & XAUDIO2FX_DEBUG) ? __uuidof(AudioReverb_Debug) - : __uuidof(AudioReverb), - NULL, CLSCTX_INPROC_SERVER, __uuidof(IUnknown), (void**)ppApo); - #else - return CoCreateInstance((Flags & XAUDIO2FX_DEBUG) ? &CLSID_AudioReverb_Debug - : &CLSID_AudioReverb, - NULL, CLSCTX_INPROC_SERVER, &IID_IUnknown, (void**)ppApo); - #endif - } - -#endif // #ifdef _XBOX - - - -/************************************************************************** - * - * Volume meter parameters. - * The volume meter supports FLOAT32 audio formats and must be used in-place. - * - **************************************************************************/ - -// XAUDIO2FX_VOLUMEMETER_LEVELS: Receives results from GetEffectParameters(). -// The user is responsible for allocating pPeakLevels, pRMSLevels, and -// initializing ChannelCount accordingly. -// The volume meter does not support SetEffectParameters(). -typedef struct XAUDIO2FX_VOLUMEMETER_LEVELS -{ - float* pPeakLevels; // Peak levels table: receives maximum absolute level for each channel - // over a processing pass; may be NULL if pRMSLevls != NULL, - // otherwise must have at least ChannelCount elements. - float* pRMSLevels; // Root mean square levels table: receives RMS level for each channel - // over a processing pass; may be NULL if pPeakLevels != NULL, - // otherwise must have at least ChannelCount elements. - UINT32 ChannelCount; // Number of channels being processed by the volume meter APO -} XAUDIO2FX_VOLUMEMETER_LEVELS; - - - -/************************************************************************** - * - * Reverb parameters. - * The reverb supports only FLOAT32 audio with the following channel - * configurations: - * Input: Mono Output: Mono - * Input: Mono Output: 5.1 - * Input: Stereo Output: Stereo - * Input: Stereo Output: 5.1 - * The framerate must be within [20000, 48000] Hz. - * - * When using mono input, delay filters associated with the right channel - * are not executed. In this case, parameters such as PositionRight and - * PositionMatrixRight have no effect. This also means the reverb uses - * less CPU when hosted in a mono submix. - * - **************************************************************************/ - -#define XAUDIO2FX_REVERB_MIN_FRAMERATE 20000 -#define XAUDIO2FX_REVERB_MAX_FRAMERATE 48000 - -// XAUDIO2FX_REVERB_PARAMETERS: Native parameter set for the reverb effect - -typedef struct XAUDIO2FX_REVERB_PARAMETERS -{ - // ratio of wet (processed) signal to dry (original) signal - float WetDryMix; // [0, 100] (percentage) - - // Delay times - UINT32 ReflectionsDelay; // [0, 300] in ms - BYTE ReverbDelay; // [0, 85] in ms - BYTE RearDelay; // [0, 5] in ms - - // Indexed parameters - BYTE PositionLeft; // [0, 30] no units - BYTE PositionRight; // [0, 30] no units, ignored when configured to mono - BYTE PositionMatrixLeft; // [0, 30] no units - BYTE PositionMatrixRight; // [0, 30] no units, ignored when configured to mono - BYTE EarlyDiffusion; // [0, 15] no units - BYTE LateDiffusion; // [0, 15] no units - BYTE LowEQGain; // [0, 12] no units - BYTE LowEQCutoff; // [0, 9] no units - BYTE HighEQGain; // [0, 8] no units - BYTE HighEQCutoff; // [0, 14] no units - - // Direct parameters - float RoomFilterFreq; // [20, 20000] in Hz - float RoomFilterMain; // [-100, 0] in dB - float RoomFilterHF; // [-100, 0] in dB - float ReflectionsGain; // [-100, 20] in dB - float ReverbGain; // [-100, 20] in dB - float DecayTime; // [0.1, inf] in seconds - float Density; // [0, 100] (percentage) - float RoomSize; // [1, 100] in feet -} XAUDIO2FX_REVERB_PARAMETERS; - - -// Maximum, minimum and default values for the parameters above -#define XAUDIO2FX_REVERB_MIN_WET_DRY_MIX 0.0f -#define XAUDIO2FX_REVERB_MIN_REFLECTIONS_DELAY 0 -#define XAUDIO2FX_REVERB_MIN_REVERB_DELAY 0 -#define XAUDIO2FX_REVERB_MIN_REAR_DELAY 0 -#define XAUDIO2FX_REVERB_MIN_POSITION 0 -#define XAUDIO2FX_REVERB_MIN_DIFFUSION 0 -#define XAUDIO2FX_REVERB_MIN_LOW_EQ_GAIN 0 -#define XAUDIO2FX_REVERB_MIN_LOW_EQ_CUTOFF 0 -#define XAUDIO2FX_REVERB_MIN_HIGH_EQ_GAIN 0 -#define XAUDIO2FX_REVERB_MIN_HIGH_EQ_CUTOFF 0 -#define XAUDIO2FX_REVERB_MIN_ROOM_FILTER_FREQ 20.0f -#define XAUDIO2FX_REVERB_MIN_ROOM_FILTER_MAIN -100.0f -#define XAUDIO2FX_REVERB_MIN_ROOM_FILTER_HF -100.0f -#define XAUDIO2FX_REVERB_MIN_REFLECTIONS_GAIN -100.0f -#define XAUDIO2FX_REVERB_MIN_REVERB_GAIN -100.0f -#define XAUDIO2FX_REVERB_MIN_DECAY_TIME 0.1f -#define XAUDIO2FX_REVERB_MIN_DENSITY 0.0f -#define XAUDIO2FX_REVERB_MIN_ROOM_SIZE 0.0f - -#define XAUDIO2FX_REVERB_MAX_WET_DRY_MIX 100.0f -#define XAUDIO2FX_REVERB_MAX_REFLECTIONS_DELAY 300 -#define XAUDIO2FX_REVERB_MAX_REVERB_DELAY 85 -#define XAUDIO2FX_REVERB_MAX_REAR_DELAY 5 -#define XAUDIO2FX_REVERB_MAX_POSITION 30 -#define XAUDIO2FX_REVERB_MAX_DIFFUSION 15 -#define XAUDIO2FX_REVERB_MAX_LOW_EQ_GAIN 12 -#define XAUDIO2FX_REVERB_MAX_LOW_EQ_CUTOFF 9 -#define XAUDIO2FX_REVERB_MAX_HIGH_EQ_GAIN 8 -#define XAUDIO2FX_REVERB_MAX_HIGH_EQ_CUTOFF 14 -#define XAUDIO2FX_REVERB_MAX_ROOM_FILTER_FREQ 20000.0f -#define XAUDIO2FX_REVERB_MAX_ROOM_FILTER_MAIN 0.0f -#define XAUDIO2FX_REVERB_MAX_ROOM_FILTER_HF 0.0f -#define XAUDIO2FX_REVERB_MAX_REFLECTIONS_GAIN 20.0f -#define XAUDIO2FX_REVERB_MAX_REVERB_GAIN 20.0f -#define XAUDIO2FX_REVERB_MAX_DENSITY 100.0f -#define XAUDIO2FX_REVERB_MAX_ROOM_SIZE 100.0f - -#define XAUDIO2FX_REVERB_DEFAULT_WET_DRY_MIX 100.0f -#define XAUDIO2FX_REVERB_DEFAULT_REFLECTIONS_DELAY 5 -#define XAUDIO2FX_REVERB_DEFAULT_REVERB_DELAY 5 -#define XAUDIO2FX_REVERB_DEFAULT_REAR_DELAY 5 -#define XAUDIO2FX_REVERB_DEFAULT_POSITION 6 -#define XAUDIO2FX_REVERB_DEFAULT_POSITION_MATRIX 27 -#define XAUDIO2FX_REVERB_DEFAULT_EARLY_DIFFUSION 8 -#define XAUDIO2FX_REVERB_DEFAULT_LATE_DIFFUSION 8 -#define XAUDIO2FX_REVERB_DEFAULT_LOW_EQ_GAIN 8 -#define XAUDIO2FX_REVERB_DEFAULT_LOW_EQ_CUTOFF 4 -#define XAUDIO2FX_REVERB_DEFAULT_HIGH_EQ_GAIN 8 -#define XAUDIO2FX_REVERB_DEFAULT_HIGH_EQ_CUTOFF 4 -#define XAUDIO2FX_REVERB_DEFAULT_ROOM_FILTER_FREQ 5000.0f -#define XAUDIO2FX_REVERB_DEFAULT_ROOM_FILTER_MAIN 0.0f -#define XAUDIO2FX_REVERB_DEFAULT_ROOM_FILTER_HF 0.0f -#define XAUDIO2FX_REVERB_DEFAULT_REFLECTIONS_GAIN 0.0f -#define XAUDIO2FX_REVERB_DEFAULT_REVERB_GAIN 0.0f -#define XAUDIO2FX_REVERB_DEFAULT_DECAY_TIME 1.0f -#define XAUDIO2FX_REVERB_DEFAULT_DENSITY 100.0f -#define XAUDIO2FX_REVERB_DEFAULT_ROOM_SIZE 100.0f - - -// XAUDIO2FX_REVERB_I3DL2_PARAMETERS: Parameter set compliant with the I3DL2 standard - -typedef struct XAUDIO2FX_REVERB_I3DL2_PARAMETERS -{ - // ratio of wet (processed) signal to dry (original) signal - float WetDryMix; // [0, 100] (percentage) - - // Standard I3DL2 parameters - INT32 Room; // [-10000, 0] in mB (hundredths of decibels) - INT32 RoomHF; // [-10000, 0] in mB (hundredths of decibels) - float RoomRolloffFactor; // [0.0, 10.0] - float DecayTime; // [0.1, 20.0] in seconds - float DecayHFRatio; // [0.1, 2.0] - INT32 Reflections; // [-10000, 1000] in mB (hundredths of decibels) - float ReflectionsDelay; // [0.0, 0.3] in seconds - INT32 Reverb; // [-10000, 2000] in mB (hundredths of decibels) - float ReverbDelay; // [0.0, 0.1] in seconds - float Diffusion; // [0.0, 100.0] (percentage) - float Density; // [0.0, 100.0] (percentage) - float HFReference; // [20.0, 20000.0] in Hz -} XAUDIO2FX_REVERB_I3DL2_PARAMETERS; - - -// ReverbConvertI3DL2ToNative: Utility function to map from I3DL2 to native parameters - -__inline void ReverbConvertI3DL2ToNative -( - __in const XAUDIO2FX_REVERB_I3DL2_PARAMETERS* pI3DL2, - __out XAUDIO2FX_REVERB_PARAMETERS* pNative -) -{ - float reflectionsDelay; - float reverbDelay; - - // RoomRolloffFactor is ignored - - // These parameters have no equivalent in I3DL2 - pNative->RearDelay = XAUDIO2FX_REVERB_DEFAULT_REAR_DELAY; // 5 - pNative->PositionLeft = XAUDIO2FX_REVERB_DEFAULT_POSITION; // 6 - pNative->PositionRight = XAUDIO2FX_REVERB_DEFAULT_POSITION; // 6 - pNative->PositionMatrixLeft = XAUDIO2FX_REVERB_DEFAULT_POSITION_MATRIX; // 27 - pNative->PositionMatrixRight = XAUDIO2FX_REVERB_DEFAULT_POSITION_MATRIX; // 27 - pNative->RoomSize = XAUDIO2FX_REVERB_DEFAULT_ROOM_SIZE; // 100 - pNative->LowEQCutoff = 4; - pNative->HighEQCutoff = 6; - - // The rest of the I3DL2 parameters map to the native property set - pNative->RoomFilterMain = (float)pI3DL2->Room / 100.0f; - pNative->RoomFilterHF = (float)pI3DL2->RoomHF / 100.0f; - - if (pI3DL2->DecayHFRatio >= 1.0f) - { - INT32 index = (INT32)(-4.0 * log10(pI3DL2->DecayHFRatio)); - if (index < -8) index = -8; - pNative->LowEQGain = (BYTE)((index < 0) ? index + 8 : 8); - pNative->HighEQGain = 8; - pNative->DecayTime = pI3DL2->DecayTime * pI3DL2->DecayHFRatio; - } - else - { - INT32 index = (INT32)(4.0 * log10(pI3DL2->DecayHFRatio)); - if (index < -8) index = -8; - pNative->LowEQGain = 8; - pNative->HighEQGain = (BYTE)((index < 0) ? index + 8 : 8); - pNative->DecayTime = pI3DL2->DecayTime; - } - - reflectionsDelay = pI3DL2->ReflectionsDelay * 1000.0f; - if (reflectionsDelay >= XAUDIO2FX_REVERB_MAX_REFLECTIONS_DELAY) // 300 - { - reflectionsDelay = (float)(XAUDIO2FX_REVERB_MAX_REFLECTIONS_DELAY - 1); - } - else if (reflectionsDelay <= 1) - { - reflectionsDelay = 1; - } - pNative->ReflectionsDelay = (UINT32)reflectionsDelay; - - reverbDelay = pI3DL2->ReverbDelay * 1000.0f; - if (reverbDelay >= XAUDIO2FX_REVERB_MAX_REVERB_DELAY) // 85 - { - reverbDelay = (float)(XAUDIO2FX_REVERB_MAX_REVERB_DELAY - 1); - } - pNative->ReverbDelay = (BYTE)reverbDelay; - - pNative->ReflectionsGain = pI3DL2->Reflections / 100.0f; - pNative->ReverbGain = pI3DL2->Reverb / 100.0f; - pNative->EarlyDiffusion = (BYTE)(15.0f * pI3DL2->Diffusion / 100.0f); - pNative->LateDiffusion = pNative->EarlyDiffusion; - pNative->Density = pI3DL2->Density; - pNative->RoomFilterFreq = pI3DL2->HFReference; - - pNative->WetDryMix = pI3DL2->WetDryMix; -} - - -/************************************************************************** - * - * Standard I3DL2 reverb presets (100% wet). - * - **************************************************************************/ - -#define XAUDIO2FX_I3DL2_PRESET_DEFAULT {100,-10000, 0,0.0f, 1.00f,0.50f,-10000,0.020f,-10000,0.040f,100.0f,100.0f,5000.0f} -#define XAUDIO2FX_I3DL2_PRESET_GENERIC {100, -1000, -100,0.0f, 1.49f,0.83f, -2602,0.007f, 200,0.011f,100.0f,100.0f,5000.0f} -#define XAUDIO2FX_I3DL2_PRESET_PADDEDCELL {100, -1000,-6000,0.0f, 0.17f,0.10f, -1204,0.001f, 207,0.002f,100.0f,100.0f,5000.0f} -#define XAUDIO2FX_I3DL2_PRESET_ROOM {100, -1000, -454,0.0f, 0.40f,0.83f, -1646,0.002f, 53,0.003f,100.0f,100.0f,5000.0f} -#define XAUDIO2FX_I3DL2_PRESET_BATHROOM {100, -1000,-1200,0.0f, 1.49f,0.54f, -370,0.007f, 1030,0.011f,100.0f, 60.0f,5000.0f} -#define XAUDIO2FX_I3DL2_PRESET_LIVINGROOM {100, -1000,-6000,0.0f, 0.50f,0.10f, -1376,0.003f, -1104,0.004f,100.0f,100.0f,5000.0f} -#define XAUDIO2FX_I3DL2_PRESET_STONEROOM {100, -1000, -300,0.0f, 2.31f,0.64f, -711,0.012f, 83,0.017f,100.0f,100.0f,5000.0f} -#define XAUDIO2FX_I3DL2_PRESET_AUDITORIUM {100, -1000, -476,0.0f, 4.32f,0.59f, -789,0.020f, -289,0.030f,100.0f,100.0f,5000.0f} -#define XAUDIO2FX_I3DL2_PRESET_CONCERTHALL {100, -1000, -500,0.0f, 3.92f,0.70f, -1230,0.020f, -2,0.029f,100.0f,100.0f,5000.0f} -#define XAUDIO2FX_I3DL2_PRESET_CAVE {100, -1000, 0,0.0f, 2.91f,1.30f, -602,0.015f, -302,0.022f,100.0f,100.0f,5000.0f} -#define XAUDIO2FX_I3DL2_PRESET_ARENA {100, -1000, -698,0.0f, 7.24f,0.33f, -1166,0.020f, 16,0.030f,100.0f,100.0f,5000.0f} -#define XAUDIO2FX_I3DL2_PRESET_HANGAR {100, -1000,-1000,0.0f,10.05f,0.23f, -602,0.020f, 198,0.030f,100.0f,100.0f,5000.0f} -#define XAUDIO2FX_I3DL2_PRESET_CARPETEDHALLWAY {100, -1000,-4000,0.0f, 0.30f,0.10f, -1831,0.002f, -1630,0.030f,100.0f,100.0f,5000.0f} -#define XAUDIO2FX_I3DL2_PRESET_HALLWAY {100, -1000, -300,0.0f, 1.49f,0.59f, -1219,0.007f, 441,0.011f,100.0f,100.0f,5000.0f} -#define XAUDIO2FX_I3DL2_PRESET_STONECORRIDOR {100, -1000, -237,0.0f, 2.70f,0.79f, -1214,0.013f, 395,0.020f,100.0f,100.0f,5000.0f} -#define XAUDIO2FX_I3DL2_PRESET_ALLEY {100, -1000, -270,0.0f, 1.49f,0.86f, -1204,0.007f, -4,0.011f,100.0f,100.0f,5000.0f} -#define XAUDIO2FX_I3DL2_PRESET_FOREST {100, -1000,-3300,0.0f, 1.49f,0.54f, -2560,0.162f, -613,0.088f, 79.0f,100.0f,5000.0f} -#define XAUDIO2FX_I3DL2_PRESET_CITY {100, -1000, -800,0.0f, 1.49f,0.67f, -2273,0.007f, -2217,0.011f, 50.0f,100.0f,5000.0f} -#define XAUDIO2FX_I3DL2_PRESET_MOUNTAINS {100, -1000,-2500,0.0f, 1.49f,0.21f, -2780,0.300f, -2014,0.100f, 27.0f,100.0f,5000.0f} -#define XAUDIO2FX_I3DL2_PRESET_QUARRY {100, -1000,-1000,0.0f, 1.49f,0.83f,-10000,0.061f, 500,0.025f,100.0f,100.0f,5000.0f} -#define XAUDIO2FX_I3DL2_PRESET_PLAIN {100, -1000,-2000,0.0f, 1.49f,0.50f, -2466,0.179f, -2514,0.100f, 21.0f,100.0f,5000.0f} -#define XAUDIO2FX_I3DL2_PRESET_PARKINGLOT {100, -1000, 0,0.0f, 1.65f,1.50f, -1363,0.008f, -1153,0.012f,100.0f,100.0f,5000.0f} -#define XAUDIO2FX_I3DL2_PRESET_SEWERPIPE {100, -1000,-1000,0.0f, 2.81f,0.14f, 429,0.014f, 648,0.021f, 80.0f, 60.0f,5000.0f} -#define XAUDIO2FX_I3DL2_PRESET_UNDERWATER {100, -1000,-4000,0.0f, 1.49f,0.10f, -449,0.007f, 1700,0.011f,100.0f,100.0f,5000.0f} -#define XAUDIO2FX_I3DL2_PRESET_SMALLROOM {100, -1000, -600,0.0f, 1.10f,0.83f, -400,0.005f, 500,0.010f,100.0f,100.0f,5000.0f} -#define XAUDIO2FX_I3DL2_PRESET_MEDIUMROOM {100, -1000, -600,0.0f, 1.30f,0.83f, -1000,0.010f, -200,0.020f,100.0f,100.0f,5000.0f} -#define XAUDIO2FX_I3DL2_PRESET_LARGEROOM {100, -1000, -600,0.0f, 1.50f,0.83f, -1600,0.020f, -1000,0.040f,100.0f,100.0f,5000.0f} -#define XAUDIO2FX_I3DL2_PRESET_MEDIUMHALL {100, -1000, -600,0.0f, 1.80f,0.70f, -1300,0.015f, -800,0.030f,100.0f,100.0f,5000.0f} -#define XAUDIO2FX_I3DL2_PRESET_LARGEHALL {100, -1000, -600,0.0f, 1.80f,0.70f, -2000,0.030f, -1400,0.060f,100.0f,100.0f,5000.0f} -#define XAUDIO2FX_I3DL2_PRESET_PLATE {100, -1000, -200,0.0f, 1.30f,0.90f, 0,0.002f, 0,0.010f,100.0f, 75.0f,5000.0f} - - -// Undo the #pragma pack(push, 1) at the top of this file -#pragma pack(pop) - -#endif // #ifndef GUID_DEFS_ONLY -#endif // #ifndef __XAUDIO2FX_INCLUDED__ diff --git a/SDK/Include/XDSP.h b/SDK/Include/XDSP.h deleted file mode 100644 index 6ed0dc5..0000000 --- a/SDK/Include/XDSP.h +++ /dev/null @@ -1,754 +0,0 @@ -/*-========================================================================-_ - | - XDSP - | - | Copyright (c) Microsoft Corporation. All rights reserved. | - |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| - |PROJECT: XDSP MODEL: Unmanaged User-mode | - |VERSION: 1.2 EXCEPT: No Exceptions | - |CLASS: N / A MINREQ: WinXP, Xbox360 | - |BASE: N / A DIALECT: MSC++ 14.00 | - |>------------------------------------------------------------------------<| - | DUTY: DSP functions with CPU extension specific optimizations | - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ - NOTES: - 1. Definition of terms: - DSP: Digital Signal Processing. - FFT: Fast Fourier Transform. - Frame: A block of samples, one per channel, - to be played simultaneously. - - 2. All buffer parameters must be 16-byte aligned. - - 3. All FFT functions support only FLOAT32 audio. */ - -#pragma once -//---------------------------------------------------// -#include // general windows types -#include // trigonometric functions -#if defined(_XBOX) // SIMD intrinsics - #include -#else - #include -#endif - - -//-------------------------------------------------------------// -// assertion -#if !defined(DSPASSERT) - #if DBG - #define DSPASSERT(exp) if (!(exp)) { OutputDebugStringA("XDSP ASSERT: " #exp ", {" __FUNCTION__ "}\n"); __debugbreak(); } - #else - #define DSPASSERT(exp) __assume(exp) - #endif -#endif - -// true if n is a power of 2 -#if !defined(ISPOWEROF2) - #define ISPOWEROF2(n) ( ((n)&((n)-1)) == 0 && (n) != 0 ) -#endif - - -//-----------------------------------------------------------// -namespace XDSP { -#pragma warning(push) -#pragma warning(disable: 4328 4640) // disable "indirection alignment of formal parameter", "construction of local static object is not thread-safe" compile warnings - - -// Helper functions, used by the FFT functions. -// The application need not call them directly. - - // primitive types - typedef __m128 XVECTOR; - typedef XVECTOR& XVECTORREF; - typedef const XVECTOR& XVECTORREFC; - - - // Parallel multiplication of four complex numbers, assuming - // real and imaginary values are stored in separate vectors. - __forceinline void vmulComplex (__out XVECTORREF rResult, __out XVECTORREF iResult, __in XVECTORREFC r1, __in XVECTORREFC i1, __in XVECTORREFC r2, __in XVECTORREFC i2) - { - // (r1, i1) * (r2, i2) = (r1r2 - i1i2, r1i2 + r2i1) - XVECTOR vi1i2 = _mm_mul_ps(i1, i2); - XVECTOR vr1r2 = _mm_mul_ps(r1, r2); - XVECTOR vr1i2 = _mm_mul_ps(r1, i2); - XVECTOR vr2i1 = _mm_mul_ps(r2, i1); - rResult = _mm_sub_ps(vr1r2, vi1i2); // real: (r1*r2 - i1*i2) - iResult = _mm_add_ps(vr1i2, vr2i1); // imaginary: (r1*i2 + r2*i1) - } - __forceinline void vmulComplex (__inout XVECTORREF r1, __inout XVECTORREF i1, __in XVECTORREFC r2, __in XVECTORREFC i2) - { - // (r1, i1) * (r2, i2) = (r1r2 - i1i2, r1i2 + r2i1) - XVECTOR vi1i2 = _mm_mul_ps(i1, i2); - XVECTOR vr1r2 = _mm_mul_ps(r1, r2); - XVECTOR vr1i2 = _mm_mul_ps(r1, i2); - XVECTOR vr2i1 = _mm_mul_ps(r2, i1); - r1 = _mm_sub_ps(vr1r2, vi1i2); // real: (r1*r2 - i1*i2) - i1 = _mm_add_ps(vr1i2, vr2i1); // imaginary: (r1*i2 + r2*i1) - } - - - // Radix-4 decimation-in-time FFT butterfly. - // This version assumes that all four elements of the butterfly are - // adjacent in a single vector. - // - // Compute the product of the complex input vector and the - // 4-element DFT matrix: - // | 1 1 1 1 | | (r1X,i1X) | - // | 1 -j -1 j | | (r1Y,i1Y) | - // | 1 -1 1 -1 | | (r1Z,i1Z) | - // | 1 j -1 -j | | (r1W,i1W) | - // - // This matrix can be decomposed into two simpler ones to reduce the - // number of additions needed. The decomposed matrices look like this: - // | 1 0 1 0 | | 1 0 1 0 | - // | 0 1 0 -j | | 1 0 -1 0 | - // | 1 0 -1 0 | | 0 1 0 1 | - // | 0 1 0 j | | 0 1 0 -1 | - // - // Combine as follows: - // | 1 0 1 0 | | (r1X,i1X) | | (r1X + r1Z, i1X + i1Z) | - // Temp = | 1 0 -1 0 | * | (r1Y,i1Y) | = | (r1X - r1Z, i1X - i1Z) | - // | 0 1 0 1 | | (r1Z,i1Z) | | (r1Y + r1W, i1Y + i1W) | - // | 0 1 0 -1 | | (r1W,i1W) | | (r1Y - r1W, i1Y - i1W) | - // - // | 1 0 1 0 | | (rTempX,iTempX) | | (rTempX + rTempZ, iTempX + iTempZ) | - // Result = | 0 1 0 -j | * | (rTempY,iTempY) | = | (rTempY + iTempW, iTempY - rTempW) | - // | 1 0 -1 0 | | (rTempZ,iTempZ) | | (rTempX - rTempZ, iTempX - iTempZ) | - // | 0 1 0 j | | (rTempW,iTempW) | | (rTempY - iTempW, iTempY + rTempW) | - __forceinline void ButterflyDIT4_1 (__inout XVECTORREF r1, __inout XVECTORREF i1) - { - // sign constants for radix-4 butterflies - const static XVECTOR vDFT4SignBits1 = { 0.0f, -0.0f, 0.0f, -0.0f }; - const static XVECTOR vDFT4SignBits2 = { 0.0f, 0.0f, -0.0f, -0.0f }; - const static XVECTOR vDFT4SignBits3 = { 0.0f, -0.0f, -0.0f, 0.0f }; - - - // calculating Temp - XVECTOR rTemp = _mm_add_ps( _mm_shuffle_ps(r1, r1, _MM_SHUFFLE(1, 1, 0, 0)), // [r1X| r1X|r1Y| r1Y] + - _mm_xor_ps(_mm_shuffle_ps(r1, r1, _MM_SHUFFLE(3, 3, 2, 2)), vDFT4SignBits1) ); // [r1Z|-r1Z|r1W|-r1W] - XVECTOR iTemp = _mm_add_ps( _mm_shuffle_ps(i1, i1, _MM_SHUFFLE(1, 1, 0, 0)), // [i1X| i1X|i1Y| i1Y] + - _mm_xor_ps(_mm_shuffle_ps(i1, i1, _MM_SHUFFLE(3, 3, 2, 2)), vDFT4SignBits1) ); // [i1Z|-i1Z|i1W|-i1W] - - // calculating Result - XVECTOR rZrWiZiW = _mm_shuffle_ps(rTemp, iTemp, _MM_SHUFFLE(3, 2, 3, 2)); // [rTempZ|rTempW|iTempZ|iTempW] - XVECTOR rZiWrZiW = _mm_shuffle_ps(rZrWiZiW, rZrWiZiW, _MM_SHUFFLE(3, 0, 3, 0)); // [rTempZ|iTempW|rTempZ|iTempW] - XVECTOR iZrWiZrW = _mm_shuffle_ps(rZrWiZiW, rZrWiZiW, _MM_SHUFFLE(1, 2, 1, 2)); // [rTempZ|iTempW|rTempZ|iTempW] - r1 = _mm_add_ps( _mm_shuffle_ps(rTemp, rTemp, _MM_SHUFFLE(1, 0, 1, 0)), // [rTempX| rTempY| rTempX| rTempY] + - _mm_xor_ps(rZiWrZiW, vDFT4SignBits2) ); // [rTempZ| iTempW|-rTempZ|-iTempW] - i1 = _mm_add_ps( _mm_shuffle_ps(iTemp, iTemp, _MM_SHUFFLE(1, 0, 1, 0)), // [iTempX| iTempY| iTempX| iTempY] + - _mm_xor_ps(iZrWiZrW, vDFT4SignBits3) ); // [iTempZ|-rTempW|-iTempZ| rTempW] - } - - // Radix-4 decimation-in-time FFT butterfly. - // This version assumes that elements of the butterfly are - // in different vectors, so that each vector in the input - // contains elements from four different butterflies. - // The four separate butterflies are processed in parallel. - // - // The calculations here are the same as the ones in the single-vector - // radix-4 DFT, but instead of being done on a single vector (X,Y,Z,W) - // they are done in parallel on sixteen independent complex values. - // There is no interdependence between the vector elements: - // | 1 0 1 0 | | (rIn0,iIn0) | | (rIn0 + rIn2, iIn0 + iIn2) | - // | 1 0 -1 0 | * | (rIn1,iIn1) | = Temp = | (rIn0 - rIn2, iIn0 - iIn2) | - // | 0 1 0 1 | | (rIn2,iIn2) | | (rIn1 + rIn3, iIn1 + iIn3) | - // | 0 1 0 -1 | | (rIn3,iIn3) | | (rIn1 - rIn3, iIn1 - iIn3) | - // - // | 1 0 1 0 | | (rTemp0,iTemp0) | | (rTemp0 + rTemp2, iTemp0 + iTemp2) | - // Result = | 0 1 0 -j | * | (rTemp1,iTemp1) | = | (rTemp1 + iTemp3, iTemp1 - rTemp3) | - // | 1 0 -1 0 | | (rTemp2,iTemp2) | | (rTemp0 - rTemp2, iTemp0 - iTemp2) | - // | 0 1 0 j | | (rTemp3,iTemp3) | | (rTemp1 - iTemp3, iTemp1 + rTemp3) | - __forceinline void ButterflyDIT4_4 (__inout XVECTORREF r0, - __inout XVECTORREF r1, - __inout XVECTORREF r2, - __inout XVECTORREF r3, - __inout XVECTORREF i0, - __inout XVECTORREF i1, - __inout XVECTORREF i2, - __inout XVECTORREF i3, - __in_ecount(uStride*4) const XVECTOR* __restrict pUnityTableReal, - __in_ecount(uStride*4) const XVECTOR* __restrict pUnityTableImaginary, - const UINT32 uStride, const BOOL fLast) - { - DSPASSERT(pUnityTableReal != NULL); - DSPASSERT(pUnityTableImaginary != NULL); - DSPASSERT((UINT_PTR)pUnityTableReal % 16 == 0); - DSPASSERT((UINT_PTR)pUnityTableImaginary % 16 == 0); - DSPASSERT(ISPOWEROF2(uStride)); - - XVECTOR rTemp0, rTemp1, rTemp2, rTemp3, rTemp4, rTemp5, rTemp6, rTemp7; - XVECTOR iTemp0, iTemp1, iTemp2, iTemp3, iTemp4, iTemp5, iTemp6, iTemp7; - - - // calculating Temp - rTemp0 = _mm_add_ps(r0, r2); iTemp0 = _mm_add_ps(i0, i2); - rTemp2 = _mm_add_ps(r1, r3); iTemp2 = _mm_add_ps(i1, i3); - rTemp1 = _mm_sub_ps(r0, r2); iTemp1 = _mm_sub_ps(i0, i2); - rTemp3 = _mm_sub_ps(r1, r3); iTemp3 = _mm_sub_ps(i1, i3); - rTemp4 = _mm_add_ps(rTemp0, rTemp2); iTemp4 = _mm_add_ps(iTemp0, iTemp2); - rTemp5 = _mm_add_ps(rTemp1, iTemp3); iTemp5 = _mm_sub_ps(iTemp1, rTemp3); - rTemp6 = _mm_sub_ps(rTemp0, rTemp2); iTemp6 = _mm_sub_ps(iTemp0, iTemp2); - rTemp7 = _mm_sub_ps(rTemp1, iTemp3); iTemp7 = _mm_add_ps(iTemp1, rTemp3); - - // calculating Result - // vmulComplex(rTemp0, iTemp0, rTemp0, iTemp0, pUnityTableReal[0], pUnityTableImaginary[0]); // first one is always trivial - vmulComplex(rTemp5, iTemp5, pUnityTableReal[uStride], pUnityTableImaginary[uStride]); - vmulComplex(rTemp6, iTemp6, pUnityTableReal[uStride*2], pUnityTableImaginary[uStride*2]); - vmulComplex(rTemp7, iTemp7, pUnityTableReal[uStride*3], pUnityTableImaginary[uStride*3]); - if (fLast) { - ButterflyDIT4_1(rTemp4, iTemp4); - ButterflyDIT4_1(rTemp5, iTemp5); - ButterflyDIT4_1(rTemp6, iTemp6); - ButterflyDIT4_1(rTemp7, iTemp7); - } - - - r0 = rTemp4; i0 = iTemp4; - r1 = rTemp5; i1 = iTemp5; - r2 = rTemp6; i2 = iTemp6; - r3 = rTemp7; i3 = iTemp7; - } - -//-------------------------------------------------------// - - //// - // DESCRIPTION: - // 4-sample FFT. - // - // PARAMETERS: - // pReal - [inout] real components, must have at least uCount elements - // pImaginary - [inout] imaginary components, must have at least uCount elements - // uCount - [in] number of FFT iterations - // - // RETURN VALUE: - // void - //// - __forceinline void FFT4 (__inout_ecount(uCount) XVECTOR* __restrict pReal, __inout_ecount(uCount) XVECTOR* __restrict pImaginary, const UINT32 uCount=1) - { - DSPASSERT(pReal != NULL); - DSPASSERT(pImaginary != NULL); - DSPASSERT((UINT_PTR)pReal % 16 == 0); - DSPASSERT((UINT_PTR)pImaginary % 16 == 0); - DSPASSERT(ISPOWEROF2(uCount)); - - for (UINT32 uIndex=0; uIndex 16 - // uCount - [in] number of FFT iterations - // - // RETURN VALUE: - // void - //// - inline void FFT (__inout_ecount((uLength*uCount)/4) XVECTOR* __restrict pReal, __inout_ecount((uLength*uCount)/4) XVECTOR* __restrict pImaginary, __in_ecount(uLength*uCount) const XVECTOR* __restrict pUnityTable, const UINT32 uLength, const UINT32 uCount=1) - { - DSPASSERT(pReal != NULL); - DSPASSERT(pImaginary != NULL); - DSPASSERT(pUnityTable != NULL); - DSPASSERT((UINT_PTR)pReal % 16 == 0); - DSPASSERT((UINT_PTR)pImaginary % 16 == 0); - DSPASSERT((UINT_PTR)pUnityTable % 16 == 0); - DSPASSERT(uLength > 16); - DSPASSERT(ISPOWEROF2(uLength)); - DSPASSERT(ISPOWEROF2(uCount)); - - const XVECTOR* __restrict pUnityTableReal = pUnityTable; - const XVECTOR* __restrict pUnityTableImaginary = pUnityTable + (uLength>>2); - const UINT32 uTotal = uCount * uLength; - const UINT32 uTotal_vectors = uTotal >> 2; - const UINT32 uStage_vectors = uLength >> 2; - const UINT32 uStage_vectors_mask = uStage_vectors - 1; - const UINT32 uStride = uLength >> 4; // stride between butterfly elements - const UINT32 uStrideMask = uStride - 1; - const UINT32 uStride2 = uStride * 2; - const UINT32 uStride3 = uStride * 3; - const UINT32 uStrideInvMask = ~uStrideMask; - - - for (UINT32 uIndex=0; uIndex<(uTotal_vectors>>2); ++uIndex) { - const UINT32 n = ((uIndex & uStrideInvMask) << 2) + (uIndex & uStrideMask); - ButterflyDIT4_4(pReal[n], - pReal[n + uStride], - pReal[n + uStride2], - pReal[n + uStride3], - pImaginary[n ], - pImaginary[n + uStride], - pImaginary[n + uStride2], - pImaginary[n + uStride3], - pUnityTableReal + (n & uStage_vectors_mask), - pUnityTableImaginary + (n & uStage_vectors_mask), - uStride, FALSE); - } - - - if (uLength > 16*4) { - FFT(pReal, pImaginary, pUnityTable+(uLength>>1), uLength>>2, uCount*4); - } else if (uLength == 16*4) { - FFT16(pReal, pImaginary, uCount*4); - } else if (uLength == 8*4) { - FFT8(pReal, pImaginary, uCount*4); - } else if (uLength == 4*4) { - FFT4(pReal, pImaginary, uCount*4); - } - } - -//--------------------------------------------------------------------------// - //// - // DESCRIPTION: - // Initializes unity roots lookup table used by FFT functions. - // Once initialized, the table need not be initialized again unless a - // different FFT length is desired. - // - // REMARKS: - // The unity tables of FFT length 16 and below are hard coded into the - // respective FFT functions and so need not be initialized. - // - // PARAMETERS: - // pUnityTable - [out] unity table, receives unity roots lookup table, must have at least uLength elements - // uLength - [in] FFT length in frames, must be a power of 2 > 16 - // - // RETURN VALUE: - // void - //// -inline void FFTInitializeUnityTable (__out_ecount(uLength) XVECTOR* __restrict pUnityTable, UINT32 uLength) -{ - DSPASSERT(pUnityTable != NULL); - DSPASSERT(uLength > 16); - DSPASSERT(ISPOWEROF2(uLength)); - - FLOAT32* __restrict pfUnityTable = (FLOAT32* __restrict)pUnityTable; - - - // initialize unity table for recursive FFT lengths: uLength, uLength/4, uLength/16... > 16 - do { - FLOAT32 flStep = 6.283185307f / uLength; // 2PI / FFT length - uLength >>= 2; - - // pUnityTable[0 to uLength*4-1] contains real components for current FFT length - // pUnityTable[uLength*4 to uLength*8-1] contains imaginary components for current FFT length - for (UINT32 i=0; i<4; ++i) { - for (UINT32 j=0; j 16); -} - - - //// - // DESCRIPTION: - // The FFT functions generate output in bit reversed order. - // Use this function to re-arrange them into order of increasing frequency. - // - // REMARKS: - // - // PARAMETERS: - // pOutput - [out] output buffer, receives samples in order of increasing frequency, cannot overlap pInput, must have at least (1<= 2 - // - // RETURN VALUE: - // void - //// -inline void FFTUnswizzle (__out_ecount((1<= 2); - - FLOAT32* __restrict pfOutput = (FLOAT32* __restrict)pOutput; - const FLOAT32* __restrict pfInput = (const FLOAT32* __restrict)pInput; - const UINT32 uLength = UINT32(1 << uLog2Length); - - - if ((uLog2Length & 0x1) == 0) { - // even powers of two - for (UINT32 uIndex=0; uIndex> 2 ) | ( (n & 0x33333333) << 2 ); - n = ( (n & 0xf0f0f0f0) >> 4 ) | ( (n & 0x0f0f0f0f) << 4 ); - n = ( (n & 0xff00ff00) >> 8 ) | ( (n & 0x00ff00ff) << 8 ); - n = ( (n & 0xffff0000) >> 16 ) | ( (n & 0x0000ffff) << 16 ); - n >>= (32 - uLog2Length); - pfOutput[n] = pfInput[uIndex]; - } - } else { - // odd powers of two - for (UINT32 uIndex=0; uIndex>3); - n = ( (n & 0xcccccccc) >> 2 ) | ( (n & 0x33333333) << 2 ); - n = ( (n & 0xf0f0f0f0) >> 4 ) | ( (n & 0x0f0f0f0f) << 4 ); - n = ( (n & 0xff00ff00) >> 8 ) | ( (n & 0x00ff00ff) << 8 ); - n = ( (n & 0xffff0000) >> 16 ) | ( (n & 0x0000ffff) << 16 ); - n >>= (32 - (uLog2Length-3)); - n |= ((uIndex & 0x7) << (uLog2Length - 3)); - pfOutput[n] = pfInput[uIndex]; - } - } -} - - - //// - // DESCRIPTION: - // Convert complex components to polar form. - // - // PARAMETERS: - // pOutput - [out] output buffer, receives samples in polar form, must have at least uLength/4 elements - // pInputReal - [in] input buffer (real components), must have at least uLength/4 elements - // pInputImaginary - [in] input buffer (imaginary components), must have at least uLength/4 elements - // uLength - [in] FFT length in samples, must be a power of 2 >= 4 - // - // RETURN VALUE: - // void - //// -inline void FFTPolar (__out_ecount(uLength/4) XVECTOR* __restrict pOutput, __in_ecount(uLength/4) const XVECTOR* __restrict pInputReal, __in_ecount(uLength/4) const XVECTOR* __restrict pInputImaginary, const UINT32 uLength) -{ - DSPASSERT(pOutput != NULL); - DSPASSERT(pInputReal != NULL); - DSPASSERT(pInputImaginary != NULL); - DSPASSERT(uLength >= 4); - DSPASSERT(ISPOWEROF2(uLength)); - - FLOAT32 flOneOverLength = 1.0f / uLength; - - - // result = sqrtf((real/uLength)^2 + (imaginary/uLength)^2) * 2 - XVECTOR vOneOverLength = _mm_set_ps1(flOneOverLength); - - for (UINT32 uIndex=0; uIndex<(uLength>>2); ++uIndex) { - XVECTOR vReal = _mm_mul_ps(pInputReal[uIndex], vOneOverLength); - XVECTOR vImaginary = _mm_mul_ps(pInputImaginary[uIndex], vOneOverLength); - XVECTOR vRR = _mm_mul_ps(vReal, vReal); - XVECTOR vII = _mm_mul_ps(vImaginary, vImaginary); - XVECTOR vRRplusII = _mm_add_ps(vRR, vII); - XVECTOR vTotal = _mm_sqrt_ps(vRRplusII); - pOutput[uIndex] = _mm_add_ps(vTotal, vTotal); - } -} - - - - - -//--------------------------------------------------------------------------// - //// - // DESCRIPTION: - // Deinterleaves audio samples such that all samples corresponding to - - // - // REMARKS: - // For example, audio of the form [LRLRLR] becomes [LLLRRR]. - // - // PARAMETERS: - // pOutput - [out] output buffer, receives samples in deinterleaved form, cannot overlap pInput, must have at least (uChannelCount*uFrameCount)/4 elements - // pInput - [in] input buffer, cannot overlap pOutput, must have at least (uChannelCount*uFrameCount)/4 elements - // uChannelCount - [in] number of channels, must be > 1 - // uFrameCount - [in] number of frames of valid data, must be > 0 - // - // RETURN VALUE: - // void - //// -inline void Deinterleave (__out_ecount((uChannelCount*uFrameCount)/4) XVECTOR* __restrict pOutput, __in_ecount((uChannelCount*uFrameCount)/4) const XVECTOR* __restrict pInput, const UINT32 uChannelCount, const UINT32 uFrameCount) -{ - DSPASSERT(pOutput != NULL); - DSPASSERT(pInput != NULL); - DSPASSERT(uChannelCount > 1); - DSPASSERT(uFrameCount > 0); - - FLOAT32* __restrict pfOutput = (FLOAT32* __restrict)pOutput; - const FLOAT32* __restrict pfInput = (const FLOAT32* __restrict)pInput; - - - for (UINT32 uChannel=0; uChannel 1 - // uFrameCount - [in] number of frames of valid data, must be > 0 - // - // RETURN VALUE: - // void - //// -inline void Interleave (__out_ecount((uChannelCount*uFrameCount)/4) XVECTOR* __restrict pOutput, __in_ecount((uChannelCount*uFrameCount)/4) const XVECTOR* __restrict pInput, const UINT32 uChannelCount, const UINT32 uFrameCount) -{ - DSPASSERT(pOutput != NULL); - DSPASSERT(pInput != NULL); - DSPASSERT(uChannelCount > 1); - DSPASSERT(uFrameCount > 0); - - FLOAT32* __restrict pfOutput = (FLOAT32* __restrict)pOutput; - const FLOAT32* __restrict pfInput = (const FLOAT32* __restrict)pInput; - - - for (UINT32 uChannel=0; uChannel 0 && uChannelCount <= 6); - DSPASSERT(uLog2Length >= 2 && uLog2Length <= 9); - - XVECTOR vRealTemp[768]; - XVECTOR vImaginaryTemp[768]; - const UINT32 uLength = UINT32(1 << uLog2Length); - - - if (uChannelCount > 1) { - Deinterleave(vRealTemp, pReal, uChannelCount, uLength); - } else { - CopyMemory(vRealTemp, pReal, (uLength>>2)*sizeof(XVECTOR)); - } - for (UINT32 u=0; u>2); u++) { - vImaginaryTemp[u] = _mm_setzero_ps(); - } - - if (uLength > 16) { - for (UINT32 uChannel=0; uChannel>2)], &vImaginaryTemp[uChannel*(uLength>>2)], pUnityTable, uLength); - } - } else if (uLength == 16) { - for (UINT32 uChannel=0; uChannel>2)], &vImaginaryTemp[uChannel*(uLength>>2)]); - } - } else if (uLength == 8) { - for (UINT32 uChannel=0; uChannel>2)], &vImaginaryTemp[uChannel*(uLength>>2)]); - } - } else if (uLength == 4) { - for (UINT32 uChannel=0; uChannel>2)], &vImaginaryTemp[uChannel*(uLength>>2)]); - } - } - - for (UINT32 uChannel=0; uChannel>2)], &vRealTemp[uChannel*(uLength>>2)], uLog2Length); - FFTUnswizzle(&pImaginary[uChannel*(uLength>>2)], &vImaginaryTemp[uChannel*(uLength>>2)], uLog2Length); - } -} - - - //// - // DESCRIPTION: - // This function applies a 2^N-sample inverse FFT. - // Audio is interleaved if multichannel. - // - // PARAMETERS: - // pReal - [inout] real components, must have at least (1< 0 - // uLog2Length - [in] LOG (base 2) of FFT length in frames, must within [2, 10] - // - // RETURN VALUE: - // void - //// -inline void IFFTDeinterleaved (__inout_ecount((1< 0 && uChannelCount <= 6); - DSPASSERT(uLog2Length >= 2 && uLog2Length <= 9); - - XVECTOR vRealTemp[768]; - XVECTOR vImaginaryTemp[768]; - const UINT32 uLength = UINT32(1 << uLog2Length); - - - const XVECTOR vRnp = _mm_set_ps1(1.0f/uLength); - const XVECTOR vRnm = _mm_set_ps1(-1.0f/uLength); - for (UINT32 u=0; u>2); u++) { - vRealTemp[u] = _mm_mul_ps(pReal[u], vRnp); - vImaginaryTemp[u] = _mm_mul_ps(pImaginary[u], vRnm); - } - - if (uLength > 16) { - for (UINT32 uChannel=0; uChannel>2)], &vImaginaryTemp[uChannel*(uLength>>2)], pUnityTable, uLength); - } - } else if (uLength == 16) { - for (UINT32 uChannel=0; uChannel>2)], &vImaginaryTemp[uChannel*(uLength>>2)]); - } - } else if (uLength == 8) { - for (UINT32 uChannel=0; uChannel>2)], &vImaginaryTemp[uChannel*(uLength>>2)]); - } - } else if (uLength == 4) { - for (UINT32 uChannel=0; uChannel>2)], &vImaginaryTemp[uChannel*(uLength>>2)]); - } - } - - for (UINT32 uChannel=0; uChannel>2)], &vRealTemp[uChannel*(uLength>>2)], uLog2Length); - } - if (uChannelCount > 1) { - Interleave(pReal, vImaginaryTemp, uChannelCount, uLength); - } else { - CopyMemory(pReal, vImaginaryTemp, (uLength>>2)*sizeof(XVECTOR)); - } -} - - -#pragma warning(pop) -}; // namespace XDSP -//---------------------------------<-EOF->----------------------------------// - diff --git a/SDK/Include/XInput.h b/SDK/Include/XInput.h deleted file mode 100644 index c50a5cb..0000000 --- a/SDK/Include/XInput.h +++ /dev/null @@ -1,283 +0,0 @@ -/*************************************************************************** -* * -* XInput.h -- This module defines XBOX controller APIs * -* and constansts for the Windows platform. * -* * -* Copyright (c) Microsoft Corp. All rights reserved. * -* * -***************************************************************************/ -#ifndef _XINPUT_H_ -#define _XINPUT_H_ - -#include - -// Current name of the DLL shipped in the same SDK as this header. -// The name reflects the current version -#ifndef XINPUT_USE_9_1_0 -#define XINPUT_DLL_A "xinput1_3.dll" -#define XINPUT_DLL_W L"xinput1_3.dll" -#else -#define XINPUT_DLL_A "xinput9_1_0.dll" -#define XINPUT_DLL_W L"xinput9_1_0.dll" -#endif -#ifdef UNICODE - #define XINPUT_DLL XINPUT_DLL_W -#else - #define XINPUT_DLL XINPUT_DLL_A -#endif - -// -// Device types available in XINPUT_CAPABILITIES -// -#define XINPUT_DEVTYPE_GAMEPAD 0x01 - -// -// Device subtypes available in XINPUT_CAPABILITIES -// -#define XINPUT_DEVSUBTYPE_GAMEPAD 0x01 - -#ifndef XINPUT_USE_9_1_0 - -#define XINPUT_DEVSUBTYPE_WHEEL 0x02 -#define XINPUT_DEVSUBTYPE_ARCADE_STICK 0x03 -#define XINPUT_DEVSUBTYPE_FLIGHT_SICK 0x04 -#define XINPUT_DEVSUBTYPE_DANCE_PAD 0x05 -#define XINPUT_DEVSUBTYPE_GUITAR 0x06 -#define XINPUT_DEVSUBTYPE_DRUM_KIT 0x08 - -#endif // !XINPUT_USE_9_1_0 - - - -// -// Flags for XINPUT_CAPABILITIES -// -#define XINPUT_CAPS_VOICE_SUPPORTED 0x0004 - -// -// Constants for gamepad buttons -// -#define XINPUT_GAMEPAD_DPAD_UP 0x0001 -#define XINPUT_GAMEPAD_DPAD_DOWN 0x0002 -#define XINPUT_GAMEPAD_DPAD_LEFT 0x0004 -#define XINPUT_GAMEPAD_DPAD_RIGHT 0x0008 -#define XINPUT_GAMEPAD_START 0x0010 -#define XINPUT_GAMEPAD_BACK 0x0020 -#define XINPUT_GAMEPAD_LEFT_THUMB 0x0040 -#define XINPUT_GAMEPAD_RIGHT_THUMB 0x0080 -#define XINPUT_GAMEPAD_LEFT_SHOULDER 0x0100 -#define XINPUT_GAMEPAD_RIGHT_SHOULDER 0x0200 -#define XINPUT_GAMEPAD_A 0x1000 -#define XINPUT_GAMEPAD_B 0x2000 -#define XINPUT_GAMEPAD_X 0x4000 -#define XINPUT_GAMEPAD_Y 0x8000 - - -// -// Gamepad thresholds -// -#define XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE 7849 -#define XINPUT_GAMEPAD_RIGHT_THUMB_DEADZONE 8689 -#define XINPUT_GAMEPAD_TRIGGER_THRESHOLD 30 - -// -// Flags to pass to XInputGetCapabilities -// -#define XINPUT_FLAG_GAMEPAD 0x00000001 - - -#ifndef XINPUT_USE_9_1_0 - -// -// Devices that support batteries -// -#define BATTERY_DEVTYPE_GAMEPAD 0x00 -#define BATTERY_DEVTYPE_HEADSET 0x01 - -// -// Flags for battery status level -// -#define BATTERY_TYPE_DISCONNECTED 0x00 // This device is not connected -#define BATTERY_TYPE_WIRED 0x01 // Wired device, no battery -#define BATTERY_TYPE_ALKALINE 0x02 // Alkaline battery source -#define BATTERY_TYPE_NIMH 0x03 // Nickel Metal Hydride battery source -#define BATTERY_TYPE_UNKNOWN 0xFF // Cannot determine the battery type - -// These are only valid for wireless, connected devices, with known battery types -// The amount of use time remaining depends on the type of device. -#define BATTERY_LEVEL_EMPTY 0x00 -#define BATTERY_LEVEL_LOW 0x01 -#define BATTERY_LEVEL_MEDIUM 0x02 -#define BATTERY_LEVEL_FULL 0x03 - -// User index definitions -#define XUSER_MAX_COUNT 4 - -#define XUSER_INDEX_ANY 0x000000FF - - -// -// Codes returned for the gamepad keystroke -// - -#define VK_PAD_A 0x5800 -#define VK_PAD_B 0x5801 -#define VK_PAD_X 0x5802 -#define VK_PAD_Y 0x5803 -#define VK_PAD_RSHOULDER 0x5804 -#define VK_PAD_LSHOULDER 0x5805 -#define VK_PAD_LTRIGGER 0x5806 -#define VK_PAD_RTRIGGER 0x5807 - -#define VK_PAD_DPAD_UP 0x5810 -#define VK_PAD_DPAD_DOWN 0x5811 -#define VK_PAD_DPAD_LEFT 0x5812 -#define VK_PAD_DPAD_RIGHT 0x5813 -#define VK_PAD_START 0x5814 -#define VK_PAD_BACK 0x5815 -#define VK_PAD_LTHUMB_PRESS 0x5816 -#define VK_PAD_RTHUMB_PRESS 0x5817 - -#define VK_PAD_LTHUMB_UP 0x5820 -#define VK_PAD_LTHUMB_DOWN 0x5821 -#define VK_PAD_LTHUMB_RIGHT 0x5822 -#define VK_PAD_LTHUMB_LEFT 0x5823 -#define VK_PAD_LTHUMB_UPLEFT 0x5824 -#define VK_PAD_LTHUMB_UPRIGHT 0x5825 -#define VK_PAD_LTHUMB_DOWNRIGHT 0x5826 -#define VK_PAD_LTHUMB_DOWNLEFT 0x5827 - -#define VK_PAD_RTHUMB_UP 0x5830 -#define VK_PAD_RTHUMB_DOWN 0x5831 -#define VK_PAD_RTHUMB_RIGHT 0x5832 -#define VK_PAD_RTHUMB_LEFT 0x5833 -#define VK_PAD_RTHUMB_UPLEFT 0x5834 -#define VK_PAD_RTHUMB_UPRIGHT 0x5835 -#define VK_PAD_RTHUMB_DOWNRIGHT 0x5836 -#define VK_PAD_RTHUMB_DOWNLEFT 0x5837 - -// -// Flags used in XINPUT_KEYSTROKE -// -#define XINPUT_KEYSTROKE_KEYDOWN 0x0001 -#define XINPUT_KEYSTROKE_KEYUP 0x0002 -#define XINPUT_KEYSTROKE_REPEAT 0x0004 - -#endif //!XINPUT_USE_9_1_0 - -// -// Structures used by XInput APIs -// -typedef struct _XINPUT_GAMEPAD -{ - WORD wButtons; - BYTE bLeftTrigger; - BYTE bRightTrigger; - SHORT sThumbLX; - SHORT sThumbLY; - SHORT sThumbRX; - SHORT sThumbRY; -} XINPUT_GAMEPAD, *PXINPUT_GAMEPAD; - -typedef struct _XINPUT_STATE -{ - DWORD dwPacketNumber; - XINPUT_GAMEPAD Gamepad; -} XINPUT_STATE, *PXINPUT_STATE; - -typedef struct _XINPUT_VIBRATION -{ - WORD wLeftMotorSpeed; - WORD wRightMotorSpeed; -} XINPUT_VIBRATION, *PXINPUT_VIBRATION; - -typedef struct _XINPUT_CAPABILITIES -{ - BYTE Type; - BYTE SubType; - WORD Flags; - XINPUT_GAMEPAD Gamepad; - XINPUT_VIBRATION Vibration; -} XINPUT_CAPABILITIES, *PXINPUT_CAPABILITIES; - -#ifndef XINPUT_USE_9_1_0 - -typedef struct _XINPUT_BATTERY_INFORMATION -{ - BYTE BatteryType; - BYTE BatteryLevel; -} XINPUT_BATTERY_INFORMATION, *PXINPUT_BATTERY_INFORMATION; - -typedef struct _XINPUT_KEYSTROKE -{ - WORD VirtualKey; - WCHAR Unicode; - WORD Flags; - BYTE UserIndex; - BYTE HidCode; -} XINPUT_KEYSTROKE, *PXINPUT_KEYSTROKE; - -#endif // !XINPUT_USE_9_1_0 - -// -// XInput APIs -// -#ifdef __cplusplus -extern "C" { -#endif - -DWORD WINAPI XInputGetState -( - __in DWORD dwUserIndex, // Index of the gamer associated with the device - __out XINPUT_STATE* pState // Receives the current state -); - -DWORD WINAPI XInputSetState -( - __in DWORD dwUserIndex, // Index of the gamer associated with the device - __in XINPUT_VIBRATION* pVibration // The vibration information to send to the controller -); - -DWORD WINAPI XInputGetCapabilities -( - __in DWORD dwUserIndex, // Index of the gamer associated with the device - __in DWORD dwFlags, // Input flags that identify the device type - __out XINPUT_CAPABILITIES* pCapabilities // Receives the capabilities -); - -void WINAPI XInputEnable -( - __in BOOL enable // [in] Indicates whether xinput is enabled or disabled. -); - -DWORD WINAPI XInputGetDSoundAudioDeviceGuids -( - __in DWORD dwUserIndex, // Index of the gamer associated with the device - __out GUID* pDSoundRenderGuid, // DSound device ID for render - __out GUID* pDSoundCaptureGuid // DSound device ID for capture -); - -#ifndef XINPUT_USE_9_1_0 - -DWORD WINAPI XInputGetBatteryInformation -( - __in DWORD dwUserIndex, // Index of the gamer associated with the device - __in BYTE devType, // Which device on this user index - __out XINPUT_BATTERY_INFORMATION* pBatteryInformation // Contains the level and types of batteries -); - -DWORD WINAPI XInputGetKeystroke -( - __in DWORD dwUserIndex, // Index of the gamer associated with the device - __reserved DWORD dwReserved, // Reserved for future use - __out PXINPUT_KEYSTROKE pKeystroke // Pointer to an XINPUT_KEYSTROKE structure that receives an input event. -); - -#endif //!XINPUT_USE_9_1_0 - -#ifdef __cplusplus -} -#endif - -#endif //_XINPUT_H_ - diff --git a/SDK/Include/audiodefs.h b/SDK/Include/audiodefs.h deleted file mode 100644 index ff995ec..0000000 --- a/SDK/Include/audiodefs.h +++ /dev/null @@ -1,263 +0,0 @@ -/*************************************************************************** - * - * Copyright (c) Microsoft Corporation. All rights reserved. - * - * File: audiodefs.h - * Content: Basic constants and data types for audio work. - * - * Remarks: This header file defines all of the audio format constants and - * structures required for XAudio2 and XACT work. Providing these - * in a single location avoids certain dependency problems in the - * legacy audio headers (mmreg.h, mmsystem.h, ksmedia.h). - * - * NOTE: Including the legacy headers after this one may cause a - * compilation error, because they define some of the same types - * defined here without preprocessor guards to avoid multiple - * definitions. If a source file needs one of the old headers, - * it must include it before including audiodefs.h. - * - ***************************************************************************/ - -#ifndef __AUDIODEFS_INCLUDED__ -#define __AUDIODEFS_INCLUDED__ - -#include // For WORD, DWORD, etc. - -#pragma pack(push, 1) // Pack structures to 1-byte boundaries - - -/************************************************************************** - * - * WAVEFORMATEX: Base structure for many audio formats. Format-specific - * extensions can be defined for particular formats by using a non-zero - * cbSize value and adding extra fields to the end of this structure. - * - ***************************************************************************/ - -#ifndef _WAVEFORMATEX_ - - #define _WAVEFORMATEX_ - typedef struct tWAVEFORMATEX - { - WORD wFormatTag; // Integer identifier of the format - WORD nChannels; // Number of audio channels - DWORD nSamplesPerSec; // Audio sample rate - DWORD nAvgBytesPerSec; // Bytes per second (possibly approximate) - WORD nBlockAlign; // Size in bytes of a sample block (all channels) - WORD wBitsPerSample; // Size in bits of a single per-channel sample - WORD cbSize; // Bytes of extra data appended to this struct - } WAVEFORMATEX; - -#endif - -// Defining pointer types outside of the #if block to make sure they are -// defined even if mmreg.h or mmsystem.h is #included before this file - -typedef WAVEFORMATEX *PWAVEFORMATEX, *NPWAVEFORMATEX, *LPWAVEFORMATEX; -typedef const WAVEFORMATEX *PCWAVEFORMATEX, *LPCWAVEFORMATEX; - - -/************************************************************************** - * - * WAVEFORMATEXTENSIBLE: Extended version of WAVEFORMATEX that should be - * used as a basis for all new audio formats. The format tag is replaced - * with a GUID, allowing new formats to be defined without registering a - * format tag with Microsoft. There are also new fields that can be used - * to specify the spatial positions for each channel and the bit packing - * used for wide samples (e.g. 24-bit PCM samples in 32-bit containers). - * - ***************************************************************************/ - -#ifndef _WAVEFORMATEXTENSIBLE_ - - #define _WAVEFORMATEXTENSIBLE_ - typedef struct - { - WAVEFORMATEX Format; // Base WAVEFORMATEX data - union - { - WORD wValidBitsPerSample; // Valid bits in each sample container - WORD wSamplesPerBlock; // Samples per block of audio data; valid - // if wBitsPerSample=0 (but rarely used). - WORD wReserved; // Zero if neither case above applies. - } Samples; - DWORD dwChannelMask; // Positions of the audio channels - GUID SubFormat; // Format identifier GUID - } WAVEFORMATEXTENSIBLE; - -#endif - -typedef WAVEFORMATEXTENSIBLE *PWAVEFORMATEXTENSIBLE, *LPWAVEFORMATEXTENSIBLE; -typedef const WAVEFORMATEXTENSIBLE *PCWAVEFORMATEXTENSIBLE, *LPCWAVEFORMATEXTENSIBLE; - - - -/************************************************************************** - * - * Define the most common wave format tags used in WAVEFORMATEX formats. - * - ***************************************************************************/ - -#ifndef WAVE_FORMAT_PCM // Pulse Code Modulation - - // If WAVE_FORMAT_PCM is not defined, we need to define some legacy types - // for compatibility with the Windows mmreg.h / mmsystem.h header files. - - // Old general format structure (information common to all formats) - typedef struct waveformat_tag - { - WORD wFormatTag; - WORD nChannels; - DWORD nSamplesPerSec; - DWORD nAvgBytesPerSec; - WORD nBlockAlign; - } WAVEFORMAT, *PWAVEFORMAT, NEAR *NPWAVEFORMAT, FAR *LPWAVEFORMAT; - - // Specific format structure for PCM data - typedef struct pcmwaveformat_tag - { - WAVEFORMAT wf; - WORD wBitsPerSample; - } PCMWAVEFORMAT, *PPCMWAVEFORMAT, NEAR *NPPCMWAVEFORMAT, FAR *LPPCMWAVEFORMAT; - - #define WAVE_FORMAT_PCM 0x0001 - -#endif - -#ifndef WAVE_FORMAT_ADPCM // Microsoft Adaptive Differental PCM - - // Replicate the Microsoft ADPCM type definitions from mmreg.h. - - typedef struct adpcmcoef_tag - { - short iCoef1; - short iCoef2; - } ADPCMCOEFSET; - - #pragma warning(push) - #pragma warning(disable:4200) // Disable zero-sized array warnings - - typedef struct adpcmwaveformat_tag { - WAVEFORMATEX wfx; - WORD wSamplesPerBlock; - WORD wNumCoef; - ADPCMCOEFSET aCoef[]; // Always 7 coefficient pairs for MS ADPCM - } ADPCMWAVEFORMAT; - - #pragma warning(pop) - - #define WAVE_FORMAT_ADPCM 0x0002 - -#endif - -// Other frequently used format tags - -#ifndef WAVE_FORMAT_UNKNOWN - #define WAVE_FORMAT_UNKNOWN 0x0000 // Unknown or invalid format tag -#endif - -#ifndef WAVE_FORMAT_IEEE_FLOAT - #define WAVE_FORMAT_IEEE_FLOAT 0x0003 // 32-bit floating-point -#endif - -#ifndef WAVE_FORMAT_MPEGLAYER3 - #define WAVE_FORMAT_MPEGLAYER3 0x0055 // ISO/MPEG Layer3 -#endif - -#ifndef WAVE_FORMAT_DOLBY_AC3_SPDIF - #define WAVE_FORMAT_DOLBY_AC3_SPDIF 0x0092 // Dolby Audio Codec 3 over S/PDIF -#endif - -#ifndef WAVE_FORMAT_WMAUDIO2 - #define WAVE_FORMAT_WMAUDIO2 0x0161 // Windows Media Audio -#endif - -#ifndef WAVE_FORMAT_WMAUDIO3 - #define WAVE_FORMAT_WMAUDIO3 0x0162 // Windows Media Audio Pro -#endif - -#ifndef WAVE_FORMAT_WMASPDIF - #define WAVE_FORMAT_WMASPDIF 0x0164 // Windows Media Audio over S/PDIF -#endif - -#ifndef WAVE_FORMAT_EXTENSIBLE - #define WAVE_FORMAT_EXTENSIBLE 0xFFFE // All WAVEFORMATEXTENSIBLE formats -#endif - - -/************************************************************************** - * - * Define the most common wave format GUIDs used in WAVEFORMATEXTENSIBLE - * formats. Note that including the Windows ksmedia.h header after this - * one will cause build problems; this cannot be avoided, since ksmedia.h - * defines these macros without preprocessor guards. - * - ***************************************************************************/ - -#ifdef __cplusplus // uuid() and __uuidof() are only available in C++ - - #ifndef KSDATAFORMAT_SUBTYPE_PCM - struct __declspec(uuid("00000001-0000-0010-8000-00aa00389b71")) KSDATAFORMAT_SUBTYPE_PCM_STRUCT; - #define KSDATAFORMAT_SUBTYPE_PCM __uuidof(KSDATAFORMAT_SUBTYPE_PCM_STRUCT) - #endif - - #ifndef KSDATAFORMAT_SUBTYPE_ADPCM - struct __declspec(uuid("00000002-0000-0010-8000-00aa00389b71")) KSDATAFORMAT_SUBTYPE_ADPCM_STRUCT; - #define KSDATAFORMAT_SUBTYPE_ADPCM __uuidof(KSDATAFORMAT_SUBTYPE_ADPCM_STRUCT) - #endif - - #ifndef KSDATAFORMAT_SUBTYPE_IEEE_FLOAT - struct __declspec(uuid("00000003-0000-0010-8000-00aa00389b71")) KSDATAFORMAT_SUBTYPE_IEEE_FLOAT_STRUCT; - #define KSDATAFORMAT_SUBTYPE_IEEE_FLOAT __uuidof(KSDATAFORMAT_SUBTYPE_IEEE_FLOAT_STRUCT) - #endif - -#endif - - -/************************************************************************** - * - * Speaker positions used in the WAVEFORMATEXTENSIBLE dwChannelMask field. - * - ***************************************************************************/ - -#ifndef SPEAKER_FRONT_LEFT - #define SPEAKER_FRONT_LEFT 0x00000001 - #define SPEAKER_FRONT_RIGHT 0x00000002 - #define SPEAKER_FRONT_CENTER 0x00000004 - #define SPEAKER_LOW_FREQUENCY 0x00000008 - #define SPEAKER_BACK_LEFT 0x00000010 - #define SPEAKER_BACK_RIGHT 0x00000020 - #define SPEAKER_FRONT_LEFT_OF_CENTER 0x00000040 - #define SPEAKER_FRONT_RIGHT_OF_CENTER 0x00000080 - #define SPEAKER_BACK_CENTER 0x00000100 - #define SPEAKER_SIDE_LEFT 0x00000200 - #define SPEAKER_SIDE_RIGHT 0x00000400 - #define SPEAKER_TOP_CENTER 0x00000800 - #define SPEAKER_TOP_FRONT_LEFT 0x00001000 - #define SPEAKER_TOP_FRONT_CENTER 0x00002000 - #define SPEAKER_TOP_FRONT_RIGHT 0x00004000 - #define SPEAKER_TOP_BACK_LEFT 0x00008000 - #define SPEAKER_TOP_BACK_CENTER 0x00010000 - #define SPEAKER_TOP_BACK_RIGHT 0x00020000 - #define SPEAKER_RESERVED 0x7FFC0000 - #define SPEAKER_ALL 0x80000000 - #define _SPEAKER_POSITIONS_ -#endif - -#ifndef SPEAKER_STEREO - #define SPEAKER_MONO (SPEAKER_FRONT_CENTER) - #define SPEAKER_STEREO (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT) - #define SPEAKER_2POINT1 (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_LOW_FREQUENCY) - #define SPEAKER_SURROUND (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_FRONT_CENTER | SPEAKER_BACK_CENTER) - #define SPEAKER_QUAD (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_BACK_LEFT | SPEAKER_BACK_RIGHT) - #define SPEAKER_4POINT1 (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_LOW_FREQUENCY | SPEAKER_BACK_LEFT | SPEAKER_BACK_RIGHT) - #define SPEAKER_5POINT1 (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_FRONT_CENTER | SPEAKER_LOW_FREQUENCY | SPEAKER_BACK_LEFT | SPEAKER_BACK_RIGHT) - #define SPEAKER_7POINT1 (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_FRONT_CENTER | SPEAKER_LOW_FREQUENCY | SPEAKER_BACK_LEFT | SPEAKER_BACK_RIGHT | SPEAKER_FRONT_LEFT_OF_CENTER | SPEAKER_FRONT_RIGHT_OF_CENTER) - #define SPEAKER_5POINT1_SURROUND (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_FRONT_CENTER | SPEAKER_LOW_FREQUENCY | SPEAKER_SIDE_LEFT | SPEAKER_SIDE_RIGHT) - #define SPEAKER_7POINT1_SURROUND (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_FRONT_CENTER | SPEAKER_LOW_FREQUENCY | SPEAKER_BACK_LEFT | SPEAKER_BACK_RIGHT | SPEAKER_SIDE_LEFT | SPEAKER_SIDE_RIGHT) -#endif - - -#pragma pack(pop) - -#endif // #ifndef __AUDIODEFS_INCLUDED__ diff --git a/SDK/Include/comdecl.h b/SDK/Include/comdecl.h deleted file mode 100644 index 2ae9a96..0000000 --- a/SDK/Include/comdecl.h +++ /dev/null @@ -1,59 +0,0 @@ -// comdecl.h: Macros to facilitate COM interface and GUID declarations. -// Copyright (c) Microsoft Corporation. All rights reserved. - -#ifndef _COMDECL_H_ -#define _COMDECL_H_ - -#ifndef _XBOX - #include // For standard COM interface macros -#else - #pragma warning(push) - #pragma warning(disable:4061) - #include // Required by xobjbase.h - #include // Special definitions for Xbox build - #pragma warning(pop) -#endif - -// The DEFINE_CLSID() and DEFINE_IID() macros defined below allow COM GUIDs to -// be declared and defined in such a way that clients can obtain the GUIDs using -// either the __uuidof() extension or the old-style CLSID_Foo / IID_IFoo names. -// If using the latter approach, the client can also choose whether to get the -// GUID definitions by defining the INITGUID preprocessor constant or by linking -// to a GUID library. This works in either C or C++. - -#ifdef __cplusplus - - #define DECLSPEC_UUID_WRAPPER(x) __declspec(uuid(#x)) - #ifdef INITGUID - - #define DEFINE_CLSID(className, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \ - class DECLSPEC_UUID_WRAPPER(l##-##w1##-##w2##-##b1##b2##-##b3##b4##b5##b6##b7##b8) className; \ - EXTERN_C const GUID DECLSPEC_SELECTANY CLSID_##className = __uuidof(className) - - #define DEFINE_IID(interfaceName, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \ - interface DECLSPEC_UUID_WRAPPER(l##-##w1##-##w2##-##b1##b2##-##b3##b4##b5##b6##b7##b8) interfaceName; \ - EXTERN_C const GUID DECLSPEC_SELECTANY IID_##interfaceName = __uuidof(interfaceName) - - #else // INITGUID - - #define DEFINE_CLSID(className, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \ - class DECLSPEC_UUID_WRAPPER(l##-##w1##-##w2##-##b1##b2##-##b3##b4##b5##b6##b7##b8) className; \ - EXTERN_C const GUID CLSID_##className - - #define DEFINE_IID(interfaceName, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \ - interface DECLSPEC_UUID_WRAPPER(l##-##w1##-##w2##-##b1##b2##-##b3##b4##b5##b6##b7##b8) interfaceName; \ - EXTERN_C const GUID IID_##interfaceName - - #endif // INITGUID - -#else // __cplusplus - - #define DEFINE_CLSID(className, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \ - DEFINE_GUID(CLSID_##className, 0x##l, 0x##w1, 0x##w2, 0x##b1, 0x##b2, 0x##b3, 0x##b4, 0x##b5, 0x##b6, 0x##b7, 0x##b8) - - #define DEFINE_IID(interfaceName, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \ - DEFINE_GUID(IID_##interfaceName, 0x##l, 0x##w1, 0x##w2, 0x##b1, 0x##b2, 0x##b3, 0x##b4, 0x##b5, 0x##b6, 0x##b7, 0x##b8) - -#endif // __cplusplus - -#endif // #ifndef _COMDECL_H_ diff --git a/SDK/Include/d3d10misc.h b/SDK/Include/d3d10misc.h deleted file mode 100644 index a20644d..0000000 --- a/SDK/Include/d3d10misc.h +++ /dev/null @@ -1,143 +0,0 @@ -////////////////////////////////////////////////////////////////////////////// -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// -// File: D3D10Misc.h -// Content: D3D10 Device Creation APIs -// -////////////////////////////////////////////////////////////////////////////// - -#ifndef __D3D10MISC_H__ -#define __D3D10MISC_H__ - -#include "d3d10.h" - -// ID3D10Blob has been made version-neutral and moved to d3dcommon.h. - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - -/////////////////////////////////////////////////////////////////////////// -// D3D10_DRIVER_TYPE -// ---------------- -// -// This identifier is used to determine the implementation of Direct3D10 -// to be used. -// -// Pass one of these values to D3D10CreateDevice -// -/////////////////////////////////////////////////////////////////////////// -typedef enum D3D10_DRIVER_TYPE -{ - D3D10_DRIVER_TYPE_HARDWARE = 0, - D3D10_DRIVER_TYPE_REFERENCE = 1, - D3D10_DRIVER_TYPE_NULL = 2, - D3D10_DRIVER_TYPE_SOFTWARE = 3, - D3D10_DRIVER_TYPE_WARP = 5, -} D3D10_DRIVER_TYPE; - -DEFINE_GUID(GUID_DeviceType, -0xd722fb4d, 0x7a68, 0x437a, 0xb2, 0x0c, 0x58, 0x04, 0xee, 0x24, 0x94, 0xa6); - -/////////////////////////////////////////////////////////////////////////// -// D3D10CreateDevice -// ------------------ -// -// pAdapter -// If NULL, D3D10CreateDevice will choose the primary adapter and -// create a new instance from a temporarily created IDXGIFactory. -// If non-NULL, D3D10CreateDevice will register the appropriate -// device, if necessary (via IDXGIAdapter::RegisterDrver), before -// creating the device. -// DriverType -// Specifies the driver type to be created: hardware, reference or -// null. -// Software -// HMODULE of a DLL implementing a software rasterizer. Must be NULL for -// non-Software driver types. -// Flags -// Any of those documented for D3D10CreateDevice. -// SDKVersion -// SDK version. Use the D3D10_SDK_VERSION macro. -// ppDevice -// Pointer to returned interface. -// -// Return Values -// Any of those documented for -// CreateDXGIFactory -// IDXGIFactory::EnumAdapters -// IDXGIAdapter::RegisterDriver -// D3D10CreateDevice -// -/////////////////////////////////////////////////////////////////////////// -HRESULT WINAPI D3D10CreateDevice( - IDXGIAdapter *pAdapter, - D3D10_DRIVER_TYPE DriverType, - HMODULE Software, - UINT Flags, - UINT SDKVersion, - ID3D10Device **ppDevice); - -/////////////////////////////////////////////////////////////////////////// -// D3D10CreateDeviceAndSwapChain -// ------------------------------ -// -// ppAdapter -// If NULL, D3D10CreateDevice will choose the primary adapter and -// create a new instance from a temporarily created IDXGIFactory. -// If non-NULL, D3D10CreateDevice will register the appropriate -// device, if necessary (via IDXGIAdapter::RegisterDrver), before -// creating the device. -// DriverType -// Specifies the driver type to be created: hardware, reference or -// null. -// Software -// HMODULE of a DLL implementing a software rasterizer. Must be NULL for -// non-Software driver types. -// Flags -// Any of those documented for D3D10CreateDevice. -// SDKVersion -// SDK version. Use the D3D10_SDK_VERSION macro. -// pSwapChainDesc -// Swap chain description, may be NULL. -// ppSwapChain -// Pointer to returned interface. May be NULL. -// ppDevice -// Pointer to returned interface. -// -// Return Values -// Any of those documented for -// CreateDXGIFactory -// IDXGIFactory::EnumAdapters -// IDXGIAdapter::RegisterDriver -// D3D10CreateDevice -// IDXGIFactory::CreateSwapChain -// -/////////////////////////////////////////////////////////////////////////// -HRESULT WINAPI D3D10CreateDeviceAndSwapChain( - IDXGIAdapter *pAdapter, - D3D10_DRIVER_TYPE DriverType, - HMODULE Software, - UINT Flags, - UINT SDKVersion, - DXGI_SWAP_CHAIN_DESC *pSwapChainDesc, - IDXGISwapChain **ppSwapChain, - ID3D10Device **ppDevice); - - -/////////////////////////////////////////////////////////////////////////// -// D3D10CreateBlob: -// ----------------- -// Creates a Buffer of n Bytes -////////////////////////////////////////////////////////////////////////// - -HRESULT WINAPI D3D10CreateBlob(SIZE_T NumBytes, LPD3D10BLOB *ppBuffer); - -#ifdef __cplusplus -} -#endif //__cplusplus - -#endif //__D3D10EFFECT_H__ - - diff --git a/SDK/Include/d3d10sdklayers.h b/SDK/Include/d3d10sdklayers.h deleted file mode 100644 index ef432eb..0000000 --- a/SDK/Include/d3d10sdklayers.h +++ /dev/null @@ -1,1361 +0,0 @@ - - -/* this ALWAYS GENERATED file contains the definitions for the interfaces */ - - - /* File created by MIDL compiler version 7.00.0555 */ -/* Compiler settings for d3d10sdklayers.idl: - Oicf, W1, Zp8, env=Win64 (32b run), target_arch=AMD64 7.00.0555 - protocol : all , ms_ext, c_ext, robust - error checks: allocation ref bounds_check enum stub_data - VC __declspec() decoration level: - __declspec(uuid()), __declspec(selectany), __declspec(novtable) - DECLSPEC_UUID(), MIDL_INTERFACE() -*/ -/* @@MIDL_FILE_HEADING( ) */ - -#pragma warning( disable: 4049 ) /* more than 64k source lines */ - - -/* verify that the version is high enough to compile this file*/ -#ifndef __REQUIRED_RPCNDR_H_VERSION__ -#define __REQUIRED_RPCNDR_H_VERSION__ 475 -#endif - -/* verify that the version is high enough to compile this file*/ -#ifndef __REQUIRED_RPCSAL_H_VERSION__ -#define __REQUIRED_RPCSAL_H_VERSION__ 100 -#endif - -#include "rpc.h" -#include "rpcndr.h" - -#ifndef __RPCNDR_H_VERSION__ -#error this stub requires an updated version of -#endif // __RPCNDR_H_VERSION__ - -#ifndef COM_NO_WINDOWS_H -#include "windows.h" -#include "ole2.h" -#endif /*COM_NO_WINDOWS_H*/ - -#ifndef __d3d10sdklayers_h__ -#define __d3d10sdklayers_h__ - -#if defined(_MSC_VER) && (_MSC_VER >= 1020) -#pragma once -#endif - -/* Forward Declarations */ - -#ifndef __ID3D10Debug_FWD_DEFINED__ -#define __ID3D10Debug_FWD_DEFINED__ -typedef interface ID3D10Debug ID3D10Debug; -#endif /* __ID3D10Debug_FWD_DEFINED__ */ - - -#ifndef __ID3D10SwitchToRef_FWD_DEFINED__ -#define __ID3D10SwitchToRef_FWD_DEFINED__ -typedef interface ID3D10SwitchToRef ID3D10SwitchToRef; -#endif /* __ID3D10SwitchToRef_FWD_DEFINED__ */ - - -#ifndef __ID3D10InfoQueue_FWD_DEFINED__ -#define __ID3D10InfoQueue_FWD_DEFINED__ -typedef interface ID3D10InfoQueue ID3D10InfoQueue; -#endif /* __ID3D10InfoQueue_FWD_DEFINED__ */ - - -/* header files for imported files */ -#include "oaidl.h" -#include "ocidl.h" -#include "dxgi.h" - -#ifdef __cplusplus -extern "C"{ -#endif - - -/* interface __MIDL_itf_d3d10sdklayers_0000_0000 */ -/* [local] */ - -#define D3D10_SDK_LAYERS_VERSION ( 11 ) - -#define D3D10_DEBUG_FEATURE_FLUSH_PER_RENDER_OP ( 0x1 ) - -#define D3D10_DEBUG_FEATURE_FINISH_PER_RENDER_OP ( 0x2 ) - -#define D3D10_DEBUG_FEATURE_PRESENT_PER_RENDER_OP ( 0x4 ) - - - -extern RPC_IF_HANDLE __MIDL_itf_d3d10sdklayers_0000_0000_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d10sdklayers_0000_0000_v0_0_s_ifspec; - -#ifndef __ID3D10Debug_INTERFACE_DEFINED__ -#define __ID3D10Debug_INTERFACE_DEFINED__ - -/* interface ID3D10Debug */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10Debug; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("9B7E4E01-342C-4106-A19F-4F2704F689F0") - ID3D10Debug : public IUnknown - { - public: - virtual HRESULT STDMETHODCALLTYPE SetFeatureMask( - UINT Mask) = 0; - - virtual UINT STDMETHODCALLTYPE GetFeatureMask( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE SetPresentPerRenderOpDelay( - UINT Milliseconds) = 0; - - virtual UINT STDMETHODCALLTYPE GetPresentPerRenderOpDelay( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE SetSwapChain( - /* [annotation] */ - __in_opt IDXGISwapChain *pSwapChain) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetSwapChain( - /* [annotation] */ - __out IDXGISwapChain **ppSwapChain) = 0; - - virtual HRESULT STDMETHODCALLTYPE Validate( void) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D10DebugVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10Debug * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10Debug * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10Debug * This); - - HRESULT ( STDMETHODCALLTYPE *SetFeatureMask )( - ID3D10Debug * This, - UINT Mask); - - UINT ( STDMETHODCALLTYPE *GetFeatureMask )( - ID3D10Debug * This); - - HRESULT ( STDMETHODCALLTYPE *SetPresentPerRenderOpDelay )( - ID3D10Debug * This, - UINT Milliseconds); - - UINT ( STDMETHODCALLTYPE *GetPresentPerRenderOpDelay )( - ID3D10Debug * This); - - HRESULT ( STDMETHODCALLTYPE *SetSwapChain )( - ID3D10Debug * This, - /* [annotation] */ - __in_opt IDXGISwapChain *pSwapChain); - - HRESULT ( STDMETHODCALLTYPE *GetSwapChain )( - ID3D10Debug * This, - /* [annotation] */ - __out IDXGISwapChain **ppSwapChain); - - HRESULT ( STDMETHODCALLTYPE *Validate )( - ID3D10Debug * This); - - END_INTERFACE - } ID3D10DebugVtbl; - - interface ID3D10Debug - { - CONST_VTBL struct ID3D10DebugVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10Debug_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10Debug_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10Debug_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10Debug_SetFeatureMask(This,Mask) \ - ( (This)->lpVtbl -> SetFeatureMask(This,Mask) ) - -#define ID3D10Debug_GetFeatureMask(This) \ - ( (This)->lpVtbl -> GetFeatureMask(This) ) - -#define ID3D10Debug_SetPresentPerRenderOpDelay(This,Milliseconds) \ - ( (This)->lpVtbl -> SetPresentPerRenderOpDelay(This,Milliseconds) ) - -#define ID3D10Debug_GetPresentPerRenderOpDelay(This) \ - ( (This)->lpVtbl -> GetPresentPerRenderOpDelay(This) ) - -#define ID3D10Debug_SetSwapChain(This,pSwapChain) \ - ( (This)->lpVtbl -> SetSwapChain(This,pSwapChain) ) - -#define ID3D10Debug_GetSwapChain(This,ppSwapChain) \ - ( (This)->lpVtbl -> GetSwapChain(This,ppSwapChain) ) - -#define ID3D10Debug_Validate(This) \ - ( (This)->lpVtbl -> Validate(This) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10Debug_INTERFACE_DEFINED__ */ - - -#ifndef __ID3D10SwitchToRef_INTERFACE_DEFINED__ -#define __ID3D10SwitchToRef_INTERFACE_DEFINED__ - -/* interface ID3D10SwitchToRef */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10SwitchToRef; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("9B7E4E02-342C-4106-A19F-4F2704F689F0") - ID3D10SwitchToRef : public IUnknown - { - public: - virtual BOOL STDMETHODCALLTYPE SetUseRef( - BOOL UseRef) = 0; - - virtual BOOL STDMETHODCALLTYPE GetUseRef( void) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D10SwitchToRefVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10SwitchToRef * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10SwitchToRef * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10SwitchToRef * This); - - BOOL ( STDMETHODCALLTYPE *SetUseRef )( - ID3D10SwitchToRef * This, - BOOL UseRef); - - BOOL ( STDMETHODCALLTYPE *GetUseRef )( - ID3D10SwitchToRef * This); - - END_INTERFACE - } ID3D10SwitchToRefVtbl; - - interface ID3D10SwitchToRef - { - CONST_VTBL struct ID3D10SwitchToRefVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10SwitchToRef_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10SwitchToRef_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10SwitchToRef_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10SwitchToRef_SetUseRef(This,UseRef) \ - ( (This)->lpVtbl -> SetUseRef(This,UseRef) ) - -#define ID3D10SwitchToRef_GetUseRef(This) \ - ( (This)->lpVtbl -> GetUseRef(This) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10SwitchToRef_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d10sdklayers_0000_0002 */ -/* [local] */ - -typedef -enum D3D10_MESSAGE_CATEGORY - { D3D10_MESSAGE_CATEGORY_APPLICATION_DEFINED = 0, - D3D10_MESSAGE_CATEGORY_MISCELLANEOUS = ( D3D10_MESSAGE_CATEGORY_APPLICATION_DEFINED + 1 ) , - D3D10_MESSAGE_CATEGORY_INITIALIZATION = ( D3D10_MESSAGE_CATEGORY_MISCELLANEOUS + 1 ) , - D3D10_MESSAGE_CATEGORY_CLEANUP = ( D3D10_MESSAGE_CATEGORY_INITIALIZATION + 1 ) , - D3D10_MESSAGE_CATEGORY_COMPILATION = ( D3D10_MESSAGE_CATEGORY_CLEANUP + 1 ) , - D3D10_MESSAGE_CATEGORY_STATE_CREATION = ( D3D10_MESSAGE_CATEGORY_COMPILATION + 1 ) , - D3D10_MESSAGE_CATEGORY_STATE_SETTING = ( D3D10_MESSAGE_CATEGORY_STATE_CREATION + 1 ) , - D3D10_MESSAGE_CATEGORY_STATE_GETTING = ( D3D10_MESSAGE_CATEGORY_STATE_SETTING + 1 ) , - D3D10_MESSAGE_CATEGORY_RESOURCE_MANIPULATION = ( D3D10_MESSAGE_CATEGORY_STATE_GETTING + 1 ) , - D3D10_MESSAGE_CATEGORY_EXECUTION = ( D3D10_MESSAGE_CATEGORY_RESOURCE_MANIPULATION + 1 ) - } D3D10_MESSAGE_CATEGORY; - -typedef -enum D3D10_MESSAGE_SEVERITY - { D3D10_MESSAGE_SEVERITY_CORRUPTION = 0, - D3D10_MESSAGE_SEVERITY_ERROR = ( D3D10_MESSAGE_SEVERITY_CORRUPTION + 1 ) , - D3D10_MESSAGE_SEVERITY_WARNING = ( D3D10_MESSAGE_SEVERITY_ERROR + 1 ) , - D3D10_MESSAGE_SEVERITY_INFO = ( D3D10_MESSAGE_SEVERITY_WARNING + 1 ) - } D3D10_MESSAGE_SEVERITY; - -typedef -enum D3D10_MESSAGE_ID - { D3D10_MESSAGE_ID_UNKNOWN = 0, - D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_HAZARD = ( D3D10_MESSAGE_ID_UNKNOWN + 1 ) , - D3D10_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_HAZARD = ( D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_HAZARD + 1 ) , - D3D10_MESSAGE_ID_DEVICE_VSSETSHADERRESOURCES_HAZARD = ( D3D10_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_HAZARD + 1 ) , - D3D10_MESSAGE_ID_DEVICE_VSSETCONSTANTBUFFERS_HAZARD = ( D3D10_MESSAGE_ID_DEVICE_VSSETSHADERRESOURCES_HAZARD + 1 ) , - D3D10_MESSAGE_ID_DEVICE_GSSETSHADERRESOURCES_HAZARD = ( D3D10_MESSAGE_ID_DEVICE_VSSETCONSTANTBUFFERS_HAZARD + 1 ) , - D3D10_MESSAGE_ID_DEVICE_GSSETCONSTANTBUFFERS_HAZARD = ( D3D10_MESSAGE_ID_DEVICE_GSSETSHADERRESOURCES_HAZARD + 1 ) , - D3D10_MESSAGE_ID_DEVICE_PSSETSHADERRESOURCES_HAZARD = ( D3D10_MESSAGE_ID_DEVICE_GSSETCONSTANTBUFFERS_HAZARD + 1 ) , - D3D10_MESSAGE_ID_DEVICE_PSSETCONSTANTBUFFERS_HAZARD = ( D3D10_MESSAGE_ID_DEVICE_PSSETSHADERRESOURCES_HAZARD + 1 ) , - D3D10_MESSAGE_ID_DEVICE_OMSETRENDERTARGETS_HAZARD = ( D3D10_MESSAGE_ID_DEVICE_PSSETCONSTANTBUFFERS_HAZARD + 1 ) , - D3D10_MESSAGE_ID_DEVICE_SOSETTARGETS_HAZARD = ( D3D10_MESSAGE_ID_DEVICE_OMSETRENDERTARGETS_HAZARD + 1 ) , - D3D10_MESSAGE_ID_STRING_FROM_APPLICATION = ( D3D10_MESSAGE_ID_DEVICE_SOSETTARGETS_HAZARD + 1 ) , - D3D10_MESSAGE_ID_CORRUPTED_THIS = ( D3D10_MESSAGE_ID_STRING_FROM_APPLICATION + 1 ) , - D3D10_MESSAGE_ID_CORRUPTED_PARAMETER1 = ( D3D10_MESSAGE_ID_CORRUPTED_THIS + 1 ) , - D3D10_MESSAGE_ID_CORRUPTED_PARAMETER2 = ( D3D10_MESSAGE_ID_CORRUPTED_PARAMETER1 + 1 ) , - D3D10_MESSAGE_ID_CORRUPTED_PARAMETER3 = ( D3D10_MESSAGE_ID_CORRUPTED_PARAMETER2 + 1 ) , - D3D10_MESSAGE_ID_CORRUPTED_PARAMETER4 = ( D3D10_MESSAGE_ID_CORRUPTED_PARAMETER3 + 1 ) , - D3D10_MESSAGE_ID_CORRUPTED_PARAMETER5 = ( D3D10_MESSAGE_ID_CORRUPTED_PARAMETER4 + 1 ) , - D3D10_MESSAGE_ID_CORRUPTED_PARAMETER6 = ( D3D10_MESSAGE_ID_CORRUPTED_PARAMETER5 + 1 ) , - D3D10_MESSAGE_ID_CORRUPTED_PARAMETER7 = ( D3D10_MESSAGE_ID_CORRUPTED_PARAMETER6 + 1 ) , - D3D10_MESSAGE_ID_CORRUPTED_PARAMETER8 = ( D3D10_MESSAGE_ID_CORRUPTED_PARAMETER7 + 1 ) , - D3D10_MESSAGE_ID_CORRUPTED_PARAMETER9 = ( D3D10_MESSAGE_ID_CORRUPTED_PARAMETER8 + 1 ) , - D3D10_MESSAGE_ID_CORRUPTED_PARAMETER10 = ( D3D10_MESSAGE_ID_CORRUPTED_PARAMETER9 + 1 ) , - D3D10_MESSAGE_ID_CORRUPTED_PARAMETER11 = ( D3D10_MESSAGE_ID_CORRUPTED_PARAMETER10 + 1 ) , - D3D10_MESSAGE_ID_CORRUPTED_PARAMETER12 = ( D3D10_MESSAGE_ID_CORRUPTED_PARAMETER11 + 1 ) , - D3D10_MESSAGE_ID_CORRUPTED_PARAMETER13 = ( D3D10_MESSAGE_ID_CORRUPTED_PARAMETER12 + 1 ) , - D3D10_MESSAGE_ID_CORRUPTED_PARAMETER14 = ( D3D10_MESSAGE_ID_CORRUPTED_PARAMETER13 + 1 ) , - D3D10_MESSAGE_ID_CORRUPTED_PARAMETER15 = ( D3D10_MESSAGE_ID_CORRUPTED_PARAMETER14 + 1 ) , - D3D10_MESSAGE_ID_CORRUPTED_MULTITHREADING = ( D3D10_MESSAGE_ID_CORRUPTED_PARAMETER15 + 1 ) , - D3D10_MESSAGE_ID_MESSAGE_REPORTING_OUTOFMEMORY = ( D3D10_MESSAGE_ID_CORRUPTED_MULTITHREADING + 1 ) , - D3D10_MESSAGE_ID_IASETINPUTLAYOUT_UNBINDDELETINGOBJECT = ( D3D10_MESSAGE_ID_MESSAGE_REPORTING_OUTOFMEMORY + 1 ) , - D3D10_MESSAGE_ID_IASETVERTEXBUFFERS_UNBINDDELETINGOBJECT = ( D3D10_MESSAGE_ID_IASETINPUTLAYOUT_UNBINDDELETINGOBJECT + 1 ) , - D3D10_MESSAGE_ID_IASETINDEXBUFFER_UNBINDDELETINGOBJECT = ( D3D10_MESSAGE_ID_IASETVERTEXBUFFERS_UNBINDDELETINGOBJECT + 1 ) , - D3D10_MESSAGE_ID_VSSETSHADER_UNBINDDELETINGOBJECT = ( D3D10_MESSAGE_ID_IASETINDEXBUFFER_UNBINDDELETINGOBJECT + 1 ) , - D3D10_MESSAGE_ID_VSSETSHADERRESOURCES_UNBINDDELETINGOBJECT = ( D3D10_MESSAGE_ID_VSSETSHADER_UNBINDDELETINGOBJECT + 1 ) , - D3D10_MESSAGE_ID_VSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT = ( D3D10_MESSAGE_ID_VSSETSHADERRESOURCES_UNBINDDELETINGOBJECT + 1 ) , - D3D10_MESSAGE_ID_VSSETSAMPLERS_UNBINDDELETINGOBJECT = ( D3D10_MESSAGE_ID_VSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT + 1 ) , - D3D10_MESSAGE_ID_GSSETSHADER_UNBINDDELETINGOBJECT = ( D3D10_MESSAGE_ID_VSSETSAMPLERS_UNBINDDELETINGOBJECT + 1 ) , - D3D10_MESSAGE_ID_GSSETSHADERRESOURCES_UNBINDDELETINGOBJECT = ( D3D10_MESSAGE_ID_GSSETSHADER_UNBINDDELETINGOBJECT + 1 ) , - D3D10_MESSAGE_ID_GSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT = ( D3D10_MESSAGE_ID_GSSETSHADERRESOURCES_UNBINDDELETINGOBJECT + 1 ) , - D3D10_MESSAGE_ID_GSSETSAMPLERS_UNBINDDELETINGOBJECT = ( D3D10_MESSAGE_ID_GSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT + 1 ) , - D3D10_MESSAGE_ID_SOSETTARGETS_UNBINDDELETINGOBJECT = ( D3D10_MESSAGE_ID_GSSETSAMPLERS_UNBINDDELETINGOBJECT + 1 ) , - D3D10_MESSAGE_ID_PSSETSHADER_UNBINDDELETINGOBJECT = ( D3D10_MESSAGE_ID_SOSETTARGETS_UNBINDDELETINGOBJECT + 1 ) , - D3D10_MESSAGE_ID_PSSETSHADERRESOURCES_UNBINDDELETINGOBJECT = ( D3D10_MESSAGE_ID_PSSETSHADER_UNBINDDELETINGOBJECT + 1 ) , - D3D10_MESSAGE_ID_PSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT = ( D3D10_MESSAGE_ID_PSSETSHADERRESOURCES_UNBINDDELETINGOBJECT + 1 ) , - D3D10_MESSAGE_ID_PSSETSAMPLERS_UNBINDDELETINGOBJECT = ( D3D10_MESSAGE_ID_PSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT + 1 ) , - D3D10_MESSAGE_ID_RSSETSTATE_UNBINDDELETINGOBJECT = ( D3D10_MESSAGE_ID_PSSETSAMPLERS_UNBINDDELETINGOBJECT + 1 ) , - D3D10_MESSAGE_ID_OMSETBLENDSTATE_UNBINDDELETINGOBJECT = ( D3D10_MESSAGE_ID_RSSETSTATE_UNBINDDELETINGOBJECT + 1 ) , - D3D10_MESSAGE_ID_OMSETDEPTHSTENCILSTATE_UNBINDDELETINGOBJECT = ( D3D10_MESSAGE_ID_OMSETBLENDSTATE_UNBINDDELETINGOBJECT + 1 ) , - D3D10_MESSAGE_ID_OMSETRENDERTARGETS_UNBINDDELETINGOBJECT = ( D3D10_MESSAGE_ID_OMSETDEPTHSTENCILSTATE_UNBINDDELETINGOBJECT + 1 ) , - D3D10_MESSAGE_ID_SETPREDICATION_UNBINDDELETINGOBJECT = ( D3D10_MESSAGE_ID_OMSETRENDERTARGETS_UNBINDDELETINGOBJECT + 1 ) , - D3D10_MESSAGE_ID_GETPRIVATEDATA_MOREDATA = ( D3D10_MESSAGE_ID_SETPREDICATION_UNBINDDELETINGOBJECT + 1 ) , - D3D10_MESSAGE_ID_SETPRIVATEDATA_INVALIDFREEDATA = ( D3D10_MESSAGE_ID_GETPRIVATEDATA_MOREDATA + 1 ) , - D3D10_MESSAGE_ID_SETPRIVATEDATA_INVALIDIUNKNOWN = ( D3D10_MESSAGE_ID_SETPRIVATEDATA_INVALIDFREEDATA + 1 ) , - D3D10_MESSAGE_ID_SETPRIVATEDATA_INVALIDFLAGS = ( D3D10_MESSAGE_ID_SETPRIVATEDATA_INVALIDIUNKNOWN + 1 ) , - D3D10_MESSAGE_ID_SETPRIVATEDATA_CHANGINGPARAMS = ( D3D10_MESSAGE_ID_SETPRIVATEDATA_INVALIDFLAGS + 1 ) , - D3D10_MESSAGE_ID_SETPRIVATEDATA_OUTOFMEMORY = ( D3D10_MESSAGE_ID_SETPRIVATEDATA_CHANGINGPARAMS + 1 ) , - D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDFORMAT = ( D3D10_MESSAGE_ID_SETPRIVATEDATA_OUTOFMEMORY + 1 ) , - D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDSAMPLES = ( D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDFORMAT + 1 ) , - D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDUSAGE = ( D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDSAMPLES + 1 ) , - D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDBINDFLAGS = ( D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDUSAGE + 1 ) , - D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDCPUACCESSFLAGS = ( D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDBINDFLAGS + 1 ) , - D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDMISCFLAGS = ( D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDCPUACCESSFLAGS + 1 ) , - D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDCPUACCESSFLAGS = ( D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDMISCFLAGS + 1 ) , - D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDBINDFLAGS = ( D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDCPUACCESSFLAGS + 1 ) , - D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDINITIALDATA = ( D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDBINDFLAGS + 1 ) , - D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDDIMENSIONS = ( D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDINITIALDATA + 1 ) , - D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDMIPLEVELS = ( D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDDIMENSIONS + 1 ) , - D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDMISCFLAGS = ( D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDMIPLEVELS + 1 ) , - D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDARG_RETURN = ( D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDMISCFLAGS + 1 ) , - D3D10_MESSAGE_ID_CREATEBUFFER_OUTOFMEMORY_RETURN = ( D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDARG_RETURN + 1 ) , - D3D10_MESSAGE_ID_CREATEBUFFER_NULLDESC = ( D3D10_MESSAGE_ID_CREATEBUFFER_OUTOFMEMORY_RETURN + 1 ) , - D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDCONSTANTBUFFERBINDINGS = ( D3D10_MESSAGE_ID_CREATEBUFFER_NULLDESC + 1 ) , - D3D10_MESSAGE_ID_CREATEBUFFER_LARGEALLOCATION = ( D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDCONSTANTBUFFERBINDINGS + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDFORMAT = ( D3D10_MESSAGE_ID_CREATEBUFFER_LARGEALLOCATION + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE1D_UNSUPPORTEDFORMAT = ( D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDFORMAT + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDSAMPLES = ( D3D10_MESSAGE_ID_CREATETEXTURE1D_UNSUPPORTEDFORMAT + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDUSAGE = ( D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDSAMPLES + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDBINDFLAGS = ( D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDUSAGE + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDCPUACCESSFLAGS = ( D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDBINDFLAGS + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDMISCFLAGS = ( D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDCPUACCESSFLAGS + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDCPUACCESSFLAGS = ( D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDMISCFLAGS + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDBINDFLAGS = ( D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDCPUACCESSFLAGS + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDINITIALDATA = ( D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDBINDFLAGS + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDDIMENSIONS = ( D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDINITIALDATA + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDMIPLEVELS = ( D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDDIMENSIONS + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDMISCFLAGS = ( D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDMIPLEVELS + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDARG_RETURN = ( D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDMISCFLAGS + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE1D_OUTOFMEMORY_RETURN = ( D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDARG_RETURN + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE1D_NULLDESC = ( D3D10_MESSAGE_ID_CREATETEXTURE1D_OUTOFMEMORY_RETURN + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE1D_LARGEALLOCATION = ( D3D10_MESSAGE_ID_CREATETEXTURE1D_NULLDESC + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDFORMAT = ( D3D10_MESSAGE_ID_CREATETEXTURE1D_LARGEALLOCATION + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE2D_UNSUPPORTEDFORMAT = ( D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDFORMAT + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDSAMPLES = ( D3D10_MESSAGE_ID_CREATETEXTURE2D_UNSUPPORTEDFORMAT + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDUSAGE = ( D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDSAMPLES + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDBINDFLAGS = ( D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDUSAGE + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDCPUACCESSFLAGS = ( D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDBINDFLAGS + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDMISCFLAGS = ( D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDCPUACCESSFLAGS + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDCPUACCESSFLAGS = ( D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDMISCFLAGS + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDBINDFLAGS = ( D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDCPUACCESSFLAGS + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDINITIALDATA = ( D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDBINDFLAGS + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDDIMENSIONS = ( D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDINITIALDATA + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDMIPLEVELS = ( D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDDIMENSIONS + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDMISCFLAGS = ( D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDMIPLEVELS + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDARG_RETURN = ( D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDMISCFLAGS + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE2D_OUTOFMEMORY_RETURN = ( D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDARG_RETURN + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE2D_NULLDESC = ( D3D10_MESSAGE_ID_CREATETEXTURE2D_OUTOFMEMORY_RETURN + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE2D_LARGEALLOCATION = ( D3D10_MESSAGE_ID_CREATETEXTURE2D_NULLDESC + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDFORMAT = ( D3D10_MESSAGE_ID_CREATETEXTURE2D_LARGEALLOCATION + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE3D_UNSUPPORTEDFORMAT = ( D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDFORMAT + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDSAMPLES = ( D3D10_MESSAGE_ID_CREATETEXTURE3D_UNSUPPORTEDFORMAT + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDUSAGE = ( D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDSAMPLES + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDBINDFLAGS = ( D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDUSAGE + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDCPUACCESSFLAGS = ( D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDBINDFLAGS + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDMISCFLAGS = ( D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDCPUACCESSFLAGS + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDCPUACCESSFLAGS = ( D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDMISCFLAGS + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDBINDFLAGS = ( D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDCPUACCESSFLAGS + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDINITIALDATA = ( D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDBINDFLAGS + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDDIMENSIONS = ( D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDINITIALDATA + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDMIPLEVELS = ( D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDDIMENSIONS + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDMISCFLAGS = ( D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDMIPLEVELS + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDARG_RETURN = ( D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDMISCFLAGS + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE3D_OUTOFMEMORY_RETURN = ( D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDARG_RETURN + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE3D_NULLDESC = ( D3D10_MESSAGE_ID_CREATETEXTURE3D_OUTOFMEMORY_RETURN + 1 ) , - D3D10_MESSAGE_ID_CREATETEXTURE3D_LARGEALLOCATION = ( D3D10_MESSAGE_ID_CREATETEXTURE3D_NULLDESC + 1 ) , - D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_UNRECOGNIZEDFORMAT = ( D3D10_MESSAGE_ID_CREATETEXTURE3D_LARGEALLOCATION + 1 ) , - D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDESC = ( D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_UNRECOGNIZEDFORMAT + 1 ) , - D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDFORMAT = ( D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDESC + 1 ) , - D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDIMENSIONS = ( D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDFORMAT + 1 ) , - D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDRESOURCE = ( D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDIMENSIONS + 1 ) , - D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_TOOMANYOBJECTS = ( D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDRESOURCE + 1 ) , - D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDARG_RETURN = ( D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_TOOMANYOBJECTS + 1 ) , - D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_OUTOFMEMORY_RETURN = ( D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDARG_RETURN + 1 ) , - D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_UNRECOGNIZEDFORMAT = ( D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_OUTOFMEMORY_RETURN + 1 ) , - D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_UNSUPPORTEDFORMAT = ( D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_UNRECOGNIZEDFORMAT + 1 ) , - D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDESC = ( D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_UNSUPPORTEDFORMAT + 1 ) , - D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDFORMAT = ( D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDESC + 1 ) , - D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDIMENSIONS = ( D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDFORMAT + 1 ) , - D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDRESOURCE = ( D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDIMENSIONS + 1 ) , - D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_TOOMANYOBJECTS = ( D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDRESOURCE + 1 ) , - D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDARG_RETURN = ( D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_TOOMANYOBJECTS + 1 ) , - D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_OUTOFMEMORY_RETURN = ( D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDARG_RETURN + 1 ) , - D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_UNRECOGNIZEDFORMAT = ( D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_OUTOFMEMORY_RETURN + 1 ) , - D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDESC = ( D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_UNRECOGNIZEDFORMAT + 1 ) , - D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDFORMAT = ( D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDESC + 1 ) , - D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDIMENSIONS = ( D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDFORMAT + 1 ) , - D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDRESOURCE = ( D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDIMENSIONS + 1 ) , - D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_TOOMANYOBJECTS = ( D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDRESOURCE + 1 ) , - D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDARG_RETURN = ( D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_TOOMANYOBJECTS + 1 ) , - D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_OUTOFMEMORY_RETURN = ( D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDARG_RETURN + 1 ) , - D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_OUTOFMEMORY = ( D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_OUTOFMEMORY_RETURN + 1 ) , - D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_TOOMANYELEMENTS = ( D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_OUTOFMEMORY + 1 ) , - D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDFORMAT = ( D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_TOOMANYELEMENTS + 1 ) , - D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INCOMPATIBLEFORMAT = ( D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDFORMAT + 1 ) , - D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOT = ( D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INCOMPATIBLEFORMAT + 1 ) , - D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDINPUTSLOTCLASS = ( D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOT + 1 ) , - D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_STEPRATESLOTCLASSMISMATCH = ( D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDINPUTSLOTCLASS + 1 ) , - D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOTCLASSCHANGE = ( D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_STEPRATESLOTCLASSMISMATCH + 1 ) , - D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSTEPRATECHANGE = ( D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOTCLASSCHANGE + 1 ) , - D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDALIGNMENT = ( D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSTEPRATECHANGE + 1 ) , - D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_DUPLICATESEMANTIC = ( D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDALIGNMENT + 1 ) , - D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_UNPARSEABLEINPUTSIGNATURE = ( D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_DUPLICATESEMANTIC + 1 ) , - D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_NULLSEMANTIC = ( D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_UNPARSEABLEINPUTSIGNATURE + 1 ) , - D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_MISSINGELEMENT = ( D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_NULLSEMANTIC + 1 ) , - D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_NULLDESC = ( D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_MISSINGELEMENT + 1 ) , - D3D10_MESSAGE_ID_CREATEVERTEXSHADER_OUTOFMEMORY = ( D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_NULLDESC + 1 ) , - D3D10_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERBYTECODE = ( D3D10_MESSAGE_ID_CREATEVERTEXSHADER_OUTOFMEMORY + 1 ) , - D3D10_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERTYPE = ( D3D10_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERBYTECODE + 1 ) , - D3D10_MESSAGE_ID_CREATEGEOMETRYSHADER_OUTOFMEMORY = ( D3D10_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERTYPE + 1 ) , - D3D10_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERBYTECODE = ( D3D10_MESSAGE_ID_CREATEGEOMETRYSHADER_OUTOFMEMORY + 1 ) , - D3D10_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERTYPE = ( D3D10_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERBYTECODE + 1 ) , - D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTOFMEMORY = ( D3D10_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERTYPE + 1 ) , - D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERBYTECODE = ( D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTOFMEMORY + 1 ) , - D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERTYPE = ( D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERBYTECODE + 1 ) , - D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMENTRIES = ( D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERTYPE + 1 ) , - D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSTREAMSTRIDEUNUSED = ( D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMENTRIES + 1 ) , - D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDDECL = ( D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSTREAMSTRIDEUNUSED + 1 ) , - D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_EXPECTEDDECL = ( D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDDECL + 1 ) , - D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSLOT0EXPECTED = ( D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_EXPECTEDDECL + 1 ) , - D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSLOT = ( D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSLOT0EXPECTED + 1 ) , - D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_ONLYONEELEMENTPERSLOT = ( D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSLOT + 1 ) , - D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDCOMPONENTCOUNT = ( D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_ONLYONEELEMENTPERSLOT + 1 ) , - D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTARTCOMPONENTANDCOMPONENTCOUNT = ( D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDCOMPONENTCOUNT + 1 ) , - D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDGAPDEFINITION = ( D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTARTCOMPONENTANDCOMPONENTCOUNT + 1 ) , - D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_REPEATEDOUTPUT = ( D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDGAPDEFINITION + 1 ) , - D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSTREAMSTRIDE = ( D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_REPEATEDOUTPUT + 1 ) , - D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGSEMANTIC = ( D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSTREAMSTRIDE + 1 ) , - D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MASKMISMATCH = ( D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGSEMANTIC + 1 ) , - D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_CANTHAVEONLYGAPS = ( D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MASKMISMATCH + 1 ) , - D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DECLTOOCOMPLEX = ( D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_CANTHAVEONLYGAPS + 1 ) , - D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGOUTPUTSIGNATURE = ( D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DECLTOOCOMPLEX + 1 ) , - D3D10_MESSAGE_ID_CREATEPIXELSHADER_OUTOFMEMORY = ( D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGOUTPUTSIGNATURE + 1 ) , - D3D10_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERBYTECODE = ( D3D10_MESSAGE_ID_CREATEPIXELSHADER_OUTOFMEMORY + 1 ) , - D3D10_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERTYPE = ( D3D10_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERBYTECODE + 1 ) , - D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDFILLMODE = ( D3D10_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERTYPE + 1 ) , - D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDCULLMODE = ( D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDFILLMODE + 1 ) , - D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDDEPTHBIASCLAMP = ( D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDCULLMODE + 1 ) , - D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDSLOPESCALEDDEPTHBIAS = ( D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDDEPTHBIASCLAMP + 1 ) , - D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_TOOMANYOBJECTS = ( D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDSLOPESCALEDDEPTHBIAS + 1 ) , - D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_NULLDESC = ( D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_TOOMANYOBJECTS + 1 ) , - D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHWRITEMASK = ( D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_NULLDESC + 1 ) , - D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHFUNC = ( D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHWRITEMASK + 1 ) , - D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFAILOP = ( D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHFUNC + 1 ) , - D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILZFAILOP = ( D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFAILOP + 1 ) , - D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILPASSOP = ( D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILZFAILOP + 1 ) , - D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFUNC = ( D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILPASSOP + 1 ) , - D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFAILOP = ( D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFUNC + 1 ) , - D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILZFAILOP = ( D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFAILOP + 1 ) , - D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILPASSOP = ( D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILZFAILOP + 1 ) , - D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFUNC = ( D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILPASSOP + 1 ) , - D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_TOOMANYOBJECTS = ( D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFUNC + 1 ) , - D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_NULLDESC = ( D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_TOOMANYOBJECTS + 1 ) , - D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLEND = ( D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_NULLDESC + 1 ) , - D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLEND = ( D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLEND + 1 ) , - D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOP = ( D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLEND + 1 ) , - D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLENDALPHA = ( D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOP + 1 ) , - D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLENDALPHA = ( D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLENDALPHA + 1 ) , - D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOPALPHA = ( D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLENDALPHA + 1 ) , - D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDRENDERTARGETWRITEMASK = ( D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOPALPHA + 1 ) , - D3D10_MESSAGE_ID_CREATEBLENDSTATE_TOOMANYOBJECTS = ( D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDRENDERTARGETWRITEMASK + 1 ) , - D3D10_MESSAGE_ID_CREATEBLENDSTATE_NULLDESC = ( D3D10_MESSAGE_ID_CREATEBLENDSTATE_TOOMANYOBJECTS + 1 ) , - D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDFILTER = ( D3D10_MESSAGE_ID_CREATEBLENDSTATE_NULLDESC + 1 ) , - D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSU = ( D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDFILTER + 1 ) , - D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSV = ( D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSU + 1 ) , - D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSW = ( D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSV + 1 ) , - D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMIPLODBIAS = ( D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSW + 1 ) , - D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMAXANISOTROPY = ( D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMIPLODBIAS + 1 ) , - D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDCOMPARISONFUNC = ( D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMAXANISOTROPY + 1 ) , - D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMINLOD = ( D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDCOMPARISONFUNC + 1 ) , - D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMAXLOD = ( D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMINLOD + 1 ) , - D3D10_MESSAGE_ID_CREATESAMPLERSTATE_TOOMANYOBJECTS = ( D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMAXLOD + 1 ) , - D3D10_MESSAGE_ID_CREATESAMPLERSTATE_NULLDESC = ( D3D10_MESSAGE_ID_CREATESAMPLERSTATE_TOOMANYOBJECTS + 1 ) , - D3D10_MESSAGE_ID_CREATEQUERYORPREDICATE_INVALIDQUERY = ( D3D10_MESSAGE_ID_CREATESAMPLERSTATE_NULLDESC + 1 ) , - D3D10_MESSAGE_ID_CREATEQUERYORPREDICATE_INVALIDMISCFLAGS = ( D3D10_MESSAGE_ID_CREATEQUERYORPREDICATE_INVALIDQUERY + 1 ) , - D3D10_MESSAGE_ID_CREATEQUERYORPREDICATE_UNEXPECTEDMISCFLAG = ( D3D10_MESSAGE_ID_CREATEQUERYORPREDICATE_INVALIDMISCFLAGS + 1 ) , - D3D10_MESSAGE_ID_CREATEQUERYORPREDICATE_NULLDESC = ( D3D10_MESSAGE_ID_CREATEQUERYORPREDICATE_UNEXPECTEDMISCFLAG + 1 ) , - D3D10_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_TOPOLOGY_UNRECOGNIZED = ( D3D10_MESSAGE_ID_CREATEQUERYORPREDICATE_NULLDESC + 1 ) , - D3D10_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_TOPOLOGY_UNDEFINED = ( D3D10_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_TOPOLOGY_UNRECOGNIZED + 1 ) , - D3D10_MESSAGE_ID_IASETVERTEXBUFFERS_INVALIDBUFFER = ( D3D10_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_TOPOLOGY_UNDEFINED + 1 ) , - D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_OFFSET_TOO_LARGE = ( D3D10_MESSAGE_ID_IASETVERTEXBUFFERS_INVALIDBUFFER + 1 ) , - D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_BUFFERS_EMPTY = ( D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_OFFSET_TOO_LARGE + 1 ) , - D3D10_MESSAGE_ID_IASETINDEXBUFFER_INVALIDBUFFER = ( D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_BUFFERS_EMPTY + 1 ) , - D3D10_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_FORMAT_INVALID = ( D3D10_MESSAGE_ID_IASETINDEXBUFFER_INVALIDBUFFER + 1 ) , - D3D10_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_OFFSET_TOO_LARGE = ( D3D10_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_FORMAT_INVALID + 1 ) , - D3D10_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_OFFSET_UNALIGNED = ( D3D10_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_OFFSET_TOO_LARGE + 1 ) , - D3D10_MESSAGE_ID_DEVICE_VSSETSHADERRESOURCES_VIEWS_EMPTY = ( D3D10_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_OFFSET_UNALIGNED + 1 ) , - D3D10_MESSAGE_ID_VSSETCONSTANTBUFFERS_INVALIDBUFFER = ( D3D10_MESSAGE_ID_DEVICE_VSSETSHADERRESOURCES_VIEWS_EMPTY + 1 ) , - D3D10_MESSAGE_ID_DEVICE_VSSETCONSTANTBUFFERS_BUFFERS_EMPTY = ( D3D10_MESSAGE_ID_VSSETCONSTANTBUFFERS_INVALIDBUFFER + 1 ) , - D3D10_MESSAGE_ID_DEVICE_VSSETSAMPLERS_SAMPLERS_EMPTY = ( D3D10_MESSAGE_ID_DEVICE_VSSETCONSTANTBUFFERS_BUFFERS_EMPTY + 1 ) , - D3D10_MESSAGE_ID_DEVICE_GSSETSHADERRESOURCES_VIEWS_EMPTY = ( D3D10_MESSAGE_ID_DEVICE_VSSETSAMPLERS_SAMPLERS_EMPTY + 1 ) , - D3D10_MESSAGE_ID_GSSETCONSTANTBUFFERS_INVALIDBUFFER = ( D3D10_MESSAGE_ID_DEVICE_GSSETSHADERRESOURCES_VIEWS_EMPTY + 1 ) , - D3D10_MESSAGE_ID_DEVICE_GSSETCONSTANTBUFFERS_BUFFERS_EMPTY = ( D3D10_MESSAGE_ID_GSSETCONSTANTBUFFERS_INVALIDBUFFER + 1 ) , - D3D10_MESSAGE_ID_DEVICE_GSSETSAMPLERS_SAMPLERS_EMPTY = ( D3D10_MESSAGE_ID_DEVICE_GSSETCONSTANTBUFFERS_BUFFERS_EMPTY + 1 ) , - D3D10_MESSAGE_ID_SOSETTARGETS_INVALIDBUFFER = ( D3D10_MESSAGE_ID_DEVICE_GSSETSAMPLERS_SAMPLERS_EMPTY + 1 ) , - D3D10_MESSAGE_ID_DEVICE_SOSETTARGETS_OFFSET_UNALIGNED = ( D3D10_MESSAGE_ID_SOSETTARGETS_INVALIDBUFFER + 1 ) , - D3D10_MESSAGE_ID_DEVICE_PSSETSHADERRESOURCES_VIEWS_EMPTY = ( D3D10_MESSAGE_ID_DEVICE_SOSETTARGETS_OFFSET_UNALIGNED + 1 ) , - D3D10_MESSAGE_ID_PSSETCONSTANTBUFFERS_INVALIDBUFFER = ( D3D10_MESSAGE_ID_DEVICE_PSSETSHADERRESOURCES_VIEWS_EMPTY + 1 ) , - D3D10_MESSAGE_ID_DEVICE_PSSETCONSTANTBUFFERS_BUFFERS_EMPTY = ( D3D10_MESSAGE_ID_PSSETCONSTANTBUFFERS_INVALIDBUFFER + 1 ) , - D3D10_MESSAGE_ID_DEVICE_PSSETSAMPLERS_SAMPLERS_EMPTY = ( D3D10_MESSAGE_ID_DEVICE_PSSETCONSTANTBUFFERS_BUFFERS_EMPTY + 1 ) , - D3D10_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_INVALIDVIEWPORT = ( D3D10_MESSAGE_ID_DEVICE_PSSETSAMPLERS_SAMPLERS_EMPTY + 1 ) , - D3D10_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_INVALIDSCISSOR = ( D3D10_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_INVALIDVIEWPORT + 1 ) , - D3D10_MESSAGE_ID_CLEARRENDERTARGETVIEW_DENORMFLUSH = ( D3D10_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_INVALIDSCISSOR + 1 ) , - D3D10_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_DENORMFLUSH = ( D3D10_MESSAGE_ID_CLEARRENDERTARGETVIEW_DENORMFLUSH + 1 ) , - D3D10_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_INVALID = ( D3D10_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_DENORMFLUSH + 1 ) , - D3D10_MESSAGE_ID_DEVICE_IAGETVERTEXBUFFERS_BUFFERS_EMPTY = ( D3D10_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_INVALID + 1 ) , - D3D10_MESSAGE_ID_DEVICE_VSGETSHADERRESOURCES_VIEWS_EMPTY = ( D3D10_MESSAGE_ID_DEVICE_IAGETVERTEXBUFFERS_BUFFERS_EMPTY + 1 ) , - D3D10_MESSAGE_ID_DEVICE_VSGETCONSTANTBUFFERS_BUFFERS_EMPTY = ( D3D10_MESSAGE_ID_DEVICE_VSGETSHADERRESOURCES_VIEWS_EMPTY + 1 ) , - D3D10_MESSAGE_ID_DEVICE_VSGETSAMPLERS_SAMPLERS_EMPTY = ( D3D10_MESSAGE_ID_DEVICE_VSGETCONSTANTBUFFERS_BUFFERS_EMPTY + 1 ) , - D3D10_MESSAGE_ID_DEVICE_GSGETSHADERRESOURCES_VIEWS_EMPTY = ( D3D10_MESSAGE_ID_DEVICE_VSGETSAMPLERS_SAMPLERS_EMPTY + 1 ) , - D3D10_MESSAGE_ID_DEVICE_GSGETCONSTANTBUFFERS_BUFFERS_EMPTY = ( D3D10_MESSAGE_ID_DEVICE_GSGETSHADERRESOURCES_VIEWS_EMPTY + 1 ) , - D3D10_MESSAGE_ID_DEVICE_GSGETSAMPLERS_SAMPLERS_EMPTY = ( D3D10_MESSAGE_ID_DEVICE_GSGETCONSTANTBUFFERS_BUFFERS_EMPTY + 1 ) , - D3D10_MESSAGE_ID_DEVICE_SOGETTARGETS_BUFFERS_EMPTY = ( D3D10_MESSAGE_ID_DEVICE_GSGETSAMPLERS_SAMPLERS_EMPTY + 1 ) , - D3D10_MESSAGE_ID_DEVICE_PSGETSHADERRESOURCES_VIEWS_EMPTY = ( D3D10_MESSAGE_ID_DEVICE_SOGETTARGETS_BUFFERS_EMPTY + 1 ) , - D3D10_MESSAGE_ID_DEVICE_PSGETCONSTANTBUFFERS_BUFFERS_EMPTY = ( D3D10_MESSAGE_ID_DEVICE_PSGETSHADERRESOURCES_VIEWS_EMPTY + 1 ) , - D3D10_MESSAGE_ID_DEVICE_PSGETSAMPLERS_SAMPLERS_EMPTY = ( D3D10_MESSAGE_ID_DEVICE_PSGETCONSTANTBUFFERS_BUFFERS_EMPTY + 1 ) , - D3D10_MESSAGE_ID_DEVICE_RSGETVIEWPORTS_VIEWPORTS_EMPTY = ( D3D10_MESSAGE_ID_DEVICE_PSGETSAMPLERS_SAMPLERS_EMPTY + 1 ) , - D3D10_MESSAGE_ID_DEVICE_RSGETSCISSORRECTS_RECTS_EMPTY = ( D3D10_MESSAGE_ID_DEVICE_RSGETVIEWPORTS_VIEWPORTS_EMPTY + 1 ) , - D3D10_MESSAGE_ID_DEVICE_GENERATEMIPS_RESOURCE_INVALID = ( D3D10_MESSAGE_ID_DEVICE_RSGETSCISSORRECTS_RECTS_EMPTY + 1 ) , - D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDDESTINATIONSUBRESOURCE = ( D3D10_MESSAGE_ID_DEVICE_GENERATEMIPS_RESOURCE_INVALID + 1 ) , - D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCESUBRESOURCE = ( D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDDESTINATIONSUBRESOURCE + 1 ) , - D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCEBOX = ( D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCESUBRESOURCE + 1 ) , - D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCE = ( D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCEBOX + 1 ) , - D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDDESTINATIONSTATE = ( D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCE + 1 ) , - D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCESTATE = ( D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDDESTINATIONSTATE + 1 ) , - D3D10_MESSAGE_ID_COPYRESOURCE_INVALIDSOURCE = ( D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCESTATE + 1 ) , - D3D10_MESSAGE_ID_COPYRESOURCE_INVALIDDESTINATIONSTATE = ( D3D10_MESSAGE_ID_COPYRESOURCE_INVALIDSOURCE + 1 ) , - D3D10_MESSAGE_ID_COPYRESOURCE_INVALIDSOURCESTATE = ( D3D10_MESSAGE_ID_COPYRESOURCE_INVALIDDESTINATIONSTATE + 1 ) , - D3D10_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONSUBRESOURCE = ( D3D10_MESSAGE_ID_COPYRESOURCE_INVALIDSOURCESTATE + 1 ) , - D3D10_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONBOX = ( D3D10_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONSUBRESOURCE + 1 ) , - D3D10_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONSTATE = ( D3D10_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONBOX + 1 ) , - D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_DESTINATION_INVALID = ( D3D10_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONSTATE + 1 ) , - D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_DESTINATION_SUBRESOURCE_INVALID = ( D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_DESTINATION_INVALID + 1 ) , - D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_SOURCE_INVALID = ( D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_DESTINATION_SUBRESOURCE_INVALID + 1 ) , - D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_SOURCE_SUBRESOURCE_INVALID = ( D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_SOURCE_INVALID + 1 ) , - D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_FORMAT_INVALID = ( D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_SOURCE_SUBRESOURCE_INVALID + 1 ) , - D3D10_MESSAGE_ID_BUFFER_MAP_INVALIDMAPTYPE = ( D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_FORMAT_INVALID + 1 ) , - D3D10_MESSAGE_ID_BUFFER_MAP_INVALIDFLAGS = ( D3D10_MESSAGE_ID_BUFFER_MAP_INVALIDMAPTYPE + 1 ) , - D3D10_MESSAGE_ID_BUFFER_MAP_ALREADYMAPPED = ( D3D10_MESSAGE_ID_BUFFER_MAP_INVALIDFLAGS + 1 ) , - D3D10_MESSAGE_ID_BUFFER_MAP_DEVICEREMOVED_RETURN = ( D3D10_MESSAGE_ID_BUFFER_MAP_ALREADYMAPPED + 1 ) , - D3D10_MESSAGE_ID_BUFFER_UNMAP_NOTMAPPED = ( D3D10_MESSAGE_ID_BUFFER_MAP_DEVICEREMOVED_RETURN + 1 ) , - D3D10_MESSAGE_ID_TEXTURE1D_MAP_INVALIDMAPTYPE = ( D3D10_MESSAGE_ID_BUFFER_UNMAP_NOTMAPPED + 1 ) , - D3D10_MESSAGE_ID_TEXTURE1D_MAP_INVALIDSUBRESOURCE = ( D3D10_MESSAGE_ID_TEXTURE1D_MAP_INVALIDMAPTYPE + 1 ) , - D3D10_MESSAGE_ID_TEXTURE1D_MAP_INVALIDFLAGS = ( D3D10_MESSAGE_ID_TEXTURE1D_MAP_INVALIDSUBRESOURCE + 1 ) , - D3D10_MESSAGE_ID_TEXTURE1D_MAP_ALREADYMAPPED = ( D3D10_MESSAGE_ID_TEXTURE1D_MAP_INVALIDFLAGS + 1 ) , - D3D10_MESSAGE_ID_TEXTURE1D_MAP_DEVICEREMOVED_RETURN = ( D3D10_MESSAGE_ID_TEXTURE1D_MAP_ALREADYMAPPED + 1 ) , - D3D10_MESSAGE_ID_TEXTURE1D_UNMAP_INVALIDSUBRESOURCE = ( D3D10_MESSAGE_ID_TEXTURE1D_MAP_DEVICEREMOVED_RETURN + 1 ) , - D3D10_MESSAGE_ID_TEXTURE1D_UNMAP_NOTMAPPED = ( D3D10_MESSAGE_ID_TEXTURE1D_UNMAP_INVALIDSUBRESOURCE + 1 ) , - D3D10_MESSAGE_ID_TEXTURE2D_MAP_INVALIDMAPTYPE = ( D3D10_MESSAGE_ID_TEXTURE1D_UNMAP_NOTMAPPED + 1 ) , - D3D10_MESSAGE_ID_TEXTURE2D_MAP_INVALIDSUBRESOURCE = ( D3D10_MESSAGE_ID_TEXTURE2D_MAP_INVALIDMAPTYPE + 1 ) , - D3D10_MESSAGE_ID_TEXTURE2D_MAP_INVALIDFLAGS = ( D3D10_MESSAGE_ID_TEXTURE2D_MAP_INVALIDSUBRESOURCE + 1 ) , - D3D10_MESSAGE_ID_TEXTURE2D_MAP_ALREADYMAPPED = ( D3D10_MESSAGE_ID_TEXTURE2D_MAP_INVALIDFLAGS + 1 ) , - D3D10_MESSAGE_ID_TEXTURE2D_MAP_DEVICEREMOVED_RETURN = ( D3D10_MESSAGE_ID_TEXTURE2D_MAP_ALREADYMAPPED + 1 ) , - D3D10_MESSAGE_ID_TEXTURE2D_UNMAP_INVALIDSUBRESOURCE = ( D3D10_MESSAGE_ID_TEXTURE2D_MAP_DEVICEREMOVED_RETURN + 1 ) , - D3D10_MESSAGE_ID_TEXTURE2D_UNMAP_NOTMAPPED = ( D3D10_MESSAGE_ID_TEXTURE2D_UNMAP_INVALIDSUBRESOURCE + 1 ) , - D3D10_MESSAGE_ID_TEXTURE3D_MAP_INVALIDMAPTYPE = ( D3D10_MESSAGE_ID_TEXTURE2D_UNMAP_NOTMAPPED + 1 ) , - D3D10_MESSAGE_ID_TEXTURE3D_MAP_INVALIDSUBRESOURCE = ( D3D10_MESSAGE_ID_TEXTURE3D_MAP_INVALIDMAPTYPE + 1 ) , - D3D10_MESSAGE_ID_TEXTURE3D_MAP_INVALIDFLAGS = ( D3D10_MESSAGE_ID_TEXTURE3D_MAP_INVALIDSUBRESOURCE + 1 ) , - D3D10_MESSAGE_ID_TEXTURE3D_MAP_ALREADYMAPPED = ( D3D10_MESSAGE_ID_TEXTURE3D_MAP_INVALIDFLAGS + 1 ) , - D3D10_MESSAGE_ID_TEXTURE3D_MAP_DEVICEREMOVED_RETURN = ( D3D10_MESSAGE_ID_TEXTURE3D_MAP_ALREADYMAPPED + 1 ) , - D3D10_MESSAGE_ID_TEXTURE3D_UNMAP_INVALIDSUBRESOURCE = ( D3D10_MESSAGE_ID_TEXTURE3D_MAP_DEVICEREMOVED_RETURN + 1 ) , - D3D10_MESSAGE_ID_TEXTURE3D_UNMAP_NOTMAPPED = ( D3D10_MESSAGE_ID_TEXTURE3D_UNMAP_INVALIDSUBRESOURCE + 1 ) , - D3D10_MESSAGE_ID_CHECKFORMATSUPPORT_FORMAT_DEPRECATED = ( D3D10_MESSAGE_ID_TEXTURE3D_UNMAP_NOTMAPPED + 1 ) , - D3D10_MESSAGE_ID_CHECKMULTISAMPLEQUALITYLEVELS_FORMAT_DEPRECATED = ( D3D10_MESSAGE_ID_CHECKFORMATSUPPORT_FORMAT_DEPRECATED + 1 ) , - D3D10_MESSAGE_ID_SETEXCEPTIONMODE_UNRECOGNIZEDFLAGS = ( D3D10_MESSAGE_ID_CHECKMULTISAMPLEQUALITYLEVELS_FORMAT_DEPRECATED + 1 ) , - D3D10_MESSAGE_ID_SETEXCEPTIONMODE_INVALIDARG_RETURN = ( D3D10_MESSAGE_ID_SETEXCEPTIONMODE_UNRECOGNIZEDFLAGS + 1 ) , - D3D10_MESSAGE_ID_SETEXCEPTIONMODE_DEVICEREMOVED_RETURN = ( D3D10_MESSAGE_ID_SETEXCEPTIONMODE_INVALIDARG_RETURN + 1 ) , - D3D10_MESSAGE_ID_REF_SIMULATING_INFINITELY_FAST_HARDWARE = ( D3D10_MESSAGE_ID_SETEXCEPTIONMODE_DEVICEREMOVED_RETURN + 1 ) , - D3D10_MESSAGE_ID_REF_THREADING_MODE = ( D3D10_MESSAGE_ID_REF_SIMULATING_INFINITELY_FAST_HARDWARE + 1 ) , - D3D10_MESSAGE_ID_REF_UMDRIVER_EXCEPTION = ( D3D10_MESSAGE_ID_REF_THREADING_MODE + 1 ) , - D3D10_MESSAGE_ID_REF_KMDRIVER_EXCEPTION = ( D3D10_MESSAGE_ID_REF_UMDRIVER_EXCEPTION + 1 ) , - D3D10_MESSAGE_ID_REF_HARDWARE_EXCEPTION = ( D3D10_MESSAGE_ID_REF_KMDRIVER_EXCEPTION + 1 ) , - D3D10_MESSAGE_ID_REF_ACCESSING_INDEXABLE_TEMP_OUT_OF_RANGE = ( D3D10_MESSAGE_ID_REF_HARDWARE_EXCEPTION + 1 ) , - D3D10_MESSAGE_ID_REF_PROBLEM_PARSING_SHADER = ( D3D10_MESSAGE_ID_REF_ACCESSING_INDEXABLE_TEMP_OUT_OF_RANGE + 1 ) , - D3D10_MESSAGE_ID_REF_OUT_OF_MEMORY = ( D3D10_MESSAGE_ID_REF_PROBLEM_PARSING_SHADER + 1 ) , - D3D10_MESSAGE_ID_REF_INFO = ( D3D10_MESSAGE_ID_REF_OUT_OF_MEMORY + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEXPOS_OVERFLOW = ( D3D10_MESSAGE_ID_REF_INFO + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAWINDEXED_INDEXPOS_OVERFLOW = ( D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEXPOS_OVERFLOW + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAWINSTANCED_VERTEXPOS_OVERFLOW = ( D3D10_MESSAGE_ID_DEVICE_DRAWINDEXED_INDEXPOS_OVERFLOW + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAWINSTANCED_INSTANCEPOS_OVERFLOW = ( D3D10_MESSAGE_ID_DEVICE_DRAWINSTANCED_VERTEXPOS_OVERFLOW + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAWINDEXEDINSTANCED_INSTANCEPOS_OVERFLOW = ( D3D10_MESSAGE_ID_DEVICE_DRAWINSTANCED_INSTANCEPOS_OVERFLOW + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAWINDEXEDINSTANCED_INDEXPOS_OVERFLOW = ( D3D10_MESSAGE_ID_DEVICE_DRAWINDEXEDINSTANCED_INSTANCEPOS_OVERFLOW + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_SHADER_NOT_SET = ( D3D10_MESSAGE_ID_DEVICE_DRAWINDEXEDINSTANCED_INDEXPOS_OVERFLOW + 1 ) , - D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_SEMANTICNAME_NOT_FOUND = ( D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_SHADER_NOT_SET + 1 ) , - D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_REGISTERINDEX = ( D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_SEMANTICNAME_NOT_FOUND + 1 ) , - D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_COMPONENTTYPE = ( D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_REGISTERINDEX + 1 ) , - D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_REGISTERMASK = ( D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_COMPONENTTYPE + 1 ) , - D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_SYSTEMVALUE = ( D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_REGISTERMASK + 1 ) , - D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_NEVERWRITTEN_ALWAYSREADS = ( D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_SYSTEMVALUE + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_NOT_SET = ( D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_NEVERWRITTEN_ALWAYSREADS + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_INPUTLAYOUT_NOT_SET = ( D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_NOT_SET + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_CONSTANT_BUFFER_NOT_SET = ( D3D10_MESSAGE_ID_DEVICE_DRAW_INPUTLAYOUT_NOT_SET + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_CONSTANT_BUFFER_TOO_SMALL = ( D3D10_MESSAGE_ID_DEVICE_DRAW_CONSTANT_BUFFER_NOT_SET + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_SAMPLER_NOT_SET = ( D3D10_MESSAGE_ID_DEVICE_DRAW_CONSTANT_BUFFER_TOO_SMALL + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_SHADERRESOURCEVIEW_NOT_SET = ( D3D10_MESSAGE_ID_DEVICE_DRAW_SAMPLER_NOT_SET + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_VIEW_DIMENSION_MISMATCH = ( D3D10_MESSAGE_ID_DEVICE_DRAW_SHADERRESOURCEVIEW_NOT_SET + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_STRIDE_TOO_SMALL = ( D3D10_MESSAGE_ID_DEVICE_DRAW_VIEW_DIMENSION_MISMATCH + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_TOO_SMALL = ( D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_STRIDE_TOO_SMALL + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_NOT_SET = ( D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_TOO_SMALL + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_FORMAT_INVALID = ( D3D10_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_NOT_SET + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_TOO_SMALL = ( D3D10_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_FORMAT_INVALID + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_GS_INPUT_PRIMITIVE_MISMATCH = ( D3D10_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_TOO_SMALL + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_RETURN_TYPE_MISMATCH = ( D3D10_MESSAGE_ID_DEVICE_DRAW_GS_INPUT_PRIMITIVE_MISMATCH + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_POSITION_NOT_PRESENT = ( D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_RETURN_TYPE_MISMATCH + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_OUTPUT_STREAM_NOT_SET = ( D3D10_MESSAGE_ID_DEVICE_DRAW_POSITION_NOT_PRESENT + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_BOUND_RESOURCE_MAPPED = ( D3D10_MESSAGE_ID_DEVICE_DRAW_OUTPUT_STREAM_NOT_SET + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_INVALID_PRIMITIVETOPOLOGY = ( D3D10_MESSAGE_ID_DEVICE_DRAW_BOUND_RESOURCE_MAPPED + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_OFFSET_UNALIGNED = ( D3D10_MESSAGE_ID_DEVICE_DRAW_INVALID_PRIMITIVETOPOLOGY + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_STRIDE_UNALIGNED = ( D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_OFFSET_UNALIGNED + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_INDEX_OFFSET_UNALIGNED = ( D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_STRIDE_UNALIGNED + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_OUTPUT_STREAM_OFFSET_UNALIGNED = ( D3D10_MESSAGE_ID_DEVICE_DRAW_INDEX_OFFSET_UNALIGNED + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_LD_UNSUPPORTED = ( D3D10_MESSAGE_ID_DEVICE_DRAW_OUTPUT_STREAM_OFFSET_UNALIGNED + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_SAMPLE_UNSUPPORTED = ( D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_LD_UNSUPPORTED + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_SAMPLE_C_UNSUPPORTED = ( D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_SAMPLE_UNSUPPORTED + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_MULTISAMPLE_UNSUPPORTED = ( D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_SAMPLE_C_UNSUPPORTED + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_SO_TARGETS_BOUND_WITHOUT_SOURCE = ( D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_MULTISAMPLE_UNSUPPORTED + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_SO_STRIDE_LARGER_THAN_BUFFER = ( D3D10_MESSAGE_ID_DEVICE_DRAW_SO_TARGETS_BOUND_WITHOUT_SOURCE + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_OM_RENDER_TARGET_DOES_NOT_SUPPORT_BLENDING = ( D3D10_MESSAGE_ID_DEVICE_DRAW_SO_STRIDE_LARGER_THAN_BUFFER + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_OM_DUAL_SOURCE_BLENDING_CAN_ONLY_HAVE_RENDER_TARGET_0 = ( D3D10_MESSAGE_ID_DEVICE_DRAW_OM_RENDER_TARGET_DOES_NOT_SUPPORT_BLENDING + 1 ) , - D3D10_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_AT_FAULT = ( D3D10_MESSAGE_ID_DEVICE_DRAW_OM_DUAL_SOURCE_BLENDING_CAN_ONLY_HAVE_RENDER_TARGET_0 + 1 ) , - D3D10_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_POSSIBLY_AT_FAULT = ( D3D10_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_AT_FAULT + 1 ) , - D3D10_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_NOT_AT_FAULT = ( D3D10_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_POSSIBLY_AT_FAULT + 1 ) , - D3D10_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_INVALIDARG_RETURN = ( D3D10_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_NOT_AT_FAULT + 1 ) , - D3D10_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_OUTOFMEMORY_RETURN = ( D3D10_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_INVALIDARG_RETURN + 1 ) , - D3D10_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_BADINTERFACE_RETURN = ( D3D10_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_OUTOFMEMORY_RETURN + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_VIEWPORT_NOT_SET = ( D3D10_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_BADINTERFACE_RETURN + 1 ) , - D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_TRAILING_DIGIT_IN_SEMANTIC = ( D3D10_MESSAGE_ID_DEVICE_DRAW_VIEWPORT_NOT_SET + 1 ) , - D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_TRAILING_DIGIT_IN_SEMANTIC = ( D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_TRAILING_DIGIT_IN_SEMANTIC + 1 ) , - D3D10_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_DENORMFLUSH = ( D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_TRAILING_DIGIT_IN_SEMANTIC + 1 ) , - D3D10_MESSAGE_ID_OMSETRENDERTARGETS_INVALIDVIEW = ( D3D10_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_DENORMFLUSH + 1 ) , - D3D10_MESSAGE_ID_DEVICE_SETTEXTFILTERSIZE_INVALIDDIMENSIONS = ( D3D10_MESSAGE_ID_OMSETRENDERTARGETS_INVALIDVIEW + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_SAMPLER_MISMATCH = ( D3D10_MESSAGE_ID_DEVICE_SETTEXTFILTERSIZE_INVALIDDIMENSIONS + 1 ) , - D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_TYPE_MISMATCH = ( D3D10_MESSAGE_ID_DEVICE_DRAW_SAMPLER_MISMATCH + 1 ) , - D3D10_MESSAGE_ID_BLENDSTATE_GETDESC_LEGACY = ( D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_TYPE_MISMATCH + 1 ) , - D3D10_MESSAGE_ID_SHADERRESOURCEVIEW_GETDESC_LEGACY = ( D3D10_MESSAGE_ID_BLENDSTATE_GETDESC_LEGACY + 1 ) , - D3D10_MESSAGE_ID_CREATEQUERY_OUTOFMEMORY_RETURN = ( D3D10_MESSAGE_ID_SHADERRESOURCEVIEW_GETDESC_LEGACY + 1 ) , - D3D10_MESSAGE_ID_CREATEPREDICATE_OUTOFMEMORY_RETURN = ( D3D10_MESSAGE_ID_CREATEQUERY_OUTOFMEMORY_RETURN + 1 ) , - D3D10_MESSAGE_ID_CREATECOUNTER_OUTOFRANGE_COUNTER = ( D3D10_MESSAGE_ID_CREATEPREDICATE_OUTOFMEMORY_RETURN + 1 ) , - D3D10_MESSAGE_ID_CREATECOUNTER_SIMULTANEOUS_ACTIVE_COUNTERS_EXHAUSTED = ( D3D10_MESSAGE_ID_CREATECOUNTER_OUTOFRANGE_COUNTER + 1 ) , - D3D10_MESSAGE_ID_CREATECOUNTER_UNSUPPORTED_WELLKNOWN_COUNTER = ( D3D10_MESSAGE_ID_CREATECOUNTER_SIMULTANEOUS_ACTIVE_COUNTERS_EXHAUSTED + 1 ) , - D3D10_MESSAGE_ID_CREATECOUNTER_OUTOFMEMORY_RETURN = ( D3D10_MESSAGE_ID_CREATECOUNTER_UNSUPPORTED_WELLKNOWN_COUNTER + 1 ) , - D3D10_MESSAGE_ID_CREATECOUNTER_NONEXCLUSIVE_RETURN = ( D3D10_MESSAGE_ID_CREATECOUNTER_OUTOFMEMORY_RETURN + 1 ) , - D3D10_MESSAGE_ID_CREATECOUNTER_NULLDESC = ( D3D10_MESSAGE_ID_CREATECOUNTER_NONEXCLUSIVE_RETURN + 1 ) , - D3D10_MESSAGE_ID_CHECKCOUNTER_OUTOFRANGE_COUNTER = ( D3D10_MESSAGE_ID_CREATECOUNTER_NULLDESC + 1 ) , - D3D10_MESSAGE_ID_CHECKCOUNTER_UNSUPPORTED_WELLKNOWN_COUNTER = ( D3D10_MESSAGE_ID_CHECKCOUNTER_OUTOFRANGE_COUNTER + 1 ) , - D3D10_MESSAGE_ID_SETPREDICATION_INVALID_PREDICATE_STATE = ( D3D10_MESSAGE_ID_CHECKCOUNTER_UNSUPPORTED_WELLKNOWN_COUNTER + 1 ) , - D3D10_MESSAGE_ID_QUERY_BEGIN_UNSUPPORTED = ( D3D10_MESSAGE_ID_SETPREDICATION_INVALID_PREDICATE_STATE + 1 ) , - D3D10_MESSAGE_ID_PREDICATE_BEGIN_DURING_PREDICATION = ( D3D10_MESSAGE_ID_QUERY_BEGIN_UNSUPPORTED + 1 ) , - D3D10_MESSAGE_ID_QUERY_BEGIN_DUPLICATE = ( D3D10_MESSAGE_ID_PREDICATE_BEGIN_DURING_PREDICATION + 1 ) , - D3D10_MESSAGE_ID_QUERY_BEGIN_ABANDONING_PREVIOUS_RESULTS = ( D3D10_MESSAGE_ID_QUERY_BEGIN_DUPLICATE + 1 ) , - D3D10_MESSAGE_ID_PREDICATE_END_DURING_PREDICATION = ( D3D10_MESSAGE_ID_QUERY_BEGIN_ABANDONING_PREVIOUS_RESULTS + 1 ) , - D3D10_MESSAGE_ID_QUERY_END_ABANDONING_PREVIOUS_RESULTS = ( D3D10_MESSAGE_ID_PREDICATE_END_DURING_PREDICATION + 1 ) , - D3D10_MESSAGE_ID_QUERY_END_WITHOUT_BEGIN = ( D3D10_MESSAGE_ID_QUERY_END_ABANDONING_PREVIOUS_RESULTS + 1 ) , - D3D10_MESSAGE_ID_QUERY_GETDATA_INVALID_DATASIZE = ( D3D10_MESSAGE_ID_QUERY_END_WITHOUT_BEGIN + 1 ) , - D3D10_MESSAGE_ID_QUERY_GETDATA_INVALID_FLAGS = ( D3D10_MESSAGE_ID_QUERY_GETDATA_INVALID_DATASIZE + 1 ) , - D3D10_MESSAGE_ID_QUERY_GETDATA_INVALID_CALL = ( D3D10_MESSAGE_ID_QUERY_GETDATA_INVALID_FLAGS + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_PS_OUTPUT_TYPE_MISMATCH = ( D3D10_MESSAGE_ID_QUERY_GETDATA_INVALID_CALL + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_GATHER_UNSUPPORTED = ( D3D10_MESSAGE_ID_DEVICE_DRAW_PS_OUTPUT_TYPE_MISMATCH + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_INVALID_USE_OF_CENTER_MULTISAMPLE_PATTERN = ( D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_GATHER_UNSUPPORTED + 1 ) , - D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_STRIDE_TOO_LARGE = ( D3D10_MESSAGE_ID_DEVICE_DRAW_INVALID_USE_OF_CENTER_MULTISAMPLE_PATTERN + 1 ) , - D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_INVALIDRANGE = ( D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_STRIDE_TOO_LARGE + 1 ) , - D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_EMPTY_LAYOUT = ( D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_INVALIDRANGE + 1 ) , - D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_SAMPLE_COUNT_MISMATCH = ( D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_EMPTY_LAYOUT + 1 ) , - D3D10_MESSAGE_ID_D3D10_MESSAGES_END = ( D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_SAMPLE_COUNT_MISMATCH + 1 ) , - D3D10_MESSAGE_ID_D3D10L9_MESSAGES_START = 0x100000, - D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_STENCIL_NO_TWO_SIDED = ( D3D10_MESSAGE_ID_D3D10L9_MESSAGES_START + 1 ) , - D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_DepthBiasClamp_NOT_SUPPORTED = ( D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_STENCIL_NO_TWO_SIDED + 1 ) , - D3D10_MESSAGE_ID_CREATESAMPLERSTATE_NO_COMPARISON_SUPPORT = ( D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_DepthBiasClamp_NOT_SUPPORTED + 1 ) , - D3D10_MESSAGE_ID_CREATESAMPLERSTATE_EXCESSIVE_ANISOTROPY = ( D3D10_MESSAGE_ID_CREATESAMPLERSTATE_NO_COMPARISON_SUPPORT + 1 ) , - D3D10_MESSAGE_ID_CREATESAMPLERSTATE_BORDER_OUT_OF_RANGE = ( D3D10_MESSAGE_ID_CREATESAMPLERSTATE_EXCESSIVE_ANISOTROPY + 1 ) , - D3D10_MESSAGE_ID_VSSETSAMPLERS_NOT_SUPPORTED = ( D3D10_MESSAGE_ID_CREATESAMPLERSTATE_BORDER_OUT_OF_RANGE + 1 ) , - D3D10_MESSAGE_ID_VSSETSAMPLERS_TOO_MANY_SAMPLERS = ( D3D10_MESSAGE_ID_VSSETSAMPLERS_NOT_SUPPORTED + 1 ) , - D3D10_MESSAGE_ID_PSSETSAMPLERS_TOO_MANY_SAMPLERS = ( D3D10_MESSAGE_ID_VSSETSAMPLERS_TOO_MANY_SAMPLERS + 1 ) , - D3D10_MESSAGE_ID_CREATERESOURCE_NO_ARRAYS = ( D3D10_MESSAGE_ID_PSSETSAMPLERS_TOO_MANY_SAMPLERS + 1 ) , - D3D10_MESSAGE_ID_CREATERESOURCE_NO_VB_AND_IB_BIND = ( D3D10_MESSAGE_ID_CREATERESOURCE_NO_ARRAYS + 1 ) , - D3D10_MESSAGE_ID_CREATERESOURCE_NO_TEXTURE_1D = ( D3D10_MESSAGE_ID_CREATERESOURCE_NO_VB_AND_IB_BIND + 1 ) , - D3D10_MESSAGE_ID_CREATERESOURCE_DIMENSION_OUT_OF_RANGE = ( D3D10_MESSAGE_ID_CREATERESOURCE_NO_TEXTURE_1D + 1 ) , - D3D10_MESSAGE_ID_CREATERESOURCE_NOT_BINDABLE_AS_SHADER_RESOURCE = ( D3D10_MESSAGE_ID_CREATERESOURCE_DIMENSION_OUT_OF_RANGE + 1 ) , - D3D10_MESSAGE_ID_OMSETRENDERTARGETS_TOO_MANY_RENDER_TARGETS = ( D3D10_MESSAGE_ID_CREATERESOURCE_NOT_BINDABLE_AS_SHADER_RESOURCE + 1 ) , - D3D10_MESSAGE_ID_OMSETRENDERTARGETS_NO_DIFFERING_BIT_DEPTHS = ( D3D10_MESSAGE_ID_OMSETRENDERTARGETS_TOO_MANY_RENDER_TARGETS + 1 ) , - D3D10_MESSAGE_ID_IASETVERTEXBUFFERS_BAD_BUFFER_INDEX = ( D3D10_MESSAGE_ID_OMSETRENDERTARGETS_NO_DIFFERING_BIT_DEPTHS + 1 ) , - D3D10_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_TOO_MANY_VIEWPORTS = ( D3D10_MESSAGE_ID_IASETVERTEXBUFFERS_BAD_BUFFER_INDEX + 1 ) , - D3D10_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_ADJACENCY_UNSUPPORTED = ( D3D10_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_TOO_MANY_VIEWPORTS + 1 ) , - D3D10_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_TOO_MANY_SCISSORS = ( D3D10_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_ADJACENCY_UNSUPPORTED + 1 ) , - D3D10_MESSAGE_ID_COPYRESOURCE_ONLY_TEXTURE_2D_WITHIN_GPU_MEMORY = ( D3D10_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_TOO_MANY_SCISSORS + 1 ) , - D3D10_MESSAGE_ID_COPYRESOURCE_NO_TEXTURE_3D_READBACK = ( D3D10_MESSAGE_ID_COPYRESOURCE_ONLY_TEXTURE_2D_WITHIN_GPU_MEMORY + 1 ) , - D3D10_MESSAGE_ID_COPYRESOURCE_NO_TEXTURE_ONLY_READBACK = ( D3D10_MESSAGE_ID_COPYRESOURCE_NO_TEXTURE_3D_READBACK + 1 ) , - D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_UNSUPPORTED_FORMAT = ( D3D10_MESSAGE_ID_COPYRESOURCE_NO_TEXTURE_ONLY_READBACK + 1 ) , - D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_ALPHA_TO_COVERAGE = ( D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_UNSUPPORTED_FORMAT + 1 ) , - D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_DepthClipEnable_MUST_BE_TRUE = ( D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_ALPHA_TO_COVERAGE + 1 ) , - D3D10_MESSAGE_ID_DRAWINDEXED_STARTINDEXLOCATION_MUST_BE_POSITIVE = ( D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_DepthClipEnable_MUST_BE_TRUE + 1 ) , - D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_MUST_USE_LOWEST_LOD = ( D3D10_MESSAGE_ID_DRAWINDEXED_STARTINDEXLOCATION_MUST_BE_POSITIVE + 1 ) , - D3D10_MESSAGE_ID_CREATESAMPLERSTATE_MINLOD_MUST_NOT_BE_FRACTIONAL = ( D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_MUST_USE_LOWEST_LOD + 1 ) , - D3D10_MESSAGE_ID_CREATESAMPLERSTATE_MAXLOD_MUST_BE_FLT_MAX = ( D3D10_MESSAGE_ID_CREATESAMPLERSTATE_MINLOD_MUST_NOT_BE_FRACTIONAL + 1 ) , - D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_FIRSTARRAYSLICE_MUST_BE_ZERO = ( D3D10_MESSAGE_ID_CREATESAMPLERSTATE_MAXLOD_MUST_BE_FLT_MAX + 1 ) , - D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_CUBES_MUST_HAVE_6_SIDES = ( D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_FIRSTARRAYSLICE_MUST_BE_ZERO + 1 ) , - D3D10_MESSAGE_ID_CREATERESOURCE_NOT_BINDABLE_AS_RENDER_TARGET = ( D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_CUBES_MUST_HAVE_6_SIDES + 1 ) , - D3D10_MESSAGE_ID_CREATERESOURCE_NO_DWORD_INDEX_BUFFER = ( D3D10_MESSAGE_ID_CREATERESOURCE_NOT_BINDABLE_AS_RENDER_TARGET + 1 ) , - D3D10_MESSAGE_ID_CREATERESOURCE_MSAA_PRECLUDES_SHADER_RESOURCE = ( D3D10_MESSAGE_ID_CREATERESOURCE_NO_DWORD_INDEX_BUFFER + 1 ) , - D3D10_MESSAGE_ID_CREATERESOURCE_PRESENTATION_PRECLUDES_SHADER_RESOURCE = ( D3D10_MESSAGE_ID_CREATERESOURCE_MSAA_PRECLUDES_SHADER_RESOURCE + 1 ) , - D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_INDEPENDENT_BLEND_ENABLE = ( D3D10_MESSAGE_ID_CREATERESOURCE_PRESENTATION_PRECLUDES_SHADER_RESOURCE + 1 ) , - D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_INDEPENDENT_WRITE_MASKS = ( D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_INDEPENDENT_BLEND_ENABLE + 1 ) , - D3D10_MESSAGE_ID_CREATERESOURCE_NO_STREAM_OUT = ( D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_INDEPENDENT_WRITE_MASKS + 1 ) , - D3D10_MESSAGE_ID_CREATERESOURCE_ONLY_VB_IB_FOR_BUFFERS = ( D3D10_MESSAGE_ID_CREATERESOURCE_NO_STREAM_OUT + 1 ) , - D3D10_MESSAGE_ID_CREATERESOURCE_NO_AUTOGEN_FOR_VOLUMES = ( D3D10_MESSAGE_ID_CREATERESOURCE_ONLY_VB_IB_FOR_BUFFERS + 1 ) , - D3D10_MESSAGE_ID_CREATERESOURCE_DXGI_FORMAT_R8G8B8A8_CANNOT_BE_SHARED = ( D3D10_MESSAGE_ID_CREATERESOURCE_NO_AUTOGEN_FOR_VOLUMES + 1 ) , - D3D10_MESSAGE_ID_VSSHADERRESOURCES_NOT_SUPPORTED = ( D3D10_MESSAGE_ID_CREATERESOURCE_DXGI_FORMAT_R8G8B8A8_CANNOT_BE_SHARED + 1 ) , - D3D10_MESSAGE_ID_GEOMETRY_SHADER_NOT_SUPPORTED = ( D3D10_MESSAGE_ID_VSSHADERRESOURCES_NOT_SUPPORTED + 1 ) , - D3D10_MESSAGE_ID_STREAM_OUT_NOT_SUPPORTED = ( D3D10_MESSAGE_ID_GEOMETRY_SHADER_NOT_SUPPORTED + 1 ) , - D3D10_MESSAGE_ID_TEXT_FILTER_NOT_SUPPORTED = ( D3D10_MESSAGE_ID_STREAM_OUT_NOT_SUPPORTED + 1 ) , - D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_SEPARATE_ALPHA_BLEND = ( D3D10_MESSAGE_ID_TEXT_FILTER_NOT_SUPPORTED + 1 ) , - D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_MRT_BLEND = ( D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_SEPARATE_ALPHA_BLEND + 1 ) , - D3D10_MESSAGE_ID_CREATEBLENDSTATE_OPERATION_NOT_SUPPORTED = ( D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_MRT_BLEND + 1 ) , - D3D10_MESSAGE_ID_CREATESAMPLERSTATE_NO_MIRRORONCE = ( D3D10_MESSAGE_ID_CREATEBLENDSTATE_OPERATION_NOT_SUPPORTED + 1 ) , - D3D10_MESSAGE_ID_DRAWINSTANCED_NOT_SUPPORTED = ( D3D10_MESSAGE_ID_CREATESAMPLERSTATE_NO_MIRRORONCE + 1 ) , - D3D10_MESSAGE_ID_DRAWINDEXEDINSTANCED_NOT_SUPPORTED_BELOW_9_3 = ( D3D10_MESSAGE_ID_DRAWINSTANCED_NOT_SUPPORTED + 1 ) , - D3D10_MESSAGE_ID_DRAWINDEXED_POINTLIST_UNSUPPORTED = ( D3D10_MESSAGE_ID_DRAWINDEXEDINSTANCED_NOT_SUPPORTED_BELOW_9_3 + 1 ) , - D3D10_MESSAGE_ID_SETBLENDSTATE_SAMPLE_MASK_CANNOT_BE_ZERO = ( D3D10_MESSAGE_ID_DRAWINDEXED_POINTLIST_UNSUPPORTED + 1 ) , - D3D10_MESSAGE_ID_CREATERESOURCE_DIMENSION_EXCEEDS_FEATURE_LEVEL_DEFINITION = ( D3D10_MESSAGE_ID_SETBLENDSTATE_SAMPLE_MASK_CANNOT_BE_ZERO + 1 ) , - D3D10_MESSAGE_ID_CREATERESOURCE_ONLY_SINGLE_MIP_LEVEL_DEPTH_STENCIL_SUPPORTED = ( D3D10_MESSAGE_ID_CREATERESOURCE_DIMENSION_EXCEEDS_FEATURE_LEVEL_DEFINITION + 1 ) , - D3D10_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_NEGATIVESCISSOR = ( D3D10_MESSAGE_ID_CREATERESOURCE_ONLY_SINGLE_MIP_LEVEL_DEPTH_STENCIL_SUPPORTED + 1 ) , - D3D10_MESSAGE_ID_SLOT_ZERO_MUST_BE_D3D10_INPUT_PER_VERTEX_DATA = ( D3D10_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_NEGATIVESCISSOR + 1 ) , - D3D10_MESSAGE_ID_CREATERESOURCE_NON_POW_2_MIPMAP = ( D3D10_MESSAGE_ID_SLOT_ZERO_MUST_BE_D3D10_INPUT_PER_VERTEX_DATA + 1 ) , - D3D10_MESSAGE_ID_CREATESAMPLERSTATE_BORDER_NOT_SUPPORTED = ( D3D10_MESSAGE_ID_CREATERESOURCE_NON_POW_2_MIPMAP + 1 ) , - D3D10_MESSAGE_ID_OMSETRENDERTARGETS_NO_SRGB_MRT = ( D3D10_MESSAGE_ID_CREATESAMPLERSTATE_BORDER_NOT_SUPPORTED + 1 ) , - D3D10_MESSAGE_ID_D3D10L9_MESSAGES_END = ( D3D10_MESSAGE_ID_OMSETRENDERTARGETS_NO_SRGB_MRT + 1 ) - } D3D10_MESSAGE_ID; - -typedef struct D3D10_MESSAGE - { - D3D10_MESSAGE_CATEGORY Category; - D3D10_MESSAGE_SEVERITY Severity; - D3D10_MESSAGE_ID ID; - const char *pDescription; - SIZE_T DescriptionByteLength; - } D3D10_MESSAGE; - -typedef struct D3D10_INFO_QUEUE_FILTER_DESC - { - UINT NumCategories; - D3D10_MESSAGE_CATEGORY *pCategoryList; - UINT NumSeverities; - D3D10_MESSAGE_SEVERITY *pSeverityList; - UINT NumIDs; - D3D10_MESSAGE_ID *pIDList; - } D3D10_INFO_QUEUE_FILTER_DESC; - -typedef struct D3D10_INFO_QUEUE_FILTER - { - D3D10_INFO_QUEUE_FILTER_DESC AllowList; - D3D10_INFO_QUEUE_FILTER_DESC DenyList; - } D3D10_INFO_QUEUE_FILTER; - -#define D3D10_INFO_QUEUE_DEFAULT_MESSAGE_COUNT_LIMIT 1024 - - -extern RPC_IF_HANDLE __MIDL_itf_d3d10sdklayers_0000_0002_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d10sdklayers_0000_0002_v0_0_s_ifspec; - -#ifndef __ID3D10InfoQueue_INTERFACE_DEFINED__ -#define __ID3D10InfoQueue_INTERFACE_DEFINED__ - -/* interface ID3D10InfoQueue */ -/* [unique][local][object][uuid] */ - - -EXTERN_C const IID IID_ID3D10InfoQueue; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("1b940b17-2642-4d1f-ab1f-b99bad0c395f") - ID3D10InfoQueue : public IUnknown - { - public: - virtual HRESULT STDMETHODCALLTYPE SetMessageCountLimit( - /* [annotation] */ - __in UINT64 MessageCountLimit) = 0; - - virtual void STDMETHODCALLTYPE ClearStoredMessages( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetMessage( - /* [annotation] */ - __in UINT64 MessageIndex, - /* [annotation] */ - __out_bcount_opt(*pMessageByteLength) D3D10_MESSAGE *pMessage, - /* [annotation] */ - __inout SIZE_T *pMessageByteLength) = 0; - - virtual UINT64 STDMETHODCALLTYPE GetNumMessagesAllowedByStorageFilter( void) = 0; - - virtual UINT64 STDMETHODCALLTYPE GetNumMessagesDeniedByStorageFilter( void) = 0; - - virtual UINT64 STDMETHODCALLTYPE GetNumStoredMessages( void) = 0; - - virtual UINT64 STDMETHODCALLTYPE GetNumStoredMessagesAllowedByRetrievalFilter( void) = 0; - - virtual UINT64 STDMETHODCALLTYPE GetNumMessagesDiscardedByMessageCountLimit( void) = 0; - - virtual UINT64 STDMETHODCALLTYPE GetMessageCountLimit( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE AddStorageFilterEntries( - /* [annotation] */ - __in D3D10_INFO_QUEUE_FILTER *pFilter) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetStorageFilter( - /* [annotation] */ - __out_bcount_opt(*pFilterByteLength) D3D10_INFO_QUEUE_FILTER *pFilter, - /* [annotation] */ - __inout SIZE_T *pFilterByteLength) = 0; - - virtual void STDMETHODCALLTYPE ClearStorageFilter( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE PushEmptyStorageFilter( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE PushCopyOfStorageFilter( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE PushStorageFilter( - /* [annotation] */ - __in D3D10_INFO_QUEUE_FILTER *pFilter) = 0; - - virtual void STDMETHODCALLTYPE PopStorageFilter( void) = 0; - - virtual UINT STDMETHODCALLTYPE GetStorageFilterStackSize( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE AddRetrievalFilterEntries( - /* [annotation] */ - __in D3D10_INFO_QUEUE_FILTER *pFilter) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetRetrievalFilter( - /* [annotation] */ - __out_bcount_opt(*pFilterByteLength) D3D10_INFO_QUEUE_FILTER *pFilter, - /* [annotation] */ - __inout SIZE_T *pFilterByteLength) = 0; - - virtual void STDMETHODCALLTYPE ClearRetrievalFilter( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE PushEmptyRetrievalFilter( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE PushCopyOfRetrievalFilter( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE PushRetrievalFilter( - /* [annotation] */ - __in D3D10_INFO_QUEUE_FILTER *pFilter) = 0; - - virtual void STDMETHODCALLTYPE PopRetrievalFilter( void) = 0; - - virtual UINT STDMETHODCALLTYPE GetRetrievalFilterStackSize( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE AddMessage( - /* [annotation] */ - __in D3D10_MESSAGE_CATEGORY Category, - /* [annotation] */ - __in D3D10_MESSAGE_SEVERITY Severity, - /* [annotation] */ - __in D3D10_MESSAGE_ID ID, - /* [annotation] */ - __in LPCSTR pDescription) = 0; - - virtual HRESULT STDMETHODCALLTYPE AddApplicationMessage( - /* [annotation] */ - __in D3D10_MESSAGE_SEVERITY Severity, - /* [annotation] */ - __in LPCSTR pDescription) = 0; - - virtual HRESULT STDMETHODCALLTYPE SetBreakOnCategory( - /* [annotation] */ - __in D3D10_MESSAGE_CATEGORY Category, - /* [annotation] */ - __in BOOL bEnable) = 0; - - virtual HRESULT STDMETHODCALLTYPE SetBreakOnSeverity( - /* [annotation] */ - __in D3D10_MESSAGE_SEVERITY Severity, - /* [annotation] */ - __in BOOL bEnable) = 0; - - virtual HRESULT STDMETHODCALLTYPE SetBreakOnID( - /* [annotation] */ - __in D3D10_MESSAGE_ID ID, - /* [annotation] */ - __in BOOL bEnable) = 0; - - virtual BOOL STDMETHODCALLTYPE GetBreakOnCategory( - /* [annotation] */ - __in D3D10_MESSAGE_CATEGORY Category) = 0; - - virtual BOOL STDMETHODCALLTYPE GetBreakOnSeverity( - /* [annotation] */ - __in D3D10_MESSAGE_SEVERITY Severity) = 0; - - virtual BOOL STDMETHODCALLTYPE GetBreakOnID( - /* [annotation] */ - __in D3D10_MESSAGE_ID ID) = 0; - - virtual void STDMETHODCALLTYPE SetMuteDebugOutput( - /* [annotation] */ - __in BOOL bMute) = 0; - - virtual BOOL STDMETHODCALLTYPE GetMuteDebugOutput( void) = 0; - - }; - -#else /* C style interface */ - - typedef struct ID3D10InfoQueueVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - ID3D10InfoQueue * This, - /* [in] */ REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - ID3D10InfoQueue * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - ID3D10InfoQueue * This); - - HRESULT ( STDMETHODCALLTYPE *SetMessageCountLimit )( - ID3D10InfoQueue * This, - /* [annotation] */ - __in UINT64 MessageCountLimit); - - void ( STDMETHODCALLTYPE *ClearStoredMessages )( - ID3D10InfoQueue * This); - - HRESULT ( STDMETHODCALLTYPE *GetMessage )( - ID3D10InfoQueue * This, - /* [annotation] */ - __in UINT64 MessageIndex, - /* [annotation] */ - __out_bcount_opt(*pMessageByteLength) D3D10_MESSAGE *pMessage, - /* [annotation] */ - __inout SIZE_T *pMessageByteLength); - - UINT64 ( STDMETHODCALLTYPE *GetNumMessagesAllowedByStorageFilter )( - ID3D10InfoQueue * This); - - UINT64 ( STDMETHODCALLTYPE *GetNumMessagesDeniedByStorageFilter )( - ID3D10InfoQueue * This); - - UINT64 ( STDMETHODCALLTYPE *GetNumStoredMessages )( - ID3D10InfoQueue * This); - - UINT64 ( STDMETHODCALLTYPE *GetNumStoredMessagesAllowedByRetrievalFilter )( - ID3D10InfoQueue * This); - - UINT64 ( STDMETHODCALLTYPE *GetNumMessagesDiscardedByMessageCountLimit )( - ID3D10InfoQueue * This); - - UINT64 ( STDMETHODCALLTYPE *GetMessageCountLimit )( - ID3D10InfoQueue * This); - - HRESULT ( STDMETHODCALLTYPE *AddStorageFilterEntries )( - ID3D10InfoQueue * This, - /* [annotation] */ - __in D3D10_INFO_QUEUE_FILTER *pFilter); - - HRESULT ( STDMETHODCALLTYPE *GetStorageFilter )( - ID3D10InfoQueue * This, - /* [annotation] */ - __out_bcount_opt(*pFilterByteLength) D3D10_INFO_QUEUE_FILTER *pFilter, - /* [annotation] */ - __inout SIZE_T *pFilterByteLength); - - void ( STDMETHODCALLTYPE *ClearStorageFilter )( - ID3D10InfoQueue * This); - - HRESULT ( STDMETHODCALLTYPE *PushEmptyStorageFilter )( - ID3D10InfoQueue * This); - - HRESULT ( STDMETHODCALLTYPE *PushCopyOfStorageFilter )( - ID3D10InfoQueue * This); - - HRESULT ( STDMETHODCALLTYPE *PushStorageFilter )( - ID3D10InfoQueue * This, - /* [annotation] */ - __in D3D10_INFO_QUEUE_FILTER *pFilter); - - void ( STDMETHODCALLTYPE *PopStorageFilter )( - ID3D10InfoQueue * This); - - UINT ( STDMETHODCALLTYPE *GetStorageFilterStackSize )( - ID3D10InfoQueue * This); - - HRESULT ( STDMETHODCALLTYPE *AddRetrievalFilterEntries )( - ID3D10InfoQueue * This, - /* [annotation] */ - __in D3D10_INFO_QUEUE_FILTER *pFilter); - - HRESULT ( STDMETHODCALLTYPE *GetRetrievalFilter )( - ID3D10InfoQueue * This, - /* [annotation] */ - __out_bcount_opt(*pFilterByteLength) D3D10_INFO_QUEUE_FILTER *pFilter, - /* [annotation] */ - __inout SIZE_T *pFilterByteLength); - - void ( STDMETHODCALLTYPE *ClearRetrievalFilter )( - ID3D10InfoQueue * This); - - HRESULT ( STDMETHODCALLTYPE *PushEmptyRetrievalFilter )( - ID3D10InfoQueue * This); - - HRESULT ( STDMETHODCALLTYPE *PushCopyOfRetrievalFilter )( - ID3D10InfoQueue * This); - - HRESULT ( STDMETHODCALLTYPE *PushRetrievalFilter )( - ID3D10InfoQueue * This, - /* [annotation] */ - __in D3D10_INFO_QUEUE_FILTER *pFilter); - - void ( STDMETHODCALLTYPE *PopRetrievalFilter )( - ID3D10InfoQueue * This); - - UINT ( STDMETHODCALLTYPE *GetRetrievalFilterStackSize )( - ID3D10InfoQueue * This); - - HRESULT ( STDMETHODCALLTYPE *AddMessage )( - ID3D10InfoQueue * This, - /* [annotation] */ - __in D3D10_MESSAGE_CATEGORY Category, - /* [annotation] */ - __in D3D10_MESSAGE_SEVERITY Severity, - /* [annotation] */ - __in D3D10_MESSAGE_ID ID, - /* [annotation] */ - __in LPCSTR pDescription); - - HRESULT ( STDMETHODCALLTYPE *AddApplicationMessage )( - ID3D10InfoQueue * This, - /* [annotation] */ - __in D3D10_MESSAGE_SEVERITY Severity, - /* [annotation] */ - __in LPCSTR pDescription); - - HRESULT ( STDMETHODCALLTYPE *SetBreakOnCategory )( - ID3D10InfoQueue * This, - /* [annotation] */ - __in D3D10_MESSAGE_CATEGORY Category, - /* [annotation] */ - __in BOOL bEnable); - - HRESULT ( STDMETHODCALLTYPE *SetBreakOnSeverity )( - ID3D10InfoQueue * This, - /* [annotation] */ - __in D3D10_MESSAGE_SEVERITY Severity, - /* [annotation] */ - __in BOOL bEnable); - - HRESULT ( STDMETHODCALLTYPE *SetBreakOnID )( - ID3D10InfoQueue * This, - /* [annotation] */ - __in D3D10_MESSAGE_ID ID, - /* [annotation] */ - __in BOOL bEnable); - - BOOL ( STDMETHODCALLTYPE *GetBreakOnCategory )( - ID3D10InfoQueue * This, - /* [annotation] */ - __in D3D10_MESSAGE_CATEGORY Category); - - BOOL ( STDMETHODCALLTYPE *GetBreakOnSeverity )( - ID3D10InfoQueue * This, - /* [annotation] */ - __in D3D10_MESSAGE_SEVERITY Severity); - - BOOL ( STDMETHODCALLTYPE *GetBreakOnID )( - ID3D10InfoQueue * This, - /* [annotation] */ - __in D3D10_MESSAGE_ID ID); - - void ( STDMETHODCALLTYPE *SetMuteDebugOutput )( - ID3D10InfoQueue * This, - /* [annotation] */ - __in BOOL bMute); - - BOOL ( STDMETHODCALLTYPE *GetMuteDebugOutput )( - ID3D10InfoQueue * This); - - END_INTERFACE - } ID3D10InfoQueueVtbl; - - interface ID3D10InfoQueue - { - CONST_VTBL struct ID3D10InfoQueueVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define ID3D10InfoQueue_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define ID3D10InfoQueue_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define ID3D10InfoQueue_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define ID3D10InfoQueue_SetMessageCountLimit(This,MessageCountLimit) \ - ( (This)->lpVtbl -> SetMessageCountLimit(This,MessageCountLimit) ) - -#define ID3D10InfoQueue_ClearStoredMessages(This) \ - ( (This)->lpVtbl -> ClearStoredMessages(This) ) - -#define ID3D10InfoQueue_GetMessage(This,MessageIndex,pMessage,pMessageByteLength) \ - ( (This)->lpVtbl -> GetMessage(This,MessageIndex,pMessage,pMessageByteLength) ) - -#define ID3D10InfoQueue_GetNumMessagesAllowedByStorageFilter(This) \ - ( (This)->lpVtbl -> GetNumMessagesAllowedByStorageFilter(This) ) - -#define ID3D10InfoQueue_GetNumMessagesDeniedByStorageFilter(This) \ - ( (This)->lpVtbl -> GetNumMessagesDeniedByStorageFilter(This) ) - -#define ID3D10InfoQueue_GetNumStoredMessages(This) \ - ( (This)->lpVtbl -> GetNumStoredMessages(This) ) - -#define ID3D10InfoQueue_GetNumStoredMessagesAllowedByRetrievalFilter(This) \ - ( (This)->lpVtbl -> GetNumStoredMessagesAllowedByRetrievalFilter(This) ) - -#define ID3D10InfoQueue_GetNumMessagesDiscardedByMessageCountLimit(This) \ - ( (This)->lpVtbl -> GetNumMessagesDiscardedByMessageCountLimit(This) ) - -#define ID3D10InfoQueue_GetMessageCountLimit(This) \ - ( (This)->lpVtbl -> GetMessageCountLimit(This) ) - -#define ID3D10InfoQueue_AddStorageFilterEntries(This,pFilter) \ - ( (This)->lpVtbl -> AddStorageFilterEntries(This,pFilter) ) - -#define ID3D10InfoQueue_GetStorageFilter(This,pFilter,pFilterByteLength) \ - ( (This)->lpVtbl -> GetStorageFilter(This,pFilter,pFilterByteLength) ) - -#define ID3D10InfoQueue_ClearStorageFilter(This) \ - ( (This)->lpVtbl -> ClearStorageFilter(This) ) - -#define ID3D10InfoQueue_PushEmptyStorageFilter(This) \ - ( (This)->lpVtbl -> PushEmptyStorageFilter(This) ) - -#define ID3D10InfoQueue_PushCopyOfStorageFilter(This) \ - ( (This)->lpVtbl -> PushCopyOfStorageFilter(This) ) - -#define ID3D10InfoQueue_PushStorageFilter(This,pFilter) \ - ( (This)->lpVtbl -> PushStorageFilter(This,pFilter) ) - -#define ID3D10InfoQueue_PopStorageFilter(This) \ - ( (This)->lpVtbl -> PopStorageFilter(This) ) - -#define ID3D10InfoQueue_GetStorageFilterStackSize(This) \ - ( (This)->lpVtbl -> GetStorageFilterStackSize(This) ) - -#define ID3D10InfoQueue_AddRetrievalFilterEntries(This,pFilter) \ - ( (This)->lpVtbl -> AddRetrievalFilterEntries(This,pFilter) ) - -#define ID3D10InfoQueue_GetRetrievalFilter(This,pFilter,pFilterByteLength) \ - ( (This)->lpVtbl -> GetRetrievalFilter(This,pFilter,pFilterByteLength) ) - -#define ID3D10InfoQueue_ClearRetrievalFilter(This) \ - ( (This)->lpVtbl -> ClearRetrievalFilter(This) ) - -#define ID3D10InfoQueue_PushEmptyRetrievalFilter(This) \ - ( (This)->lpVtbl -> PushEmptyRetrievalFilter(This) ) - -#define ID3D10InfoQueue_PushCopyOfRetrievalFilter(This) \ - ( (This)->lpVtbl -> PushCopyOfRetrievalFilter(This) ) - -#define ID3D10InfoQueue_PushRetrievalFilter(This,pFilter) \ - ( (This)->lpVtbl -> PushRetrievalFilter(This,pFilter) ) - -#define ID3D10InfoQueue_PopRetrievalFilter(This) \ - ( (This)->lpVtbl -> PopRetrievalFilter(This) ) - -#define ID3D10InfoQueue_GetRetrievalFilterStackSize(This) \ - ( (This)->lpVtbl -> GetRetrievalFilterStackSize(This) ) - -#define ID3D10InfoQueue_AddMessage(This,Category,Severity,ID,pDescription) \ - ( (This)->lpVtbl -> AddMessage(This,Category,Severity,ID,pDescription) ) - -#define ID3D10InfoQueue_AddApplicationMessage(This,Severity,pDescription) \ - ( (This)->lpVtbl -> AddApplicationMessage(This,Severity,pDescription) ) - -#define ID3D10InfoQueue_SetBreakOnCategory(This,Category,bEnable) \ - ( (This)->lpVtbl -> SetBreakOnCategory(This,Category,bEnable) ) - -#define ID3D10InfoQueue_SetBreakOnSeverity(This,Severity,bEnable) \ - ( (This)->lpVtbl -> SetBreakOnSeverity(This,Severity,bEnable) ) - -#define ID3D10InfoQueue_SetBreakOnID(This,ID,bEnable) \ - ( (This)->lpVtbl -> SetBreakOnID(This,ID,bEnable) ) - -#define ID3D10InfoQueue_GetBreakOnCategory(This,Category) \ - ( (This)->lpVtbl -> GetBreakOnCategory(This,Category) ) - -#define ID3D10InfoQueue_GetBreakOnSeverity(This,Severity) \ - ( (This)->lpVtbl -> GetBreakOnSeverity(This,Severity) ) - -#define ID3D10InfoQueue_GetBreakOnID(This,ID) \ - ( (This)->lpVtbl -> GetBreakOnID(This,ID) ) - -#define ID3D10InfoQueue_SetMuteDebugOutput(This,bMute) \ - ( (This)->lpVtbl -> SetMuteDebugOutput(This,bMute) ) - -#define ID3D10InfoQueue_GetMuteDebugOutput(This) \ - ( (This)->lpVtbl -> GetMuteDebugOutput(This) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __ID3D10InfoQueue_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_d3d10sdklayers_0000_0003 */ -/* [local] */ - -#define D3D10_REGKEY_PATH __TEXT("Software\\Microsoft\\Direct3D") -#define D3D10_MUTE_DEBUG_OUTPUT __TEXT("MuteDebugOutput") -#define D3D10_ENABLE_BREAK_ON_MESSAGE __TEXT("EnableBreakOnMessage") -#define D3D10_INFOQUEUE_STORAGE_FILTER_OVERRIDE __TEXT("InfoQueueStorageFilterOverride") -#define D3D10_MUTE_CATEGORY __TEXT("Mute_CATEGORY_%s") -#define D3D10_MUTE_SEVERITY __TEXT("Mute_SEVERITY_%s") -#define D3D10_MUTE_ID_STRING __TEXT("Mute_ID_%s") -#define D3D10_MUTE_ID_DECIMAL __TEXT("Mute_ID_%d") -#define D3D10_UNMUTE_SEVERITY_INFO __TEXT("Unmute_SEVERITY_INFO") -#define D3D10_BREAKON_CATEGORY __TEXT("BreakOn_CATEGORY_%s") -#define D3D10_BREAKON_SEVERITY __TEXT("BreakOn_SEVERITY_%s") -#define D3D10_BREAKON_ID_STRING __TEXT("BreakOn_ID_%s") -#define D3D10_BREAKON_ID_DECIMAL __TEXT("BreakOn_ID_%d") -#define D3D10_APPSIZE_STRING __TEXT("Size") -#define D3D10_APPNAME_STRING __TEXT("Name") -DEFINE_GUID(IID_ID3D10Debug,0x9B7E4E01,0x342C,0x4106,0xA1,0x9F,0x4F,0x27,0x04,0xF6,0x89,0xF0); -DEFINE_GUID(IID_ID3D10SwitchToRef,0x9B7E4E02,0x342C,0x4106,0xA1,0x9F,0x4F,0x27,0x04,0xF6,0x89,0xF0); -DEFINE_GUID(IID_ID3D10InfoQueue,0x1b940b17,0x2642,0x4d1f,0xab,0x1f,0xb9,0x9b,0xad,0x0c,0x39,0x5f); - - -extern RPC_IF_HANDLE __MIDL_itf_d3d10sdklayers_0000_0003_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_d3d10sdklayers_0000_0003_v0_0_s_ifspec; - -/* Additional Prototypes for ALL interfaces */ - -/* end of Additional Prototypes */ - -#ifdef __cplusplus -} -#endif - -#endif - - diff --git a/SDK/Include/d3d9.h b/SDK/Include/d3d9.h deleted file mode 100644 index e5c7847..0000000 --- a/SDK/Include/d3d9.h +++ /dev/null @@ -1,2791 +0,0 @@ -/*==========================================================================; - * - * Copyright (C) Microsoft Corporation. All Rights Reserved. - * - * File: d3d9.h - * Content: Direct3D include file - * - ****************************************************************************/ - -#ifndef _D3D9_H_ -#define _D3D9_H_ - -#ifndef DIRECT3D_VERSION -#define DIRECT3D_VERSION 0x0900 -#endif //DIRECT3D_VERSION - -// include this file content only if compiling for DX9 interfaces -#if(DIRECT3D_VERSION >= 0x0900) - - -/* This identifier is passed to Direct3DCreate9 in order to ensure that an - * application was built against the correct header files. This number is - * incremented whenever a header (or other) change would require applications - * to be rebuilt. If the version doesn't match, Direct3DCreate9 will fail. - * (The number itself has no meaning.)*/ - -#ifdef D3D_DEBUG_INFO -#define D3D_SDK_VERSION (32 | 0x80000000) -#define D3D9b_SDK_VERSION (31 | 0x80000000) - -#else -#define D3D_SDK_VERSION 32 -#define D3D9b_SDK_VERSION 31 -#endif - - -#include - -#define COM_NO_WINDOWS_H -#include - -#include - -#if !defined(HMONITOR_DECLARED) && (WINVER < 0x0500) - #define HMONITOR_DECLARED - DECLARE_HANDLE(HMONITOR); -#endif - -#define D3DAPI WINAPI - -/* - * Interface IID's - */ -#if defined( _WIN32 ) && !defined( _NO_COM) - -/* IID_IDirect3D9 */ -/* {81BDCBCA-64D4-426d-AE8D-AD0147F4275C} */ -DEFINE_GUID(IID_IDirect3D9, 0x81bdcbca, 0x64d4, 0x426d, 0xae, 0x8d, 0xad, 0x1, 0x47, 0xf4, 0x27, 0x5c); - -/* IID_IDirect3DDevice9 */ -// {D0223B96-BF7A-43fd-92BD-A43B0D82B9EB} */ -DEFINE_GUID(IID_IDirect3DDevice9, 0xd0223b96, 0xbf7a, 0x43fd, 0x92, 0xbd, 0xa4, 0x3b, 0xd, 0x82, 0xb9, 0xeb); - -/* IID_IDirect3DResource9 */ -// {05EEC05D-8F7D-4362-B999-D1BAF357C704} -DEFINE_GUID(IID_IDirect3DResource9, 0x5eec05d, 0x8f7d, 0x4362, 0xb9, 0x99, 0xd1, 0xba, 0xf3, 0x57, 0xc7, 0x4); - -/* IID_IDirect3DBaseTexture9 */ -/* {580CA87E-1D3C-4d54-991D-B7D3E3C298CE} */ -DEFINE_GUID(IID_IDirect3DBaseTexture9, 0x580ca87e, 0x1d3c, 0x4d54, 0x99, 0x1d, 0xb7, 0xd3, 0xe3, 0xc2, 0x98, 0xce); - -/* IID_IDirect3DTexture9 */ -/* {85C31227-3DE5-4f00-9B3A-F11AC38C18B5} */ -DEFINE_GUID(IID_IDirect3DTexture9, 0x85c31227, 0x3de5, 0x4f00, 0x9b, 0x3a, 0xf1, 0x1a, 0xc3, 0x8c, 0x18, 0xb5); - -/* IID_IDirect3DCubeTexture9 */ -/* {FFF32F81-D953-473a-9223-93D652ABA93F} */ -DEFINE_GUID(IID_IDirect3DCubeTexture9, 0xfff32f81, 0xd953, 0x473a, 0x92, 0x23, 0x93, 0xd6, 0x52, 0xab, 0xa9, 0x3f); - -/* IID_IDirect3DVolumeTexture9 */ -/* {2518526C-E789-4111-A7B9-47EF328D13E6} */ -DEFINE_GUID(IID_IDirect3DVolumeTexture9, 0x2518526c, 0xe789, 0x4111, 0xa7, 0xb9, 0x47, 0xef, 0x32, 0x8d, 0x13, 0xe6); - -/* IID_IDirect3DVertexBuffer9 */ -/* {B64BB1B5-FD70-4df6-BF91-19D0A12455E3} */ -DEFINE_GUID(IID_IDirect3DVertexBuffer9, 0xb64bb1b5, 0xfd70, 0x4df6, 0xbf, 0x91, 0x19, 0xd0, 0xa1, 0x24, 0x55, 0xe3); - -/* IID_IDirect3DIndexBuffer9 */ -/* {7C9DD65E-D3F7-4529-ACEE-785830ACDE35} */ -DEFINE_GUID(IID_IDirect3DIndexBuffer9, 0x7c9dd65e, 0xd3f7, 0x4529, 0xac, 0xee, 0x78, 0x58, 0x30, 0xac, 0xde, 0x35); - -/* IID_IDirect3DSurface9 */ -/* {0CFBAF3A-9FF6-429a-99B3-A2796AF8B89B} */ -DEFINE_GUID(IID_IDirect3DSurface9, 0xcfbaf3a, 0x9ff6, 0x429a, 0x99, 0xb3, 0xa2, 0x79, 0x6a, 0xf8, 0xb8, 0x9b); - -/* IID_IDirect3DVolume9 */ -/* {24F416E6-1F67-4aa7-B88E-D33F6F3128A1} */ -DEFINE_GUID(IID_IDirect3DVolume9, 0x24f416e6, 0x1f67, 0x4aa7, 0xb8, 0x8e, 0xd3, 0x3f, 0x6f, 0x31, 0x28, 0xa1); - -/* IID_IDirect3DSwapChain9 */ -/* {794950F2-ADFC-458a-905E-10A10B0B503B} */ -DEFINE_GUID(IID_IDirect3DSwapChain9, 0x794950f2, 0xadfc, 0x458a, 0x90, 0x5e, 0x10, 0xa1, 0xb, 0xb, 0x50, 0x3b); - -/* IID_IDirect3DVertexDeclaration9 */ -/* {DD13C59C-36FA-4098-A8FB-C7ED39DC8546} */ -DEFINE_GUID(IID_IDirect3DVertexDeclaration9, 0xdd13c59c, 0x36fa, 0x4098, 0xa8, 0xfb, 0xc7, 0xed, 0x39, 0xdc, 0x85, 0x46); - -/* IID_IDirect3DVertexShader9 */ -/* {EFC5557E-6265-4613-8A94-43857889EB36} */ -DEFINE_GUID(IID_IDirect3DVertexShader9, 0xefc5557e, 0x6265, 0x4613, 0x8a, 0x94, 0x43, 0x85, 0x78, 0x89, 0xeb, 0x36); - -/* IID_IDirect3DPixelShader9 */ -/* {6D3BDBDC-5B02-4415-B852-CE5E8BCCB289} */ -DEFINE_GUID(IID_IDirect3DPixelShader9, 0x6d3bdbdc, 0x5b02, 0x4415, 0xb8, 0x52, 0xce, 0x5e, 0x8b, 0xcc, 0xb2, 0x89); - -/* IID_IDirect3DStateBlock9 */ -/* {B07C4FE5-310D-4ba8-A23C-4F0F206F218B} */ -DEFINE_GUID(IID_IDirect3DStateBlock9, 0xb07c4fe5, 0x310d, 0x4ba8, 0xa2, 0x3c, 0x4f, 0xf, 0x20, 0x6f, 0x21, 0x8b); - -/* IID_IDirect3DQuery9 */ -/* {d9771460-a695-4f26-bbd3-27b840b541cc} */ -DEFINE_GUID(IID_IDirect3DQuery9, 0xd9771460, 0xa695, 0x4f26, 0xbb, 0xd3, 0x27, 0xb8, 0x40, 0xb5, 0x41, 0xcc); - - -/* IID_HelperName */ -/* {E4A36723-FDFE-4b22-B146-3C04C07F4CC8} */ -DEFINE_GUID(IID_HelperName, 0xe4a36723, 0xfdfe, 0x4b22, 0xb1, 0x46, 0x3c, 0x4, 0xc0, 0x7f, 0x4c, 0xc8); - -/* D3D9Ex only -- */ -#if !defined(D3D_DISABLE_9EX) - -/* IID_IDirect3D9Ex */ -/* {02177241-69FC-400C-8FF1-93A44DF6861D} */ -DEFINE_GUID(IID_IDirect3D9Ex, 0x02177241, 0x69FC, 0x400C, 0x8F, 0xF1, 0x93, 0xA4, 0x4D, 0xF6, 0x86, 0x1D); - -/* IID_IDirect3DDevice9Ex */ -// {B18B10CE-2649-405a-870F-95F777D4313A} -DEFINE_GUID(IID_IDirect3DDevice9Ex, 0xb18b10ce, 0x2649, 0x405a, 0x87, 0xf, 0x95, 0xf7, 0x77, 0xd4, 0x31, 0x3a); - -/* IID_IDirect3DSwapChain9Ex */ -/* {91886CAF-1C3D-4d2e-A0AB-3E4C7D8D3303} */ -DEFINE_GUID(IID_IDirect3DSwapChain9Ex, 0x91886caf, 0x1c3d, 0x4d2e, 0xa0, 0xab, 0x3e, 0x4c, 0x7d, 0x8d, 0x33, 0x3); - -/* IID_IDirect3D9ExOverlayExtension */ -/* {187aeb13-aaf5-4c59-876d-e059088c0df8} */ -DEFINE_GUID(IID_IDirect3D9ExOverlayExtension, 0x187aeb13, 0xaaf5, 0x4c59, 0x87, 0x6d, 0xe0, 0x59, 0x8, 0x8c, 0xd, 0xf8); - -/* IID_IDirect3DDevice9Video */ -// {26DC4561-A1EE-4ae7-96DA-118A36C0EC95} -DEFINE_GUID(IID_IDirect3DDevice9Video, 0x26dc4561, 0xa1ee, 0x4ae7, 0x96, 0xda, 0x11, 0x8a, 0x36, 0xc0, 0xec, 0x95); - -/* IID_IDirect3D9AuthenticatedChannel */ -// {FF24BEEE-DA21-4beb-98B5-D2F899F98AF9} -DEFINE_GUID(IID_IDirect3DAuthenticatedChannel9, 0xff24beee, 0xda21, 0x4beb, 0x98, 0xb5, 0xd2, 0xf8, 0x99, 0xf9, 0x8a, 0xf9); - -/* IID_IDirect3DCryptoSession9 */ -// {FA0AB799-7A9C-48ca-8C5B-237E71A54434} -DEFINE_GUID(IID_IDirect3DCryptoSession9, 0xfa0ab799, 0x7a9c, 0x48ca, 0x8c, 0x5b, 0x23, 0x7e, 0x71, 0xa5, 0x44, 0x34); - - -#endif // !D3D_DISABLE_9EX -/* -- D3D9Ex only */ - -#endif - -#ifdef __cplusplus - -#ifndef DECLSPEC_UUID -#if _MSC_VER >= 1100 -#define DECLSPEC_UUID(x) __declspec(uuid(x)) -#else -#define DECLSPEC_UUID(x) -#endif -#endif - -interface DECLSPEC_UUID("81BDCBCA-64D4-426d-AE8D-AD0147F4275C") IDirect3D9; -interface DECLSPEC_UUID("D0223B96-BF7A-43fd-92BD-A43B0D82B9EB") IDirect3DDevice9; - -interface DECLSPEC_UUID("B07C4FE5-310D-4ba8-A23C-4F0F206F218B") IDirect3DStateBlock9; -interface DECLSPEC_UUID("05EEC05D-8F7D-4362-B999-D1BAF357C704") IDirect3DResource9; -interface DECLSPEC_UUID("DD13C59C-36FA-4098-A8FB-C7ED39DC8546") IDirect3DVertexDeclaration9; -interface DECLSPEC_UUID("EFC5557E-6265-4613-8A94-43857889EB36") IDirect3DVertexShader9; -interface DECLSPEC_UUID("6D3BDBDC-5B02-4415-B852-CE5E8BCCB289") IDirect3DPixelShader9; -interface DECLSPEC_UUID("580CA87E-1D3C-4d54-991D-B7D3E3C298CE") IDirect3DBaseTexture9; -interface DECLSPEC_UUID("85C31227-3DE5-4f00-9B3A-F11AC38C18B5") IDirect3DTexture9; -interface DECLSPEC_UUID("2518526C-E789-4111-A7B9-47EF328D13E6") IDirect3DVolumeTexture9; -interface DECLSPEC_UUID("FFF32F81-D953-473a-9223-93D652ABA93F") IDirect3DCubeTexture9; - -interface DECLSPEC_UUID("B64BB1B5-FD70-4df6-BF91-19D0A12455E3") IDirect3DVertexBuffer9; -interface DECLSPEC_UUID("7C9DD65E-D3F7-4529-ACEE-785830ACDE35") IDirect3DIndexBuffer9; - -interface DECLSPEC_UUID("0CFBAF3A-9FF6-429a-99B3-A2796AF8B89B") IDirect3DSurface9; -interface DECLSPEC_UUID("24F416E6-1F67-4aa7-B88E-D33F6F3128A1") IDirect3DVolume9; - -interface DECLSPEC_UUID("794950F2-ADFC-458a-905E-10A10B0B503B") IDirect3DSwapChain9; -interface DECLSPEC_UUID("d9771460-a695-4f26-bbd3-27b840b541cc") IDirect3DQuery9; - - -/* D3D9Ex only -- */ -#if !defined(D3D_DISABLE_9EX) - -interface DECLSPEC_UUID("02177241-69FC-400C-8FF1-93A44DF6861D") IDirect3D9Ex; -interface DECLSPEC_UUID("B18B10CE-2649-405a-870F-95F777D4313A") IDirect3DDevice9Ex; -interface DECLSPEC_UUID("91886CAF-1C3D-4d2e-A0AB-3E4C7D8D3303") IDirect3DSwapChain9Ex; -interface DECLSPEC_UUID("187AEB13-AAF5-4C59-876D-E059088C0DF8") IDirect3D9ExOverlayExtension; -interface DECLSPEC_UUID("26DC4561-A1EE-4ae7-96DA-118A36C0EC95") IDirect3DDevice9Video; -interface DECLSPEC_UUID("FF24BEEE-DA21-4beb-98B5-D2F899F98AF9") IDirect3DAuthenticatedChannel9; -interface DECLSPEC_UUID("FA0AB799-7A9C-48CA-8C5B-237E71A54434") IDirect3DCryptoSession9; - -#endif // !D3D_DISABLE_9EX -/* -- D3D9Ex only */ - -#if defined(_COM_SMARTPTR_TYPEDEF) -_COM_SMARTPTR_TYPEDEF(IDirect3D9, __uuidof(IDirect3D9)); -_COM_SMARTPTR_TYPEDEF(IDirect3DDevice9, __uuidof(IDirect3DDevice9)); - -_COM_SMARTPTR_TYPEDEF(IDirect3DStateBlock9, __uuidof(IDirect3DStateBlock9)); -_COM_SMARTPTR_TYPEDEF(IDirect3DResource9, __uuidof(IDirect3DResource9)); -_COM_SMARTPTR_TYPEDEF(IDirect3DVertexDeclaration9, __uuidof(IDirect3DVertexDeclaration9)); -_COM_SMARTPTR_TYPEDEF(IDirect3DVertexShader9, __uuidof(IDirect3DVertexShader9)); -_COM_SMARTPTR_TYPEDEF(IDirect3DPixelShader9, __uuidof(IDirect3DPixelShader9)); -_COM_SMARTPTR_TYPEDEF(IDirect3DBaseTexture9, __uuidof(IDirect3DBaseTexture9)); -_COM_SMARTPTR_TYPEDEF(IDirect3DTexture9, __uuidof(IDirect3DTexture9)); -_COM_SMARTPTR_TYPEDEF(IDirect3DVolumeTexture9, __uuidof(IDirect3DVolumeTexture9)); -_COM_SMARTPTR_TYPEDEF(IDirect3DCubeTexture9, __uuidof(IDirect3DCubeTexture9)); - -_COM_SMARTPTR_TYPEDEF(IDirect3DVertexBuffer9, __uuidof(IDirect3DVertexBuffer9)); -_COM_SMARTPTR_TYPEDEF(IDirect3DIndexBuffer9, __uuidof(IDirect3DIndexBuffer9)); - -_COM_SMARTPTR_TYPEDEF(IDirect3DSurface9, __uuidof(IDirect3DSurface9)); -_COM_SMARTPTR_TYPEDEF(IDirect3DVolume9, __uuidof(IDirect3DVolume9)); - -_COM_SMARTPTR_TYPEDEF(IDirect3DSwapChain9, __uuidof(IDirect3DSwapChain9)); -_COM_SMARTPTR_TYPEDEF(IDirect3DQuery9, __uuidof(IDirect3DQuery9)); - - -/* D3D9Ex only -- */ -#if !defined(D3D_DISABLE_9EX) - -_COM_SMARTPTR_TYPEDEF(IDirect3D9Ex, __uuidof(IDirect3D9Ex)); -_COM_SMARTPTR_TYPEDEF(IDirect3DDevice9Ex, __uuidof(IDirect3DDevice9Ex)); -_COM_SMARTPTR_TYPEDEF(IDirect3DSwapChain9Ex, __uuidof(IDirect3DSwapChain9Ex)); -_COM_SMARTPTR_TYPEDEF(IDirect3D9ExOverlayExtension, __uuidof(IDirect3D9ExOverlayExtension)); -_COM_SMARTPTR_TYPEDEF(IDirect3DDevice9Video, __uuidof(IDirect3DDevice9Video)); -_COM_SMARTPTR_TYPEDEF(IDirect3DAuthenticatedChannel9, __uuidof(IDirect3DAuthenticatedChannel9)); -_COM_SMARTPTR_TYPEDEF(IDirect3DCryptoSession9, __uuidof(IDirect3DCryptoSession9)); - -#endif // !D3D_DISABLE_9EX -/* -- D3D9Ex only */ - -#endif - -#endif - - -typedef interface IDirect3D9 IDirect3D9; -typedef interface IDirect3DDevice9 IDirect3DDevice9; -typedef interface IDirect3DStateBlock9 IDirect3DStateBlock9; -typedef interface IDirect3DVertexDeclaration9 IDirect3DVertexDeclaration9; -typedef interface IDirect3DVertexShader9 IDirect3DVertexShader9; -typedef interface IDirect3DPixelShader9 IDirect3DPixelShader9; -typedef interface IDirect3DResource9 IDirect3DResource9; -typedef interface IDirect3DBaseTexture9 IDirect3DBaseTexture9; -typedef interface IDirect3DTexture9 IDirect3DTexture9; -typedef interface IDirect3DVolumeTexture9 IDirect3DVolumeTexture9; -typedef interface IDirect3DCubeTexture9 IDirect3DCubeTexture9; -typedef interface IDirect3DVertexBuffer9 IDirect3DVertexBuffer9; -typedef interface IDirect3DIndexBuffer9 IDirect3DIndexBuffer9; -typedef interface IDirect3DSurface9 IDirect3DSurface9; -typedef interface IDirect3DVolume9 IDirect3DVolume9; -typedef interface IDirect3DSwapChain9 IDirect3DSwapChain9; -typedef interface IDirect3DQuery9 IDirect3DQuery9; - - -/* D3D9Ex only -- */ -#if !defined(D3D_DISABLE_9EX) - - -typedef interface IDirect3D9Ex IDirect3D9Ex; -typedef interface IDirect3DDevice9Ex IDirect3DDevice9Ex; -typedef interface IDirect3DSwapChain9Ex IDirect3DSwapChain9Ex; -typedef interface IDirect3D9ExOverlayExtension IDirect3D9ExOverlayExtension; -typedef interface IDirect3DDevice9Video IDirect3DDevice9Video; -typedef interface IDirect3DAuthenticatedChannel9 IDirect3DAuthenticatedChannel9; -typedef interface IDirect3DCryptoSession9 IDirect3DCryptoSession9; - -#endif // !D3D_DISABLE_9EX -/* -- D3D9Ex only */ - -#include "d3d9types.h" -#include "d3d9caps.h" - - -#ifdef __cplusplus -extern "C" { -#endif - -/* - * DLL Function for creating a Direct3D9 object. This object supports - * enumeration and allows the creation of Direct3DDevice9 objects. - * Pass the value of the constant D3D_SDK_VERSION to this function, so - * that the run-time can validate that your application was compiled - * against the right headers. - */ - -IDirect3D9 * WINAPI Direct3DCreate9(UINT SDKVersion); - -/* - * Stubs for graphics profiling. - */ - -int WINAPI D3DPERF_BeginEvent( D3DCOLOR col, LPCWSTR wszName ); -int WINAPI D3DPERF_EndEvent( void ); -void WINAPI D3DPERF_SetMarker( D3DCOLOR col, LPCWSTR wszName ); -void WINAPI D3DPERF_SetRegion( D3DCOLOR col, LPCWSTR wszName ); -BOOL WINAPI D3DPERF_QueryRepeatFrame( void ); - -void WINAPI D3DPERF_SetOptions( DWORD dwOptions ); -DWORD WINAPI D3DPERF_GetStatus( void ); - -/* - * Direct3D interfaces - */ - - - - - - -#undef INTERFACE -#define INTERFACE IDirect3D9 - -DECLARE_INTERFACE_(IDirect3D9, IUnknown) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, void** ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirect3D9 methods ***/ - STDMETHOD(RegisterSoftwareDevice)(THIS_ void* pInitializeFunction) PURE; - STDMETHOD_(UINT, GetAdapterCount)(THIS) PURE; - STDMETHOD(GetAdapterIdentifier)(THIS_ UINT Adapter,DWORD Flags,D3DADAPTER_IDENTIFIER9* pIdentifier) PURE; - STDMETHOD_(UINT, GetAdapterModeCount)(THIS_ UINT Adapter,D3DFORMAT Format) PURE; - STDMETHOD(EnumAdapterModes)(THIS_ UINT Adapter,D3DFORMAT Format,UINT Mode,D3DDISPLAYMODE* pMode) PURE; - STDMETHOD(GetAdapterDisplayMode)(THIS_ UINT Adapter,D3DDISPLAYMODE* pMode) PURE; - STDMETHOD(CheckDeviceType)(THIS_ UINT Adapter,D3DDEVTYPE DevType,D3DFORMAT AdapterFormat,D3DFORMAT BackBufferFormat,BOOL bWindowed) PURE; - STDMETHOD(CheckDeviceFormat)(THIS_ UINT Adapter,D3DDEVTYPE DeviceType,D3DFORMAT AdapterFormat,DWORD Usage,D3DRESOURCETYPE RType,D3DFORMAT CheckFormat) PURE; - STDMETHOD(CheckDeviceMultiSampleType)(THIS_ UINT Adapter,D3DDEVTYPE DeviceType,D3DFORMAT SurfaceFormat,BOOL Windowed,D3DMULTISAMPLE_TYPE MultiSampleType,DWORD* pQualityLevels) PURE; - STDMETHOD(CheckDepthStencilMatch)(THIS_ UINT Adapter,D3DDEVTYPE DeviceType,D3DFORMAT AdapterFormat,D3DFORMAT RenderTargetFormat,D3DFORMAT DepthStencilFormat) PURE; - STDMETHOD(CheckDeviceFormatConversion)(THIS_ UINT Adapter,D3DDEVTYPE DeviceType,D3DFORMAT SourceFormat,D3DFORMAT TargetFormat) PURE; - STDMETHOD(GetDeviceCaps)(THIS_ UINT Adapter,D3DDEVTYPE DeviceType,D3DCAPS9* pCaps) PURE; - STDMETHOD_(HMONITOR, GetAdapterMonitor)(THIS_ UINT Adapter) PURE; - STDMETHOD(CreateDevice)(THIS_ UINT Adapter,D3DDEVTYPE DeviceType,HWND hFocusWindow,DWORD BehaviorFlags,D3DPRESENT_PARAMETERS* pPresentationParameters,IDirect3DDevice9** ppReturnedDeviceInterface) PURE; - - #ifdef D3D_DEBUG_INFO - LPCWSTR Version; - #endif -}; - -typedef struct IDirect3D9 *LPDIRECT3D9, *PDIRECT3D9; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirect3D9_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirect3D9_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirect3D9_Release(p) (p)->lpVtbl->Release(p) -#define IDirect3D9_RegisterSoftwareDevice(p,a) (p)->lpVtbl->RegisterSoftwareDevice(p,a) -#define IDirect3D9_GetAdapterCount(p) (p)->lpVtbl->GetAdapterCount(p) -#define IDirect3D9_GetAdapterIdentifier(p,a,b,c) (p)->lpVtbl->GetAdapterIdentifier(p,a,b,c) -#define IDirect3D9_GetAdapterModeCount(p,a,b) (p)->lpVtbl->GetAdapterModeCount(p,a,b) -#define IDirect3D9_EnumAdapterModes(p,a,b,c,d) (p)->lpVtbl->EnumAdapterModes(p,a,b,c,d) -#define IDirect3D9_GetAdapterDisplayMode(p,a,b) (p)->lpVtbl->GetAdapterDisplayMode(p,a,b) -#define IDirect3D9_CheckDeviceType(p,a,b,c,d,e) (p)->lpVtbl->CheckDeviceType(p,a,b,c,d,e) -#define IDirect3D9_CheckDeviceFormat(p,a,b,c,d,e,f) (p)->lpVtbl->CheckDeviceFormat(p,a,b,c,d,e,f) -#define IDirect3D9_CheckDeviceMultiSampleType(p,a,b,c,d,e,f) (p)->lpVtbl->CheckDeviceMultiSampleType(p,a,b,c,d,e,f) -#define IDirect3D9_CheckDepthStencilMatch(p,a,b,c,d,e) (p)->lpVtbl->CheckDepthStencilMatch(p,a,b,c,d,e) -#define IDirect3D9_CheckDeviceFormatConversion(p,a,b,c,d) (p)->lpVtbl->CheckDeviceFormatConversion(p,a,b,c,d) -#define IDirect3D9_GetDeviceCaps(p,a,b,c) (p)->lpVtbl->GetDeviceCaps(p,a,b,c) -#define IDirect3D9_GetAdapterMonitor(p,a) (p)->lpVtbl->GetAdapterMonitor(p,a) -#define IDirect3D9_CreateDevice(p,a,b,c,d,e,f) (p)->lpVtbl->CreateDevice(p,a,b,c,d,e,f) -#else -#define IDirect3D9_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirect3D9_AddRef(p) (p)->AddRef() -#define IDirect3D9_Release(p) (p)->Release() -#define IDirect3D9_RegisterSoftwareDevice(p,a) (p)->RegisterSoftwareDevice(a) -#define IDirect3D9_GetAdapterCount(p) (p)->GetAdapterCount() -#define IDirect3D9_GetAdapterIdentifier(p,a,b,c) (p)->GetAdapterIdentifier(a,b,c) -#define IDirect3D9_GetAdapterModeCount(p,a,b) (p)->GetAdapterModeCount(a,b) -#define IDirect3D9_EnumAdapterModes(p,a,b,c,d) (p)->EnumAdapterModes(a,b,c,d) -#define IDirect3D9_GetAdapterDisplayMode(p,a,b) (p)->GetAdapterDisplayMode(a,b) -#define IDirect3D9_CheckDeviceType(p,a,b,c,d,e) (p)->CheckDeviceType(a,b,c,d,e) -#define IDirect3D9_CheckDeviceFormat(p,a,b,c,d,e,f) (p)->CheckDeviceFormat(a,b,c,d,e,f) -#define IDirect3D9_CheckDeviceMultiSampleType(p,a,b,c,d,e,f) (p)->CheckDeviceMultiSampleType(a,b,c,d,e,f) -#define IDirect3D9_CheckDepthStencilMatch(p,a,b,c,d,e) (p)->CheckDepthStencilMatch(a,b,c,d,e) -#define IDirect3D9_CheckDeviceFormatConversion(p,a,b,c,d) (p)->CheckDeviceFormatConversion(a,b,c,d) -#define IDirect3D9_GetDeviceCaps(p,a,b,c) (p)->GetDeviceCaps(a,b,c) -#define IDirect3D9_GetAdapterMonitor(p,a) (p)->GetAdapterMonitor(a) -#define IDirect3D9_CreateDevice(p,a,b,c,d,e,f) (p)->CreateDevice(a,b,c,d,e,f) -#endif - - - - - - - -/* SwapChain */ - - - - - - - - - - - - - - - -#undef INTERFACE -#define INTERFACE IDirect3DDevice9 - -DECLARE_INTERFACE_(IDirect3DDevice9, IUnknown) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, void** ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirect3DDevice9 methods ***/ - STDMETHOD(TestCooperativeLevel)(THIS) PURE; - STDMETHOD_(UINT, GetAvailableTextureMem)(THIS) PURE; - STDMETHOD(EvictManagedResources)(THIS) PURE; - STDMETHOD(GetDirect3D)(THIS_ IDirect3D9** ppD3D9) PURE; - STDMETHOD(GetDeviceCaps)(THIS_ D3DCAPS9* pCaps) PURE; - STDMETHOD(GetDisplayMode)(THIS_ UINT iSwapChain,D3DDISPLAYMODE* pMode) PURE; - STDMETHOD(GetCreationParameters)(THIS_ D3DDEVICE_CREATION_PARAMETERS *pParameters) PURE; - STDMETHOD(SetCursorProperties)(THIS_ UINT XHotSpot,UINT YHotSpot,IDirect3DSurface9* pCursorBitmap) PURE; - STDMETHOD_(void, SetCursorPosition)(THIS_ int X,int Y,DWORD Flags) PURE; - STDMETHOD_(BOOL, ShowCursor)(THIS_ BOOL bShow) PURE; - STDMETHOD(CreateAdditionalSwapChain)(THIS_ D3DPRESENT_PARAMETERS* pPresentationParameters,IDirect3DSwapChain9** pSwapChain) PURE; - STDMETHOD(GetSwapChain)(THIS_ UINT iSwapChain,IDirect3DSwapChain9** pSwapChain) PURE; - STDMETHOD_(UINT, GetNumberOfSwapChains)(THIS) PURE; - STDMETHOD(Reset)(THIS_ D3DPRESENT_PARAMETERS* pPresentationParameters) PURE; - STDMETHOD(Present)(THIS_ CONST RECT* pSourceRect,CONST RECT* pDestRect,HWND hDestWindowOverride,CONST RGNDATA* pDirtyRegion) PURE; - STDMETHOD(GetBackBuffer)(THIS_ UINT iSwapChain,UINT iBackBuffer,D3DBACKBUFFER_TYPE Type,IDirect3DSurface9** ppBackBuffer) PURE; - STDMETHOD(GetRasterStatus)(THIS_ UINT iSwapChain,D3DRASTER_STATUS* pRasterStatus) PURE; - STDMETHOD(SetDialogBoxMode)(THIS_ BOOL bEnableDialogs) PURE; - STDMETHOD_(void, SetGammaRamp)(THIS_ UINT iSwapChain,DWORD Flags,CONST D3DGAMMARAMP* pRamp) PURE; - STDMETHOD_(void, GetGammaRamp)(THIS_ UINT iSwapChain,D3DGAMMARAMP* pRamp) PURE; - STDMETHOD(CreateTexture)(THIS_ UINT Width,UINT Height,UINT Levels,DWORD Usage,D3DFORMAT Format,D3DPOOL Pool,IDirect3DTexture9** ppTexture,HANDLE* pSharedHandle) PURE; - STDMETHOD(CreateVolumeTexture)(THIS_ UINT Width,UINT Height,UINT Depth,UINT Levels,DWORD Usage,D3DFORMAT Format,D3DPOOL Pool,IDirect3DVolumeTexture9** ppVolumeTexture,HANDLE* pSharedHandle) PURE; - STDMETHOD(CreateCubeTexture)(THIS_ UINT EdgeLength,UINT Levels,DWORD Usage,D3DFORMAT Format,D3DPOOL Pool,IDirect3DCubeTexture9** ppCubeTexture,HANDLE* pSharedHandle) PURE; - STDMETHOD(CreateVertexBuffer)(THIS_ UINT Length,DWORD Usage,DWORD FVF,D3DPOOL Pool,IDirect3DVertexBuffer9** ppVertexBuffer,HANDLE* pSharedHandle) PURE; - STDMETHOD(CreateIndexBuffer)(THIS_ UINT Length,DWORD Usage,D3DFORMAT Format,D3DPOOL Pool,IDirect3DIndexBuffer9** ppIndexBuffer,HANDLE* pSharedHandle) PURE; - STDMETHOD(CreateRenderTarget)(THIS_ UINT Width,UINT Height,D3DFORMAT Format,D3DMULTISAMPLE_TYPE MultiSample,DWORD MultisampleQuality,BOOL Lockable,IDirect3DSurface9** ppSurface,HANDLE* pSharedHandle) PURE; - STDMETHOD(CreateDepthStencilSurface)(THIS_ UINT Width,UINT Height,D3DFORMAT Format,D3DMULTISAMPLE_TYPE MultiSample,DWORD MultisampleQuality,BOOL Discard,IDirect3DSurface9** ppSurface,HANDLE* pSharedHandle) PURE; - STDMETHOD(UpdateSurface)(THIS_ IDirect3DSurface9* pSourceSurface,CONST RECT* pSourceRect,IDirect3DSurface9* pDestinationSurface,CONST POINT* pDestPoint) PURE; - STDMETHOD(UpdateTexture)(THIS_ IDirect3DBaseTexture9* pSourceTexture,IDirect3DBaseTexture9* pDestinationTexture) PURE; - STDMETHOD(GetRenderTargetData)(THIS_ IDirect3DSurface9* pRenderTarget,IDirect3DSurface9* pDestSurface) PURE; - STDMETHOD(GetFrontBufferData)(THIS_ UINT iSwapChain,IDirect3DSurface9* pDestSurface) PURE; - STDMETHOD(StretchRect)(THIS_ IDirect3DSurface9* pSourceSurface,CONST RECT* pSourceRect,IDirect3DSurface9* pDestSurface,CONST RECT* pDestRect,D3DTEXTUREFILTERTYPE Filter) PURE; - STDMETHOD(ColorFill)(THIS_ IDirect3DSurface9* pSurface,CONST RECT* pRect,D3DCOLOR color) PURE; - STDMETHOD(CreateOffscreenPlainSurface)(THIS_ UINT Width,UINT Height,D3DFORMAT Format,D3DPOOL Pool,IDirect3DSurface9** ppSurface,HANDLE* pSharedHandle) PURE; - STDMETHOD(SetRenderTarget)(THIS_ DWORD RenderTargetIndex,IDirect3DSurface9* pRenderTarget) PURE; - STDMETHOD(GetRenderTarget)(THIS_ DWORD RenderTargetIndex,IDirect3DSurface9** ppRenderTarget) PURE; - STDMETHOD(SetDepthStencilSurface)(THIS_ IDirect3DSurface9* pNewZStencil) PURE; - STDMETHOD(GetDepthStencilSurface)(THIS_ IDirect3DSurface9** ppZStencilSurface) PURE; - STDMETHOD(BeginScene)(THIS) PURE; - STDMETHOD(EndScene)(THIS) PURE; - STDMETHOD(Clear)(THIS_ DWORD Count,CONST D3DRECT* pRects,DWORD Flags,D3DCOLOR Color,float Z,DWORD Stencil) PURE; - STDMETHOD(SetTransform)(THIS_ D3DTRANSFORMSTATETYPE State,CONST D3DMATRIX* pMatrix) PURE; - STDMETHOD(GetTransform)(THIS_ D3DTRANSFORMSTATETYPE State,D3DMATRIX* pMatrix) PURE; - STDMETHOD(MultiplyTransform)(THIS_ D3DTRANSFORMSTATETYPE,CONST D3DMATRIX*) PURE; - STDMETHOD(SetViewport)(THIS_ CONST D3DVIEWPORT9* pViewport) PURE; - STDMETHOD(GetViewport)(THIS_ D3DVIEWPORT9* pViewport) PURE; - STDMETHOD(SetMaterial)(THIS_ CONST D3DMATERIAL9* pMaterial) PURE; - STDMETHOD(GetMaterial)(THIS_ D3DMATERIAL9* pMaterial) PURE; - STDMETHOD(SetLight)(THIS_ DWORD Index,CONST D3DLIGHT9*) PURE; - STDMETHOD(GetLight)(THIS_ DWORD Index,D3DLIGHT9*) PURE; - STDMETHOD(LightEnable)(THIS_ DWORD Index,BOOL Enable) PURE; - STDMETHOD(GetLightEnable)(THIS_ DWORD Index,BOOL* pEnable) PURE; - STDMETHOD(SetClipPlane)(THIS_ DWORD Index,CONST float* pPlane) PURE; - STDMETHOD(GetClipPlane)(THIS_ DWORD Index,float* pPlane) PURE; - STDMETHOD(SetRenderState)(THIS_ D3DRENDERSTATETYPE State,DWORD Value) PURE; - STDMETHOD(GetRenderState)(THIS_ D3DRENDERSTATETYPE State,DWORD* pValue) PURE; - STDMETHOD(CreateStateBlock)(THIS_ D3DSTATEBLOCKTYPE Type,IDirect3DStateBlock9** ppSB) PURE; - STDMETHOD(BeginStateBlock)(THIS) PURE; - STDMETHOD(EndStateBlock)(THIS_ IDirect3DStateBlock9** ppSB) PURE; - STDMETHOD(SetClipStatus)(THIS_ CONST D3DCLIPSTATUS9* pClipStatus) PURE; - STDMETHOD(GetClipStatus)(THIS_ D3DCLIPSTATUS9* pClipStatus) PURE; - STDMETHOD(GetTexture)(THIS_ DWORD Stage,IDirect3DBaseTexture9** ppTexture) PURE; - STDMETHOD(SetTexture)(THIS_ DWORD Stage,IDirect3DBaseTexture9* pTexture) PURE; - STDMETHOD(GetTextureStageState)(THIS_ DWORD Stage,D3DTEXTURESTAGESTATETYPE Type,DWORD* pValue) PURE; - STDMETHOD(SetTextureStageState)(THIS_ DWORD Stage,D3DTEXTURESTAGESTATETYPE Type,DWORD Value) PURE; - STDMETHOD(GetSamplerState)(THIS_ DWORD Sampler,D3DSAMPLERSTATETYPE Type,DWORD* pValue) PURE; - STDMETHOD(SetSamplerState)(THIS_ DWORD Sampler,D3DSAMPLERSTATETYPE Type,DWORD Value) PURE; - STDMETHOD(ValidateDevice)(THIS_ DWORD* pNumPasses) PURE; - STDMETHOD(SetPaletteEntries)(THIS_ UINT PaletteNumber,CONST PALETTEENTRY* pEntries) PURE; - STDMETHOD(GetPaletteEntries)(THIS_ UINT PaletteNumber,PALETTEENTRY* pEntries) PURE; - STDMETHOD(SetCurrentTexturePalette)(THIS_ UINT PaletteNumber) PURE; - STDMETHOD(GetCurrentTexturePalette)(THIS_ UINT *PaletteNumber) PURE; - STDMETHOD(SetScissorRect)(THIS_ CONST RECT* pRect) PURE; - STDMETHOD(GetScissorRect)(THIS_ RECT* pRect) PURE; - STDMETHOD(SetSoftwareVertexProcessing)(THIS_ BOOL bSoftware) PURE; - STDMETHOD_(BOOL, GetSoftwareVertexProcessing)(THIS) PURE; - STDMETHOD(SetNPatchMode)(THIS_ float nSegments) PURE; - STDMETHOD_(float, GetNPatchMode)(THIS) PURE; - STDMETHOD(DrawPrimitive)(THIS_ D3DPRIMITIVETYPE PrimitiveType,UINT StartVertex,UINT PrimitiveCount) PURE; - STDMETHOD(DrawIndexedPrimitive)(THIS_ D3DPRIMITIVETYPE,INT BaseVertexIndex,UINT MinVertexIndex,UINT NumVertices,UINT startIndex,UINT primCount) PURE; - STDMETHOD(DrawPrimitiveUP)(THIS_ D3DPRIMITIVETYPE PrimitiveType,UINT PrimitiveCount,CONST void* pVertexStreamZeroData,UINT VertexStreamZeroStride) PURE; - STDMETHOD(DrawIndexedPrimitiveUP)(THIS_ D3DPRIMITIVETYPE PrimitiveType,UINT MinVertexIndex,UINT NumVertices,UINT PrimitiveCount,CONST void* pIndexData,D3DFORMAT IndexDataFormat,CONST void* pVertexStreamZeroData,UINT VertexStreamZeroStride) PURE; - STDMETHOD(ProcessVertices)(THIS_ UINT SrcStartIndex,UINT DestIndex,UINT VertexCount,IDirect3DVertexBuffer9* pDestBuffer,IDirect3DVertexDeclaration9* pVertexDecl,DWORD Flags) PURE; - STDMETHOD(CreateVertexDeclaration)(THIS_ CONST D3DVERTEXELEMENT9* pVertexElements,IDirect3DVertexDeclaration9** ppDecl) PURE; - STDMETHOD(SetVertexDeclaration)(THIS_ IDirect3DVertexDeclaration9* pDecl) PURE; - STDMETHOD(GetVertexDeclaration)(THIS_ IDirect3DVertexDeclaration9** ppDecl) PURE; - STDMETHOD(SetFVF)(THIS_ DWORD FVF) PURE; - STDMETHOD(GetFVF)(THIS_ DWORD* pFVF) PURE; - STDMETHOD(CreateVertexShader)(THIS_ CONST DWORD* pFunction,IDirect3DVertexShader9** ppShader) PURE; - STDMETHOD(SetVertexShader)(THIS_ IDirect3DVertexShader9* pShader) PURE; - STDMETHOD(GetVertexShader)(THIS_ IDirect3DVertexShader9** ppShader) PURE; - STDMETHOD(SetVertexShaderConstantF)(THIS_ UINT StartRegister,CONST float* pConstantData,UINT Vector4fCount) PURE; - STDMETHOD(GetVertexShaderConstantF)(THIS_ UINT StartRegister,float* pConstantData,UINT Vector4fCount) PURE; - STDMETHOD(SetVertexShaderConstantI)(THIS_ UINT StartRegister,CONST int* pConstantData,UINT Vector4iCount) PURE; - STDMETHOD(GetVertexShaderConstantI)(THIS_ UINT StartRegister,int* pConstantData,UINT Vector4iCount) PURE; - STDMETHOD(SetVertexShaderConstantB)(THIS_ UINT StartRegister,CONST BOOL* pConstantData,UINT BoolCount) PURE; - STDMETHOD(GetVertexShaderConstantB)(THIS_ UINT StartRegister,BOOL* pConstantData,UINT BoolCount) PURE; - STDMETHOD(SetStreamSource)(THIS_ UINT StreamNumber,IDirect3DVertexBuffer9* pStreamData,UINT OffsetInBytes,UINT Stride) PURE; - STDMETHOD(GetStreamSource)(THIS_ UINT StreamNumber,IDirect3DVertexBuffer9** ppStreamData,UINT* pOffsetInBytes,UINT* pStride) PURE; - STDMETHOD(SetStreamSourceFreq)(THIS_ UINT StreamNumber,UINT Setting) PURE; - STDMETHOD(GetStreamSourceFreq)(THIS_ UINT StreamNumber,UINT* pSetting) PURE; - STDMETHOD(SetIndices)(THIS_ IDirect3DIndexBuffer9* pIndexData) PURE; - STDMETHOD(GetIndices)(THIS_ IDirect3DIndexBuffer9** ppIndexData) PURE; - STDMETHOD(CreatePixelShader)(THIS_ CONST DWORD* pFunction,IDirect3DPixelShader9** ppShader) PURE; - STDMETHOD(SetPixelShader)(THIS_ IDirect3DPixelShader9* pShader) PURE; - STDMETHOD(GetPixelShader)(THIS_ IDirect3DPixelShader9** ppShader) PURE; - STDMETHOD(SetPixelShaderConstantF)(THIS_ UINT StartRegister,CONST float* pConstantData,UINT Vector4fCount) PURE; - STDMETHOD(GetPixelShaderConstantF)(THIS_ UINT StartRegister,float* pConstantData,UINT Vector4fCount) PURE; - STDMETHOD(SetPixelShaderConstantI)(THIS_ UINT StartRegister,CONST int* pConstantData,UINT Vector4iCount) PURE; - STDMETHOD(GetPixelShaderConstantI)(THIS_ UINT StartRegister,int* pConstantData,UINT Vector4iCount) PURE; - STDMETHOD(SetPixelShaderConstantB)(THIS_ UINT StartRegister,CONST BOOL* pConstantData,UINT BoolCount) PURE; - STDMETHOD(GetPixelShaderConstantB)(THIS_ UINT StartRegister,BOOL* pConstantData,UINT BoolCount) PURE; - STDMETHOD(DrawRectPatch)(THIS_ UINT Handle,CONST float* pNumSegs,CONST D3DRECTPATCH_INFO* pRectPatchInfo) PURE; - STDMETHOD(DrawTriPatch)(THIS_ UINT Handle,CONST float* pNumSegs,CONST D3DTRIPATCH_INFO* pTriPatchInfo) PURE; - STDMETHOD(DeletePatch)(THIS_ UINT Handle) PURE; - STDMETHOD(CreateQuery)(THIS_ D3DQUERYTYPE Type,IDirect3DQuery9** ppQuery) PURE; - - #ifdef D3D_DEBUG_INFO - D3DDEVICE_CREATION_PARAMETERS CreationParameters; - D3DPRESENT_PARAMETERS PresentParameters; - D3DDISPLAYMODE DisplayMode; - D3DCAPS9 Caps; - - UINT AvailableTextureMem; - UINT SwapChains; - UINT Textures; - UINT VertexBuffers; - UINT IndexBuffers; - UINT VertexShaders; - UINT PixelShaders; - - D3DVIEWPORT9 Viewport; - D3DMATRIX ProjectionMatrix; - D3DMATRIX ViewMatrix; - D3DMATRIX WorldMatrix; - D3DMATRIX TextureMatrices[8]; - - DWORD FVF; - UINT VertexSize; - DWORD VertexShaderVersion; - DWORD PixelShaderVersion; - BOOL SoftwareVertexProcessing; - - D3DMATERIAL9 Material; - D3DLIGHT9 Lights[16]; - BOOL LightsEnabled[16]; - - D3DGAMMARAMP GammaRamp; - RECT ScissorRect; - BOOL DialogBoxMode; - #endif -}; - -typedef struct IDirect3DDevice9 *LPDIRECT3DDEVICE9, *PDIRECT3DDEVICE9; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirect3DDevice9_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirect3DDevice9_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirect3DDevice9_Release(p) (p)->lpVtbl->Release(p) -#define IDirect3DDevice9_TestCooperativeLevel(p) (p)->lpVtbl->TestCooperativeLevel(p) -#define IDirect3DDevice9_GetAvailableTextureMem(p) (p)->lpVtbl->GetAvailableTextureMem(p) -#define IDirect3DDevice9_EvictManagedResources(p) (p)->lpVtbl->EvictManagedResources(p) -#define IDirect3DDevice9_GetDirect3D(p,a) (p)->lpVtbl->GetDirect3D(p,a) -#define IDirect3DDevice9_GetDeviceCaps(p,a) (p)->lpVtbl->GetDeviceCaps(p,a) -#define IDirect3DDevice9_GetDisplayMode(p,a,b) (p)->lpVtbl->GetDisplayMode(p,a,b) -#define IDirect3DDevice9_GetCreationParameters(p,a) (p)->lpVtbl->GetCreationParameters(p,a) -#define IDirect3DDevice9_SetCursorProperties(p,a,b,c) (p)->lpVtbl->SetCursorProperties(p,a,b,c) -#define IDirect3DDevice9_SetCursorPosition(p,a,b,c) (p)->lpVtbl->SetCursorPosition(p,a,b,c) -#define IDirect3DDevice9_ShowCursor(p,a) (p)->lpVtbl->ShowCursor(p,a) -#define IDirect3DDevice9_CreateAdditionalSwapChain(p,a,b) (p)->lpVtbl->CreateAdditionalSwapChain(p,a,b) -#define IDirect3DDevice9_GetSwapChain(p,a,b) (p)->lpVtbl->GetSwapChain(p,a,b) -#define IDirect3DDevice9_GetNumberOfSwapChains(p) (p)->lpVtbl->GetNumberOfSwapChains(p) -#define IDirect3DDevice9_Reset(p,a) (p)->lpVtbl->Reset(p,a) -#define IDirect3DDevice9_Present(p,a,b,c,d) (p)->lpVtbl->Present(p,a,b,c,d) -#define IDirect3DDevice9_GetBackBuffer(p,a,b,c,d) (p)->lpVtbl->GetBackBuffer(p,a,b,c,d) -#define IDirect3DDevice9_GetRasterStatus(p,a,b) (p)->lpVtbl->GetRasterStatus(p,a,b) -#define IDirect3DDevice9_SetDialogBoxMode(p,a) (p)->lpVtbl->SetDialogBoxMode(p,a) -#define IDirect3DDevice9_SetGammaRamp(p,a,b,c) (p)->lpVtbl->SetGammaRamp(p,a,b,c) -#define IDirect3DDevice9_GetGammaRamp(p,a,b) (p)->lpVtbl->GetGammaRamp(p,a,b) -#define IDirect3DDevice9_CreateTexture(p,a,b,c,d,e,f,g,h) (p)->lpVtbl->CreateTexture(p,a,b,c,d,e,f,g,h) -#define IDirect3DDevice9_CreateVolumeTexture(p,a,b,c,d,e,f,g,h,i) (p)->lpVtbl->CreateVolumeTexture(p,a,b,c,d,e,f,g,h,i) -#define IDirect3DDevice9_CreateCubeTexture(p,a,b,c,d,e,f,g) (p)->lpVtbl->CreateCubeTexture(p,a,b,c,d,e,f,g) -#define IDirect3DDevice9_CreateVertexBuffer(p,a,b,c,d,e,f) (p)->lpVtbl->CreateVertexBuffer(p,a,b,c,d,e,f) -#define IDirect3DDevice9_CreateIndexBuffer(p,a,b,c,d,e,f) (p)->lpVtbl->CreateIndexBuffer(p,a,b,c,d,e,f) -#define IDirect3DDevice9_CreateRenderTarget(p,a,b,c,d,e,f,g,h) (p)->lpVtbl->CreateRenderTarget(p,a,b,c,d,e,f,g,h) -#define IDirect3DDevice9_CreateDepthStencilSurface(p,a,b,c,d,e,f,g,h) (p)->lpVtbl->CreateDepthStencilSurface(p,a,b,c,d,e,f,g,h) -#define IDirect3DDevice9_UpdateSurface(p,a,b,c,d) (p)->lpVtbl->UpdateSurface(p,a,b,c,d) -#define IDirect3DDevice9_UpdateTexture(p,a,b) (p)->lpVtbl->UpdateTexture(p,a,b) -#define IDirect3DDevice9_GetRenderTargetData(p,a,b) (p)->lpVtbl->GetRenderTargetData(p,a,b) -#define IDirect3DDevice9_GetFrontBufferData(p,a,b) (p)->lpVtbl->GetFrontBufferData(p,a,b) -#define IDirect3DDevice9_StretchRect(p,a,b,c,d,e) (p)->lpVtbl->StretchRect(p,a,b,c,d,e) -#define IDirect3DDevice9_ColorFill(p,a,b,c) (p)->lpVtbl->ColorFill(p,a,b,c) -#define IDirect3DDevice9_CreateOffscreenPlainSurface(p,a,b,c,d,e,f) (p)->lpVtbl->CreateOffscreenPlainSurface(p,a,b,c,d,e,f) -#define IDirect3DDevice9_SetRenderTarget(p,a,b) (p)->lpVtbl->SetRenderTarget(p,a,b) -#define IDirect3DDevice9_GetRenderTarget(p,a,b) (p)->lpVtbl->GetRenderTarget(p,a,b) -#define IDirect3DDevice9_SetDepthStencilSurface(p,a) (p)->lpVtbl->SetDepthStencilSurface(p,a) -#define IDirect3DDevice9_GetDepthStencilSurface(p,a) (p)->lpVtbl->GetDepthStencilSurface(p,a) -#define IDirect3DDevice9_BeginScene(p) (p)->lpVtbl->BeginScene(p) -#define IDirect3DDevice9_EndScene(p) (p)->lpVtbl->EndScene(p) -#define IDirect3DDevice9_Clear(p,a,b,c,d,e,f) (p)->lpVtbl->Clear(p,a,b,c,d,e,f) -#define IDirect3DDevice9_SetTransform(p,a,b) (p)->lpVtbl->SetTransform(p,a,b) -#define IDirect3DDevice9_GetTransform(p,a,b) (p)->lpVtbl->GetTransform(p,a,b) -#define IDirect3DDevice9_MultiplyTransform(p,a,b) (p)->lpVtbl->MultiplyTransform(p,a,b) -#define IDirect3DDevice9_SetViewport(p,a) (p)->lpVtbl->SetViewport(p,a) -#define IDirect3DDevice9_GetViewport(p,a) (p)->lpVtbl->GetViewport(p,a) -#define IDirect3DDevice9_SetMaterial(p,a) (p)->lpVtbl->SetMaterial(p,a) -#define IDirect3DDevice9_GetMaterial(p,a) (p)->lpVtbl->GetMaterial(p,a) -#define IDirect3DDevice9_SetLight(p,a,b) (p)->lpVtbl->SetLight(p,a,b) -#define IDirect3DDevice9_GetLight(p,a,b) (p)->lpVtbl->GetLight(p,a,b) -#define IDirect3DDevice9_LightEnable(p,a,b) (p)->lpVtbl->LightEnable(p,a,b) -#define IDirect3DDevice9_GetLightEnable(p,a,b) (p)->lpVtbl->GetLightEnable(p,a,b) -#define IDirect3DDevice9_SetClipPlane(p,a,b) (p)->lpVtbl->SetClipPlane(p,a,b) -#define IDirect3DDevice9_GetClipPlane(p,a,b) (p)->lpVtbl->GetClipPlane(p,a,b) -#define IDirect3DDevice9_SetRenderState(p,a,b) (p)->lpVtbl->SetRenderState(p,a,b) -#define IDirect3DDevice9_GetRenderState(p,a,b) (p)->lpVtbl->GetRenderState(p,a,b) -#define IDirect3DDevice9_CreateStateBlock(p,a,b) (p)->lpVtbl->CreateStateBlock(p,a,b) -#define IDirect3DDevice9_BeginStateBlock(p) (p)->lpVtbl->BeginStateBlock(p) -#define IDirect3DDevice9_EndStateBlock(p,a) (p)->lpVtbl->EndStateBlock(p,a) -#define IDirect3DDevice9_SetClipStatus(p,a) (p)->lpVtbl->SetClipStatus(p,a) -#define IDirect3DDevice9_GetClipStatus(p,a) (p)->lpVtbl->GetClipStatus(p,a) -#define IDirect3DDevice9_GetTexture(p,a,b) (p)->lpVtbl->GetTexture(p,a,b) -#define IDirect3DDevice9_SetTexture(p,a,b) (p)->lpVtbl->SetTexture(p,a,b) -#define IDirect3DDevice9_GetTextureStageState(p,a,b,c) (p)->lpVtbl->GetTextureStageState(p,a,b,c) -#define IDirect3DDevice9_SetTextureStageState(p,a,b,c) (p)->lpVtbl->SetTextureStageState(p,a,b,c) -#define IDirect3DDevice9_GetSamplerState(p,a,b,c) (p)->lpVtbl->GetSamplerState(p,a,b,c) -#define IDirect3DDevice9_SetSamplerState(p,a,b,c) (p)->lpVtbl->SetSamplerState(p,a,b,c) -#define IDirect3DDevice9_ValidateDevice(p,a) (p)->lpVtbl->ValidateDevice(p,a) -#define IDirect3DDevice9_SetPaletteEntries(p,a,b) (p)->lpVtbl->SetPaletteEntries(p,a,b) -#define IDirect3DDevice9_GetPaletteEntries(p,a,b) (p)->lpVtbl->GetPaletteEntries(p,a,b) -#define IDirect3DDevice9_SetCurrentTexturePalette(p,a) (p)->lpVtbl->SetCurrentTexturePalette(p,a) -#define IDirect3DDevice9_GetCurrentTexturePalette(p,a) (p)->lpVtbl->GetCurrentTexturePalette(p,a) -#define IDirect3DDevice9_SetScissorRect(p,a) (p)->lpVtbl->SetScissorRect(p,a) -#define IDirect3DDevice9_GetScissorRect(p,a) (p)->lpVtbl->GetScissorRect(p,a) -#define IDirect3DDevice9_SetSoftwareVertexProcessing(p,a) (p)->lpVtbl->SetSoftwareVertexProcessing(p,a) -#define IDirect3DDevice9_GetSoftwareVertexProcessing(p) (p)->lpVtbl->GetSoftwareVertexProcessing(p) -#define IDirect3DDevice9_SetNPatchMode(p,a) (p)->lpVtbl->SetNPatchMode(p,a) -#define IDirect3DDevice9_GetNPatchMode(p) (p)->lpVtbl->GetNPatchMode(p) -#define IDirect3DDevice9_DrawPrimitive(p,a,b,c) (p)->lpVtbl->DrawPrimitive(p,a,b,c) -#define IDirect3DDevice9_DrawIndexedPrimitive(p,a,b,c,d,e,f) (p)->lpVtbl->DrawIndexedPrimitive(p,a,b,c,d,e,f) -#define IDirect3DDevice9_DrawPrimitiveUP(p,a,b,c,d) (p)->lpVtbl->DrawPrimitiveUP(p,a,b,c,d) -#define IDirect3DDevice9_DrawIndexedPrimitiveUP(p,a,b,c,d,e,f,g,h) (p)->lpVtbl->DrawIndexedPrimitiveUP(p,a,b,c,d,e,f,g,h) -#define IDirect3DDevice9_ProcessVertices(p,a,b,c,d,e,f) (p)->lpVtbl->ProcessVertices(p,a,b,c,d,e,f) -#define IDirect3DDevice9_CreateVertexDeclaration(p,a,b) (p)->lpVtbl->CreateVertexDeclaration(p,a,b) -#define IDirect3DDevice9_SetVertexDeclaration(p,a) (p)->lpVtbl->SetVertexDeclaration(p,a) -#define IDirect3DDevice9_GetVertexDeclaration(p,a) (p)->lpVtbl->GetVertexDeclaration(p,a) -#define IDirect3DDevice9_SetFVF(p,a) (p)->lpVtbl->SetFVF(p,a) -#define IDirect3DDevice9_GetFVF(p,a) (p)->lpVtbl->GetFVF(p,a) -#define IDirect3DDevice9_CreateVertexShader(p,a,b) (p)->lpVtbl->CreateVertexShader(p,a,b) -#define IDirect3DDevice9_SetVertexShader(p,a) (p)->lpVtbl->SetVertexShader(p,a) -#define IDirect3DDevice9_GetVertexShader(p,a) (p)->lpVtbl->GetVertexShader(p,a) -#define IDirect3DDevice9_SetVertexShaderConstantF(p,a,b,c) (p)->lpVtbl->SetVertexShaderConstantF(p,a,b,c) -#define IDirect3DDevice9_GetVertexShaderConstantF(p,a,b,c) (p)->lpVtbl->GetVertexShaderConstantF(p,a,b,c) -#define IDirect3DDevice9_SetVertexShaderConstantI(p,a,b,c) (p)->lpVtbl->SetVertexShaderConstantI(p,a,b,c) -#define IDirect3DDevice9_GetVertexShaderConstantI(p,a,b,c) (p)->lpVtbl->GetVertexShaderConstantI(p,a,b,c) -#define IDirect3DDevice9_SetVertexShaderConstantB(p,a,b,c) (p)->lpVtbl->SetVertexShaderConstantB(p,a,b,c) -#define IDirect3DDevice9_GetVertexShaderConstantB(p,a,b,c) (p)->lpVtbl->GetVertexShaderConstantB(p,a,b,c) -#define IDirect3DDevice9_SetStreamSource(p,a,b,c,d) (p)->lpVtbl->SetStreamSource(p,a,b,c,d) -#define IDirect3DDevice9_GetStreamSource(p,a,b,c,d) (p)->lpVtbl->GetStreamSource(p,a,b,c,d) -#define IDirect3DDevice9_SetStreamSourceFreq(p,a,b) (p)->lpVtbl->SetStreamSourceFreq(p,a,b) -#define IDirect3DDevice9_GetStreamSourceFreq(p,a,b) (p)->lpVtbl->GetStreamSourceFreq(p,a,b) -#define IDirect3DDevice9_SetIndices(p,a) (p)->lpVtbl->SetIndices(p,a) -#define IDirect3DDevice9_GetIndices(p,a) (p)->lpVtbl->GetIndices(p,a) -#define IDirect3DDevice9_CreatePixelShader(p,a,b) (p)->lpVtbl->CreatePixelShader(p,a,b) -#define IDirect3DDevice9_SetPixelShader(p,a) (p)->lpVtbl->SetPixelShader(p,a) -#define IDirect3DDevice9_GetPixelShader(p,a) (p)->lpVtbl->GetPixelShader(p,a) -#define IDirect3DDevice9_SetPixelShaderConstantF(p,a,b,c) (p)->lpVtbl->SetPixelShaderConstantF(p,a,b,c) -#define IDirect3DDevice9_GetPixelShaderConstantF(p,a,b,c) (p)->lpVtbl->GetPixelShaderConstantF(p,a,b,c) -#define IDirect3DDevice9_SetPixelShaderConstantI(p,a,b,c) (p)->lpVtbl->SetPixelShaderConstantI(p,a,b,c) -#define IDirect3DDevice9_GetPixelShaderConstantI(p,a,b,c) (p)->lpVtbl->GetPixelShaderConstantI(p,a,b,c) -#define IDirect3DDevice9_SetPixelShaderConstantB(p,a,b,c) (p)->lpVtbl->SetPixelShaderConstantB(p,a,b,c) -#define IDirect3DDevice9_GetPixelShaderConstantB(p,a,b,c) (p)->lpVtbl->GetPixelShaderConstantB(p,a,b,c) -#define IDirect3DDevice9_DrawRectPatch(p,a,b,c) (p)->lpVtbl->DrawRectPatch(p,a,b,c) -#define IDirect3DDevice9_DrawTriPatch(p,a,b,c) (p)->lpVtbl->DrawTriPatch(p,a,b,c) -#define IDirect3DDevice9_DeletePatch(p,a) (p)->lpVtbl->DeletePatch(p,a) -#define IDirect3DDevice9_CreateQuery(p,a,b) (p)->lpVtbl->CreateQuery(p,a,b) -#else -#define IDirect3DDevice9_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirect3DDevice9_AddRef(p) (p)->AddRef() -#define IDirect3DDevice9_Release(p) (p)->Release() -#define IDirect3DDevice9_TestCooperativeLevel(p) (p)->TestCooperativeLevel() -#define IDirect3DDevice9_GetAvailableTextureMem(p) (p)->GetAvailableTextureMem() -#define IDirect3DDevice9_EvictManagedResources(p) (p)->EvictManagedResources() -#define IDirect3DDevice9_GetDirect3D(p,a) (p)->GetDirect3D(a) -#define IDirect3DDevice9_GetDeviceCaps(p,a) (p)->GetDeviceCaps(a) -#define IDirect3DDevice9_GetDisplayMode(p,a,b) (p)->GetDisplayMode(a,b) -#define IDirect3DDevice9_GetCreationParameters(p,a) (p)->GetCreationParameters(a) -#define IDirect3DDevice9_SetCursorProperties(p,a,b,c) (p)->SetCursorProperties(a,b,c) -#define IDirect3DDevice9_SetCursorPosition(p,a,b,c) (p)->SetCursorPosition(a,b,c) -#define IDirect3DDevice9_ShowCursor(p,a) (p)->ShowCursor(a) -#define IDirect3DDevice9_CreateAdditionalSwapChain(p,a,b) (p)->CreateAdditionalSwapChain(a,b) -#define IDirect3DDevice9_GetSwapChain(p,a,b) (p)->GetSwapChain(a,b) -#define IDirect3DDevice9_GetNumberOfSwapChains(p) (p)->GetNumberOfSwapChains() -#define IDirect3DDevice9_Reset(p,a) (p)->Reset(a) -#define IDirect3DDevice9_Present(p,a,b,c,d) (p)->Present(a,b,c,d) -#define IDirect3DDevice9_GetBackBuffer(p,a,b,c,d) (p)->GetBackBuffer(a,b,c,d) -#define IDirect3DDevice9_GetRasterStatus(p,a,b) (p)->GetRasterStatus(a,b) -#define IDirect3DDevice9_SetDialogBoxMode(p,a) (p)->SetDialogBoxMode(a) -#define IDirect3DDevice9_SetGammaRamp(p,a,b,c) (p)->SetGammaRamp(a,b,c) -#define IDirect3DDevice9_GetGammaRamp(p,a,b) (p)->GetGammaRamp(a,b) -#define IDirect3DDevice9_CreateTexture(p,a,b,c,d,e,f,g,h) (p)->CreateTexture(a,b,c,d,e,f,g,h) -#define IDirect3DDevice9_CreateVolumeTexture(p,a,b,c,d,e,f,g,h,i) (p)->CreateVolumeTexture(a,b,c,d,e,f,g,h,i) -#define IDirect3DDevice9_CreateCubeTexture(p,a,b,c,d,e,f,g) (p)->CreateCubeTexture(a,b,c,d,e,f,g) -#define IDirect3DDevice9_CreateVertexBuffer(p,a,b,c,d,e,f) (p)->CreateVertexBuffer(a,b,c,d,e,f) -#define IDirect3DDevice9_CreateIndexBuffer(p,a,b,c,d,e,f) (p)->CreateIndexBuffer(a,b,c,d,e,f) -#define IDirect3DDevice9_CreateRenderTarget(p,a,b,c,d,e,f,g,h) (p)->CreateRenderTarget(a,b,c,d,e,f,g,h) -#define IDirect3DDevice9_CreateDepthStencilSurface(p,a,b,c,d,e,f,g,h) (p)->CreateDepthStencilSurface(a,b,c,d,e,f,g,h) -#define IDirect3DDevice9_UpdateSurface(p,a,b,c,d) (p)->UpdateSurface(a,b,c,d) -#define IDirect3DDevice9_UpdateTexture(p,a,b) (p)->UpdateTexture(a,b) -#define IDirect3DDevice9_GetRenderTargetData(p,a,b) (p)->GetRenderTargetData(a,b) -#define IDirect3DDevice9_GetFrontBufferData(p,a,b) (p)->GetFrontBufferData(a,b) -#define IDirect3DDevice9_StretchRect(p,a,b,c,d,e) (p)->StretchRect(a,b,c,d,e) -#define IDirect3DDevice9_ColorFill(p,a,b,c) (p)->ColorFill(a,b,c) -#define IDirect3DDevice9_CreateOffscreenPlainSurface(p,a,b,c,d,e,f) (p)->CreateOffscreenPlainSurface(a,b,c,d,e,f) -#define IDirect3DDevice9_SetRenderTarget(p,a,b) (p)->SetRenderTarget(a,b) -#define IDirect3DDevice9_GetRenderTarget(p,a,b) (p)->GetRenderTarget(a,b) -#define IDirect3DDevice9_SetDepthStencilSurface(p,a) (p)->SetDepthStencilSurface(a) -#define IDirect3DDevice9_GetDepthStencilSurface(p,a) (p)->GetDepthStencilSurface(a) -#define IDirect3DDevice9_BeginScene(p) (p)->BeginScene() -#define IDirect3DDevice9_EndScene(p) (p)->EndScene() -#define IDirect3DDevice9_Clear(p,a,b,c,d,e,f) (p)->Clear(a,b,c,d,e,f) -#define IDirect3DDevice9_SetTransform(p,a,b) (p)->SetTransform(a,b) -#define IDirect3DDevice9_GetTransform(p,a,b) (p)->GetTransform(a,b) -#define IDirect3DDevice9_MultiplyTransform(p,a,b) (p)->MultiplyTransform(a,b) -#define IDirect3DDevice9_SetViewport(p,a) (p)->SetViewport(a) -#define IDirect3DDevice9_GetViewport(p,a) (p)->GetViewport(a) -#define IDirect3DDevice9_SetMaterial(p,a) (p)->SetMaterial(a) -#define IDirect3DDevice9_GetMaterial(p,a) (p)->GetMaterial(a) -#define IDirect3DDevice9_SetLight(p,a,b) (p)->SetLight(a,b) -#define IDirect3DDevice9_GetLight(p,a,b) (p)->GetLight(a,b) -#define IDirect3DDevice9_LightEnable(p,a,b) (p)->LightEnable(a,b) -#define IDirect3DDevice9_GetLightEnable(p,a,b) (p)->GetLightEnable(a,b) -#define IDirect3DDevice9_SetClipPlane(p,a,b) (p)->SetClipPlane(a,b) -#define IDirect3DDevice9_GetClipPlane(p,a,b) (p)->GetClipPlane(a,b) -#define IDirect3DDevice9_SetRenderState(p,a,b) (p)->SetRenderState(a,b) -#define IDirect3DDevice9_GetRenderState(p,a,b) (p)->GetRenderState(a,b) -#define IDirect3DDevice9_CreateStateBlock(p,a,b) (p)->CreateStateBlock(a,b) -#define IDirect3DDevice9_BeginStateBlock(p) (p)->BeginStateBlock() -#define IDirect3DDevice9_EndStateBlock(p,a) (p)->EndStateBlock(a) -#define IDirect3DDevice9_SetClipStatus(p,a) (p)->SetClipStatus(a) -#define IDirect3DDevice9_GetClipStatus(p,a) (p)->GetClipStatus(a) -#define IDirect3DDevice9_GetTexture(p,a,b) (p)->GetTexture(a,b) -#define IDirect3DDevice9_SetTexture(p,a,b) (p)->SetTexture(a,b) -#define IDirect3DDevice9_GetTextureStageState(p,a,b,c) (p)->GetTextureStageState(a,b,c) -#define IDirect3DDevice9_SetTextureStageState(p,a,b,c) (p)->SetTextureStageState(a,b,c) -#define IDirect3DDevice9_GetSamplerState(p,a,b,c) (p)->GetSamplerState(a,b,c) -#define IDirect3DDevice9_SetSamplerState(p,a,b,c) (p)->SetSamplerState(a,b,c) -#define IDirect3DDevice9_ValidateDevice(p,a) (p)->ValidateDevice(a) -#define IDirect3DDevice9_SetPaletteEntries(p,a,b) (p)->SetPaletteEntries(a,b) -#define IDirect3DDevice9_GetPaletteEntries(p,a,b) (p)->GetPaletteEntries(a,b) -#define IDirect3DDevice9_SetCurrentTexturePalette(p,a) (p)->SetCurrentTexturePalette(a) -#define IDirect3DDevice9_GetCurrentTexturePalette(p,a) (p)->GetCurrentTexturePalette(a) -#define IDirect3DDevice9_SetScissorRect(p,a) (p)->SetScissorRect(a) -#define IDirect3DDevice9_GetScissorRect(p,a) (p)->GetScissorRect(a) -#define IDirect3DDevice9_SetSoftwareVertexProcessing(p,a) (p)->SetSoftwareVertexProcessing(a) -#define IDirect3DDevice9_GetSoftwareVertexProcessing(p) (p)->GetSoftwareVertexProcessing() -#define IDirect3DDevice9_SetNPatchMode(p,a) (p)->SetNPatchMode(a) -#define IDirect3DDevice9_GetNPatchMode(p) (p)->GetNPatchMode() -#define IDirect3DDevice9_DrawPrimitive(p,a,b,c) (p)->DrawPrimitive(a,b,c) -#define IDirect3DDevice9_DrawIndexedPrimitive(p,a,b,c,d,e,f) (p)->DrawIndexedPrimitive(a,b,c,d,e,f) -#define IDirect3DDevice9_DrawPrimitiveUP(p,a,b,c,d) (p)->DrawPrimitiveUP(a,b,c,d) -#define IDirect3DDevice9_DrawIndexedPrimitiveUP(p,a,b,c,d,e,f,g,h) (p)->DrawIndexedPrimitiveUP(a,b,c,d,e,f,g,h) -#define IDirect3DDevice9_ProcessVertices(p,a,b,c,d,e,f) (p)->ProcessVertices(a,b,c,d,e,f) -#define IDirect3DDevice9_CreateVertexDeclaration(p,a,b) (p)->CreateVertexDeclaration(a,b) -#define IDirect3DDevice9_SetVertexDeclaration(p,a) (p)->SetVertexDeclaration(a) -#define IDirect3DDevice9_GetVertexDeclaration(p,a) (p)->GetVertexDeclaration(a) -#define IDirect3DDevice9_SetFVF(p,a) (p)->SetFVF(a) -#define IDirect3DDevice9_GetFVF(p,a) (p)->GetFVF(a) -#define IDirect3DDevice9_CreateVertexShader(p,a,b) (p)->CreateVertexShader(a,b) -#define IDirect3DDevice9_SetVertexShader(p,a) (p)->SetVertexShader(a) -#define IDirect3DDevice9_GetVertexShader(p,a) (p)->GetVertexShader(a) -#define IDirect3DDevice9_SetVertexShaderConstantF(p,a,b,c) (p)->SetVertexShaderConstantF(a,b,c) -#define IDirect3DDevice9_GetVertexShaderConstantF(p,a,b,c) (p)->GetVertexShaderConstantF(a,b,c) -#define IDirect3DDevice9_SetVertexShaderConstantI(p,a,b,c) (p)->SetVertexShaderConstantI(a,b,c) -#define IDirect3DDevice9_GetVertexShaderConstantI(p,a,b,c) (p)->GetVertexShaderConstantI(a,b,c) -#define IDirect3DDevice9_SetVertexShaderConstantB(p,a,b,c) (p)->SetVertexShaderConstantB(a,b,c) -#define IDirect3DDevice9_GetVertexShaderConstantB(p,a,b,c) (p)->GetVertexShaderConstantB(a,b,c) -#define IDirect3DDevice9_SetStreamSource(p,a,b,c,d) (p)->SetStreamSource(a,b,c,d) -#define IDirect3DDevice9_GetStreamSource(p,a,b,c,d) (p)->GetStreamSource(a,b,c,d) -#define IDirect3DDevice9_SetStreamSourceFreq(p,a,b) (p)->SetStreamSourceFreq(a,b) -#define IDirect3DDevice9_GetStreamSourceFreq(p,a,b) (p)->GetStreamSourceFreq(a,b) -#define IDirect3DDevice9_SetIndices(p,a) (p)->SetIndices(a) -#define IDirect3DDevice9_GetIndices(p,a) (p)->GetIndices(a) -#define IDirect3DDevice9_CreatePixelShader(p,a,b) (p)->CreatePixelShader(a,b) -#define IDirect3DDevice9_SetPixelShader(p,a) (p)->SetPixelShader(a) -#define IDirect3DDevice9_GetPixelShader(p,a) (p)->GetPixelShader(a) -#define IDirect3DDevice9_SetPixelShaderConstantF(p,a,b,c) (p)->SetPixelShaderConstantF(a,b,c) -#define IDirect3DDevice9_GetPixelShaderConstantF(p,a,b,c) (p)->GetPixelShaderConstantF(a,b,c) -#define IDirect3DDevice9_SetPixelShaderConstantI(p,a,b,c) (p)->SetPixelShaderConstantI(a,b,c) -#define IDirect3DDevice9_GetPixelShaderConstantI(p,a,b,c) (p)->GetPixelShaderConstantI(a,b,c) -#define IDirect3DDevice9_SetPixelShaderConstantB(p,a,b,c) (p)->SetPixelShaderConstantB(a,b,c) -#define IDirect3DDevice9_GetPixelShaderConstantB(p,a,b,c) (p)->GetPixelShaderConstantB(a,b,c) -#define IDirect3DDevice9_DrawRectPatch(p,a,b,c) (p)->DrawRectPatch(a,b,c) -#define IDirect3DDevice9_DrawTriPatch(p,a,b,c) (p)->DrawTriPatch(a,b,c) -#define IDirect3DDevice9_DeletePatch(p,a) (p)->DeletePatch(a) -#define IDirect3DDevice9_CreateQuery(p,a,b) (p)->CreateQuery(a,b) -#endif - - - - - -#undef INTERFACE -#define INTERFACE IDirect3DStateBlock9 - -DECLARE_INTERFACE_(IDirect3DStateBlock9, IUnknown) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, void** ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirect3DStateBlock9 methods ***/ - STDMETHOD(GetDevice)(THIS_ IDirect3DDevice9** ppDevice) PURE; - STDMETHOD(Capture)(THIS) PURE; - STDMETHOD(Apply)(THIS) PURE; - - #ifdef D3D_DEBUG_INFO - LPCWSTR CreationCallStack; - #endif -}; - -typedef struct IDirect3DStateBlock9 *LPDIRECT3DSTATEBLOCK9, *PDIRECT3DSTATEBLOCK9; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirect3DStateBlock9_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirect3DStateBlock9_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirect3DStateBlock9_Release(p) (p)->lpVtbl->Release(p) -#define IDirect3DStateBlock9_GetDevice(p,a) (p)->lpVtbl->GetDevice(p,a) -#define IDirect3DStateBlock9_Capture(p) (p)->lpVtbl->Capture(p) -#define IDirect3DStateBlock9_Apply(p) (p)->lpVtbl->Apply(p) -#else -#define IDirect3DStateBlock9_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirect3DStateBlock9_AddRef(p) (p)->AddRef() -#define IDirect3DStateBlock9_Release(p) (p)->Release() -#define IDirect3DStateBlock9_GetDevice(p,a) (p)->GetDevice(a) -#define IDirect3DStateBlock9_Capture(p) (p)->Capture() -#define IDirect3DStateBlock9_Apply(p) (p)->Apply() -#endif - - - - -#undef INTERFACE -#define INTERFACE IDirect3DSwapChain9 - -DECLARE_INTERFACE_(IDirect3DSwapChain9, IUnknown) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, void** ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirect3DSwapChain9 methods ***/ - STDMETHOD(Present)(THIS_ CONST RECT* pSourceRect,CONST RECT* pDestRect,HWND hDestWindowOverride,CONST RGNDATA* pDirtyRegion,DWORD dwFlags) PURE; - STDMETHOD(GetFrontBufferData)(THIS_ IDirect3DSurface9* pDestSurface) PURE; - STDMETHOD(GetBackBuffer)(THIS_ UINT iBackBuffer,D3DBACKBUFFER_TYPE Type,IDirect3DSurface9** ppBackBuffer) PURE; - STDMETHOD(GetRasterStatus)(THIS_ D3DRASTER_STATUS* pRasterStatus) PURE; - STDMETHOD(GetDisplayMode)(THIS_ D3DDISPLAYMODE* pMode) PURE; - STDMETHOD(GetDevice)(THIS_ IDirect3DDevice9** ppDevice) PURE; - STDMETHOD(GetPresentParameters)(THIS_ D3DPRESENT_PARAMETERS* pPresentationParameters) PURE; - - #ifdef D3D_DEBUG_INFO - D3DPRESENT_PARAMETERS PresentParameters; - D3DDISPLAYMODE DisplayMode; - LPCWSTR CreationCallStack; - #endif -}; - -typedef struct IDirect3DSwapChain9 *LPDIRECT3DSWAPCHAIN9, *PDIRECT3DSWAPCHAIN9; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirect3DSwapChain9_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirect3DSwapChain9_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirect3DSwapChain9_Release(p) (p)->lpVtbl->Release(p) -#define IDirect3DSwapChain9_Present(p,a,b,c,d,e) (p)->lpVtbl->Present(p,a,b,c,d,e) -#define IDirect3DSwapChain9_GetFrontBufferData(p,a) (p)->lpVtbl->GetFrontBufferData(p,a) -#define IDirect3DSwapChain9_GetBackBuffer(p,a,b,c) (p)->lpVtbl->GetBackBuffer(p,a,b,c) -#define IDirect3DSwapChain9_GetRasterStatus(p,a) (p)->lpVtbl->GetRasterStatus(p,a) -#define IDirect3DSwapChain9_GetDisplayMode(p,a) (p)->lpVtbl->GetDisplayMode(p,a) -#define IDirect3DSwapChain9_GetDevice(p,a) (p)->lpVtbl->GetDevice(p,a) -#define IDirect3DSwapChain9_GetPresentParameters(p,a) (p)->lpVtbl->GetPresentParameters(p,a) -#else -#define IDirect3DSwapChain9_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirect3DSwapChain9_AddRef(p) (p)->AddRef() -#define IDirect3DSwapChain9_Release(p) (p)->Release() -#define IDirect3DSwapChain9_Present(p,a,b,c,d,e) (p)->Present(a,b,c,d,e) -#define IDirect3DSwapChain9_GetFrontBufferData(p,a) (p)->GetFrontBufferData(a) -#define IDirect3DSwapChain9_GetBackBuffer(p,a,b,c) (p)->GetBackBuffer(a,b,c) -#define IDirect3DSwapChain9_GetRasterStatus(p,a) (p)->GetRasterStatus(a) -#define IDirect3DSwapChain9_GetDisplayMode(p,a) (p)->GetDisplayMode(a) -#define IDirect3DSwapChain9_GetDevice(p,a) (p)->GetDevice(a) -#define IDirect3DSwapChain9_GetPresentParameters(p,a) (p)->GetPresentParameters(a) -#endif - - - -#undef INTERFACE -#define INTERFACE IDirect3DResource9 - -DECLARE_INTERFACE_(IDirect3DResource9, IUnknown) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, void** ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirect3DResource9 methods ***/ - STDMETHOD(GetDevice)(THIS_ IDirect3DDevice9** ppDevice) PURE; - STDMETHOD(SetPrivateData)(THIS_ REFGUID refguid,CONST void* pData,DWORD SizeOfData,DWORD Flags) PURE; - STDMETHOD(GetPrivateData)(THIS_ REFGUID refguid,void* pData,DWORD* pSizeOfData) PURE; - STDMETHOD(FreePrivateData)(THIS_ REFGUID refguid) PURE; - STDMETHOD_(DWORD, SetPriority)(THIS_ DWORD PriorityNew) PURE; - STDMETHOD_(DWORD, GetPriority)(THIS) PURE; - STDMETHOD_(void, PreLoad)(THIS) PURE; - STDMETHOD_(D3DRESOURCETYPE, GetType)(THIS) PURE; -}; - -typedef struct IDirect3DResource9 *LPDIRECT3DRESOURCE9, *PDIRECT3DRESOURCE9; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirect3DResource9_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirect3DResource9_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirect3DResource9_Release(p) (p)->lpVtbl->Release(p) -#define IDirect3DResource9_GetDevice(p,a) (p)->lpVtbl->GetDevice(p,a) -#define IDirect3DResource9_SetPrivateData(p,a,b,c,d) (p)->lpVtbl->SetPrivateData(p,a,b,c,d) -#define IDirect3DResource9_GetPrivateData(p,a,b,c) (p)->lpVtbl->GetPrivateData(p,a,b,c) -#define IDirect3DResource9_FreePrivateData(p,a) (p)->lpVtbl->FreePrivateData(p,a) -#define IDirect3DResource9_SetPriority(p,a) (p)->lpVtbl->SetPriority(p,a) -#define IDirect3DResource9_GetPriority(p) (p)->lpVtbl->GetPriority(p) -#define IDirect3DResource9_PreLoad(p) (p)->lpVtbl->PreLoad(p) -#define IDirect3DResource9_GetType(p) (p)->lpVtbl->GetType(p) -#else -#define IDirect3DResource9_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirect3DResource9_AddRef(p) (p)->AddRef() -#define IDirect3DResource9_Release(p) (p)->Release() -#define IDirect3DResource9_GetDevice(p,a) (p)->GetDevice(a) -#define IDirect3DResource9_SetPrivateData(p,a,b,c,d) (p)->SetPrivateData(a,b,c,d) -#define IDirect3DResource9_GetPrivateData(p,a,b,c) (p)->GetPrivateData(a,b,c) -#define IDirect3DResource9_FreePrivateData(p,a) (p)->FreePrivateData(a) -#define IDirect3DResource9_SetPriority(p,a) (p)->SetPriority(a) -#define IDirect3DResource9_GetPriority(p) (p)->GetPriority() -#define IDirect3DResource9_PreLoad(p) (p)->PreLoad() -#define IDirect3DResource9_GetType(p) (p)->GetType() -#endif - - - - -#undef INTERFACE -#define INTERFACE IDirect3DVertexDeclaration9 - -DECLARE_INTERFACE_(IDirect3DVertexDeclaration9, IUnknown) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, void** ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirect3DVertexDeclaration9 methods ***/ - STDMETHOD(GetDevice)(THIS_ IDirect3DDevice9** ppDevice) PURE; - STDMETHOD(GetDeclaration)(THIS_ D3DVERTEXELEMENT9* pElement,UINT* pNumElements) PURE; - - #ifdef D3D_DEBUG_INFO - LPCWSTR CreationCallStack; - #endif -}; - -typedef struct IDirect3DVertexDeclaration9 *LPDIRECT3DVERTEXDECLARATION9, *PDIRECT3DVERTEXDECLARATION9; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirect3DVertexDeclaration9_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirect3DVertexDeclaration9_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirect3DVertexDeclaration9_Release(p) (p)->lpVtbl->Release(p) -#define IDirect3DVertexDeclaration9_GetDevice(p,a) (p)->lpVtbl->GetDevice(p,a) -#define IDirect3DVertexDeclaration9_GetDeclaration(p,a,b) (p)->lpVtbl->GetDeclaration(p,a,b) -#else -#define IDirect3DVertexDeclaration9_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirect3DVertexDeclaration9_AddRef(p) (p)->AddRef() -#define IDirect3DVertexDeclaration9_Release(p) (p)->Release() -#define IDirect3DVertexDeclaration9_GetDevice(p,a) (p)->GetDevice(a) -#define IDirect3DVertexDeclaration9_GetDeclaration(p,a,b) (p)->GetDeclaration(a,b) -#endif - - - - -#undef INTERFACE -#define INTERFACE IDirect3DVertexShader9 - -DECLARE_INTERFACE_(IDirect3DVertexShader9, IUnknown) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, void** ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirect3DVertexShader9 methods ***/ - STDMETHOD(GetDevice)(THIS_ IDirect3DDevice9** ppDevice) PURE; - STDMETHOD(GetFunction)(THIS_ void*,UINT* pSizeOfData) PURE; - - #ifdef D3D_DEBUG_INFO - DWORD Version; - LPCWSTR CreationCallStack; - #endif -}; - -typedef struct IDirect3DVertexShader9 *LPDIRECT3DVERTEXSHADER9, *PDIRECT3DVERTEXSHADER9; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirect3DVertexShader9_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirect3DVertexShader9_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirect3DVertexShader9_Release(p) (p)->lpVtbl->Release(p) -#define IDirect3DVertexShader9_GetDevice(p,a) (p)->lpVtbl->GetDevice(p,a) -#define IDirect3DVertexShader9_GetFunction(p,a,b) (p)->lpVtbl->GetFunction(p,a,b) -#else -#define IDirect3DVertexShader9_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirect3DVertexShader9_AddRef(p) (p)->AddRef() -#define IDirect3DVertexShader9_Release(p) (p)->Release() -#define IDirect3DVertexShader9_GetDevice(p,a) (p)->GetDevice(a) -#define IDirect3DVertexShader9_GetFunction(p,a,b) (p)->GetFunction(a,b) -#endif - - - - -#undef INTERFACE -#define INTERFACE IDirect3DPixelShader9 - -DECLARE_INTERFACE_(IDirect3DPixelShader9, IUnknown) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, void** ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirect3DPixelShader9 methods ***/ - STDMETHOD(GetDevice)(THIS_ IDirect3DDevice9** ppDevice) PURE; - STDMETHOD(GetFunction)(THIS_ void*,UINT* pSizeOfData) PURE; - - #ifdef D3D_DEBUG_INFO - DWORD Version; - LPCWSTR CreationCallStack; - #endif -}; - -typedef struct IDirect3DPixelShader9 *LPDIRECT3DPIXELSHADER9, *PDIRECT3DPIXELSHADER9; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirect3DPixelShader9_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirect3DPixelShader9_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirect3DPixelShader9_Release(p) (p)->lpVtbl->Release(p) -#define IDirect3DPixelShader9_GetDevice(p,a) (p)->lpVtbl->GetDevice(p,a) -#define IDirect3DPixelShader9_GetFunction(p,a,b) (p)->lpVtbl->GetFunction(p,a,b) -#else -#define IDirect3DPixelShader9_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirect3DPixelShader9_AddRef(p) (p)->AddRef() -#define IDirect3DPixelShader9_Release(p) (p)->Release() -#define IDirect3DPixelShader9_GetDevice(p,a) (p)->GetDevice(a) -#define IDirect3DPixelShader9_GetFunction(p,a,b) (p)->GetFunction(a,b) -#endif - - - - -#undef INTERFACE -#define INTERFACE IDirect3DBaseTexture9 - -DECLARE_INTERFACE_(IDirect3DBaseTexture9, IDirect3DResource9) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, void** ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirect3DResource9 methods ***/ - STDMETHOD(GetDevice)(THIS_ IDirect3DDevice9** ppDevice) PURE; - STDMETHOD(SetPrivateData)(THIS_ REFGUID refguid,CONST void* pData,DWORD SizeOfData,DWORD Flags) PURE; - STDMETHOD(GetPrivateData)(THIS_ REFGUID refguid,void* pData,DWORD* pSizeOfData) PURE; - STDMETHOD(FreePrivateData)(THIS_ REFGUID refguid) PURE; - STDMETHOD_(DWORD, SetPriority)(THIS_ DWORD PriorityNew) PURE; - STDMETHOD_(DWORD, GetPriority)(THIS) PURE; - STDMETHOD_(void, PreLoad)(THIS) PURE; - STDMETHOD_(D3DRESOURCETYPE, GetType)(THIS) PURE; - STDMETHOD_(DWORD, SetLOD)(THIS_ DWORD LODNew) PURE; - STDMETHOD_(DWORD, GetLOD)(THIS) PURE; - STDMETHOD_(DWORD, GetLevelCount)(THIS) PURE; - STDMETHOD(SetAutoGenFilterType)(THIS_ D3DTEXTUREFILTERTYPE FilterType) PURE; - STDMETHOD_(D3DTEXTUREFILTERTYPE, GetAutoGenFilterType)(THIS) PURE; - STDMETHOD_(void, GenerateMipSubLevels)(THIS) PURE; -}; - -typedef struct IDirect3DBaseTexture9 *LPDIRECT3DBASETEXTURE9, *PDIRECT3DBASETEXTURE9; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirect3DBaseTexture9_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirect3DBaseTexture9_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirect3DBaseTexture9_Release(p) (p)->lpVtbl->Release(p) -#define IDirect3DBaseTexture9_GetDevice(p,a) (p)->lpVtbl->GetDevice(p,a) -#define IDirect3DBaseTexture9_SetPrivateData(p,a,b,c,d) (p)->lpVtbl->SetPrivateData(p,a,b,c,d) -#define IDirect3DBaseTexture9_GetPrivateData(p,a,b,c) (p)->lpVtbl->GetPrivateData(p,a,b,c) -#define IDirect3DBaseTexture9_FreePrivateData(p,a) (p)->lpVtbl->FreePrivateData(p,a) -#define IDirect3DBaseTexture9_SetPriority(p,a) (p)->lpVtbl->SetPriority(p,a) -#define IDirect3DBaseTexture9_GetPriority(p) (p)->lpVtbl->GetPriority(p) -#define IDirect3DBaseTexture9_PreLoad(p) (p)->lpVtbl->PreLoad(p) -#define IDirect3DBaseTexture9_GetType(p) (p)->lpVtbl->GetType(p) -#define IDirect3DBaseTexture9_SetLOD(p,a) (p)->lpVtbl->SetLOD(p,a) -#define IDirect3DBaseTexture9_GetLOD(p) (p)->lpVtbl->GetLOD(p) -#define IDirect3DBaseTexture9_GetLevelCount(p) (p)->lpVtbl->GetLevelCount(p) -#define IDirect3DBaseTexture9_SetAutoGenFilterType(p,a) (p)->lpVtbl->SetAutoGenFilterType(p,a) -#define IDirect3DBaseTexture9_GetAutoGenFilterType(p) (p)->lpVtbl->GetAutoGenFilterType(p) -#define IDirect3DBaseTexture9_GenerateMipSubLevels(p) (p)->lpVtbl->GenerateMipSubLevels(p) -#else -#define IDirect3DBaseTexture9_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirect3DBaseTexture9_AddRef(p) (p)->AddRef() -#define IDirect3DBaseTexture9_Release(p) (p)->Release() -#define IDirect3DBaseTexture9_GetDevice(p,a) (p)->GetDevice(a) -#define IDirect3DBaseTexture9_SetPrivateData(p,a,b,c,d) (p)->SetPrivateData(a,b,c,d) -#define IDirect3DBaseTexture9_GetPrivateData(p,a,b,c) (p)->GetPrivateData(a,b,c) -#define IDirect3DBaseTexture9_FreePrivateData(p,a) (p)->FreePrivateData(a) -#define IDirect3DBaseTexture9_SetPriority(p,a) (p)->SetPriority(a) -#define IDirect3DBaseTexture9_GetPriority(p) (p)->GetPriority() -#define IDirect3DBaseTexture9_PreLoad(p) (p)->PreLoad() -#define IDirect3DBaseTexture9_GetType(p) (p)->GetType() -#define IDirect3DBaseTexture9_SetLOD(p,a) (p)->SetLOD(a) -#define IDirect3DBaseTexture9_GetLOD(p) (p)->GetLOD() -#define IDirect3DBaseTexture9_GetLevelCount(p) (p)->GetLevelCount() -#define IDirect3DBaseTexture9_SetAutoGenFilterType(p,a) (p)->SetAutoGenFilterType(a) -#define IDirect3DBaseTexture9_GetAutoGenFilterType(p) (p)->GetAutoGenFilterType() -#define IDirect3DBaseTexture9_GenerateMipSubLevels(p) (p)->GenerateMipSubLevels() -#endif - - - - - -#undef INTERFACE -#define INTERFACE IDirect3DTexture9 - -DECLARE_INTERFACE_(IDirect3DTexture9, IDirect3DBaseTexture9) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, void** ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirect3DBaseTexture9 methods ***/ - STDMETHOD(GetDevice)(THIS_ IDirect3DDevice9** ppDevice) PURE; - STDMETHOD(SetPrivateData)(THIS_ REFGUID refguid,CONST void* pData,DWORD SizeOfData,DWORD Flags) PURE; - STDMETHOD(GetPrivateData)(THIS_ REFGUID refguid,void* pData,DWORD* pSizeOfData) PURE; - STDMETHOD(FreePrivateData)(THIS_ REFGUID refguid) PURE; - STDMETHOD_(DWORD, SetPriority)(THIS_ DWORD PriorityNew) PURE; - STDMETHOD_(DWORD, GetPriority)(THIS) PURE; - STDMETHOD_(void, PreLoad)(THIS) PURE; - STDMETHOD_(D3DRESOURCETYPE, GetType)(THIS) PURE; - STDMETHOD_(DWORD, SetLOD)(THIS_ DWORD LODNew) PURE; - STDMETHOD_(DWORD, GetLOD)(THIS) PURE; - STDMETHOD_(DWORD, GetLevelCount)(THIS) PURE; - STDMETHOD(SetAutoGenFilterType)(THIS_ D3DTEXTUREFILTERTYPE FilterType) PURE; - STDMETHOD_(D3DTEXTUREFILTERTYPE, GetAutoGenFilterType)(THIS) PURE; - STDMETHOD_(void, GenerateMipSubLevels)(THIS) PURE; - STDMETHOD(GetLevelDesc)(THIS_ UINT Level,D3DSURFACE_DESC *pDesc) PURE; - STDMETHOD(GetSurfaceLevel)(THIS_ UINT Level,IDirect3DSurface9** ppSurfaceLevel) PURE; - STDMETHOD(LockRect)(THIS_ UINT Level,D3DLOCKED_RECT* pLockedRect,CONST RECT* pRect,DWORD Flags) PURE; - STDMETHOD(UnlockRect)(THIS_ UINT Level) PURE; - STDMETHOD(AddDirtyRect)(THIS_ CONST RECT* pDirtyRect) PURE; - - #ifdef D3D_DEBUG_INFO - LPCWSTR Name; - UINT Width; - UINT Height; - UINT Levels; - DWORD Usage; - D3DFORMAT Format; - D3DPOOL Pool; - DWORD Priority; - DWORD LOD; - D3DTEXTUREFILTERTYPE FilterType; - UINT LockCount; - LPCWSTR CreationCallStack; - #endif -}; - -typedef struct IDirect3DTexture9 *LPDIRECT3DTEXTURE9, *PDIRECT3DTEXTURE9; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirect3DTexture9_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirect3DTexture9_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirect3DTexture9_Release(p) (p)->lpVtbl->Release(p) -#define IDirect3DTexture9_GetDevice(p,a) (p)->lpVtbl->GetDevice(p,a) -#define IDirect3DTexture9_SetPrivateData(p,a,b,c,d) (p)->lpVtbl->SetPrivateData(p,a,b,c,d) -#define IDirect3DTexture9_GetPrivateData(p,a,b,c) (p)->lpVtbl->GetPrivateData(p,a,b,c) -#define IDirect3DTexture9_FreePrivateData(p,a) (p)->lpVtbl->FreePrivateData(p,a) -#define IDirect3DTexture9_SetPriority(p,a) (p)->lpVtbl->SetPriority(p,a) -#define IDirect3DTexture9_GetPriority(p) (p)->lpVtbl->GetPriority(p) -#define IDirect3DTexture9_PreLoad(p) (p)->lpVtbl->PreLoad(p) -#define IDirect3DTexture9_GetType(p) (p)->lpVtbl->GetType(p) -#define IDirect3DTexture9_SetLOD(p,a) (p)->lpVtbl->SetLOD(p,a) -#define IDirect3DTexture9_GetLOD(p) (p)->lpVtbl->GetLOD(p) -#define IDirect3DTexture9_GetLevelCount(p) (p)->lpVtbl->GetLevelCount(p) -#define IDirect3DTexture9_SetAutoGenFilterType(p,a) (p)->lpVtbl->SetAutoGenFilterType(p,a) -#define IDirect3DTexture9_GetAutoGenFilterType(p) (p)->lpVtbl->GetAutoGenFilterType(p) -#define IDirect3DTexture9_GenerateMipSubLevels(p) (p)->lpVtbl->GenerateMipSubLevels(p) -#define IDirect3DTexture9_GetLevelDesc(p,a,b) (p)->lpVtbl->GetLevelDesc(p,a,b) -#define IDirect3DTexture9_GetSurfaceLevel(p,a,b) (p)->lpVtbl->GetSurfaceLevel(p,a,b) -#define IDirect3DTexture9_LockRect(p,a,b,c,d) (p)->lpVtbl->LockRect(p,a,b,c,d) -#define IDirect3DTexture9_UnlockRect(p,a) (p)->lpVtbl->UnlockRect(p,a) -#define IDirect3DTexture9_AddDirtyRect(p,a) (p)->lpVtbl->AddDirtyRect(p,a) -#else -#define IDirect3DTexture9_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirect3DTexture9_AddRef(p) (p)->AddRef() -#define IDirect3DTexture9_Release(p) (p)->Release() -#define IDirect3DTexture9_GetDevice(p,a) (p)->GetDevice(a) -#define IDirect3DTexture9_SetPrivateData(p,a,b,c,d) (p)->SetPrivateData(a,b,c,d) -#define IDirect3DTexture9_GetPrivateData(p,a,b,c) (p)->GetPrivateData(a,b,c) -#define IDirect3DTexture9_FreePrivateData(p,a) (p)->FreePrivateData(a) -#define IDirect3DTexture9_SetPriority(p,a) (p)->SetPriority(a) -#define IDirect3DTexture9_GetPriority(p) (p)->GetPriority() -#define IDirect3DTexture9_PreLoad(p) (p)->PreLoad() -#define IDirect3DTexture9_GetType(p) (p)->GetType() -#define IDirect3DTexture9_SetLOD(p,a) (p)->SetLOD(a) -#define IDirect3DTexture9_GetLOD(p) (p)->GetLOD() -#define IDirect3DTexture9_GetLevelCount(p) (p)->GetLevelCount() -#define IDirect3DTexture9_SetAutoGenFilterType(p,a) (p)->SetAutoGenFilterType(a) -#define IDirect3DTexture9_GetAutoGenFilterType(p) (p)->GetAutoGenFilterType() -#define IDirect3DTexture9_GenerateMipSubLevels(p) (p)->GenerateMipSubLevels() -#define IDirect3DTexture9_GetLevelDesc(p,a,b) (p)->GetLevelDesc(a,b) -#define IDirect3DTexture9_GetSurfaceLevel(p,a,b) (p)->GetSurfaceLevel(a,b) -#define IDirect3DTexture9_LockRect(p,a,b,c,d) (p)->LockRect(a,b,c,d) -#define IDirect3DTexture9_UnlockRect(p,a) (p)->UnlockRect(a) -#define IDirect3DTexture9_AddDirtyRect(p,a) (p)->AddDirtyRect(a) -#endif - - - - - -#undef INTERFACE -#define INTERFACE IDirect3DVolumeTexture9 - -DECLARE_INTERFACE_(IDirect3DVolumeTexture9, IDirect3DBaseTexture9) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, void** ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirect3DBaseTexture9 methods ***/ - STDMETHOD(GetDevice)(THIS_ IDirect3DDevice9** ppDevice) PURE; - STDMETHOD(SetPrivateData)(THIS_ REFGUID refguid,CONST void* pData,DWORD SizeOfData,DWORD Flags) PURE; - STDMETHOD(GetPrivateData)(THIS_ REFGUID refguid,void* pData,DWORD* pSizeOfData) PURE; - STDMETHOD(FreePrivateData)(THIS_ REFGUID refguid) PURE; - STDMETHOD_(DWORD, SetPriority)(THIS_ DWORD PriorityNew) PURE; - STDMETHOD_(DWORD, GetPriority)(THIS) PURE; - STDMETHOD_(void, PreLoad)(THIS) PURE; - STDMETHOD_(D3DRESOURCETYPE, GetType)(THIS) PURE; - STDMETHOD_(DWORD, SetLOD)(THIS_ DWORD LODNew) PURE; - STDMETHOD_(DWORD, GetLOD)(THIS) PURE; - STDMETHOD_(DWORD, GetLevelCount)(THIS) PURE; - STDMETHOD(SetAutoGenFilterType)(THIS_ D3DTEXTUREFILTERTYPE FilterType) PURE; - STDMETHOD_(D3DTEXTUREFILTERTYPE, GetAutoGenFilterType)(THIS) PURE; - STDMETHOD_(void, GenerateMipSubLevels)(THIS) PURE; - STDMETHOD(GetLevelDesc)(THIS_ UINT Level,D3DVOLUME_DESC *pDesc) PURE; - STDMETHOD(GetVolumeLevel)(THIS_ UINT Level,IDirect3DVolume9** ppVolumeLevel) PURE; - STDMETHOD(LockBox)(THIS_ UINT Level,D3DLOCKED_BOX* pLockedVolume,CONST D3DBOX* pBox,DWORD Flags) PURE; - STDMETHOD(UnlockBox)(THIS_ UINT Level) PURE; - STDMETHOD(AddDirtyBox)(THIS_ CONST D3DBOX* pDirtyBox) PURE; - - #ifdef D3D_DEBUG_INFO - LPCWSTR Name; - UINT Width; - UINT Height; - UINT Depth; - UINT Levels; - DWORD Usage; - D3DFORMAT Format; - D3DPOOL Pool; - DWORD Priority; - DWORD LOD; - D3DTEXTUREFILTERTYPE FilterType; - UINT LockCount; - LPCWSTR CreationCallStack; - #endif -}; - -typedef struct IDirect3DVolumeTexture9 *LPDIRECT3DVOLUMETEXTURE9, *PDIRECT3DVOLUMETEXTURE9; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirect3DVolumeTexture9_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirect3DVolumeTexture9_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirect3DVolumeTexture9_Release(p) (p)->lpVtbl->Release(p) -#define IDirect3DVolumeTexture9_GetDevice(p,a) (p)->lpVtbl->GetDevice(p,a) -#define IDirect3DVolumeTexture9_SetPrivateData(p,a,b,c,d) (p)->lpVtbl->SetPrivateData(p,a,b,c,d) -#define IDirect3DVolumeTexture9_GetPrivateData(p,a,b,c) (p)->lpVtbl->GetPrivateData(p,a,b,c) -#define IDirect3DVolumeTexture9_FreePrivateData(p,a) (p)->lpVtbl->FreePrivateData(p,a) -#define IDirect3DVolumeTexture9_SetPriority(p,a) (p)->lpVtbl->SetPriority(p,a) -#define IDirect3DVolumeTexture9_GetPriority(p) (p)->lpVtbl->GetPriority(p) -#define IDirect3DVolumeTexture9_PreLoad(p) (p)->lpVtbl->PreLoad(p) -#define IDirect3DVolumeTexture9_GetType(p) (p)->lpVtbl->GetType(p) -#define IDirect3DVolumeTexture9_SetLOD(p,a) (p)->lpVtbl->SetLOD(p,a) -#define IDirect3DVolumeTexture9_GetLOD(p) (p)->lpVtbl->GetLOD(p) -#define IDirect3DVolumeTexture9_GetLevelCount(p) (p)->lpVtbl->GetLevelCount(p) -#define IDirect3DVolumeTexture9_SetAutoGenFilterType(p,a) (p)->lpVtbl->SetAutoGenFilterType(p,a) -#define IDirect3DVolumeTexture9_GetAutoGenFilterType(p) (p)->lpVtbl->GetAutoGenFilterType(p) -#define IDirect3DVolumeTexture9_GenerateMipSubLevels(p) (p)->lpVtbl->GenerateMipSubLevels(p) -#define IDirect3DVolumeTexture9_GetLevelDesc(p,a,b) (p)->lpVtbl->GetLevelDesc(p,a,b) -#define IDirect3DVolumeTexture9_GetVolumeLevel(p,a,b) (p)->lpVtbl->GetVolumeLevel(p,a,b) -#define IDirect3DVolumeTexture9_LockBox(p,a,b,c,d) (p)->lpVtbl->LockBox(p,a,b,c,d) -#define IDirect3DVolumeTexture9_UnlockBox(p,a) (p)->lpVtbl->UnlockBox(p,a) -#define IDirect3DVolumeTexture9_AddDirtyBox(p,a) (p)->lpVtbl->AddDirtyBox(p,a) -#else -#define IDirect3DVolumeTexture9_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirect3DVolumeTexture9_AddRef(p) (p)->AddRef() -#define IDirect3DVolumeTexture9_Release(p) (p)->Release() -#define IDirect3DVolumeTexture9_GetDevice(p,a) (p)->GetDevice(a) -#define IDirect3DVolumeTexture9_SetPrivateData(p,a,b,c,d) (p)->SetPrivateData(a,b,c,d) -#define IDirect3DVolumeTexture9_GetPrivateData(p,a,b,c) (p)->GetPrivateData(a,b,c) -#define IDirect3DVolumeTexture9_FreePrivateData(p,a) (p)->FreePrivateData(a) -#define IDirect3DVolumeTexture9_SetPriority(p,a) (p)->SetPriority(a) -#define IDirect3DVolumeTexture9_GetPriority(p) (p)->GetPriority() -#define IDirect3DVolumeTexture9_PreLoad(p) (p)->PreLoad() -#define IDirect3DVolumeTexture9_GetType(p) (p)->GetType() -#define IDirect3DVolumeTexture9_SetLOD(p,a) (p)->SetLOD(a) -#define IDirect3DVolumeTexture9_GetLOD(p) (p)->GetLOD() -#define IDirect3DVolumeTexture9_GetLevelCount(p) (p)->GetLevelCount() -#define IDirect3DVolumeTexture9_SetAutoGenFilterType(p,a) (p)->SetAutoGenFilterType(a) -#define IDirect3DVolumeTexture9_GetAutoGenFilterType(p) (p)->GetAutoGenFilterType() -#define IDirect3DVolumeTexture9_GenerateMipSubLevels(p) (p)->GenerateMipSubLevels() -#define IDirect3DVolumeTexture9_GetLevelDesc(p,a,b) (p)->GetLevelDesc(a,b) -#define IDirect3DVolumeTexture9_GetVolumeLevel(p,a,b) (p)->GetVolumeLevel(a,b) -#define IDirect3DVolumeTexture9_LockBox(p,a,b,c,d) (p)->LockBox(a,b,c,d) -#define IDirect3DVolumeTexture9_UnlockBox(p,a) (p)->UnlockBox(a) -#define IDirect3DVolumeTexture9_AddDirtyBox(p,a) (p)->AddDirtyBox(a) -#endif - - - - - -#undef INTERFACE -#define INTERFACE IDirect3DCubeTexture9 - -DECLARE_INTERFACE_(IDirect3DCubeTexture9, IDirect3DBaseTexture9) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, void** ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirect3DBaseTexture9 methods ***/ - STDMETHOD(GetDevice)(THIS_ IDirect3DDevice9** ppDevice) PURE; - STDMETHOD(SetPrivateData)(THIS_ REFGUID refguid,CONST void* pData,DWORD SizeOfData,DWORD Flags) PURE; - STDMETHOD(GetPrivateData)(THIS_ REFGUID refguid,void* pData,DWORD* pSizeOfData) PURE; - STDMETHOD(FreePrivateData)(THIS_ REFGUID refguid) PURE; - STDMETHOD_(DWORD, SetPriority)(THIS_ DWORD PriorityNew) PURE; - STDMETHOD_(DWORD, GetPriority)(THIS) PURE; - STDMETHOD_(void, PreLoad)(THIS) PURE; - STDMETHOD_(D3DRESOURCETYPE, GetType)(THIS) PURE; - STDMETHOD_(DWORD, SetLOD)(THIS_ DWORD LODNew) PURE; - STDMETHOD_(DWORD, GetLOD)(THIS) PURE; - STDMETHOD_(DWORD, GetLevelCount)(THIS) PURE; - STDMETHOD(SetAutoGenFilterType)(THIS_ D3DTEXTUREFILTERTYPE FilterType) PURE; - STDMETHOD_(D3DTEXTUREFILTERTYPE, GetAutoGenFilterType)(THIS) PURE; - STDMETHOD_(void, GenerateMipSubLevels)(THIS) PURE; - STDMETHOD(GetLevelDesc)(THIS_ UINT Level,D3DSURFACE_DESC *pDesc) PURE; - STDMETHOD(GetCubeMapSurface)(THIS_ D3DCUBEMAP_FACES FaceType,UINT Level,IDirect3DSurface9** ppCubeMapSurface) PURE; - STDMETHOD(LockRect)(THIS_ D3DCUBEMAP_FACES FaceType,UINT Level,D3DLOCKED_RECT* pLockedRect,CONST RECT* pRect,DWORD Flags) PURE; - STDMETHOD(UnlockRect)(THIS_ D3DCUBEMAP_FACES FaceType,UINT Level) PURE; - STDMETHOD(AddDirtyRect)(THIS_ D3DCUBEMAP_FACES FaceType,CONST RECT* pDirtyRect) PURE; - - #ifdef D3D_DEBUG_INFO - LPCWSTR Name; - UINT Width; - UINT Height; - UINT Levels; - DWORD Usage; - D3DFORMAT Format; - D3DPOOL Pool; - DWORD Priority; - DWORD LOD; - D3DTEXTUREFILTERTYPE FilterType; - UINT LockCount; - LPCWSTR CreationCallStack; - #endif -}; - -typedef struct IDirect3DCubeTexture9 *LPDIRECT3DCUBETEXTURE9, *PDIRECT3DCUBETEXTURE9; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirect3DCubeTexture9_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirect3DCubeTexture9_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirect3DCubeTexture9_Release(p) (p)->lpVtbl->Release(p) -#define IDirect3DCubeTexture9_GetDevice(p,a) (p)->lpVtbl->GetDevice(p,a) -#define IDirect3DCubeTexture9_SetPrivateData(p,a,b,c,d) (p)->lpVtbl->SetPrivateData(p,a,b,c,d) -#define IDirect3DCubeTexture9_GetPrivateData(p,a,b,c) (p)->lpVtbl->GetPrivateData(p,a,b,c) -#define IDirect3DCubeTexture9_FreePrivateData(p,a) (p)->lpVtbl->FreePrivateData(p,a) -#define IDirect3DCubeTexture9_SetPriority(p,a) (p)->lpVtbl->SetPriority(p,a) -#define IDirect3DCubeTexture9_GetPriority(p) (p)->lpVtbl->GetPriority(p) -#define IDirect3DCubeTexture9_PreLoad(p) (p)->lpVtbl->PreLoad(p) -#define IDirect3DCubeTexture9_GetType(p) (p)->lpVtbl->GetType(p) -#define IDirect3DCubeTexture9_SetLOD(p,a) (p)->lpVtbl->SetLOD(p,a) -#define IDirect3DCubeTexture9_GetLOD(p) (p)->lpVtbl->GetLOD(p) -#define IDirect3DCubeTexture9_GetLevelCount(p) (p)->lpVtbl->GetLevelCount(p) -#define IDirect3DCubeTexture9_SetAutoGenFilterType(p,a) (p)->lpVtbl->SetAutoGenFilterType(p,a) -#define IDirect3DCubeTexture9_GetAutoGenFilterType(p) (p)->lpVtbl->GetAutoGenFilterType(p) -#define IDirect3DCubeTexture9_GenerateMipSubLevels(p) (p)->lpVtbl->GenerateMipSubLevels(p) -#define IDirect3DCubeTexture9_GetLevelDesc(p,a,b) (p)->lpVtbl->GetLevelDesc(p,a,b) -#define IDirect3DCubeTexture9_GetCubeMapSurface(p,a,b,c) (p)->lpVtbl->GetCubeMapSurface(p,a,b,c) -#define IDirect3DCubeTexture9_LockRect(p,a,b,c,d,e) (p)->lpVtbl->LockRect(p,a,b,c,d,e) -#define IDirect3DCubeTexture9_UnlockRect(p,a,b) (p)->lpVtbl->UnlockRect(p,a,b) -#define IDirect3DCubeTexture9_AddDirtyRect(p,a,b) (p)->lpVtbl->AddDirtyRect(p,a,b) -#else -#define IDirect3DCubeTexture9_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirect3DCubeTexture9_AddRef(p) (p)->AddRef() -#define IDirect3DCubeTexture9_Release(p) (p)->Release() -#define IDirect3DCubeTexture9_GetDevice(p,a) (p)->GetDevice(a) -#define IDirect3DCubeTexture9_SetPrivateData(p,a,b,c,d) (p)->SetPrivateData(a,b,c,d) -#define IDirect3DCubeTexture9_GetPrivateData(p,a,b,c) (p)->GetPrivateData(a,b,c) -#define IDirect3DCubeTexture9_FreePrivateData(p,a) (p)->FreePrivateData(a) -#define IDirect3DCubeTexture9_SetPriority(p,a) (p)->SetPriority(a) -#define IDirect3DCubeTexture9_GetPriority(p) (p)->GetPriority() -#define IDirect3DCubeTexture9_PreLoad(p) (p)->PreLoad() -#define IDirect3DCubeTexture9_GetType(p) (p)->GetType() -#define IDirect3DCubeTexture9_SetLOD(p,a) (p)->SetLOD(a) -#define IDirect3DCubeTexture9_GetLOD(p) (p)->GetLOD() -#define IDirect3DCubeTexture9_GetLevelCount(p) (p)->GetLevelCount() -#define IDirect3DCubeTexture9_SetAutoGenFilterType(p,a) (p)->SetAutoGenFilterType(a) -#define IDirect3DCubeTexture9_GetAutoGenFilterType(p) (p)->GetAutoGenFilterType() -#define IDirect3DCubeTexture9_GenerateMipSubLevels(p) (p)->GenerateMipSubLevels() -#define IDirect3DCubeTexture9_GetLevelDesc(p,a,b) (p)->GetLevelDesc(a,b) -#define IDirect3DCubeTexture9_GetCubeMapSurface(p,a,b,c) (p)->GetCubeMapSurface(a,b,c) -#define IDirect3DCubeTexture9_LockRect(p,a,b,c,d,e) (p)->LockRect(a,b,c,d,e) -#define IDirect3DCubeTexture9_UnlockRect(p,a,b) (p)->UnlockRect(a,b) -#define IDirect3DCubeTexture9_AddDirtyRect(p,a,b) (p)->AddDirtyRect(a,b) -#endif - - - - -#undef INTERFACE -#define INTERFACE IDirect3DVertexBuffer9 - -DECLARE_INTERFACE_(IDirect3DVertexBuffer9, IDirect3DResource9) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, void** ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirect3DResource9 methods ***/ - STDMETHOD(GetDevice)(THIS_ IDirect3DDevice9** ppDevice) PURE; - STDMETHOD(SetPrivateData)(THIS_ REFGUID refguid,CONST void* pData,DWORD SizeOfData,DWORD Flags) PURE; - STDMETHOD(GetPrivateData)(THIS_ REFGUID refguid,void* pData,DWORD* pSizeOfData) PURE; - STDMETHOD(FreePrivateData)(THIS_ REFGUID refguid) PURE; - STDMETHOD_(DWORD, SetPriority)(THIS_ DWORD PriorityNew) PURE; - STDMETHOD_(DWORD, GetPriority)(THIS) PURE; - STDMETHOD_(void, PreLoad)(THIS) PURE; - STDMETHOD_(D3DRESOURCETYPE, GetType)(THIS) PURE; - STDMETHOD(Lock)(THIS_ UINT OffsetToLock,UINT SizeToLock,void** ppbData,DWORD Flags) PURE; - STDMETHOD(Unlock)(THIS) PURE; - STDMETHOD(GetDesc)(THIS_ D3DVERTEXBUFFER_DESC *pDesc) PURE; - - #ifdef D3D_DEBUG_INFO - LPCWSTR Name; - UINT Length; - DWORD Usage; - DWORD FVF; - D3DPOOL Pool; - DWORD Priority; - UINT LockCount; - LPCWSTR CreationCallStack; - #endif -}; - -typedef struct IDirect3DVertexBuffer9 *LPDIRECT3DVERTEXBUFFER9, *PDIRECT3DVERTEXBUFFER9; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirect3DVertexBuffer9_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirect3DVertexBuffer9_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirect3DVertexBuffer9_Release(p) (p)->lpVtbl->Release(p) -#define IDirect3DVertexBuffer9_GetDevice(p,a) (p)->lpVtbl->GetDevice(p,a) -#define IDirect3DVertexBuffer9_SetPrivateData(p,a,b,c,d) (p)->lpVtbl->SetPrivateData(p,a,b,c,d) -#define IDirect3DVertexBuffer9_GetPrivateData(p,a,b,c) (p)->lpVtbl->GetPrivateData(p,a,b,c) -#define IDirect3DVertexBuffer9_FreePrivateData(p,a) (p)->lpVtbl->FreePrivateData(p,a) -#define IDirect3DVertexBuffer9_SetPriority(p,a) (p)->lpVtbl->SetPriority(p,a) -#define IDirect3DVertexBuffer9_GetPriority(p) (p)->lpVtbl->GetPriority(p) -#define IDirect3DVertexBuffer9_PreLoad(p) (p)->lpVtbl->PreLoad(p) -#define IDirect3DVertexBuffer9_GetType(p) (p)->lpVtbl->GetType(p) -#define IDirect3DVertexBuffer9_Lock(p,a,b,c,d) (p)->lpVtbl->Lock(p,a,b,c,d) -#define IDirect3DVertexBuffer9_Unlock(p) (p)->lpVtbl->Unlock(p) -#define IDirect3DVertexBuffer9_GetDesc(p,a) (p)->lpVtbl->GetDesc(p,a) -#else -#define IDirect3DVertexBuffer9_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirect3DVertexBuffer9_AddRef(p) (p)->AddRef() -#define IDirect3DVertexBuffer9_Release(p) (p)->Release() -#define IDirect3DVertexBuffer9_GetDevice(p,a) (p)->GetDevice(a) -#define IDirect3DVertexBuffer9_SetPrivateData(p,a,b,c,d) (p)->SetPrivateData(a,b,c,d) -#define IDirect3DVertexBuffer9_GetPrivateData(p,a,b,c) (p)->GetPrivateData(a,b,c) -#define IDirect3DVertexBuffer9_FreePrivateData(p,a) (p)->FreePrivateData(a) -#define IDirect3DVertexBuffer9_SetPriority(p,a) (p)->SetPriority(a) -#define IDirect3DVertexBuffer9_GetPriority(p) (p)->GetPriority() -#define IDirect3DVertexBuffer9_PreLoad(p) (p)->PreLoad() -#define IDirect3DVertexBuffer9_GetType(p) (p)->GetType() -#define IDirect3DVertexBuffer9_Lock(p,a,b,c,d) (p)->Lock(a,b,c,d) -#define IDirect3DVertexBuffer9_Unlock(p) (p)->Unlock() -#define IDirect3DVertexBuffer9_GetDesc(p,a) (p)->GetDesc(a) -#endif - - - - -#undef INTERFACE -#define INTERFACE IDirect3DIndexBuffer9 - -DECLARE_INTERFACE_(IDirect3DIndexBuffer9, IDirect3DResource9) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, void** ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirect3DResource9 methods ***/ - STDMETHOD(GetDevice)(THIS_ IDirect3DDevice9** ppDevice) PURE; - STDMETHOD(SetPrivateData)(THIS_ REFGUID refguid,CONST void* pData,DWORD SizeOfData,DWORD Flags) PURE; - STDMETHOD(GetPrivateData)(THIS_ REFGUID refguid,void* pData,DWORD* pSizeOfData) PURE; - STDMETHOD(FreePrivateData)(THIS_ REFGUID refguid) PURE; - STDMETHOD_(DWORD, SetPriority)(THIS_ DWORD PriorityNew) PURE; - STDMETHOD_(DWORD, GetPriority)(THIS) PURE; - STDMETHOD_(void, PreLoad)(THIS) PURE; - STDMETHOD_(D3DRESOURCETYPE, GetType)(THIS) PURE; - STDMETHOD(Lock)(THIS_ UINT OffsetToLock,UINT SizeToLock,void** ppbData,DWORD Flags) PURE; - STDMETHOD(Unlock)(THIS) PURE; - STDMETHOD(GetDesc)(THIS_ D3DINDEXBUFFER_DESC *pDesc) PURE; - - #ifdef D3D_DEBUG_INFO - LPCWSTR Name; - UINT Length; - DWORD Usage; - D3DFORMAT Format; - D3DPOOL Pool; - DWORD Priority; - UINT LockCount; - LPCWSTR CreationCallStack; - #endif -}; - -typedef struct IDirect3DIndexBuffer9 *LPDIRECT3DINDEXBUFFER9, *PDIRECT3DINDEXBUFFER9; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirect3DIndexBuffer9_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirect3DIndexBuffer9_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirect3DIndexBuffer9_Release(p) (p)->lpVtbl->Release(p) -#define IDirect3DIndexBuffer9_GetDevice(p,a) (p)->lpVtbl->GetDevice(p,a) -#define IDirect3DIndexBuffer9_SetPrivateData(p,a,b,c,d) (p)->lpVtbl->SetPrivateData(p,a,b,c,d) -#define IDirect3DIndexBuffer9_GetPrivateData(p,a,b,c) (p)->lpVtbl->GetPrivateData(p,a,b,c) -#define IDirect3DIndexBuffer9_FreePrivateData(p,a) (p)->lpVtbl->FreePrivateData(p,a) -#define IDirect3DIndexBuffer9_SetPriority(p,a) (p)->lpVtbl->SetPriority(p,a) -#define IDirect3DIndexBuffer9_GetPriority(p) (p)->lpVtbl->GetPriority(p) -#define IDirect3DIndexBuffer9_PreLoad(p) (p)->lpVtbl->PreLoad(p) -#define IDirect3DIndexBuffer9_GetType(p) (p)->lpVtbl->GetType(p) -#define IDirect3DIndexBuffer9_Lock(p,a,b,c,d) (p)->lpVtbl->Lock(p,a,b,c,d) -#define IDirect3DIndexBuffer9_Unlock(p) (p)->lpVtbl->Unlock(p) -#define IDirect3DIndexBuffer9_GetDesc(p,a) (p)->lpVtbl->GetDesc(p,a) -#else -#define IDirect3DIndexBuffer9_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirect3DIndexBuffer9_AddRef(p) (p)->AddRef() -#define IDirect3DIndexBuffer9_Release(p) (p)->Release() -#define IDirect3DIndexBuffer9_GetDevice(p,a) (p)->GetDevice(a) -#define IDirect3DIndexBuffer9_SetPrivateData(p,a,b,c,d) (p)->SetPrivateData(a,b,c,d) -#define IDirect3DIndexBuffer9_GetPrivateData(p,a,b,c) (p)->GetPrivateData(a,b,c) -#define IDirect3DIndexBuffer9_FreePrivateData(p,a) (p)->FreePrivateData(a) -#define IDirect3DIndexBuffer9_SetPriority(p,a) (p)->SetPriority(a) -#define IDirect3DIndexBuffer9_GetPriority(p) (p)->GetPriority() -#define IDirect3DIndexBuffer9_PreLoad(p) (p)->PreLoad() -#define IDirect3DIndexBuffer9_GetType(p) (p)->GetType() -#define IDirect3DIndexBuffer9_Lock(p,a,b,c,d) (p)->Lock(a,b,c,d) -#define IDirect3DIndexBuffer9_Unlock(p) (p)->Unlock() -#define IDirect3DIndexBuffer9_GetDesc(p,a) (p)->GetDesc(a) -#endif - - - - -#undef INTERFACE -#define INTERFACE IDirect3DSurface9 - -DECLARE_INTERFACE_(IDirect3DSurface9, IDirect3DResource9) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, void** ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirect3DResource9 methods ***/ - STDMETHOD(GetDevice)(THIS_ IDirect3DDevice9** ppDevice) PURE; - STDMETHOD(SetPrivateData)(THIS_ REFGUID refguid,CONST void* pData,DWORD SizeOfData,DWORD Flags) PURE; - STDMETHOD(GetPrivateData)(THIS_ REFGUID refguid,void* pData,DWORD* pSizeOfData) PURE; - STDMETHOD(FreePrivateData)(THIS_ REFGUID refguid) PURE; - STDMETHOD_(DWORD, SetPriority)(THIS_ DWORD PriorityNew) PURE; - STDMETHOD_(DWORD, GetPriority)(THIS) PURE; - STDMETHOD_(void, PreLoad)(THIS) PURE; - STDMETHOD_(D3DRESOURCETYPE, GetType)(THIS) PURE; - STDMETHOD(GetContainer)(THIS_ REFIID riid,void** ppContainer) PURE; - STDMETHOD(GetDesc)(THIS_ D3DSURFACE_DESC *pDesc) PURE; - STDMETHOD(LockRect)(THIS_ D3DLOCKED_RECT* pLockedRect,CONST RECT* pRect,DWORD Flags) PURE; - STDMETHOD(UnlockRect)(THIS) PURE; - STDMETHOD(GetDC)(THIS_ HDC *phdc) PURE; - STDMETHOD(ReleaseDC)(THIS_ HDC hdc) PURE; - - #ifdef D3D_DEBUG_INFO - LPCWSTR Name; - UINT Width; - UINT Height; - DWORD Usage; - D3DFORMAT Format; - D3DPOOL Pool; - D3DMULTISAMPLE_TYPE MultiSampleType; - DWORD MultiSampleQuality; - DWORD Priority; - UINT LockCount; - UINT DCCount; - LPCWSTR CreationCallStack; - #endif -}; - -typedef struct IDirect3DSurface9 *LPDIRECT3DSURFACE9, *PDIRECT3DSURFACE9; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirect3DSurface9_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirect3DSurface9_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirect3DSurface9_Release(p) (p)->lpVtbl->Release(p) -#define IDirect3DSurface9_GetDevice(p,a) (p)->lpVtbl->GetDevice(p,a) -#define IDirect3DSurface9_SetPrivateData(p,a,b,c,d) (p)->lpVtbl->SetPrivateData(p,a,b,c,d) -#define IDirect3DSurface9_GetPrivateData(p,a,b,c) (p)->lpVtbl->GetPrivateData(p,a,b,c) -#define IDirect3DSurface9_FreePrivateData(p,a) (p)->lpVtbl->FreePrivateData(p,a) -#define IDirect3DSurface9_SetPriority(p,a) (p)->lpVtbl->SetPriority(p,a) -#define IDirect3DSurface9_GetPriority(p) (p)->lpVtbl->GetPriority(p) -#define IDirect3DSurface9_PreLoad(p) (p)->lpVtbl->PreLoad(p) -#define IDirect3DSurface9_GetType(p) (p)->lpVtbl->GetType(p) -#define IDirect3DSurface9_GetContainer(p,a,b) (p)->lpVtbl->GetContainer(p,a,b) -#define IDirect3DSurface9_GetDesc(p,a) (p)->lpVtbl->GetDesc(p,a) -#define IDirect3DSurface9_LockRect(p,a,b,c) (p)->lpVtbl->LockRect(p,a,b,c) -#define IDirect3DSurface9_UnlockRect(p) (p)->lpVtbl->UnlockRect(p) -#define IDirect3DSurface9_GetDC(p,a) (p)->lpVtbl->GetDC(p,a) -#define IDirect3DSurface9_ReleaseDC(p,a) (p)->lpVtbl->ReleaseDC(p,a) -#else -#define IDirect3DSurface9_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirect3DSurface9_AddRef(p) (p)->AddRef() -#define IDirect3DSurface9_Release(p) (p)->Release() -#define IDirect3DSurface9_GetDevice(p,a) (p)->GetDevice(a) -#define IDirect3DSurface9_SetPrivateData(p,a,b,c,d) (p)->SetPrivateData(a,b,c,d) -#define IDirect3DSurface9_GetPrivateData(p,a,b,c) (p)->GetPrivateData(a,b,c) -#define IDirect3DSurface9_FreePrivateData(p,a) (p)->FreePrivateData(a) -#define IDirect3DSurface9_SetPriority(p,a) (p)->SetPriority(a) -#define IDirect3DSurface9_GetPriority(p) (p)->GetPriority() -#define IDirect3DSurface9_PreLoad(p) (p)->PreLoad() -#define IDirect3DSurface9_GetType(p) (p)->GetType() -#define IDirect3DSurface9_GetContainer(p,a,b) (p)->GetContainer(a,b) -#define IDirect3DSurface9_GetDesc(p,a) (p)->GetDesc(a) -#define IDirect3DSurface9_LockRect(p,a,b,c) (p)->LockRect(a,b,c) -#define IDirect3DSurface9_UnlockRect(p) (p)->UnlockRect() -#define IDirect3DSurface9_GetDC(p,a) (p)->GetDC(a) -#define IDirect3DSurface9_ReleaseDC(p,a) (p)->ReleaseDC(a) -#endif - - - - - -#undef INTERFACE -#define INTERFACE IDirect3DVolume9 - -DECLARE_INTERFACE_(IDirect3DVolume9, IUnknown) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, void** ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirect3DVolume9 methods ***/ - STDMETHOD(GetDevice)(THIS_ IDirect3DDevice9** ppDevice) PURE; - STDMETHOD(SetPrivateData)(THIS_ REFGUID refguid,CONST void* pData,DWORD SizeOfData,DWORD Flags) PURE; - STDMETHOD(GetPrivateData)(THIS_ REFGUID refguid,void* pData,DWORD* pSizeOfData) PURE; - STDMETHOD(FreePrivateData)(THIS_ REFGUID refguid) PURE; - STDMETHOD(GetContainer)(THIS_ REFIID riid,void** ppContainer) PURE; - STDMETHOD(GetDesc)(THIS_ D3DVOLUME_DESC *pDesc) PURE; - STDMETHOD(LockBox)(THIS_ D3DLOCKED_BOX * pLockedVolume,CONST D3DBOX* pBox,DWORD Flags) PURE; - STDMETHOD(UnlockBox)(THIS) PURE; - - #ifdef D3D_DEBUG_INFO - LPCWSTR Name; - UINT Width; - UINT Height; - UINT Depth; - DWORD Usage; - D3DFORMAT Format; - D3DPOOL Pool; - UINT LockCount; - LPCWSTR CreationCallStack; - #endif -}; - -typedef struct IDirect3DVolume9 *LPDIRECT3DVOLUME9, *PDIRECT3DVOLUME9; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirect3DVolume9_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirect3DVolume9_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirect3DVolume9_Release(p) (p)->lpVtbl->Release(p) -#define IDirect3DVolume9_GetDevice(p,a) (p)->lpVtbl->GetDevice(p,a) -#define IDirect3DVolume9_SetPrivateData(p,a,b,c,d) (p)->lpVtbl->SetPrivateData(p,a,b,c,d) -#define IDirect3DVolume9_GetPrivateData(p,a,b,c) (p)->lpVtbl->GetPrivateData(p,a,b,c) -#define IDirect3DVolume9_FreePrivateData(p,a) (p)->lpVtbl->FreePrivateData(p,a) -#define IDirect3DVolume9_GetContainer(p,a,b) (p)->lpVtbl->GetContainer(p,a,b) -#define IDirect3DVolume9_GetDesc(p,a) (p)->lpVtbl->GetDesc(p,a) -#define IDirect3DVolume9_LockBox(p,a,b,c) (p)->lpVtbl->LockBox(p,a,b,c) -#define IDirect3DVolume9_UnlockBox(p) (p)->lpVtbl->UnlockBox(p) -#else -#define IDirect3DVolume9_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirect3DVolume9_AddRef(p) (p)->AddRef() -#define IDirect3DVolume9_Release(p) (p)->Release() -#define IDirect3DVolume9_GetDevice(p,a) (p)->GetDevice(a) -#define IDirect3DVolume9_SetPrivateData(p,a,b,c,d) (p)->SetPrivateData(a,b,c,d) -#define IDirect3DVolume9_GetPrivateData(p,a,b,c) (p)->GetPrivateData(a,b,c) -#define IDirect3DVolume9_FreePrivateData(p,a) (p)->FreePrivateData(a) -#define IDirect3DVolume9_GetContainer(p,a,b) (p)->GetContainer(a,b) -#define IDirect3DVolume9_GetDesc(p,a) (p)->GetDesc(a) -#define IDirect3DVolume9_LockBox(p,a,b,c) (p)->LockBox(a,b,c) -#define IDirect3DVolume9_UnlockBox(p) (p)->UnlockBox() -#endif - - - - -#undef INTERFACE -#define INTERFACE IDirect3DQuery9 - -DECLARE_INTERFACE_(IDirect3DQuery9, IUnknown) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, void** ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirect3DQuery9 methods ***/ - STDMETHOD(GetDevice)(THIS_ IDirect3DDevice9** ppDevice) PURE; - STDMETHOD_(D3DQUERYTYPE, GetType)(THIS) PURE; - STDMETHOD_(DWORD, GetDataSize)(THIS) PURE; - STDMETHOD(Issue)(THIS_ DWORD dwIssueFlags) PURE; - STDMETHOD(GetData)(THIS_ void* pData,DWORD dwSize,DWORD dwGetDataFlags) PURE; - - #ifdef D3D_DEBUG_INFO - D3DQUERYTYPE Type; - DWORD DataSize; - LPCWSTR CreationCallStack; - #endif -}; - -typedef struct IDirect3DQuery9 *LPDIRECT3DQUERY9, *PDIRECT3DQUERY9; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirect3DQuery9_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirect3DQuery9_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirect3DQuery9_Release(p) (p)->lpVtbl->Release(p) -#define IDirect3DQuery9_GetDevice(p,a) (p)->lpVtbl->GetDevice(p,a) -#define IDirect3DQuery9_GetType(p) (p)->lpVtbl->GetType(p) -#define IDirect3DQuery9_GetDataSize(p) (p)->lpVtbl->GetDataSize(p) -#define IDirect3DQuery9_Issue(p,a) (p)->lpVtbl->Issue(p,a) -#define IDirect3DQuery9_GetData(p,a,b,c) (p)->lpVtbl->GetData(p,a,b,c) -#else -#define IDirect3DQuery9_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirect3DQuery9_AddRef(p) (p)->AddRef() -#define IDirect3DQuery9_Release(p) (p)->Release() -#define IDirect3DQuery9_GetDevice(p,a) (p)->GetDevice(a) -#define IDirect3DQuery9_GetType(p) (p)->GetType() -#define IDirect3DQuery9_GetDataSize(p) (p)->GetDataSize() -#define IDirect3DQuery9_Issue(p,a) (p)->Issue(a) -#define IDirect3DQuery9_GetData(p,a,b,c) (p)->GetData(a,b,c) -#endif - - -/**************************************************************************** - * Flags for SetPrivateData method on all D3D9 interfaces - * - * The passed pointer is an IUnknown ptr. The SizeOfData argument to SetPrivateData - * must be set to sizeof(IUnknown*). Direct3D will call AddRef through this - * pointer and Release when the private data is destroyed. The data will be - * destroyed when another SetPrivateData with the same GUID is set, when - * FreePrivateData is called, or when the D3D9 object is freed. - ****************************************************************************/ -#define D3DSPD_IUNKNOWN 0x00000001L - -/**************************************************************************** - * - * Flags for IDirect3D9::CreateDevice's BehaviorFlags - * - ****************************************************************************/ - -#define D3DCREATE_FPU_PRESERVE 0x00000002L -#define D3DCREATE_MULTITHREADED 0x00000004L - -#define D3DCREATE_PUREDEVICE 0x00000010L -#define D3DCREATE_SOFTWARE_VERTEXPROCESSING 0x00000020L -#define D3DCREATE_HARDWARE_VERTEXPROCESSING 0x00000040L -#define D3DCREATE_MIXED_VERTEXPROCESSING 0x00000080L - -#define D3DCREATE_DISABLE_DRIVER_MANAGEMENT 0x00000100L -#define D3DCREATE_ADAPTERGROUP_DEVICE 0x00000200L -#define D3DCREATE_DISABLE_DRIVER_MANAGEMENT_EX 0x00000400L - -// This flag causes the D3D runtime not to alter the focus -// window in any way. Use with caution- the burden of supporting -// focus management events (alt-tab, etc.) falls on the -// application, and appropriate responses (switching display -// mode, etc.) should be coded. -#define D3DCREATE_NOWINDOWCHANGES 0x00000800L - -/* D3D9Ex only -- */ -#if !defined(D3D_DISABLE_9EX) - -// Disable multithreading for software vertex processing -#define D3DCREATE_DISABLE_PSGP_THREADING 0x00002000L -// This flag enables present statistics on device. -#define D3DCREATE_ENABLE_PRESENTSTATS 0x00004000L -// This flag disables printscreen support in the runtime for this device -#define D3DCREATE_DISABLE_PRINTSCREEN 0x00008000L - -#define D3DCREATE_SCREENSAVER 0x10000000L - - -#endif // !D3D_DISABLE_9EX -/* -- D3D9Ex only */ - - - -/**************************************************************************** - * - * Parameter for IDirect3D9::CreateDevice's Adapter argument - * - ****************************************************************************/ - -#define D3DADAPTER_DEFAULT 0 - -/**************************************************************************** - * - * Flags for IDirect3D9::EnumAdapters - * - ****************************************************************************/ - -/* - * The D3DENUM_WHQL_LEVEL value has been retired for 9Ex and future versions, - * but it needs to be defined here for compatibility with DX9 and earlier versions. - * See the DirectX SDK for sample code on discovering driver signatures. - */ -#define D3DENUM_WHQL_LEVEL 0x00000002L - -/* D3D9Ex only -- */ -#if !defined(D3D_DISABLE_9EX) - -/* NO_DRIVERVERSION will not fill out the DriverVersion field, nor will the - DriverVersion be incorporated into the DeviceIdentifier GUID. WINNT only */ -#define D3DENUM_NO_DRIVERVERSION 0x00000004L - -#endif // !D3D_DISABLE_9EX -/* -- D3D9Ex only */ - - -/**************************************************************************** - * - * Maximum number of back-buffers supported in DX9 - * - ****************************************************************************/ - -#define D3DPRESENT_BACK_BUFFERS_MAX 3L - -/* D3D9Ex only -- */ -#if !defined(D3D_DISABLE_9EX) - -/**************************************************************************** - * - * Maximum number of back-buffers supported when apps use CreateDeviceEx - * - ****************************************************************************/ - -#define D3DPRESENT_BACK_BUFFERS_MAX_EX 30L - -#endif // !D3D_DISABLE_9EX -/* -- D3D9Ex only */ - -/**************************************************************************** - * - * Flags for IDirect3DDevice9::SetGammaRamp - * - ****************************************************************************/ - -#define D3DSGR_NO_CALIBRATION 0x00000000L -#define D3DSGR_CALIBRATE 0x00000001L - -/**************************************************************************** - * - * Flags for IDirect3DDevice9::SetCursorPosition - * - ****************************************************************************/ - -#define D3DCURSOR_IMMEDIATE_UPDATE 0x00000001L - -/**************************************************************************** - * - * Flags for IDirect3DSwapChain9::Present - * - ****************************************************************************/ - -#define D3DPRESENT_DONOTWAIT 0x00000001L -#define D3DPRESENT_LINEAR_CONTENT 0x00000002L - -/* D3D9Ex only -- */ -#if !defined(D3D_DISABLE_9EX) - -#define D3DPRESENT_DONOTFLIP 0x00000004L -#define D3DPRESENT_FLIPRESTART 0x00000008L -#define D3DPRESENT_VIDEO_RESTRICT_TO_MONITOR 0x00000010L -#define D3DPRESENT_UPDATEOVERLAYONLY 0x00000020L -#define D3DPRESENT_HIDEOVERLAY 0x00000040L -#define D3DPRESENT_UPDATECOLORKEY 0x00000080L -#define D3DPRESENT_FORCEIMMEDIATE 0x00000100L - -#endif // !D3D_DISABLE_9EX -/* -- D3D9Ex only */ - - -/**************************************************************************** - * - * Flags for DrawPrimitive/DrawIndexedPrimitive - * Also valid for Begin/BeginIndexed - * Also valid for VertexBuffer::CreateVertexBuffer - ****************************************************************************/ - - -/* - * DirectDraw error codes - */ -#define _FACD3D 0x876 -#define MAKE_D3DHRESULT( code ) MAKE_HRESULT( 1, _FACD3D, code ) -#define MAKE_D3DSTATUS( code ) MAKE_HRESULT( 0, _FACD3D, code ) - -/* - * Direct3D Errors - */ -#define D3D_OK S_OK - -#define D3DERR_WRONGTEXTUREFORMAT MAKE_D3DHRESULT(2072) -#define D3DERR_UNSUPPORTEDCOLOROPERATION MAKE_D3DHRESULT(2073) -#define D3DERR_UNSUPPORTEDCOLORARG MAKE_D3DHRESULT(2074) -#define D3DERR_UNSUPPORTEDALPHAOPERATION MAKE_D3DHRESULT(2075) -#define D3DERR_UNSUPPORTEDALPHAARG MAKE_D3DHRESULT(2076) -#define D3DERR_TOOMANYOPERATIONS MAKE_D3DHRESULT(2077) -#define D3DERR_CONFLICTINGTEXTUREFILTER MAKE_D3DHRESULT(2078) -#define D3DERR_UNSUPPORTEDFACTORVALUE MAKE_D3DHRESULT(2079) -#define D3DERR_CONFLICTINGRENDERSTATE MAKE_D3DHRESULT(2081) -#define D3DERR_UNSUPPORTEDTEXTUREFILTER MAKE_D3DHRESULT(2082) -#define D3DERR_CONFLICTINGTEXTUREPALETTE MAKE_D3DHRESULT(2086) -#define D3DERR_DRIVERINTERNALERROR MAKE_D3DHRESULT(2087) - -#define D3DERR_NOTFOUND MAKE_D3DHRESULT(2150) -#define D3DERR_MOREDATA MAKE_D3DHRESULT(2151) -#define D3DERR_DEVICELOST MAKE_D3DHRESULT(2152) -#define D3DERR_DEVICENOTRESET MAKE_D3DHRESULT(2153) -#define D3DERR_NOTAVAILABLE MAKE_D3DHRESULT(2154) -#define D3DERR_OUTOFVIDEOMEMORY MAKE_D3DHRESULT(380) -#define D3DERR_INVALIDDEVICE MAKE_D3DHRESULT(2155) -#define D3DERR_INVALIDCALL MAKE_D3DHRESULT(2156) -#define D3DERR_DRIVERINVALIDCALL MAKE_D3DHRESULT(2157) -#define D3DERR_WASSTILLDRAWING MAKE_D3DHRESULT(540) -#define D3DOK_NOAUTOGEN MAKE_D3DSTATUS(2159) - -/* D3D9Ex only -- */ -#if !defined(D3D_DISABLE_9EX) - - -#define D3DERR_DEVICEREMOVED MAKE_D3DHRESULT(2160) -#define S_NOT_RESIDENT MAKE_D3DSTATUS(2165) -#define S_RESIDENT_IN_SHARED_MEMORY MAKE_D3DSTATUS(2166) -#define S_PRESENT_MODE_CHANGED MAKE_D3DSTATUS(2167) -#define S_PRESENT_OCCLUDED MAKE_D3DSTATUS(2168) -#define D3DERR_DEVICEHUNG MAKE_D3DHRESULT(2164) -#define D3DERR_UNSUPPORTEDOVERLAY MAKE_D3DHRESULT(2171) -#define D3DERR_UNSUPPORTEDOVERLAYFORMAT MAKE_D3DHRESULT(2172) -#define D3DERR_CANNOTPROTECTCONTENT MAKE_D3DHRESULT(2173) -#define D3DERR_UNSUPPORTEDCRYPTO MAKE_D3DHRESULT(2174) -#define D3DERR_PRESENT_STATISTICS_DISJOINT MAKE_D3DHRESULT(2180) - - -/********************* -/* D3D9Ex interfaces -/*********************/ - -HRESULT WINAPI Direct3DCreate9Ex(UINT SDKVersion, IDirect3D9Ex**); - - - - -#undef INTERFACE -#define INTERFACE IDirect3D9Ex - -DECLARE_INTERFACE_(IDirect3D9Ex, IDirect3D9) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, void** ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirect3D9 methods ***/ - STDMETHOD_(UINT, GetAdapterCount)(THIS) PURE; - STDMETHOD(GetAdapterIdentifier)(THIS_ UINT Adapter,DWORD Flags,D3DADAPTER_IDENTIFIER9* pIdentifier) PURE; - STDMETHOD_(UINT, GetAdapterModeCount)(THIS_ UINT Adapter,D3DFORMAT Format) PURE; - STDMETHOD(EnumAdapterModes)(THIS_ UINT Adapter,D3DFORMAT Format,UINT Mode,D3DDISPLAYMODE* pMode) PURE; - STDMETHOD(GetAdapterDisplayMode)(THIS_ UINT Adapter,D3DDISPLAYMODE* pMode) PURE; - STDMETHOD(CheckDeviceType)(THIS_ UINT Adapter,D3DDEVTYPE DevType,D3DFORMAT AdapterFormat,D3DFORMAT BackBufferFormat,BOOL bWindowed) PURE; - STDMETHOD(CheckDeviceFormat)(THIS_ UINT Adapter,D3DDEVTYPE DeviceType,D3DFORMAT AdapterFormat,DWORD Usage,D3DRESOURCETYPE RType,D3DFORMAT CheckFormat) PURE; - STDMETHOD(CheckDeviceMultiSampleType)(THIS_ UINT Adapter,D3DDEVTYPE DeviceType,D3DFORMAT SurfaceFormat,BOOL Windowed,D3DMULTISAMPLE_TYPE MultiSampleType,DWORD* pQualityLevels) PURE; - STDMETHOD(CheckDepthStencilMatch)(THIS_ UINT Adapter,D3DDEVTYPE DeviceType,D3DFORMAT AdapterFormat,D3DFORMAT RenderTargetFormat,D3DFORMAT DepthStencilFormat) PURE; - STDMETHOD(CheckDeviceFormatConversion)(THIS_ UINT Adapter,D3DDEVTYPE DeviceType,D3DFORMAT SourceFormat,D3DFORMAT TargetFormat) PURE; - STDMETHOD(GetDeviceCaps)(THIS_ UINT Adapter,D3DDEVTYPE DeviceType,D3DCAPS9* pCaps) PURE; - STDMETHOD_(HMONITOR, GetAdapterMonitor)(THIS_ UINT Adapter) PURE; - STDMETHOD(CreateDevice)(THIS_ UINT Adapter,D3DDEVTYPE DeviceType,HWND hFocusWindow,DWORD BehaviorFlags,D3DPRESENT_PARAMETERS* pPresentationParameters,IDirect3DDevice9** ppReturnedDeviceInterface) PURE; - STDMETHOD_(UINT, GetAdapterModeCountEx)(THIS_ UINT Adapter,CONST D3DDISPLAYMODEFILTER* pFilter ) PURE; - STDMETHOD(EnumAdapterModesEx)(THIS_ UINT Adapter,CONST D3DDISPLAYMODEFILTER* pFilter,UINT Mode,D3DDISPLAYMODEEX* pMode) PURE; - STDMETHOD(GetAdapterDisplayModeEx)(THIS_ UINT Adapter,D3DDISPLAYMODEEX* pMode,D3DDISPLAYROTATION* pRotation) PURE; - STDMETHOD(CreateDeviceEx)(THIS_ UINT Adapter,D3DDEVTYPE DeviceType,HWND hFocusWindow,DWORD BehaviorFlags,D3DPRESENT_PARAMETERS* pPresentationParameters,D3DDISPLAYMODEEX* pFullscreenDisplayMode,IDirect3DDevice9Ex** ppReturnedDeviceInterface) PURE; - STDMETHOD(GetAdapterLUID)(THIS_ UINT Adapter,LUID * pLUID) PURE; -}; - -typedef struct IDirect3D9Ex *LPDIRECT3D9EX, *PDIRECT3D9EX; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirect3D9Ex_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirect3D9Ex_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirect3D9Ex_Release(p) (p)->lpVtbl->Release(p) -#define IDirect3D9Ex_GetAdapterCount(p) (p)->lpVtbl->GetAdapterCount(p) -#define IDirect3D9Ex_GetAdapterIdentifier(p,a,b,c) (p)->lpVtbl->GetAdapterIdentifier(p,a,b,c) -#define IDirect3D9Ex_GetAdapterModeCount(p,a,b) (p)->lpVtbl->GetAdapterModeCount(p,a,b) -#define IDirect3D9Ex_EnumAdapterModes(p,a,b,c,d) (p)->lpVtbl->EnumAdapterModes(p,a,b,c,d) -#define IDirect3D9Ex_GetAdapterDisplayMode(p,a,b) (p)->lpVtbl->GetAdapterDisplayMode(p,a,b) -#define IDirect3D9Ex_CheckDeviceType(p,a,b,c,d,e) (p)->lpVtbl->CheckDeviceType(p,a,b,c,d,e) -#define IDirect3D9Ex_CheckDeviceFormat(p,a,b,c,d,e,f) (p)->lpVtbl->CheckDeviceFormat(p,a,b,c,d,e,f) -#define IDirect3D9Ex_CheckDeviceMultiSampleType(p,a,b,c,d,e,f) (p)->lpVtbl->CheckDeviceMultiSampleType(p,a,b,c,d,e,f) -#define IDirect3D9Ex_CheckDepthStencilMatch(p,a,b,c,d,e) (p)->lpVtbl->CheckDepthStencilMatch(p,a,b,c,d,e) -#define IDirect3D9Ex_CheckDeviceFormatConversion(p,a,b,c,d) (p)->lpVtbl->CheckDeviceFormatConversion(p,a,b,c,d) -#define IDirect3D9Ex_GetDeviceCaps(p,a,b,c) (p)->lpVtbl->GetDeviceCaps(p,a,b,c) -#define IDirect3D9Ex_GetAdapterMonitor(p,a) (p)->lpVtbl->GetAdapterMonitor(p,a) -#define IDirect3D9Ex_CreateDevice(p,a,b,c,d,e,f) (p)->lpVtbl->CreateDevice(p,a,b,c,d,e,f) -#define IDirect3D9Ex_GetAdapterModeCountEx(p,a,b) (p)->lpVtbl->GetAdapterModeCountEx(p,a,b) -#define IDirect3D9Ex_EnumAdapterModesEx(p,a,b,c,d) (p)->lpVtbl->EnumAdapterModesEx(p,a,b,c,d) -#define IDirect3D9Ex_GetAdapterDisplayModeEx(p,a,b,c) (p)->lpVtbl->GetAdapterDisplayModeEx(p,a,b,c) -#define IDirect3D9Ex_CreateDeviceEx(p,a,b,c,d,e,f,g) (p)->lpVtbl->CreateDeviceEx(p,a,b,c,d,e,f,g) -#define IDirect3D9Ex_GetAdapterLUID(p,a,b) (p)->lpVtbl->GetAdapterLUID(p,a,b) -#else -#define IDirect3D9Ex_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirect3D9Ex_AddRef(p) (p)->AddRef() -#define IDirect3D9Ex_Release(p) (p)->Release() -#define IDirect3D9Ex_GetAdapterCount(p) (p)->GetAdapterCount() -#define IDirect3D9Ex_GetAdapterIdentifier(p,a,b,c) (p)->GetAdapterIdentifier(a,b,c) -#define IDirect3D9Ex_GetAdapterModeCount(p,a,b) (p)->GetAdapterModeCount(a,b) -#define IDirect3D9Ex_EnumAdapterModes(p,a,b,c,d) (p)->EnumAdapterModes(a,b,c,d) -#define IDirect3D9Ex_GetAdapterDisplayMode(p,a,b) (p)->GetAdapterDisplayMode(a,b) -#define IDirect3D9Ex_CheckDeviceType(p,a,b,c,d,e) (p)->CheckDeviceType(a,b,c,d,e) -#define IDirect3D9Ex_CheckDeviceFormat(p,a,b,c,d,e,f) (p)->CheckDeviceFormat(a,b,c,d,e,f) -#define IDirect3D9Ex_CheckDeviceMultiSampleType(p,a,b,c,d,e,f) (p)->CheckDeviceMultiSampleType(a,b,c,d,e,f) -#define IDirect3D9Ex_CheckDepthStencilMatch(p,a,b,c,d,e) (p)->CheckDepthStencilMatch(a,b,c,d,e) -#define IDirect3D9Ex_CheckDeviceFormatConversion(p,a,b,c,d) (p)->CheckDeviceFormatConversion(a,b,c,d) -#define IDirect3D9Ex_GetDeviceCaps(p,a,b,c) (p)->GetDeviceCaps(a,b,c) -#define IDirect3D9Ex_GetAdapterMonitor(p,a) (p)->GetAdapterMonitor(a) -#define IDirect3D9Ex_CreateDevice(p,a,b,c,d,e,f) (p)->CreateDevice(a,b,c,d,e,f) -#define IDirect3D9Ex_GetAdapterModeCountEx(p,a,b) (p)->GetAdapterModeCountEx(a,b) -#define IDirect3D9Ex_EnumAdapterModesEx(p,a,b,c,d) (p)->EnumAdapterModesEx(a,b,c,d) -#define IDirect3D9Ex_GetAdapterDisplayModeEx(p,a,b,c) (p)->GetAdapterDisplayModeEx(a,b,c) -#define IDirect3D9Ex_CreateDeviceEx(p,a,b,c,d,e,f,g) (p)->CreateDeviceEx(a,b,c,d,e,f,g) -#define IDirect3D9Ex_GetAdapterLUID(p,a,b) (p)->GetAdapterLUID(a,b) -#endif - - - - - - - - - - - - - - - - - - - - - - - - -#undef INTERFACE -#define INTERFACE IDirect3DDevice9Ex - -DECLARE_INTERFACE_(IDirect3DDevice9Ex, IDirect3DDevice9) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, void** ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirect3DDevice9 methods ***/ - STDMETHOD(TestCooperativeLevel)(THIS) PURE; - STDMETHOD_(UINT, GetAvailableTextureMem)(THIS) PURE; - STDMETHOD(EvictManagedResources)(THIS) PURE; - STDMETHOD(GetDirect3D)(THIS_ IDirect3D9** ppD3D9) PURE; - STDMETHOD(GetDeviceCaps)(THIS_ D3DCAPS9* pCaps) PURE; - STDMETHOD(GetDisplayMode)(THIS_ UINT iSwapChain,D3DDISPLAYMODE* pMode) PURE; - STDMETHOD(GetCreationParameters)(THIS_ D3DDEVICE_CREATION_PARAMETERS *pParameters) PURE; - STDMETHOD(SetCursorProperties)(THIS_ UINT XHotSpot,UINT YHotSpot,IDirect3DSurface9* pCursorBitmap) PURE; - STDMETHOD_(void, SetCursorPosition)(THIS_ int X,int Y,DWORD Flags) PURE; - STDMETHOD_(BOOL, ShowCursor)(THIS_ BOOL bShow) PURE; - STDMETHOD(CreateAdditionalSwapChain)(THIS_ D3DPRESENT_PARAMETERS* pPresentationParameters,IDirect3DSwapChain9** pSwapChain) PURE; - STDMETHOD(GetSwapChain)(THIS_ UINT iSwapChain,IDirect3DSwapChain9** pSwapChain) PURE; - STDMETHOD_(UINT, GetNumberOfSwapChains)(THIS) PURE; - STDMETHOD(Reset)(THIS_ D3DPRESENT_PARAMETERS* pPresentationParameters) PURE; - STDMETHOD(Present)(THIS_ CONST RECT* pSourceRect,CONST RECT* pDestRect,HWND hDestWindowOverride,CONST RGNDATA* pDirtyRegion) PURE; - STDMETHOD(GetBackBuffer)(THIS_ UINT iSwapChain,UINT iBackBuffer,D3DBACKBUFFER_TYPE Type,IDirect3DSurface9** ppBackBuffer) PURE; - STDMETHOD(GetRasterStatus)(THIS_ UINT iSwapChain,D3DRASTER_STATUS* pRasterStatus) PURE; - STDMETHOD(SetDialogBoxMode)(THIS_ BOOL bEnableDialogs) PURE; - STDMETHOD_(void, SetGammaRamp)(THIS_ UINT iSwapChain,DWORD Flags,CONST D3DGAMMARAMP* pRamp) PURE; - STDMETHOD_(void, GetGammaRamp)(THIS_ UINT iSwapChain,D3DGAMMARAMP* pRamp) PURE; - STDMETHOD(CreateTexture)(THIS_ UINT Width,UINT Height,UINT Levels,DWORD Usage,D3DFORMAT Format,D3DPOOL Pool,IDirect3DTexture9** ppTexture,HANDLE* pSharedHandle) PURE; - STDMETHOD(CreateVolumeTexture)(THIS_ UINT Width,UINT Height,UINT Depth,UINT Levels,DWORD Usage,D3DFORMAT Format,D3DPOOL Pool,IDirect3DVolumeTexture9** ppVolumeTexture,HANDLE* pSharedHandle) PURE; - STDMETHOD(CreateCubeTexture)(THIS_ UINT EdgeLength,UINT Levels,DWORD Usage,D3DFORMAT Format,D3DPOOL Pool,IDirect3DCubeTexture9** ppCubeTexture,HANDLE* pSharedHandle) PURE; - STDMETHOD(CreateVertexBuffer)(THIS_ UINT Length,DWORD Usage,DWORD FVF,D3DPOOL Pool,IDirect3DVertexBuffer9** ppVertexBuffer,HANDLE* pSharedHandle) PURE; - STDMETHOD(CreateIndexBuffer)(THIS_ UINT Length,DWORD Usage,D3DFORMAT Format,D3DPOOL Pool,IDirect3DIndexBuffer9** ppIndexBuffer,HANDLE* pSharedHandle) PURE; - STDMETHOD(CreateRenderTarget)(THIS_ UINT Width,UINT Height,D3DFORMAT Format,D3DMULTISAMPLE_TYPE MultiSample,DWORD MultisampleQuality,BOOL Lockable,IDirect3DSurface9** ppSurface,HANDLE* pSharedHandle) PURE; - STDMETHOD(CreateDepthStencilSurface)(THIS_ UINT Width,UINT Height,D3DFORMAT Format,D3DMULTISAMPLE_TYPE MultiSample,DWORD MultisampleQuality,BOOL Discard,IDirect3DSurface9** ppSurface,HANDLE* pSharedHandle) PURE; - STDMETHOD(UpdateSurface)(THIS_ IDirect3DSurface9* pSourceSurface,CONST RECT* pSourceRect,IDirect3DSurface9* pDestinationSurface,CONST POINT* pDestPoint) PURE; - STDMETHOD(UpdateTexture)(THIS_ IDirect3DBaseTexture9* pSourceTexture,IDirect3DBaseTexture9* pDestinationTexture) PURE; - STDMETHOD(GetRenderTargetData)(THIS_ IDirect3DSurface9* pRenderTarget,IDirect3DSurface9* pDestSurface) PURE; - STDMETHOD(GetFrontBufferData)(THIS_ UINT iSwapChain,IDirect3DSurface9* pDestSurface) PURE; - STDMETHOD(StretchRect)(THIS_ IDirect3DSurface9* pSourceSurface,CONST RECT* pSourceRect,IDirect3DSurface9* pDestSurface,CONST RECT* pDestRect,D3DTEXTUREFILTERTYPE Filter) PURE; - STDMETHOD(ColorFill)(THIS_ IDirect3DSurface9* pSurface,CONST RECT* pRect,D3DCOLOR color) PURE; - STDMETHOD(CreateOffscreenPlainSurface)(THIS_ UINT Width,UINT Height,D3DFORMAT Format,D3DPOOL Pool,IDirect3DSurface9** ppSurface,HANDLE* pSharedHandle) PURE; - STDMETHOD(SetRenderTarget)(THIS_ DWORD RenderTargetIndex,IDirect3DSurface9* pRenderTarget) PURE; - STDMETHOD(GetRenderTarget)(THIS_ DWORD RenderTargetIndex,IDirect3DSurface9** ppRenderTarget) PURE; - STDMETHOD(SetDepthStencilSurface)(THIS_ IDirect3DSurface9* pNewZStencil) PURE; - STDMETHOD(GetDepthStencilSurface)(THIS_ IDirect3DSurface9** ppZStencilSurface) PURE; - STDMETHOD(BeginScene)(THIS) PURE; - STDMETHOD(EndScene)(THIS) PURE; - STDMETHOD(Clear)(THIS_ DWORD Count,CONST D3DRECT* pRects,DWORD Flags,D3DCOLOR Color,float Z,DWORD Stencil) PURE; - STDMETHOD(SetTransform)(THIS_ D3DTRANSFORMSTATETYPE State,CONST D3DMATRIX* pMatrix) PURE; - STDMETHOD(GetTransform)(THIS_ D3DTRANSFORMSTATETYPE State,D3DMATRIX* pMatrix) PURE; - STDMETHOD(MultiplyTransform)(THIS_ D3DTRANSFORMSTATETYPE,CONST D3DMATRIX*) PURE; - STDMETHOD(SetViewport)(THIS_ CONST D3DVIEWPORT9* pViewport) PURE; - STDMETHOD(GetViewport)(THIS_ D3DVIEWPORT9* pViewport) PURE; - STDMETHOD(SetMaterial)(THIS_ CONST D3DMATERIAL9* pMaterial) PURE; - STDMETHOD(GetMaterial)(THIS_ D3DMATERIAL9* pMaterial) PURE; - STDMETHOD(SetLight)(THIS_ DWORD Index,CONST D3DLIGHT9*) PURE; - STDMETHOD(GetLight)(THIS_ DWORD Index,D3DLIGHT9*) PURE; - STDMETHOD(LightEnable)(THIS_ DWORD Index,BOOL Enable) PURE; - STDMETHOD(GetLightEnable)(THIS_ DWORD Index,BOOL* pEnable) PURE; - STDMETHOD(SetClipPlane)(THIS_ DWORD Index,CONST float* pPlane) PURE; - STDMETHOD(GetClipPlane)(THIS_ DWORD Index,float* pPlane) PURE; - STDMETHOD(SetRenderState)(THIS_ D3DRENDERSTATETYPE State,DWORD Value) PURE; - STDMETHOD(GetRenderState)(THIS_ D3DRENDERSTATETYPE State,DWORD* pValue) PURE; - STDMETHOD(CreateStateBlock)(THIS_ D3DSTATEBLOCKTYPE Type,IDirect3DStateBlock9** ppSB) PURE; - STDMETHOD(BeginStateBlock)(THIS) PURE; - STDMETHOD(EndStateBlock)(THIS_ IDirect3DStateBlock9** ppSB) PURE; - STDMETHOD(SetClipStatus)(THIS_ CONST D3DCLIPSTATUS9* pClipStatus) PURE; - STDMETHOD(GetClipStatus)(THIS_ D3DCLIPSTATUS9* pClipStatus) PURE; - STDMETHOD(GetTexture)(THIS_ DWORD Stage,IDirect3DBaseTexture9** ppTexture) PURE; - STDMETHOD(SetTexture)(THIS_ DWORD Stage,IDirect3DBaseTexture9* pTexture) PURE; - STDMETHOD(GetTextureStageState)(THIS_ DWORD Stage,D3DTEXTURESTAGESTATETYPE Type,DWORD* pValue) PURE; - STDMETHOD(SetTextureStageState)(THIS_ DWORD Stage,D3DTEXTURESTAGESTATETYPE Type,DWORD Value) PURE; - STDMETHOD(GetSamplerState)(THIS_ DWORD Sampler,D3DSAMPLERSTATETYPE Type,DWORD* pValue) PURE; - STDMETHOD(SetSamplerState)(THIS_ DWORD Sampler,D3DSAMPLERSTATETYPE Type,DWORD Value) PURE; - STDMETHOD(ValidateDevice)(THIS_ DWORD* pNumPasses) PURE; - STDMETHOD(SetPaletteEntries)(THIS_ UINT PaletteNumber,CONST PALETTEENTRY* pEntries) PURE; - STDMETHOD(GetPaletteEntries)(THIS_ UINT PaletteNumber,PALETTEENTRY* pEntries) PURE; - STDMETHOD(SetCurrentTexturePalette)(THIS_ UINT PaletteNumber) PURE; - STDMETHOD(GetCurrentTexturePalette)(THIS_ UINT *PaletteNumber) PURE; - STDMETHOD(SetScissorRect)(THIS_ CONST RECT* pRect) PURE; - STDMETHOD(GetScissorRect)(THIS_ RECT* pRect) PURE; - STDMETHOD(SetSoftwareVertexProcessing)(THIS_ BOOL bSoftware) PURE; - STDMETHOD_(BOOL, GetSoftwareVertexProcessing)(THIS) PURE; - STDMETHOD(SetNPatchMode)(THIS_ float nSegments) PURE; - STDMETHOD_(float, GetNPatchMode)(THIS) PURE; - STDMETHOD(DrawPrimitive)(THIS_ D3DPRIMITIVETYPE PrimitiveType,UINT StartVertex,UINT PrimitiveCount) PURE; - STDMETHOD(DrawIndexedPrimitive)(THIS_ D3DPRIMITIVETYPE,INT BaseVertexIndex,UINT MinVertexIndex,UINT NumVertices,UINT startIndex,UINT primCount) PURE; - STDMETHOD(DrawPrimitiveUP)(THIS_ D3DPRIMITIVETYPE PrimitiveType,UINT PrimitiveCount,CONST void* pVertexStreamZeroData,UINT VertexStreamZeroStride) PURE; - STDMETHOD(DrawIndexedPrimitiveUP)(THIS_ D3DPRIMITIVETYPE PrimitiveType,UINT MinVertexIndex,UINT NumVertices,UINT PrimitiveCount,CONST void* pIndexData,D3DFORMAT IndexDataFormat,CONST void* pVertexStreamZeroData,UINT VertexStreamZeroStride) PURE; - STDMETHOD(ProcessVertices)(THIS_ UINT SrcStartIndex,UINT DestIndex,UINT VertexCount,IDirect3DVertexBuffer9* pDestBuffer,IDirect3DVertexDeclaration9* pVertexDecl,DWORD Flags) PURE; - STDMETHOD(CreateVertexDeclaration)(THIS_ CONST D3DVERTEXELEMENT9* pVertexElements,IDirect3DVertexDeclaration9** ppDecl) PURE; - STDMETHOD(SetVertexDeclaration)(THIS_ IDirect3DVertexDeclaration9* pDecl) PURE; - STDMETHOD(GetVertexDeclaration)(THIS_ IDirect3DVertexDeclaration9** ppDecl) PURE; - STDMETHOD(SetFVF)(THIS_ DWORD FVF) PURE; - STDMETHOD(GetFVF)(THIS_ DWORD* pFVF) PURE; - STDMETHOD(CreateVertexShader)(THIS_ CONST DWORD* pFunction,IDirect3DVertexShader9** ppShader) PURE; - STDMETHOD(SetVertexShader)(THIS_ IDirect3DVertexShader9* pShader) PURE; - STDMETHOD(GetVertexShader)(THIS_ IDirect3DVertexShader9** ppShader) PURE; - STDMETHOD(SetVertexShaderConstantF)(THIS_ UINT StartRegister,CONST float* pConstantData,UINT Vector4fCount) PURE; - STDMETHOD(GetVertexShaderConstantF)(THIS_ UINT StartRegister,float* pConstantData,UINT Vector4fCount) PURE; - STDMETHOD(SetVertexShaderConstantI)(THIS_ UINT StartRegister,CONST int* pConstantData,UINT Vector4iCount) PURE; - STDMETHOD(GetVertexShaderConstantI)(THIS_ UINT StartRegister,int* pConstantData,UINT Vector4iCount) PURE; - STDMETHOD(SetVertexShaderConstantB)(THIS_ UINT StartRegister,CONST BOOL* pConstantData,UINT BoolCount) PURE; - STDMETHOD(GetVertexShaderConstantB)(THIS_ UINT StartRegister,BOOL* pConstantData,UINT BoolCount) PURE; - STDMETHOD(SetStreamSource)(THIS_ UINT StreamNumber,IDirect3DVertexBuffer9* pStreamData,UINT OffsetInBytes,UINT Stride) PURE; - STDMETHOD(GetStreamSource)(THIS_ UINT StreamNumber,IDirect3DVertexBuffer9** ppStreamData,UINT* pOffsetInBytes,UINT* pStride) PURE; - STDMETHOD(SetStreamSourceFreq)(THIS_ UINT StreamNumber,UINT Setting) PURE; - STDMETHOD(GetStreamSourceFreq)(THIS_ UINT StreamNumber,UINT* pSetting) PURE; - STDMETHOD(SetIndices)(THIS_ IDirect3DIndexBuffer9* pIndexData) PURE; - STDMETHOD(GetIndices)(THIS_ IDirect3DIndexBuffer9** ppIndexData) PURE; - STDMETHOD(CreatePixelShader)(THIS_ CONST DWORD* pFunction,IDirect3DPixelShader9** ppShader) PURE; - STDMETHOD(SetPixelShader)(THIS_ IDirect3DPixelShader9* pShader) PURE; - STDMETHOD(GetPixelShader)(THIS_ IDirect3DPixelShader9** ppShader) PURE; - STDMETHOD(SetPixelShaderConstantF)(THIS_ UINT StartRegister,CONST float* pConstantData,UINT Vector4fCount) PURE; - STDMETHOD(GetPixelShaderConstantF)(THIS_ UINT StartRegister,float* pConstantData,UINT Vector4fCount) PURE; - STDMETHOD(SetPixelShaderConstantI)(THIS_ UINT StartRegister,CONST int* pConstantData,UINT Vector4iCount) PURE; - STDMETHOD(GetPixelShaderConstantI)(THIS_ UINT StartRegister,int* pConstantData,UINT Vector4iCount) PURE; - STDMETHOD(SetPixelShaderConstantB)(THIS_ UINT StartRegister,CONST BOOL* pConstantData,UINT BoolCount) PURE; - STDMETHOD(GetPixelShaderConstantB)(THIS_ UINT StartRegister,BOOL* pConstantData,UINT BoolCount) PURE; - STDMETHOD(DrawRectPatch)(THIS_ UINT Handle,CONST float* pNumSegs,CONST D3DRECTPATCH_INFO* pRectPatchInfo) PURE; - STDMETHOD(DrawTriPatch)(THIS_ UINT Handle,CONST float* pNumSegs,CONST D3DTRIPATCH_INFO* pTriPatchInfo) PURE; - STDMETHOD(DeletePatch)(THIS_ UINT Handle) PURE; - STDMETHOD(CreateQuery)(THIS_ D3DQUERYTYPE Type,IDirect3DQuery9** ppQuery) PURE; - STDMETHOD(SetConvolutionMonoKernel)(THIS_ UINT width,UINT height,float* rows,float* columns) PURE; - STDMETHOD(ComposeRects)(THIS_ IDirect3DSurface9* pSrc,IDirect3DSurface9* pDst,IDirect3DVertexBuffer9* pSrcRectDescs,UINT NumRects,IDirect3DVertexBuffer9* pDstRectDescs,D3DCOMPOSERECTSOP Operation,int Xoffset,int Yoffset) PURE; - STDMETHOD(PresentEx)(THIS_ CONST RECT* pSourceRect,CONST RECT* pDestRect,HWND hDestWindowOverride,CONST RGNDATA* pDirtyRegion,DWORD dwFlags) PURE; - STDMETHOD(GetGPUThreadPriority)(THIS_ INT* pPriority) PURE; - STDMETHOD(SetGPUThreadPriority)(THIS_ INT Priority) PURE; - STDMETHOD(WaitForVBlank)(THIS_ UINT iSwapChain) PURE; - STDMETHOD(CheckResourceResidency)(THIS_ IDirect3DResource9** pResourceArray,UINT32 NumResources) PURE; - STDMETHOD(SetMaximumFrameLatency)(THIS_ UINT MaxLatency) PURE; - STDMETHOD(GetMaximumFrameLatency)(THIS_ UINT* pMaxLatency) PURE; - STDMETHOD(CheckDeviceState)(THIS_ HWND hDestinationWindow) PURE; - STDMETHOD(CreateRenderTargetEx)(THIS_ UINT Width,UINT Height,D3DFORMAT Format,D3DMULTISAMPLE_TYPE MultiSample,DWORD MultisampleQuality,BOOL Lockable,IDirect3DSurface9** ppSurface,HANDLE* pSharedHandle,DWORD Usage) PURE; - STDMETHOD(CreateOffscreenPlainSurfaceEx)(THIS_ UINT Width,UINT Height,D3DFORMAT Format,D3DPOOL Pool,IDirect3DSurface9** ppSurface,HANDLE* pSharedHandle,DWORD Usage) PURE; - STDMETHOD(CreateDepthStencilSurfaceEx)(THIS_ UINT Width,UINT Height,D3DFORMAT Format,D3DMULTISAMPLE_TYPE MultiSample,DWORD MultisampleQuality,BOOL Discard,IDirect3DSurface9** ppSurface,HANDLE* pSharedHandle,DWORD Usage) PURE; - STDMETHOD(ResetEx)(THIS_ D3DPRESENT_PARAMETERS* pPresentationParameters,D3DDISPLAYMODEEX *pFullscreenDisplayMode) PURE; - STDMETHOD(GetDisplayModeEx)(THIS_ UINT iSwapChain,D3DDISPLAYMODEEX* pMode,D3DDISPLAYROTATION* pRotation) PURE; -}; - -typedef struct IDirect3DDevice9Ex *LPDIRECT3DDEVICE9EX, *PDIRECT3DDEVICE9EX; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirect3DDevice9Ex_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirect3DDevice9Ex_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirect3DDevice9Ex_Release(p) (p)->lpVtbl->Release(p) -#define IDirect3DDevice9Ex_TestCooperativeLevel(p) (p)->lpVtbl->TestCooperativeLevel(p) -#define IDirect3DDevice9Ex_GetAvailableTextureMem(p) (p)->lpVtbl->GetAvailableTextureMem(p) -#define IDirect3DDevice9Ex_EvictManagedResources(p) (p)->lpVtbl->EvictManagedResources(p) -#define IDirect3DDevice9Ex_GetDirect3D(p,a) (p)->lpVtbl->GetDirect3D(p,a) -#define IDirect3DDevice9Ex_GetDeviceCaps(p,a) (p)->lpVtbl->GetDeviceCaps(p,a) -#define IDirect3DDevice9Ex_GetDisplayMode(p,a,b) (p)->lpVtbl->GetDisplayMode(p,a,b) -#define IDirect3DDevice9Ex_GetCreationParameters(p,a) (p)->lpVtbl->GetCreationParameters(p,a) -#define IDirect3DDevice9Ex_SetCursorProperties(p,a,b,c) (p)->lpVtbl->SetCursorProperties(p,a,b,c) -#define IDirect3DDevice9Ex_SetCursorPosition(p,a,b,c) (p)->lpVtbl->SetCursorPosition(p,a,b,c) -#define IDirect3DDevice9Ex_ShowCursor(p,a) (p)->lpVtbl->ShowCursor(p,a) -#define IDirect3DDevice9Ex_CreateAdditionalSwapChain(p,a,b) (p)->lpVtbl->CreateAdditionalSwapChain(p,a,b) -#define IDirect3DDevice9Ex_GetSwapChain(p,a,b) (p)->lpVtbl->GetSwapChain(p,a,b) -#define IDirect3DDevice9Ex_GetNumberOfSwapChains(p) (p)->lpVtbl->GetNumberOfSwapChains(p) -#define IDirect3DDevice9Ex_Reset(p,a) (p)->lpVtbl->Reset(p,a) -#define IDirect3DDevice9Ex_Present(p,a,b,c,d) (p)->lpVtbl->Present(p,a,b,c,d) -#define IDirect3DDevice9Ex_GetBackBuffer(p,a,b,c,d) (p)->lpVtbl->GetBackBuffer(p,a,b,c,d) -#define IDirect3DDevice9Ex_GetRasterStatus(p,a,b) (p)->lpVtbl->GetRasterStatus(p,a,b) -#define IDirect3DDevice9Ex_SetDialogBoxMode(p,a) (p)->lpVtbl->SetDialogBoxMode(p,a) -#define IDirect3DDevice9Ex_SetGammaRamp(p,a,b,c) (p)->lpVtbl->SetGammaRamp(p,a,b,c) -#define IDirect3DDevice9Ex_GetGammaRamp(p,a,b) (p)->lpVtbl->GetGammaRamp(p,a,b) -#define IDirect3DDevice9Ex_CreateTexture(p,a,b,c,d,e,f,g,h) (p)->lpVtbl->CreateTexture(p,a,b,c,d,e,f,g,h) -#define IDirect3DDevice9Ex_CreateVolumeTexture(p,a,b,c,d,e,f,g,h,i) (p)->lpVtbl->CreateVolumeTexture(p,a,b,c,d,e,f,g,h,i) -#define IDirect3DDevice9Ex_CreateCubeTexture(p,a,b,c,d,e,f,g) (p)->lpVtbl->CreateCubeTexture(p,a,b,c,d,e,f,g) -#define IDirect3DDevice9Ex_CreateVertexBuffer(p,a,b,c,d,e,f) (p)->lpVtbl->CreateVertexBuffer(p,a,b,c,d,e,f) -#define IDirect3DDevice9Ex_CreateIndexBuffer(p,a,b,c,d,e,f) (p)->lpVtbl->CreateIndexBuffer(p,a,b,c,d,e,f) -#define IDirect3DDevice9Ex_CreateRenderTarget(p,a,b,c,d,e,f,g,h) (p)->lpVtbl->CreateRenderTarget(p,a,b,c,d,e,f,g,h) -#define IDirect3DDevice9Ex_CreateDepthStencilSurface(p,a,b,c,d,e,f,g,h) (p)->lpVtbl->CreateDepthStencilSurface(p,a,b,c,d,e,f,g,h) -#define IDirect3DDevice9Ex_UpdateSurface(p,a,b,c,d) (p)->lpVtbl->UpdateSurface(p,a,b,c,d) -#define IDirect3DDevice9Ex_UpdateTexture(p,a,b) (p)->lpVtbl->UpdateTexture(p,a,b) -#define IDirect3DDevice9Ex_GetRenderTargetData(p,a,b) (p)->lpVtbl->GetRenderTargetData(p,a,b) -#define IDirect3DDevice9Ex_GetFrontBufferData(p,a,b) (p)->lpVtbl->GetFrontBufferData(p,a,b) -#define IDirect3DDevice9Ex_StretchRect(p,a,b,c,d,e) (p)->lpVtbl->StretchRect(p,a,b,c,d,e) -#define IDirect3DDevice9Ex_ColorFill(p,a,b,c) (p)->lpVtbl->ColorFill(p,a,b,c) -#define IDirect3DDevice9Ex_CreateOffscreenPlainSurface(p,a,b,c,d,e,f) (p)->lpVtbl->CreateOffscreenPlainSurface(p,a,b,c,d,e,f) -#define IDirect3DDevice9Ex_SetRenderTarget(p,a,b) (p)->lpVtbl->SetRenderTarget(p,a,b) -#define IDirect3DDevice9Ex_GetRenderTarget(p,a,b) (p)->lpVtbl->GetRenderTarget(p,a,b) -#define IDirect3DDevice9Ex_SetDepthStencilSurface(p,a) (p)->lpVtbl->SetDepthStencilSurface(p,a) -#define IDirect3DDevice9Ex_GetDepthStencilSurface(p,a) (p)->lpVtbl->GetDepthStencilSurface(p,a) -#define IDirect3DDevice9Ex_BeginScene(p) (p)->lpVtbl->BeginScene(p) -#define IDirect3DDevice9Ex_EndScene(p) (p)->lpVtbl->EndScene(p) -#define IDirect3DDevice9Ex_Clear(p,a,b,c,d,e,f) (p)->lpVtbl->Clear(p,a,b,c,d,e,f) -#define IDirect3DDevice9Ex_SetTransform(p,a,b) (p)->lpVtbl->SetTransform(p,a,b) -#define IDirect3DDevice9Ex_GetTransform(p,a,b) (p)->lpVtbl->GetTransform(p,a,b) -#define IDirect3DDevice9Ex_MultiplyTransform(p,a,b) (p)->lpVtbl->MultiplyTransform(p,a,b) -#define IDirect3DDevice9Ex_SetViewport(p,a) (p)->lpVtbl->SetViewport(p,a) -#define IDirect3DDevice9Ex_GetViewport(p,a) (p)->lpVtbl->GetViewport(p,a) -#define IDirect3DDevice9Ex_SetMaterial(p,a) (p)->lpVtbl->SetMaterial(p,a) -#define IDirect3DDevice9Ex_GetMaterial(p,a) (p)->lpVtbl->GetMaterial(p,a) -#define IDirect3DDevice9Ex_SetLight(p,a,b) (p)->lpVtbl->SetLight(p,a,b) -#define IDirect3DDevice9Ex_GetLight(p,a,b) (p)->lpVtbl->GetLight(p,a,b) -#define IDirect3DDevice9Ex_LightEnable(p,a,b) (p)->lpVtbl->LightEnable(p,a,b) -#define IDirect3DDevice9Ex_GetLightEnable(p,a,b) (p)->lpVtbl->GetLightEnable(p,a,b) -#define IDirect3DDevice9Ex_SetClipPlane(p,a,b) (p)->lpVtbl->SetClipPlane(p,a,b) -#define IDirect3DDevice9Ex_GetClipPlane(p,a,b) (p)->lpVtbl->GetClipPlane(p,a,b) -#define IDirect3DDevice9Ex_SetRenderState(p,a,b) (p)->lpVtbl->SetRenderState(p,a,b) -#define IDirect3DDevice9Ex_GetRenderState(p,a,b) (p)->lpVtbl->GetRenderState(p,a,b) -#define IDirect3DDevice9Ex_CreateStateBlock(p,a,b) (p)->lpVtbl->CreateStateBlock(p,a,b) -#define IDirect3DDevice9Ex_BeginStateBlock(p) (p)->lpVtbl->BeginStateBlock(p) -#define IDirect3DDevice9Ex_EndStateBlock(p,a) (p)->lpVtbl->EndStateBlock(p,a) -#define IDirect3DDevice9Ex_SetClipStatus(p,a) (p)->lpVtbl->SetClipStatus(p,a) -#define IDirect3DDevice9Ex_GetClipStatus(p,a) (p)->lpVtbl->GetClipStatus(p,a) -#define IDirect3DDevice9Ex_GetTexture(p,a,b) (p)->lpVtbl->GetTexture(p,a,b) -#define IDirect3DDevice9Ex_SetTexture(p,a,b) (p)->lpVtbl->SetTexture(p,a,b) -#define IDirect3DDevice9Ex_GetTextureStageState(p,a,b,c) (p)->lpVtbl->GetTextureStageState(p,a,b,c) -#define IDirect3DDevice9Ex_SetTextureStageState(p,a,b,c) (p)->lpVtbl->SetTextureStageState(p,a,b,c) -#define IDirect3DDevice9Ex_GetSamplerState(p,a,b,c) (p)->lpVtbl->GetSamplerState(p,a,b,c) -#define IDirect3DDevice9Ex_SetSamplerState(p,a,b,c) (p)->lpVtbl->SetSamplerState(p,a,b,c) -#define IDirect3DDevice9Ex_ValidateDevice(p,a) (p)->lpVtbl->ValidateDevice(p,a) -#define IDirect3DDevice9Ex_SetPaletteEntries(p,a,b) (p)->lpVtbl->SetPaletteEntries(p,a,b) -#define IDirect3DDevice9Ex_GetPaletteEntries(p,a,b) (p)->lpVtbl->GetPaletteEntries(p,a,b) -#define IDirect3DDevice9Ex_SetCurrentTexturePalette(p,a) (p)->lpVtbl->SetCurrentTexturePalette(p,a) -#define IDirect3DDevice9Ex_GetCurrentTexturePalette(p,a) (p)->lpVtbl->GetCurrentTexturePalette(p,a) -#define IDirect3DDevice9Ex_SetScissorRect(p,a) (p)->lpVtbl->SetScissorRect(p,a) -#define IDirect3DDevice9Ex_GetScissorRect(p,a) (p)->lpVtbl->GetScissorRect(p,a) -#define IDirect3DDevice9Ex_SetSoftwareVertexProcessing(p,a) (p)->lpVtbl->SetSoftwareVertexProcessing(p,a) -#define IDirect3DDevice9Ex_GetSoftwareVertexProcessing(p) (p)->lpVtbl->GetSoftwareVertexProcessing(p) -#define IDirect3DDevice9Ex_SetNPatchMode(p,a) (p)->lpVtbl->SetNPatchMode(p,a) -#define IDirect3DDevice9Ex_GetNPatchMode(p) (p)->lpVtbl->GetNPatchMode(p) -#define IDirect3DDevice9Ex_DrawPrimitive(p,a,b,c) (p)->lpVtbl->DrawPrimitive(p,a,b,c) -#define IDirect3DDevice9Ex_DrawIndexedPrimitive(p,a,b,c,d,e,f) (p)->lpVtbl->DrawIndexedPrimitive(p,a,b,c,d,e,f) -#define IDirect3DDevice9Ex_DrawPrimitiveUP(p,a,b,c,d) (p)->lpVtbl->DrawPrimitiveUP(p,a,b,c,d) -#define IDirect3DDevice9Ex_DrawIndexedPrimitiveUP(p,a,b,c,d,e,f,g,h) (p)->lpVtbl->DrawIndexedPrimitiveUP(p,a,b,c,d,e,f,g,h) -#define IDirect3DDevice9Ex_ProcessVertices(p,a,b,c,d,e,f) (p)->lpVtbl->ProcessVertices(p,a,b,c,d,e,f) -#define IDirect3DDevice9Ex_CreateVertexDeclaration(p,a,b) (p)->lpVtbl->CreateVertexDeclaration(p,a,b) -#define IDirect3DDevice9Ex_SetVertexDeclaration(p,a) (p)->lpVtbl->SetVertexDeclaration(p,a) -#define IDirect3DDevice9Ex_GetVertexDeclaration(p,a) (p)->lpVtbl->GetVertexDeclaration(p,a) -#define IDirect3DDevice9Ex_SetFVF(p,a) (p)->lpVtbl->SetFVF(p,a) -#define IDirect3DDevice9Ex_GetFVF(p,a) (p)->lpVtbl->GetFVF(p,a) -#define IDirect3DDevice9Ex_CreateVertexShader(p,a,b) (p)->lpVtbl->CreateVertexShader(p,a,b) -#define IDirect3DDevice9Ex_SetVertexShader(p,a) (p)->lpVtbl->SetVertexShader(p,a) -#define IDirect3DDevice9Ex_GetVertexShader(p,a) (p)->lpVtbl->GetVertexShader(p,a) -#define IDirect3DDevice9Ex_SetVertexShaderConstantF(p,a,b,c) (p)->lpVtbl->SetVertexShaderConstantF(p,a,b,c) -#define IDirect3DDevice9Ex_GetVertexShaderConstantF(p,a,b,c) (p)->lpVtbl->GetVertexShaderConstantF(p,a,b,c) -#define IDirect3DDevice9Ex_SetVertexShaderConstantI(p,a,b,c) (p)->lpVtbl->SetVertexShaderConstantI(p,a,b,c) -#define IDirect3DDevice9Ex_GetVertexShaderConstantI(p,a,b,c) (p)->lpVtbl->GetVertexShaderConstantI(p,a,b,c) -#define IDirect3DDevice9Ex_SetVertexShaderConstantB(p,a,b,c) (p)->lpVtbl->SetVertexShaderConstantB(p,a,b,c) -#define IDirect3DDevice9Ex_GetVertexShaderConstantB(p,a,b,c) (p)->lpVtbl->GetVertexShaderConstantB(p,a,b,c) -#define IDirect3DDevice9Ex_SetStreamSource(p,a,b,c,d) (p)->lpVtbl->SetStreamSource(p,a,b,c,d) -#define IDirect3DDevice9Ex_GetStreamSource(p,a,b,c,d) (p)->lpVtbl->GetStreamSource(p,a,b,c,d) -#define IDirect3DDevice9Ex_SetStreamSourceFreq(p,a,b) (p)->lpVtbl->SetStreamSourceFreq(p,a,b) -#define IDirect3DDevice9Ex_GetStreamSourceFreq(p,a,b) (p)->lpVtbl->GetStreamSourceFreq(p,a,b) -#define IDirect3DDevice9Ex_SetIndices(p,a) (p)->lpVtbl->SetIndices(p,a) -#define IDirect3DDevice9Ex_GetIndices(p,a) (p)->lpVtbl->GetIndices(p,a) -#define IDirect3DDevice9Ex_CreatePixelShader(p,a,b) (p)->lpVtbl->CreatePixelShader(p,a,b) -#define IDirect3DDevice9Ex_SetPixelShader(p,a) (p)->lpVtbl->SetPixelShader(p,a) -#define IDirect3DDevice9Ex_GetPixelShader(p,a) (p)->lpVtbl->GetPixelShader(p,a) -#define IDirect3DDevice9Ex_SetPixelShaderConstantF(p,a,b,c) (p)->lpVtbl->SetPixelShaderConstantF(p,a,b,c) -#define IDirect3DDevice9Ex_GetPixelShaderConstantF(p,a,b,c) (p)->lpVtbl->GetPixelShaderConstantF(p,a,b,c) -#define IDirect3DDevice9Ex_SetPixelShaderConstantI(p,a,b,c) (p)->lpVtbl->SetPixelShaderConstantI(p,a,b,c) -#define IDirect3DDevice9Ex_GetPixelShaderConstantI(p,a,b,c) (p)->lpVtbl->GetPixelShaderConstantI(p,a,b,c) -#define IDirect3DDevice9Ex_SetPixelShaderConstantB(p,a,b,c) (p)->lpVtbl->SetPixelShaderConstantB(p,a,b,c) -#define IDirect3DDevice9Ex_GetPixelShaderConstantB(p,a,b,c) (p)->lpVtbl->GetPixelShaderConstantB(p,a,b,c) -#define IDirect3DDevice9Ex_DrawRectPatch(p,a,b,c) (p)->lpVtbl->DrawRectPatch(p,a,b,c) -#define IDirect3DDevice9Ex_DrawTriPatch(p,a,b,c) (p)->lpVtbl->DrawTriPatch(p,a,b,c) -#define IDirect3DDevice9Ex_DeletePatch(p,a) (p)->lpVtbl->DeletePatch(p,a) -#define IDirect3DDevice9Ex_CreateQuery(p,a,b) (p)->lpVtbl->CreateQuery(p,a,b) -#define IDirect3DDevice9Ex_SetConvolutionMonoKernel(p,a,b,c,d) (p)->lpVtbl->SetConvolutionMonoKernel(p,a,b,c,d) -#define IDirect3DDevice9Ex_ComposeRects(p,a,b,c,d,e,f,g,h) (p)->lpVtbl->ComposeRects(p,a,b,c,d,e,f,g,h) -#define IDirect3DDevice9Ex_PresentEx(p,a,b,c,d,e) (p)->lpVtbl->PresentEx(p,a,b,c,d,e) -#define IDirect3DDevice9Ex_GetGPUThreadPriority(p,a) (p)->lpVtbl->GetGPUThreadPriority(p,a) -#define IDirect3DDevice9Ex_SetGPUThreadPriority(p,a) (p)->lpVtbl->SetGPUThreadPriority(p,a) -#define IDirect3DDevice9Ex_WaitForVBlank(p,a) (p)->lpVtbl->WaitForVBlank(p,a) -#define IDirect3DDevice9Ex_CheckResourceResidency(p,a,b) (p)->lpVtbl->CheckResourceResidency(p,a,b) -#define IDirect3DDevice9Ex_SetMaximumFrameLatency(p,a) (p)->lpVtbl->SetMaximumFrameLatency(p,a) -#define IDirect3DDevice9Ex_GetMaximumFrameLatency(p,a) (p)->lpVtbl->GetMaximumFrameLatency(p,a) -#define IDirect3DDevice9Ex_CheckDeviceState(p,a) (p)->lpVtbl->CheckDeviceState(p,a) -#define IDirect3DDevice9Ex_CreateRenderTargetEx(p,a,b,c,d,e,f,g,h,i) (p)->lpVtbl->CreateRenderTargetEx(p,a,b,c,d,e,f,g,h,i) -#define IDirect3DDevice9Ex_CreateOffscreenPlainSurfaceEx(p,a,b,c,d,e,f,g) (p)->lpVtbl->CreateOffscreenPlainSurfaceEx(p,a,b,c,d,e,f,g) -#define IDirect3DDevice9Ex_CreateDepthStencilSurfaceEx(p,a,b,c,d,e,f,g,h,i) (p)->lpVtbl->CreateDepthStencilSurfaceEx(p,a,b,c,d,e,f,g,h,i) -#define IDirect3DDevice9Ex_ResetEx(p,a,b) (p)->lpVtbl->ResetEx(p,a,b) -#define IDirect3DDevice9Ex_GetDisplayModeEx(p,a,b,c) (p)->lpVtbl->GetDisplayModeEx(p,a,b,c) -#else -#define IDirect3DDevice9Ex_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirect3DDevice9Ex_AddRef(p) (p)->AddRef() -#define IDirect3DDevice9Ex_Release(p) (p)->Release() -#define IDirect3DDevice9Ex_TestCooperativeLevel(p) (p)->TestCooperativeLevel() -#define IDirect3DDevice9Ex_GetAvailableTextureMem(p) (p)->GetAvailableTextureMem() -#define IDirect3DDevice9Ex_EvictManagedResources(p) (p)->EvictManagedResources() -#define IDirect3DDevice9Ex_GetDirect3D(p,a) (p)->GetDirect3D(a) -#define IDirect3DDevice9Ex_GetDeviceCaps(p,a) (p)->GetDeviceCaps(a) -#define IDirect3DDevice9Ex_GetDisplayMode(p,a,b) (p)->GetDisplayMode(a,b) -#define IDirect3DDevice9Ex_GetCreationParameters(p,a) (p)->GetCreationParameters(a) -#define IDirect3DDevice9Ex_SetCursorProperties(p,a,b,c) (p)->SetCursorProperties(a,b,c) -#define IDirect3DDevice9Ex_SetCursorPosition(p,a,b,c) (p)->SetCursorPosition(a,b,c) -#define IDirect3DDevice9Ex_ShowCursor(p,a) (p)->ShowCursor(a) -#define IDirect3DDevice9Ex_CreateAdditionalSwapChain(p,a,b) (p)->CreateAdditionalSwapChain(a,b) -#define IDirect3DDevice9Ex_GetSwapChain(p,a,b) (p)->GetSwapChain(a,b) -#define IDirect3DDevice9Ex_GetNumberOfSwapChains(p) (p)->GetNumberOfSwapChains() -#define IDirect3DDevice9Ex_Reset(p,a) (p)->Reset(a) -#define IDirect3DDevice9Ex_Present(p,a,b,c,d) (p)->Present(a,b,c,d) -#define IDirect3DDevice9Ex_GetBackBuffer(p,a,b,c,d) (p)->GetBackBuffer(a,b,c,d) -#define IDirect3DDevice9Ex_GetRasterStatus(p,a,b) (p)->GetRasterStatus(a,b) -#define IDirect3DDevice9Ex_SetDialogBoxMode(p,a) (p)->SetDialogBoxMode(a) -#define IDirect3DDevice9Ex_SetGammaRamp(p,a,b,c) (p)->SetGammaRamp(a,b,c) -#define IDirect3DDevice9Ex_GetGammaRamp(p,a,b) (p)->GetGammaRamp(a,b) -#define IDirect3DDevice9Ex_CreateTexture(p,a,b,c,d,e,f,g,h) (p)->CreateTexture(a,b,c,d,e,f,g,h) -#define IDirect3DDevice9Ex_CreateVolumeTexture(p,a,b,c,d,e,f,g,h,i) (p)->CreateVolumeTexture(a,b,c,d,e,f,g,h,i) -#define IDirect3DDevice9Ex_CreateCubeTexture(p,a,b,c,d,e,f,g) (p)->CreateCubeTexture(a,b,c,d,e,f,g) -#define IDirect3DDevice9Ex_CreateVertexBuffer(p,a,b,c,d,e,f) (p)->CreateVertexBuffer(a,b,c,d,e,f) -#define IDirect3DDevice9Ex_CreateIndexBuffer(p,a,b,c,d,e,f) (p)->CreateIndexBuffer(a,b,c,d,e,f) -#define IDirect3DDevice9Ex_CreateRenderTarget(p,a,b,c,d,e,f,g,h) (p)->CreateRenderTarget(a,b,c,d,e,f,g,h) -#define IDirect3DDevice9Ex_CreateDepthStencilSurface(p,a,b,c,d,e,f,g,h) (p)->CreateDepthStencilSurface(a,b,c,d,e,f,g,h) -#define IDirect3DDevice9Ex_UpdateSurface(p,a,b,c,d) (p)->UpdateSurface(a,b,c,d) -#define IDirect3DDevice9Ex_UpdateTexture(p,a,b) (p)->UpdateTexture(a,b) -#define IDirect3DDevice9Ex_GetRenderTargetData(p,a,b) (p)->GetRenderTargetData(a,b) -#define IDirect3DDevice9Ex_GetFrontBufferData(p,a,b) (p)->GetFrontBufferData(a,b) -#define IDirect3DDevice9Ex_StretchRect(p,a,b,c,d,e) (p)->StretchRect(a,b,c,d,e) -#define IDirect3DDevice9Ex_ColorFill(p,a,b,c) (p)->ColorFill(a,b,c) -#define IDirect3DDevice9Ex_CreateOffscreenPlainSurface(p,a,b,c,d,e,f) (p)->CreateOffscreenPlainSurface(a,b,c,d,e,f) -#define IDirect3DDevice9Ex_SetRenderTarget(p,a,b) (p)->SetRenderTarget(a,b) -#define IDirect3DDevice9Ex_GetRenderTarget(p,a,b) (p)->GetRenderTarget(a,b) -#define IDirect3DDevice9Ex_SetDepthStencilSurface(p,a) (p)->SetDepthStencilSurface(a) -#define IDirect3DDevice9Ex_GetDepthStencilSurface(p,a) (p)->GetDepthStencilSurface(a) -#define IDirect3DDevice9Ex_BeginScene(p) (p)->BeginScene() -#define IDirect3DDevice9Ex_EndScene(p) (p)->EndScene() -#define IDirect3DDevice9Ex_Clear(p,a,b,c,d,e,f) (p)->Clear(a,b,c,d,e,f) -#define IDirect3DDevice9Ex_SetTransform(p,a,b) (p)->SetTransform(a,b) -#define IDirect3DDevice9Ex_GetTransform(p,a,b) (p)->GetTransform(a,b) -#define IDirect3DDevice9Ex_MultiplyTransform(p,a,b) (p)->MultiplyTransform(a,b) -#define IDirect3DDevice9Ex_SetViewport(p,a) (p)->SetViewport(a) -#define IDirect3DDevice9Ex_GetViewport(p,a) (p)->GetViewport(a) -#define IDirect3DDevice9Ex_SetMaterial(p,a) (p)->SetMaterial(a) -#define IDirect3DDevice9Ex_GetMaterial(p,a) (p)->GetMaterial(a) -#define IDirect3DDevice9Ex_SetLight(p,a,b) (p)->SetLight(a,b) -#define IDirect3DDevice9Ex_GetLight(p,a,b) (p)->GetLight(a,b) -#define IDirect3DDevice9Ex_LightEnable(p,a,b) (p)->LightEnable(a,b) -#define IDirect3DDevice9Ex_GetLightEnable(p,a,b) (p)->GetLightEnable(a,b) -#define IDirect3DDevice9Ex_SetClipPlane(p,a,b) (p)->SetClipPlane(a,b) -#define IDirect3DDevice9Ex_GetClipPlane(p,a,b) (p)->GetClipPlane(a,b) -#define IDirect3DDevice9Ex_SetRenderState(p,a,b) (p)->SetRenderState(a,b) -#define IDirect3DDevice9Ex_GetRenderState(p,a,b) (p)->GetRenderState(a,b) -#define IDirect3DDevice9Ex_CreateStateBlock(p,a,b) (p)->CreateStateBlock(a,b) -#define IDirect3DDevice9Ex_BeginStateBlock(p) (p)->BeginStateBlock() -#define IDirect3DDevice9Ex_EndStateBlock(p,a) (p)->EndStateBlock(a) -#define IDirect3DDevice9Ex_SetClipStatus(p,a) (p)->SetClipStatus(a) -#define IDirect3DDevice9Ex_GetClipStatus(p,a) (p)->GetClipStatus(a) -#define IDirect3DDevice9Ex_GetTexture(p,a,b) (p)->GetTexture(a,b) -#define IDirect3DDevice9Ex_SetTexture(p,a,b) (p)->SetTexture(a,b) -#define IDirect3DDevice9Ex_GetTextureStageState(p,a,b,c) (p)->GetTextureStageState(a,b,c) -#define IDirect3DDevice9Ex_SetTextureStageState(p,a,b,c) (p)->SetTextureStageState(a,b,c) -#define IDirect3DDevice9Ex_GetSamplerState(p,a,b,c) (p)->GetSamplerState(a,b,c) -#define IDirect3DDevice9Ex_SetSamplerState(p,a,b,c) (p)->SetSamplerState(a,b,c) -#define IDirect3DDevice9Ex_ValidateDevice(p,a) (p)->ValidateDevice(a) -#define IDirect3DDevice9Ex_SetPaletteEntries(p,a,b) (p)->SetPaletteEntries(a,b) -#define IDirect3DDevice9Ex_GetPaletteEntries(p,a,b) (p)->GetPaletteEntries(a,b) -#define IDirect3DDevice9Ex_SetCurrentTexturePalette(p,a) (p)->SetCurrentTexturePalette(a) -#define IDirect3DDevice9Ex_GetCurrentTexturePalette(p,a) (p)->GetCurrentTexturePalette(a) -#define IDirect3DDevice9Ex_SetScissorRect(p,a) (p)->SetScissorRect(a) -#define IDirect3DDevice9Ex_GetScissorRect(p,a) (p)->GetScissorRect(a) -#define IDirect3DDevice9Ex_SetSoftwareVertexProcessing(p,a) (p)->SetSoftwareVertexProcessing(a) -#define IDirect3DDevice9Ex_GetSoftwareVertexProcessing(p) (p)->GetSoftwareVertexProcessing() -#define IDirect3DDevice9Ex_SetNPatchMode(p,a) (p)->SetNPatchMode(a) -#define IDirect3DDevice9Ex_GetNPatchMode(p) (p)->GetNPatchMode() -#define IDirect3DDevice9Ex_DrawPrimitive(p,a,b,c) (p)->DrawPrimitive(a,b,c) -#define IDirect3DDevice9Ex_DrawIndexedPrimitive(p,a,b,c,d,e,f) (p)->DrawIndexedPrimitive(a,b,c,d,e,f) -#define IDirect3DDevice9Ex_DrawPrimitiveUP(p,a,b,c,d) (p)->DrawPrimitiveUP(a,b,c,d) -#define IDirect3DDevice9Ex_DrawIndexedPrimitiveUP(p,a,b,c,d,e,f,g,h) (p)->DrawIndexedPrimitiveUP(a,b,c,d,e,f,g,h) -#define IDirect3DDevice9Ex_ProcessVertices(p,a,b,c,d,e,f) (p)->ProcessVertices(a,b,c,d,e,f) -#define IDirect3DDevice9Ex_CreateVertexDeclaration(p,a,b) (p)->CreateVertexDeclaration(a,b) -#define IDirect3DDevice9Ex_SetVertexDeclaration(p,a) (p)->SetVertexDeclaration(a) -#define IDirect3DDevice9Ex_GetVertexDeclaration(p,a) (p)->GetVertexDeclaration(a) -#define IDirect3DDevice9Ex_SetFVF(p,a) (p)->SetFVF(a) -#define IDirect3DDevice9Ex_GetFVF(p,a) (p)->GetFVF(a) -#define IDirect3DDevice9Ex_CreateVertexShader(p,a,b) (p)->CreateVertexShader(a,b) -#define IDirect3DDevice9Ex_SetVertexShader(p,a) (p)->SetVertexShader(a) -#define IDirect3DDevice9Ex_GetVertexShader(p,a) (p)->GetVertexShader(a) -#define IDirect3DDevice9Ex_SetVertexShaderConstantF(p,a,b,c) (p)->SetVertexShaderConstantF(a,b,c) -#define IDirect3DDevice9Ex_GetVertexShaderConstantF(p,a,b,c) (p)->GetVertexShaderConstantF(a,b,c) -#define IDirect3DDevice9Ex_SetVertexShaderConstantI(p,a,b,c) (p)->SetVertexShaderConstantI(a,b,c) -#define IDirect3DDevice9Ex_GetVertexShaderConstantI(p,a,b,c) (p)->GetVertexShaderConstantI(a,b,c) -#define IDirect3DDevice9Ex_SetVertexShaderConstantB(p,a,b,c) (p)->SetVertexShaderConstantB(a,b,c) -#define IDirect3DDevice9Ex_GetVertexShaderConstantB(p,a,b,c) (p)->GetVertexShaderConstantB(a,b,c) -#define IDirect3DDevice9Ex_SetStreamSource(p,a,b,c,d) (p)->SetStreamSource(a,b,c,d) -#define IDirect3DDevice9Ex_GetStreamSource(p,a,b,c,d) (p)->GetStreamSource(a,b,c,d) -#define IDirect3DDevice9Ex_SetStreamSourceFreq(p,a,b) (p)->SetStreamSourceFreq(a,b) -#define IDirect3DDevice9Ex_GetStreamSourceFreq(p,a,b) (p)->GetStreamSourceFreq(a,b) -#define IDirect3DDevice9Ex_SetIndices(p,a) (p)->SetIndices(a) -#define IDirect3DDevice9Ex_GetIndices(p,a) (p)->GetIndices(a) -#define IDirect3DDevice9Ex_CreatePixelShader(p,a,b) (p)->CreatePixelShader(a,b) -#define IDirect3DDevice9Ex_SetPixelShader(p,a) (p)->SetPixelShader(a) -#define IDirect3DDevice9Ex_GetPixelShader(p,a) (p)->GetPixelShader(a) -#define IDirect3DDevice9Ex_SetPixelShaderConstantF(p,a,b,c) (p)->SetPixelShaderConstantF(a,b,c) -#define IDirect3DDevice9Ex_GetPixelShaderConstantF(p,a,b,c) (p)->GetPixelShaderConstantF(a,b,c) -#define IDirect3DDevice9Ex_SetPixelShaderConstantI(p,a,b,c) (p)->SetPixelShaderConstantI(a,b,c) -#define IDirect3DDevice9Ex_GetPixelShaderConstantI(p,a,b,c) (p)->GetPixelShaderConstantI(a,b,c) -#define IDirect3DDevice9Ex_SetPixelShaderConstantB(p,a,b,c) (p)->SetPixelShaderConstantB(a,b,c) -#define IDirect3DDevice9Ex_GetPixelShaderConstantB(p,a,b,c) (p)->GetPixelShaderConstantB(a,b,c) -#define IDirect3DDevice9Ex_DrawRectPatch(p,a,b,c) (p)->DrawRectPatch(a,b,c) -#define IDirect3DDevice9Ex_DrawTriPatch(p,a,b,c) (p)->DrawTriPatch(a,b,c) -#define IDirect3DDevice9Ex_DeletePatch(p,a) (p)->DeletePatch(a) -#define IDirect3DDevice9Ex_CreateQuery(p,a,b) (p)->CreateQuery(a,b) -#define IDirect3DDevice9Ex_SetConvolutionMonoKernel(p,a,b,c,d) (p)->SetConvolutionMonoKernel(a,b,c,d) -#define IDirect3DDevice9Ex_ComposeRects(p,a,b,c,d,e,f,g,h) (p)->ComposeRects(a,b,c,d,e,f,g,h) -#define IDirect3DDevice9Ex_PresentEx(p,a,b,c,d,e) (p)->PresentEx(a,b,c,d,e) -#define IDirect3DDevice9Ex_GetGPUThreadPriority(p,a) (p)->GetGPUThreadPriority(a) -#define IDirect3DDevice9Ex_SetGPUThreadPriority(p,a) (p)->SetGPUThreadPriority(a) -#define IDirect3DDevice9Ex_WaitForVBlank(p,a) (p)->WaitForVBlank(a) -#define IDirect3DDevice9Ex_CheckResourceResidency(p,a,b) (p)->CheckResourceResidency(a,b) -#define IDirect3DDevice9Ex_SetMaximumFrameLatency(p,a) (p)->SetMaximumFrameLatency(a) -#define IDirect3DDevice9Ex_GetMaximumFrameLatency(p,a) (p)->GetMaximumFrameLatency(a) -#define IDirect3DDevice9Ex_CheckDeviceState(p,a) (p)->CheckDeviceState(a) -#define IDirect3DDevice9Ex_CreateRenderTargetEx(p,a,b,c,d,e,f,g,h,i) (p)->CreateRenderTargetEx(a,b,c,d,e,f,g,h,i) -#define IDirect3DDevice9Ex_CreateOffscreenPlainSurfaceEx(p,a,b,c,d,e,f,g) (p)->CreateOffscreenPlainSurfaceEx(a,b,c,d,e,f,g) -#define IDirect3DDevice9Ex_CreateDepthStencilSurfaceEx(p,a,b,c,d,e,f,g,h,i) (p)->CreateDepthStencilSurfaceEx(a,b,c,d,e,f,g,h,i) -#define IDirect3DDevice9Ex_ResetEx(p,a,b) (p)->ResetEx(a,b) -#define IDirect3DDevice9Ex_GetDisplayModeEx(p,a,b,c) (p)->GetDisplayModeEx(a,b,c) -#endif - - - -#undef INTERFACE -#define INTERFACE IDirect3DSwapChain9Ex - -DECLARE_INTERFACE_(IDirect3DSwapChain9Ex, IDirect3DSwapChain9) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, void** ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirect3DSwapChain9 methods ***/ - STDMETHOD(Present)(THIS_ CONST RECT* pSourceRect,CONST RECT* pDestRect,HWND hDestWindowOverride,CONST RGNDATA* pDirtyRegion,DWORD dwFlags) PURE; - STDMETHOD(GetFrontBufferData)(THIS_ IDirect3DSurface9* pDestSurface) PURE; - STDMETHOD(GetBackBuffer)(THIS_ UINT iBackBuffer,D3DBACKBUFFER_TYPE Type,IDirect3DSurface9** ppBackBuffer) PURE; - STDMETHOD(GetRasterStatus)(THIS_ D3DRASTER_STATUS* pRasterStatus) PURE; - STDMETHOD(GetDisplayMode)(THIS_ D3DDISPLAYMODE* pMode) PURE; - STDMETHOD(GetDevice)(THIS_ IDirect3DDevice9** ppDevice) PURE; - STDMETHOD(GetPresentParameters)(THIS_ D3DPRESENT_PARAMETERS* pPresentationParameters) PURE; - STDMETHOD(GetLastPresentCount)(THIS_ UINT* pLastPresentCount) PURE; - STDMETHOD(GetPresentStats)(THIS_ D3DPRESENTSTATS* pPresentationStatistics) PURE; - STDMETHOD(GetDisplayModeEx)(THIS_ D3DDISPLAYMODEEX* pMode,D3DDISPLAYROTATION* pRotation) PURE; -}; - -typedef struct IDirect3DSwapChain9Ex *LPDIRECT3DSWAPCHAIN9EX, *PDIRECT3DSWAPCHAIN9EX; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirect3DSwapChain9Ex_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirect3DSwapChain9Ex_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirect3DSwapChain9Ex_Release(p) (p)->lpVtbl->Release(p) -#define IDirect3DSwapChain9Ex_Present(p,a,b,c,d,e) (p)->lpVtbl->Present(p,a,b,c,d,e) -#define IDirect3DSwapChain9Ex_GetFrontBufferData(p,a) (p)->lpVtbl->GetFrontBufferData(p,a) -#define IDirect3DSwapChain9Ex_GetBackBuffer(p,a,b,c) (p)->lpVtbl->GetBackBuffer(p,a,b,c) -#define IDirect3DSwapChain9Ex_GetRasterStatus(p,a) (p)->lpVtbl->GetRasterStatus(p,a) -#define IDirect3DSwapChain9Ex_GetDisplayMode(p,a) (p)->lpVtbl->GetDisplayMode(p,a) -#define IDirect3DSwapChain9Ex_GetDevice(p,a) (p)->lpVtbl->GetDevice(p,a) -#define IDirect3DSwapChain9Ex_GetPresentParameters(p,a) (p)->lpVtbl->GetPresentParameters(p,a) -#define IDirect3DSwapChain9Ex_GetLastPresentCount(p,a) (p)->lpVtbl->GetLastPresentCount(p,a) -#define IDirect3DSwapChain9Ex_GetPresentStats(p,a) (p)->lpVtbl->GetPresentStats(p,a) -#define IDirect3DSwapChain9Ex_GetDisplayModeEx(p,a,b) (p)->lpVtbl->GetDisplayModeEx(p,a,b) -#else -#define IDirect3DSwapChain9Ex_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirect3DSwapChain9Ex_AddRef(p) (p)->AddRef() -#define IDirect3DSwapChain9Ex_Release(p) (p)->Release() -#define IDirect3DSwapChain9Ex_Present(p,a,b,c,d,e) (p)->Present(a,b,c,d,e) -#define IDirect3DSwapChain9Ex_GetFrontBufferData(p,a) (p)->GetFrontBufferData(a) -#define IDirect3DSwapChain9Ex_GetBackBuffer(p,a,b,c) (p)->GetBackBuffer(a,b,c) -#define IDirect3DSwapChain9Ex_GetRasterStatus(p,a) (p)->GetRasterStatus(a) -#define IDirect3DSwapChain9Ex_GetDisplayMode(p,a) (p)->GetDisplayMode(a) -#define IDirect3DSwapChain9Ex_GetDevice(p,a) (p)->GetDevice(a) -#define IDirect3DSwapChain9Ex_GetPresentParameters(p,a) (p)->GetPresentParameters(a) -#define IDirect3DSwapChain9Ex_GetLastPresentCount(p,a) (p)->GetLastPresentCount(a) -#define IDirect3DSwapChain9Ex_GetPresentStats(p,a) (p)->GetPresentStats(a) -#define IDirect3DSwapChain9Ex_GetDisplayModeEx(p,a,b) (p)->GetDisplayModeEx(a,b) -#endif - -#endif // !D3D_DISABLE_9EX -/* -- D3D9Ex only */ - - - -/* D3D9Ex only -- */ -#if !defined(D3D_DISABLE_9EX) - - - -#undef INTERFACE -#define INTERFACE IDirect3D9ExOverlayExtension - -DECLARE_INTERFACE_(IDirect3D9ExOverlayExtension, IUnknown) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, void** ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirect3D9ExOverlayExtension methods ***/ - STDMETHOD(CheckDeviceOverlayType)(THIS_ UINT Adapter,D3DDEVTYPE DevType,UINT OverlayWidth,UINT OverlayHeight,D3DFORMAT OverlayFormat,D3DDISPLAYMODEEX* pDisplayMode,D3DDISPLAYROTATION DisplayRotation,D3DOVERLAYCAPS* pOverlayCaps) PURE; -}; - -typedef struct IDirect3D9ExOverlayExtension *LPDIRECT3D9EXOVERLAYEXTENSION, *PDIRECT3D9EXOVERLAYEXTENSION; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirect3D9ExOverlayExtension_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirect3D9ExOverlayExtension_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirect3D9ExOverlayExtension_Release(p) (p)->lpVtbl->Release(p) -#define IDirect3D9ExOverlayExtension_CheckDeviceOverlayType(p,a,b,c,d,e,f,g,h) (p)->lpVtbl->CheckDeviceOverlayType(p,a,b,c,d,e,f,g,h) -#else -#define IDirect3D9ExOverlayExtension_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirect3D9ExOverlayExtension_AddRef(p) (p)->AddRef() -#define IDirect3D9ExOverlayExtension_Release(p) (p)->Release() -#define IDirect3D9ExOverlayExtension_CheckDeviceOverlayType(p,a,b,c,d,e,f,g,h) (p)->CheckDeviceOverlayType(a,b,c,d,e,f,g,h) -#endif - - - -#undef INTERFACE -#define INTERFACE IDirect3DDevice9Video - -DECLARE_INTERFACE_(IDirect3DDevice9Video, IUnknown) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, void** ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirect3DDevice9Video methods ***/ - STDMETHOD(GetContentProtectionCaps)(THIS_ CONST GUID* pCryptoType,CONST GUID* pDecodeProfile,D3DCONTENTPROTECTIONCAPS* pCaps) PURE; - STDMETHOD(CreateAuthenticatedChannel)(THIS_ D3DAUTHENTICATEDCHANNELTYPE ChannelType,IDirect3DAuthenticatedChannel9** ppAuthenticatedChannel,HANDLE* pChannelHandle) PURE; - STDMETHOD(CreateCryptoSession)(THIS_ CONST GUID* pCryptoType,CONST GUID* pDecodeProfile,IDirect3DCryptoSession9** ppCryptoSession,HANDLE* pCryptoHandle) PURE; -}; - -typedef struct IDirect3DDevice9Video *LPDIRECT3DDEVICE9VIDEO, *PDIRECT3DDEVICE9VIDEO; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirect3DDevice9Video_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirect3DDevice9Video_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirect3DDevice9Video_Release(p) (p)->lpVtbl->Release(p) -#define IDirect3DDevice9Video_GetContentProtectionCaps(p,a,b,c) (p)->lpVtbl->GetContentProtectionCaps(p,a,b,c) -#define IDirect3DDevice9Video_CreateAuthenticatedChannel(p,a,b,c) (p)->lpVtbl->CreateAuthenticatedChannel(p,a,b,c) -#define IDirect3DDevice9Video_CreateCryptoSession(p,a,b,c,d) (p)->lpVtbl->CreateCryptoSession(p,a,b,c,d) -#else -#define IDirect3DDevice9Video_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirect3DDevice9Video_AddRef(p) (p)->AddRef() -#define IDirect3DDevice9Video_Release(p) (p)->Release() -#define IDirect3DDevice9Video_GetContentProtectionCaps(p,a,b,c) (p)->GetContentProtectionCaps(a,b,c) -#define IDirect3DDevice9Video_CreateAuthenticatedChannel(p,a,b,c) (p)->CreateAuthenticatedChannel(a,b,c) -#define IDirect3DDevice9Video_CreateCryptoSession(p,a,b,c,d) (p)->CreateCryptoSession(a,b,c,d) -#endif - - - - -#undef INTERFACE -#define INTERFACE IDirect3DAuthenticatedChannel9 - -DECLARE_INTERFACE_(IDirect3DAuthenticatedChannel9, IUnknown) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, void** ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirect3DAuthenticatedChannel9 methods ***/ - STDMETHOD(GetCertificateSize)(THIS_ UINT* pCertificateSize) PURE; - STDMETHOD(GetCertificate)(THIS_ UINT CertifacteSize,BYTE* ppCertificate) PURE; - STDMETHOD(NegotiateKeyExchange)(THIS_ UINT DataSize,VOID* pData) PURE; - STDMETHOD(Query)(THIS_ UINT InputSize,CONST VOID* pInput,UINT OutputSize,VOID* pOutput) PURE; - STDMETHOD(Configure)(THIS_ UINT InputSize,CONST VOID* pInput,D3DAUTHENTICATEDCHANNEL_CONFIGURE_OUTPUT* pOutput) PURE; -}; - -typedef struct IDirect3DAuthenticatedChannel9 *LPDIRECT3DAUTHENTICATEDCHANNEL9, *PDIRECT3DAUTHENTICATEDCHANNEL9; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirect3DAuthenticatedChannel9_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirect3DAuthenticatedChannel9_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirect3DAuthenticatedChannel9_Release(p) (p)->lpVtbl->Release(p) -#define IDirect3DAuthenticatedChannel9_GetCertificateSize(p,a) (p)->lpVtbl->GetCertificateSize(p,a) -#define IDirect3DAuthenticatedChannel9_GetCertificate(p,a,b) (p)->lpVtbl->GetCertificate(p,a,b) -#define IDirect3DAuthenticatedChannel9_NegotiateKeyExchange(p,a,b) (p)->lpVtbl->NegotiateKeyExchange(p,a,b) -#define IDirect3DAuthenticatedChannel9_Query(p,a,b,c,d) (p)->lpVtbl->Query(p,a,b,c,d) -#define IDirect3DAuthenticatedChannel9_Configure(p,a,b,c) (p)->lpVtbl->Configure(p,a,b,c) -#else -#define IDirect3DAuthenticatedChannel9_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirect3DAuthenticatedChannel9_AddRef(p) (p)->AddRef() -#define IDirect3DAuthenticatedChannel9_Release(p) (p)->Release() -#define IDirect3DAuthenticatedChannel9_GetCertificateSize(p,a) (p)->GetCertificateSize(a) -#define IDirect3DAuthenticatedChannel9_GetCertificate(p,a,b) (p)->GetCertificate(a,b) -#define IDirect3DAuthenticatedChannel9_NegotiateKeyExchange(p,a,b) (p)->NegotiateKeyExchange(a,b) -#define IDirect3DAuthenticatedChannel9_Query(p,a,b,c,d) (p)->Query(a,b,c,d) -#define IDirect3DAuthenticatedChannel9_Configure(p,a,b,c) (p)->Configure(a,b,c) -#endif - - - -#undef INTERFACE -#define INTERFACE IDirect3DCryptoSession9 - -DECLARE_INTERFACE_(IDirect3DCryptoSession9, IUnknown) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, void** ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirect3DCryptoSession9 methods ***/ - STDMETHOD(GetCertificateSize)(THIS_ UINT* pCertificateSize) PURE; - STDMETHOD(GetCertificate)(THIS_ UINT CertifacteSize,BYTE* ppCertificate) PURE; - STDMETHOD(NegotiateKeyExchange)(THIS_ UINT DataSize,VOID* pData) PURE; - STDMETHOD(EncryptionBlt)(THIS_ IDirect3DSurface9* pSrcSurface,IDirect3DSurface9* pDstSurface,UINT DstSurfaceSize,VOID* pIV) PURE; - STDMETHOD(DecryptionBlt)(THIS_ IDirect3DSurface9* pSrcSurface,IDirect3DSurface9* pDstSurface,UINT SrcSurfaceSize,D3DENCRYPTED_BLOCK_INFO* pEncryptedBlockInfo,VOID* pContentKey,VOID* pIV) PURE; - STDMETHOD(GetSurfacePitch)(THIS_ IDirect3DSurface9* pSrcSurface,UINT* pSurfacePitch) PURE; - STDMETHOD(StartSessionKeyRefresh)(THIS_ VOID* pRandomNumber,UINT RandomNumberSize) PURE; - STDMETHOD(FinishSessionKeyRefresh)(THIS) PURE; - STDMETHOD(GetEncryptionBltKey)(THIS_ VOID* pReadbackKey,UINT KeySize) PURE; -}; - -typedef struct IDirect3DCryptoSession9 *LPDIRECT3DCRYPTOSESSION9, *PDIRECT3DCRYPTOSESSION9; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirect3DCryptoSession9_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirect3DCryptoSession9_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirect3DCryptoSession9_Release(p) (p)->lpVtbl->Release(p) -#define IDirect3DCryptoSession9_GetCertificateSize(p,a) (p)->lpVtbl->GetCertificateSize(p,a) -#define IDirect3DCryptoSession9_GetCertificate(p,a,b) (p)->lpVtbl->GetCertificate(p,a,b) -#define IDirect3DCryptoSession9_NegotiateKeyExchange(p,a,b) (p)->lpVtbl->NegotiateKeyExchange(p,a,b) -#define IDirect3DCryptoSession9_EncryptionBlt(p,a,b,c,d) (p)->lpVtbl->EncryptionBlt(p,a,b,c,d) -#define IDirect3DCryptoSession9_DecryptionBlt(p,a,b,c,d,e,f) (p)->lpVtbl->DecryptionBlt(p,a,b,c,d,e,f) -#define IDirect3DCryptoSession9_GetSurfacePitch(p,a,b) (p)->lpVtbl->GetSurfacePitch(p,a,b) -#define IDirect3DCryptoSession9_StartSessionKeyRefresh(p,a,b) (p)->lpVtbl->StartSessionKeyRefresh(p,a,b) -#define IDirect3DCryptoSession9_FinishSessionKeyRefresh(p) (p)->lpVtbl->FinishSessionKeyRefresh(p) -#define IDirect3DCryptoSession9_GetEncryptionBltKey(p,a,b) (p)->lpVtbl->GetEncryptionBltKey(p,a,b) -#else -#define IDirect3DCryptoSession9_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirect3DCryptoSession9_AddRef(p) (p)->AddRef() -#define IDirect3DCryptoSession9_Release(p) (p)->Release() -#define IDirect3DCryptoSession9_GetCertificateSize(p,a) (p)->GetCertificateSize(a) -#define IDirect3DCryptoSession9_GetCertificate(p,a,b) (p)->GetCertificate(a,b) -#define IDirect3DCryptoSession9_NegotiateKeyExchange(p,a,b) (p)->NegotiateKeyExchange(a,b) -#define IDirect3DCryptoSession9_EncryptionBlt(p,a,b,c,d) (p)->EncryptionBlt(a,b,c,d) -#define IDirect3DCryptoSession9_DecryptionBlt(p,a,b,c,d,e,f) (p)->DecryptionBlt(a,b,c,d,e,f) -#define IDirect3DCryptoSession9_GetSurfacePitch(p,a,b) (p)->GetSurfacePitch(a,b) -#define IDirect3DCryptoSession9_StartSessionKeyRefresh(p,a,b) (p)->StartSessionKeyRefresh(a,b) -#define IDirect3DCryptoSession9_FinishSessionKeyRefresh(p) (p)->FinishSessionKeyRefresh() -#define IDirect3DCryptoSession9_GetEncryptionBltKey(p,a,b) (p)->GetEncryptionBltKey(a,b) -#endif - -/* -- D3D9Ex only */ -#endif // !D3D_DISABLE_9EX - - -#ifdef __cplusplus -}; -#endif - -#endif /* (DIRECT3D_VERSION >= 0x0900) */ -#endif /* _D3D_H_ */ - diff --git a/SDK/Include/d3d9caps.h b/SDK/Include/d3d9caps.h deleted file mode 100644 index c10c4cd..0000000 --- a/SDK/Include/d3d9caps.h +++ /dev/null @@ -1,567 +0,0 @@ -/*==========================================================================; - * - * Copyright (C) Microsoft Corporation. All Rights Reserved. - * - * File: d3d9caps.h - * Content: Direct3D capabilities include file - * - ***************************************************************************/ - -#ifndef _d3d9CAPS_H -#define _d3d9CAPS_H - -#ifndef DIRECT3D_VERSION -#define DIRECT3D_VERSION 0x0900 -#endif //DIRECT3D_VERSION - -// include this file content only if compiling for DX9 interfaces -#if(DIRECT3D_VERSION >= 0x0900) - -#if defined(_X86_) || defined(_IA64_) -#pragma pack(4) -#endif - -typedef struct _D3DVSHADERCAPS2_0 -{ - DWORD Caps; - INT DynamicFlowControlDepth; - INT NumTemps; - INT StaticFlowControlDepth; -} D3DVSHADERCAPS2_0; - -#define D3DVS20CAPS_PREDICATION (1<<0) - -#define D3DVS20_MAX_DYNAMICFLOWCONTROLDEPTH 24 -#define D3DVS20_MIN_DYNAMICFLOWCONTROLDEPTH 0 -#define D3DVS20_MAX_NUMTEMPS 32 -#define D3DVS20_MIN_NUMTEMPS 12 -#define D3DVS20_MAX_STATICFLOWCONTROLDEPTH 4 -#define D3DVS20_MIN_STATICFLOWCONTROLDEPTH 1 - -typedef struct _D3DPSHADERCAPS2_0 -{ - DWORD Caps; - INT DynamicFlowControlDepth; - INT NumTemps; - INT StaticFlowControlDepth; - INT NumInstructionSlots; -} D3DPSHADERCAPS2_0; - -#define D3DPS20CAPS_ARBITRARYSWIZZLE (1<<0) -#define D3DPS20CAPS_GRADIENTINSTRUCTIONS (1<<1) -#define D3DPS20CAPS_PREDICATION (1<<2) -#define D3DPS20CAPS_NODEPENDENTREADLIMIT (1<<3) -#define D3DPS20CAPS_NOTEXINSTRUCTIONLIMIT (1<<4) - -#define D3DPS20_MAX_DYNAMICFLOWCONTROLDEPTH 24 -#define D3DPS20_MIN_DYNAMICFLOWCONTROLDEPTH 0 -#define D3DPS20_MAX_NUMTEMPS 32 -#define D3DPS20_MIN_NUMTEMPS 12 -#define D3DPS20_MAX_STATICFLOWCONTROLDEPTH 4 -#define D3DPS20_MIN_STATICFLOWCONTROLDEPTH 0 -#define D3DPS20_MAX_NUMINSTRUCTIONSLOTS 512 -#define D3DPS20_MIN_NUMINSTRUCTIONSLOTS 96 - -#define D3DMIN30SHADERINSTRUCTIONS 512 -#define D3DMAX30SHADERINSTRUCTIONS 32768 - -/* D3D9Ex only -- */ -#if !defined(D3D_DISABLE_9EX) - -typedef struct _D3DOVERLAYCAPS -{ - UINT Caps; - UINT MaxOverlayDisplayWidth; - UINT MaxOverlayDisplayHeight; -} D3DOVERLAYCAPS; - -#define D3DOVERLAYCAPS_FULLRANGERGB 0x00000001 -#define D3DOVERLAYCAPS_LIMITEDRANGERGB 0x00000002 -#define D3DOVERLAYCAPS_YCbCr_BT601 0x00000004 -#define D3DOVERLAYCAPS_YCbCr_BT709 0x00000008 -#define D3DOVERLAYCAPS_YCbCr_BT601_xvYCC 0x00000010 -#define D3DOVERLAYCAPS_YCbCr_BT709_xvYCC 0x00000020 -#define D3DOVERLAYCAPS_STRETCHX 0x00000040 -#define D3DOVERLAYCAPS_STRETCHY 0x00000080 - - -typedef struct _D3DCONTENTPROTECTIONCAPS -{ - DWORD Caps; - GUID KeyExchangeType; - UINT BufferAlignmentStart; - UINT BlockAlignmentSize; - ULONGLONG ProtectedMemorySize; -} D3DCONTENTPROTECTIONCAPS; - -#define D3DCPCAPS_SOFTWARE 0x00000001 -#define D3DCPCAPS_HARDWARE 0x00000002 -#define D3DCPCAPS_PROTECTIONALWAYSON 0x00000004 -#define D3DCPCAPS_PARTIALDECRYPTION 0x00000008 -#define D3DCPCAPS_CONTENTKEY 0x00000010 -#define D3DCPCAPS_FRESHENSESSIONKEY 0x00000020 -#define D3DCPCAPS_ENCRYPTEDREADBACK 0x00000040 -#define D3DCPCAPS_ENCRYPTEDREADBACKKEY 0x00000080 -#define D3DCPCAPS_SEQUENTIAL_CTR_IV 0x00000100 -#define D3DCPCAPS_ENCRYPTSLICEDATAONLY 0x00000200 - -DEFINE_GUID(D3DCRYPTOTYPE_AES128_CTR, -0x9b6bd711, 0x4f74, 0x41c9, 0x9e, 0x7b, 0xb, 0xe2, 0xd7, 0xd9, 0x3b, 0x4f); -DEFINE_GUID(D3DCRYPTOTYPE_PROPRIETARY, -0xab4e9afd, 0x1d1c, 0x46e6, 0xa7, 0x2f, 0x8, 0x69, 0x91, 0x7b, 0xd, 0xe8); - -DEFINE_GUID(D3DKEYEXCHANGE_RSAES_OAEP, -0xc1949895, 0xd72a, 0x4a1d, 0x8e, 0x5d, 0xed, 0x85, 0x7d, 0x17, 0x15, 0x20); -DEFINE_GUID(D3DKEYEXCHANGE_DXVA, -0x43d3775c, 0x38e5, 0x4924, 0x8d, 0x86, 0xd3, 0xfc, 0xcf, 0x15, 0x3e, 0x9b); - -#endif // !D3D_DISABLE_9EX -/* -- D3D9Ex only */ - -typedef struct _D3DCAPS9 -{ - /* Device Info */ - D3DDEVTYPE DeviceType; - UINT AdapterOrdinal; - - /* Caps from DX7 Draw */ - DWORD Caps; - DWORD Caps2; - DWORD Caps3; - DWORD PresentationIntervals; - - /* Cursor Caps */ - DWORD CursorCaps; - - /* 3D Device Caps */ - DWORD DevCaps; - - DWORD PrimitiveMiscCaps; - DWORD RasterCaps; - DWORD ZCmpCaps; - DWORD SrcBlendCaps; - DWORD DestBlendCaps; - DWORD AlphaCmpCaps; - DWORD ShadeCaps; - DWORD TextureCaps; - DWORD TextureFilterCaps; // D3DPTFILTERCAPS for IDirect3DTexture9's - DWORD CubeTextureFilterCaps; // D3DPTFILTERCAPS for IDirect3DCubeTexture9's - DWORD VolumeTextureFilterCaps; // D3DPTFILTERCAPS for IDirect3DVolumeTexture9's - DWORD TextureAddressCaps; // D3DPTADDRESSCAPS for IDirect3DTexture9's - DWORD VolumeTextureAddressCaps; // D3DPTADDRESSCAPS for IDirect3DVolumeTexture9's - - DWORD LineCaps; // D3DLINECAPS - - DWORD MaxTextureWidth, MaxTextureHeight; - DWORD MaxVolumeExtent; - - DWORD MaxTextureRepeat; - DWORD MaxTextureAspectRatio; - DWORD MaxAnisotropy; - float MaxVertexW; - - float GuardBandLeft; - float GuardBandTop; - float GuardBandRight; - float GuardBandBottom; - - float ExtentsAdjust; - DWORD StencilCaps; - - DWORD FVFCaps; - DWORD TextureOpCaps; - DWORD MaxTextureBlendStages; - DWORD MaxSimultaneousTextures; - - DWORD VertexProcessingCaps; - DWORD MaxActiveLights; - DWORD MaxUserClipPlanes; - DWORD MaxVertexBlendMatrices; - DWORD MaxVertexBlendMatrixIndex; - - float MaxPointSize; - - DWORD MaxPrimitiveCount; // max number of primitives per DrawPrimitive call - DWORD MaxVertexIndex; - DWORD MaxStreams; - DWORD MaxStreamStride; // max stride for SetStreamSource - - DWORD VertexShaderVersion; - DWORD MaxVertexShaderConst; // number of vertex shader constant registers - - DWORD PixelShaderVersion; - float PixelShader1xMaxValue; // max value storable in registers of ps.1.x shaders - - // Here are the DX9 specific ones - DWORD DevCaps2; - - float MaxNpatchTessellationLevel; - DWORD Reserved5; - - UINT MasterAdapterOrdinal; // ordinal of master adaptor for adapter group - UINT AdapterOrdinalInGroup; // ordinal inside the adapter group - UINT NumberOfAdaptersInGroup; // number of adapters in this adapter group (only if master) - DWORD DeclTypes; // Data types, supported in vertex declarations - DWORD NumSimultaneousRTs; // Will be at least 1 - DWORD StretchRectFilterCaps; // Filter caps supported by StretchRect - D3DVSHADERCAPS2_0 VS20Caps; - D3DPSHADERCAPS2_0 PS20Caps; - DWORD VertexTextureFilterCaps; // D3DPTFILTERCAPS for IDirect3DTexture9's for texture, used in vertex shaders - DWORD MaxVShaderInstructionsExecuted; // maximum number of vertex shader instructions that can be executed - DWORD MaxPShaderInstructionsExecuted; // maximum number of pixel shader instructions that can be executed - DWORD MaxVertexShader30InstructionSlots; - DWORD MaxPixelShader30InstructionSlots; -} D3DCAPS9; - -// -// BIT DEFINES FOR D3DCAPS9 DWORD MEMBERS -// - -// -// Caps -// -#define D3DCAPS_OVERLAY 0x00000800L -#define D3DCAPS_READ_SCANLINE 0x00020000L - -// -// Caps2 -// -#define D3DCAPS2_FULLSCREENGAMMA 0x00020000L -#define D3DCAPS2_CANCALIBRATEGAMMA 0x00100000L -#define D3DCAPS2_RESERVED 0x02000000L -#define D3DCAPS2_CANMANAGERESOURCE 0x10000000L -#define D3DCAPS2_DYNAMICTEXTURES 0x20000000L -#define D3DCAPS2_CANAUTOGENMIPMAP 0x40000000L - -/* D3D9Ex only -- */ -#if !defined(D3D_DISABLE_9EX) - -#define D3DCAPS2_CANSHARERESOURCE 0x80000000L - -#endif // !D3D_DISABLE_9EX -/* -- D3D9Ex only */ - -// -// Caps3 -// -#define D3DCAPS3_RESERVED 0x8000001fL - -// Indicates that the device can respect the ALPHABLENDENABLE render state -// when fullscreen while using the FLIP or DISCARD swap effect. -// COPY and COPYVSYNC swap effects work whether or not this flag is set. -#define D3DCAPS3_ALPHA_FULLSCREEN_FLIP_OR_DISCARD 0x00000020L - -// Indicates that the device can perform a gamma correction from -// a windowed back buffer containing linear content to the sRGB desktop. -#define D3DCAPS3_LINEAR_TO_SRGB_PRESENTATION 0x00000080L - -#define D3DCAPS3_COPY_TO_VIDMEM 0x00000100L /* Device can acclerate copies from sysmem to local vidmem */ -#define D3DCAPS3_COPY_TO_SYSTEMMEM 0x00000200L /* Device can acclerate copies from local vidmem to sysmem */ -#define D3DCAPS3_DXVAHD 0x00000400L - - -// -// PresentationIntervals -// -#define D3DPRESENT_INTERVAL_DEFAULT 0x00000000L -#define D3DPRESENT_INTERVAL_ONE 0x00000001L -#define D3DPRESENT_INTERVAL_TWO 0x00000002L -#define D3DPRESENT_INTERVAL_THREE 0x00000004L -#define D3DPRESENT_INTERVAL_FOUR 0x00000008L -#define D3DPRESENT_INTERVAL_IMMEDIATE 0x80000000L - -// -// CursorCaps -// -// Driver supports HW color cursor in at least hi-res modes(height >=400) -#define D3DCURSORCAPS_COLOR 0x00000001L -// Driver supports HW cursor also in low-res modes(height < 400) -#define D3DCURSORCAPS_LOWRES 0x00000002L - -// -// DevCaps -// -#define D3DDEVCAPS_EXECUTESYSTEMMEMORY 0x00000010L /* Device can use execute buffers from system memory */ -#define D3DDEVCAPS_EXECUTEVIDEOMEMORY 0x00000020L /* Device can use execute buffers from video memory */ -#define D3DDEVCAPS_TLVERTEXSYSTEMMEMORY 0x00000040L /* Device can use TL buffers from system memory */ -#define D3DDEVCAPS_TLVERTEXVIDEOMEMORY 0x00000080L /* Device can use TL buffers from video memory */ -#define D3DDEVCAPS_TEXTURESYSTEMMEMORY 0x00000100L /* Device can texture from system memory */ -#define D3DDEVCAPS_TEXTUREVIDEOMEMORY 0x00000200L /* Device can texture from device memory */ -#define D3DDEVCAPS_DRAWPRIMTLVERTEX 0x00000400L /* Device can draw TLVERTEX primitives */ -#define D3DDEVCAPS_CANRENDERAFTERFLIP 0x00000800L /* Device can render without waiting for flip to complete */ -#define D3DDEVCAPS_TEXTURENONLOCALVIDMEM 0x00001000L /* Device can texture from nonlocal video memory */ -#define D3DDEVCAPS_DRAWPRIMITIVES2 0x00002000L /* Device can support DrawPrimitives2 */ -#define D3DDEVCAPS_SEPARATETEXTUREMEMORIES 0x00004000L /* Device is texturing from separate memory pools */ -#define D3DDEVCAPS_DRAWPRIMITIVES2EX 0x00008000L /* Device can support Extended DrawPrimitives2 i.e. DX7 compliant driver*/ -#define D3DDEVCAPS_HWTRANSFORMANDLIGHT 0x00010000L /* Device can support transformation and lighting in hardware and DRAWPRIMITIVES2EX must be also */ -#define D3DDEVCAPS_CANBLTSYSTONONLOCAL 0x00020000L /* Device supports a Tex Blt from system memory to non-local vidmem */ -#define D3DDEVCAPS_HWRASTERIZATION 0x00080000L /* Device has HW acceleration for rasterization */ -#define D3DDEVCAPS_PUREDEVICE 0x00100000L /* Device supports D3DCREATE_PUREDEVICE */ -#define D3DDEVCAPS_QUINTICRTPATCHES 0x00200000L /* Device supports quintic Beziers and BSplines */ -#define D3DDEVCAPS_RTPATCHES 0x00400000L /* Device supports Rect and Tri patches */ -#define D3DDEVCAPS_RTPATCHHANDLEZERO 0x00800000L /* Indicates that RT Patches may be drawn efficiently using handle 0 */ -#define D3DDEVCAPS_NPATCHES 0x01000000L /* Device supports N-Patches */ - -// -// PrimitiveMiscCaps -// -#define D3DPMISCCAPS_MASKZ 0x00000002L -#define D3DPMISCCAPS_CULLNONE 0x00000010L -#define D3DPMISCCAPS_CULLCW 0x00000020L -#define D3DPMISCCAPS_CULLCCW 0x00000040L -#define D3DPMISCCAPS_COLORWRITEENABLE 0x00000080L -#define D3DPMISCCAPS_CLIPPLANESCALEDPOINTS 0x00000100L /* Device correctly clips scaled points to clip planes */ -#define D3DPMISCCAPS_CLIPTLVERTS 0x00000200L /* device will clip post-transformed vertex primitives */ -#define D3DPMISCCAPS_TSSARGTEMP 0x00000400L /* device supports D3DTA_TEMP for temporary register */ -#define D3DPMISCCAPS_BLENDOP 0x00000800L /* device supports D3DRS_BLENDOP */ -#define D3DPMISCCAPS_NULLREFERENCE 0x00001000L /* Reference Device that doesnt render */ -#define D3DPMISCCAPS_INDEPENDENTWRITEMASKS 0x00004000L /* Device supports independent write masks for MET or MRT */ -#define D3DPMISCCAPS_PERSTAGECONSTANT 0x00008000L /* Device supports per-stage constants */ -#define D3DPMISCCAPS_FOGANDSPECULARALPHA 0x00010000L /* Device supports separate fog and specular alpha (many devices - use the specular alpha channel to store fog factor) */ -#define D3DPMISCCAPS_SEPARATEALPHABLEND 0x00020000L /* Device supports separate blend settings for the alpha channel */ -#define D3DPMISCCAPS_MRTINDEPENDENTBITDEPTHS 0x00040000L /* Device supports different bit depths for MRT */ -#define D3DPMISCCAPS_MRTPOSTPIXELSHADERBLENDING 0x00080000L /* Device supports post-pixel shader operations for MRT */ -#define D3DPMISCCAPS_FOGVERTEXCLAMPED 0x00100000L /* Device clamps fog blend factor per vertex */ - -/* D3D9Ex only -- */ -#if !defined(D3D_DISABLE_9EX) - -#define D3DPMISCCAPS_POSTBLENDSRGBCONVERT 0x00200000L /* Indicates device can perform conversion to sRGB after blending. */ - -#endif // !D3D_DISABLE_9EX -/* -- D3D9Ex only */ - - -// -// LineCaps -// -#define D3DLINECAPS_TEXTURE 0x00000001L -#define D3DLINECAPS_ZTEST 0x00000002L -#define D3DLINECAPS_BLEND 0x00000004L -#define D3DLINECAPS_ALPHACMP 0x00000008L -#define D3DLINECAPS_FOG 0x00000010L -#define D3DLINECAPS_ANTIALIAS 0x00000020L - -// -// RasterCaps -// -#define D3DPRASTERCAPS_DITHER 0x00000001L -#define D3DPRASTERCAPS_ZTEST 0x00000010L -#define D3DPRASTERCAPS_FOGVERTEX 0x00000080L -#define D3DPRASTERCAPS_FOGTABLE 0x00000100L -#define D3DPRASTERCAPS_MIPMAPLODBIAS 0x00002000L -#define D3DPRASTERCAPS_ZBUFFERLESSHSR 0x00008000L -#define D3DPRASTERCAPS_FOGRANGE 0x00010000L -#define D3DPRASTERCAPS_ANISOTROPY 0x00020000L -#define D3DPRASTERCAPS_WBUFFER 0x00040000L -#define D3DPRASTERCAPS_WFOG 0x00100000L -#define D3DPRASTERCAPS_ZFOG 0x00200000L -#define D3DPRASTERCAPS_COLORPERSPECTIVE 0x00400000L /* Device iterates colors perspective correct */ -#define D3DPRASTERCAPS_SCISSORTEST 0x01000000L -#define D3DPRASTERCAPS_SLOPESCALEDEPTHBIAS 0x02000000L -#define D3DPRASTERCAPS_DEPTHBIAS 0x04000000L -#define D3DPRASTERCAPS_MULTISAMPLE_TOGGLE 0x08000000L - -// -// ZCmpCaps, AlphaCmpCaps -// -#define D3DPCMPCAPS_NEVER 0x00000001L -#define D3DPCMPCAPS_LESS 0x00000002L -#define D3DPCMPCAPS_EQUAL 0x00000004L -#define D3DPCMPCAPS_LESSEQUAL 0x00000008L -#define D3DPCMPCAPS_GREATER 0x00000010L -#define D3DPCMPCAPS_NOTEQUAL 0x00000020L -#define D3DPCMPCAPS_GREATEREQUAL 0x00000040L -#define D3DPCMPCAPS_ALWAYS 0x00000080L - -// -// SourceBlendCaps, DestBlendCaps -// -#define D3DPBLENDCAPS_ZERO 0x00000001L -#define D3DPBLENDCAPS_ONE 0x00000002L -#define D3DPBLENDCAPS_SRCCOLOR 0x00000004L -#define D3DPBLENDCAPS_INVSRCCOLOR 0x00000008L -#define D3DPBLENDCAPS_SRCALPHA 0x00000010L -#define D3DPBLENDCAPS_INVSRCALPHA 0x00000020L -#define D3DPBLENDCAPS_DESTALPHA 0x00000040L -#define D3DPBLENDCAPS_INVDESTALPHA 0x00000080L -#define D3DPBLENDCAPS_DESTCOLOR 0x00000100L -#define D3DPBLENDCAPS_INVDESTCOLOR 0x00000200L -#define D3DPBLENDCAPS_SRCALPHASAT 0x00000400L -#define D3DPBLENDCAPS_BOTHSRCALPHA 0x00000800L -#define D3DPBLENDCAPS_BOTHINVSRCALPHA 0x00001000L -#define D3DPBLENDCAPS_BLENDFACTOR 0x00002000L /* Supports both D3DBLEND_BLENDFACTOR and D3DBLEND_INVBLENDFACTOR */ - -/* D3D9Ex only -- */ -#if !defined(D3D_DISABLE_9EX) - -#define D3DPBLENDCAPS_SRCCOLOR2 0x00004000L -#define D3DPBLENDCAPS_INVSRCCOLOR2 0x00008000L - -#endif // !D3D_DISABLE_9EX -/* -- D3D9Ex only */ - - -// -// ShadeCaps -// -#define D3DPSHADECAPS_COLORGOURAUDRGB 0x00000008L -#define D3DPSHADECAPS_SPECULARGOURAUDRGB 0x00000200L -#define D3DPSHADECAPS_ALPHAGOURAUDBLEND 0x00004000L -#define D3DPSHADECAPS_FOGGOURAUD 0x00080000L - -// -// TextureCaps -// -#define D3DPTEXTURECAPS_PERSPECTIVE 0x00000001L /* Perspective-correct texturing is supported */ -#define D3DPTEXTURECAPS_POW2 0x00000002L /* Power-of-2 texture dimensions are required - applies to non-Cube/Volume textures only. */ -#define D3DPTEXTURECAPS_ALPHA 0x00000004L /* Alpha in texture pixels is supported */ -#define D3DPTEXTURECAPS_SQUAREONLY 0x00000020L /* Only square textures are supported */ -#define D3DPTEXTURECAPS_TEXREPEATNOTSCALEDBYSIZE 0x00000040L /* Texture indices are not scaled by the texture size prior to interpolation */ -#define D3DPTEXTURECAPS_ALPHAPALETTE 0x00000080L /* Device can draw alpha from texture palettes */ -// Device can use non-POW2 textures if: -// 1) D3DTEXTURE_ADDRESS is set to CLAMP for this texture's stage -// 2) D3DRS_WRAP(N) is zero for this texture's coordinates -// 3) mip mapping is not enabled (use magnification filter only) -#define D3DPTEXTURECAPS_NONPOW2CONDITIONAL 0x00000100L -#define D3DPTEXTURECAPS_PROJECTED 0x00000400L /* Device can do D3DTTFF_PROJECTED */ -#define D3DPTEXTURECAPS_CUBEMAP 0x00000800L /* Device can do cubemap textures */ -#define D3DPTEXTURECAPS_VOLUMEMAP 0x00002000L /* Device can do volume textures */ -#define D3DPTEXTURECAPS_MIPMAP 0x00004000L /* Device can do mipmapped textures */ -#define D3DPTEXTURECAPS_MIPVOLUMEMAP 0x00008000L /* Device can do mipmapped volume textures */ -#define D3DPTEXTURECAPS_MIPCUBEMAP 0x00010000L /* Device can do mipmapped cube maps */ -#define D3DPTEXTURECAPS_CUBEMAP_POW2 0x00020000L /* Device requires that cubemaps be power-of-2 dimension */ -#define D3DPTEXTURECAPS_VOLUMEMAP_POW2 0x00040000L /* Device requires that volume maps be power-of-2 dimension */ -#define D3DPTEXTURECAPS_NOPROJECTEDBUMPENV 0x00200000L /* Device does not support projected bump env lookup operation - in programmable and fixed function pixel shaders */ - -// -// TextureFilterCaps, StretchRectFilterCaps -// -#define D3DPTFILTERCAPS_MINFPOINT 0x00000100L /* Min Filter */ -#define D3DPTFILTERCAPS_MINFLINEAR 0x00000200L -#define D3DPTFILTERCAPS_MINFANISOTROPIC 0x00000400L -#define D3DPTFILTERCAPS_MINFPYRAMIDALQUAD 0x00000800L -#define D3DPTFILTERCAPS_MINFGAUSSIANQUAD 0x00001000L -#define D3DPTFILTERCAPS_MIPFPOINT 0x00010000L /* Mip Filter */ -#define D3DPTFILTERCAPS_MIPFLINEAR 0x00020000L - -/* D3D9Ex only -- */ -#if !defined(D3D_DISABLE_9EX) - -#define D3DPTFILTERCAPS_CONVOLUTIONMONO 0x00040000L /* Min and Mag for the convolution mono filter */ - -#endif // !D3D_DISABLE_9EX -/* -- D3D9Ex only */ - -#define D3DPTFILTERCAPS_MAGFPOINT 0x01000000L /* Mag Filter */ -#define D3DPTFILTERCAPS_MAGFLINEAR 0x02000000L -#define D3DPTFILTERCAPS_MAGFANISOTROPIC 0x04000000L -#define D3DPTFILTERCAPS_MAGFPYRAMIDALQUAD 0x08000000L -#define D3DPTFILTERCAPS_MAGFGAUSSIANQUAD 0x10000000L - -// -// TextureAddressCaps -// -#define D3DPTADDRESSCAPS_WRAP 0x00000001L -#define D3DPTADDRESSCAPS_MIRROR 0x00000002L -#define D3DPTADDRESSCAPS_CLAMP 0x00000004L -#define D3DPTADDRESSCAPS_BORDER 0x00000008L -#define D3DPTADDRESSCAPS_INDEPENDENTUV 0x00000010L -#define D3DPTADDRESSCAPS_MIRRORONCE 0x00000020L - -// -// StencilCaps -// -#define D3DSTENCILCAPS_KEEP 0x00000001L -#define D3DSTENCILCAPS_ZERO 0x00000002L -#define D3DSTENCILCAPS_REPLACE 0x00000004L -#define D3DSTENCILCAPS_INCRSAT 0x00000008L -#define D3DSTENCILCAPS_DECRSAT 0x00000010L -#define D3DSTENCILCAPS_INVERT 0x00000020L -#define D3DSTENCILCAPS_INCR 0x00000040L -#define D3DSTENCILCAPS_DECR 0x00000080L -#define D3DSTENCILCAPS_TWOSIDED 0x00000100L - -// -// TextureOpCaps -// -#define D3DTEXOPCAPS_DISABLE 0x00000001L -#define D3DTEXOPCAPS_SELECTARG1 0x00000002L -#define D3DTEXOPCAPS_SELECTARG2 0x00000004L -#define D3DTEXOPCAPS_MODULATE 0x00000008L -#define D3DTEXOPCAPS_MODULATE2X 0x00000010L -#define D3DTEXOPCAPS_MODULATE4X 0x00000020L -#define D3DTEXOPCAPS_ADD 0x00000040L -#define D3DTEXOPCAPS_ADDSIGNED 0x00000080L -#define D3DTEXOPCAPS_ADDSIGNED2X 0x00000100L -#define D3DTEXOPCAPS_SUBTRACT 0x00000200L -#define D3DTEXOPCAPS_ADDSMOOTH 0x00000400L -#define D3DTEXOPCAPS_BLENDDIFFUSEALPHA 0x00000800L -#define D3DTEXOPCAPS_BLENDTEXTUREALPHA 0x00001000L -#define D3DTEXOPCAPS_BLENDFACTORALPHA 0x00002000L -#define D3DTEXOPCAPS_BLENDTEXTUREALPHAPM 0x00004000L -#define D3DTEXOPCAPS_BLENDCURRENTALPHA 0x00008000L -#define D3DTEXOPCAPS_PREMODULATE 0x00010000L -#define D3DTEXOPCAPS_MODULATEALPHA_ADDCOLOR 0x00020000L -#define D3DTEXOPCAPS_MODULATECOLOR_ADDALPHA 0x00040000L -#define D3DTEXOPCAPS_MODULATEINVALPHA_ADDCOLOR 0x00080000L -#define D3DTEXOPCAPS_MODULATEINVCOLOR_ADDALPHA 0x00100000L -#define D3DTEXOPCAPS_BUMPENVMAP 0x00200000L -#define D3DTEXOPCAPS_BUMPENVMAPLUMINANCE 0x00400000L -#define D3DTEXOPCAPS_DOTPRODUCT3 0x00800000L -#define D3DTEXOPCAPS_MULTIPLYADD 0x01000000L -#define D3DTEXOPCAPS_LERP 0x02000000L - -// -// FVFCaps -// -#define D3DFVFCAPS_TEXCOORDCOUNTMASK 0x0000ffffL /* mask for texture coordinate count field */ -#define D3DFVFCAPS_DONOTSTRIPELEMENTS 0x00080000L /* Device prefers that vertex elements not be stripped */ -#define D3DFVFCAPS_PSIZE 0x00100000L /* Device can receive point size */ - -// -// VertexProcessingCaps -// -#define D3DVTXPCAPS_TEXGEN 0x00000001L /* device can do texgen */ -#define D3DVTXPCAPS_MATERIALSOURCE7 0x00000002L /* device can do DX7-level colormaterialsource ops */ -#define D3DVTXPCAPS_DIRECTIONALLIGHTS 0x00000008L /* device can do directional lights */ -#define D3DVTXPCAPS_POSITIONALLIGHTS 0x00000010L /* device can do positional lights (includes point and spot) */ -#define D3DVTXPCAPS_LOCALVIEWER 0x00000020L /* device can do local viewer */ -#define D3DVTXPCAPS_TWEENING 0x00000040L /* device can do vertex tweening */ -#define D3DVTXPCAPS_TEXGEN_SPHEREMAP 0x00000100L /* device supports D3DTSS_TCI_SPHEREMAP */ -#define D3DVTXPCAPS_NO_TEXGEN_NONLOCALVIEWER 0x00000200L /* device does not support TexGen in non-local - viewer mode */ - -// -// DevCaps2 -// -#define D3DDEVCAPS2_STREAMOFFSET 0x00000001L /* Device supports offsets in streams. Must be set by DX9 drivers */ -#define D3DDEVCAPS2_DMAPNPATCH 0x00000002L /* Device supports displacement maps for N-Patches*/ -#define D3DDEVCAPS2_ADAPTIVETESSRTPATCH 0x00000004L /* Device supports adaptive tesselation of RT-patches*/ -#define D3DDEVCAPS2_ADAPTIVETESSNPATCH 0x00000008L /* Device supports adaptive tesselation of N-patches*/ -#define D3DDEVCAPS2_CAN_STRETCHRECT_FROM_TEXTURES 0x00000010L /* Device supports StretchRect calls with a texture as the source*/ -#define D3DDEVCAPS2_PRESAMPLEDDMAPNPATCH 0x00000020L /* Device supports presampled displacement maps for N-Patches */ -#define D3DDEVCAPS2_VERTEXELEMENTSCANSHARESTREAMOFFSET 0x00000040L /* Vertex elements in a vertex declaration can share the same stream offset */ - -// -// DeclTypes -// -#define D3DDTCAPS_UBYTE4 0x00000001L -#define D3DDTCAPS_UBYTE4N 0x00000002L -#define D3DDTCAPS_SHORT2N 0x00000004L -#define D3DDTCAPS_SHORT4N 0x00000008L -#define D3DDTCAPS_USHORT2N 0x00000010L -#define D3DDTCAPS_USHORT4N 0x00000020L -#define D3DDTCAPS_UDEC3 0x00000040L -#define D3DDTCAPS_DEC3N 0x00000080L -#define D3DDTCAPS_FLOAT16_2 0x00000100L -#define D3DDTCAPS_FLOAT16_4 0x00000200L - - -#pragma pack() - -#endif /* (DIRECT3D_VERSION >= 0x0900) */ -#endif /* _d3d9CAPS_H_ */ - diff --git a/SDK/Include/d3d9types.h b/SDK/Include/d3d9types.h deleted file mode 100644 index 4dd3cfa..0000000 --- a/SDK/Include/d3d9types.h +++ /dev/null @@ -1,2416 +0,0 @@ -/*==========================================================================; - * - * Copyright (C) Microsoft Corporation. All Rights Reserved. - * - * File: d3d9types.h - * Content: Direct3D capabilities include file - * - ***************************************************************************/ - -#ifndef _d3d9TYPES_H_ -#define _d3d9TYPES_H_ - -#ifndef DIRECT3D_VERSION -#define DIRECT3D_VERSION 0x0900 -#endif //DIRECT3D_VERSION - -// include this file content only if compiling for DX9 interfaces -#if(DIRECT3D_VERSION >= 0x0900) - -#include - -#if _MSC_VER >= 1200 -#pragma warning(push) -#endif -#pragma warning(disable:4201) // anonymous unions warning -#if defined(_X86_) || defined(_IA64_) -#pragma pack(4) -#endif - -// D3DCOLOR is equivalent to D3DFMT_A8R8G8B8 -#ifndef D3DCOLOR_DEFINED -typedef DWORD D3DCOLOR; -#define D3DCOLOR_DEFINED -#endif - -// maps unsigned 8 bits/channel to D3DCOLOR -#define D3DCOLOR_ARGB(a,r,g,b) \ - ((D3DCOLOR)((((a)&0xff)<<24)|(((r)&0xff)<<16)|(((g)&0xff)<<8)|((b)&0xff))) -#define D3DCOLOR_RGBA(r,g,b,a) D3DCOLOR_ARGB(a,r,g,b) -#define D3DCOLOR_XRGB(r,g,b) D3DCOLOR_ARGB(0xff,r,g,b) - -#define D3DCOLOR_XYUV(y,u,v) D3DCOLOR_ARGB(0xff,y,u,v) -#define D3DCOLOR_AYUV(a,y,u,v) D3DCOLOR_ARGB(a,y,u,v) - -// maps floating point channels (0.f to 1.f range) to D3DCOLOR -#define D3DCOLOR_COLORVALUE(r,g,b,a) \ - D3DCOLOR_RGBA((DWORD)((r)*255.f),(DWORD)((g)*255.f),(DWORD)((b)*255.f),(DWORD)((a)*255.f)) - - -#ifndef D3DVECTOR_DEFINED -typedef struct _D3DVECTOR { - float x; - float y; - float z; -} D3DVECTOR; -#define D3DVECTOR_DEFINED -#endif - -#ifndef D3DCOLORVALUE_DEFINED -typedef struct _D3DCOLORVALUE { - float r; - float g; - float b; - float a; -} D3DCOLORVALUE; -#define D3DCOLORVALUE_DEFINED -#endif - -#ifndef D3DRECT_DEFINED -typedef struct _D3DRECT { - LONG x1; - LONG y1; - LONG x2; - LONG y2; -} D3DRECT; -#define D3DRECT_DEFINED -#endif - -#ifndef D3DMATRIX_DEFINED -typedef struct _D3DMATRIX { - union { - struct { - float _11, _12, _13, _14; - float _21, _22, _23, _24; - float _31, _32, _33, _34; - float _41, _42, _43, _44; - - }; - float m[4][4]; - }; -} D3DMATRIX; -#define D3DMATRIX_DEFINED -#endif - -typedef struct _D3DVIEWPORT9 { - DWORD X; - DWORD Y; /* Viewport Top left */ - DWORD Width; - DWORD Height; /* Viewport Dimensions */ - float MinZ; /* Min/max of clip Volume */ - float MaxZ; -} D3DVIEWPORT9; - -/* - * Values for clip fields. - */ - -// Max number of user clipping planes, supported in D3D. -#define D3DMAXUSERCLIPPLANES 32 - -// These bits could be ORed together to use with D3DRS_CLIPPLANEENABLE -// -#define D3DCLIPPLANE0 (1 << 0) -#define D3DCLIPPLANE1 (1 << 1) -#define D3DCLIPPLANE2 (1 << 2) -#define D3DCLIPPLANE3 (1 << 3) -#define D3DCLIPPLANE4 (1 << 4) -#define D3DCLIPPLANE5 (1 << 5) - -// The following bits are used in the ClipUnion and ClipIntersection -// members of the D3DCLIPSTATUS9 -// - -#define D3DCS_LEFT 0x00000001L -#define D3DCS_RIGHT 0x00000002L -#define D3DCS_TOP 0x00000004L -#define D3DCS_BOTTOM 0x00000008L -#define D3DCS_FRONT 0x00000010L -#define D3DCS_BACK 0x00000020L -#define D3DCS_PLANE0 0x00000040L -#define D3DCS_PLANE1 0x00000080L -#define D3DCS_PLANE2 0x00000100L -#define D3DCS_PLANE3 0x00000200L -#define D3DCS_PLANE4 0x00000400L -#define D3DCS_PLANE5 0x00000800L - -#define D3DCS_ALL (D3DCS_LEFT | \ - D3DCS_RIGHT | \ - D3DCS_TOP | \ - D3DCS_BOTTOM | \ - D3DCS_FRONT | \ - D3DCS_BACK | \ - D3DCS_PLANE0 | \ - D3DCS_PLANE1 | \ - D3DCS_PLANE2 | \ - D3DCS_PLANE3 | \ - D3DCS_PLANE4 | \ - D3DCS_PLANE5) - -typedef struct _D3DCLIPSTATUS9 { - DWORD ClipUnion; - DWORD ClipIntersection; -} D3DCLIPSTATUS9; - -typedef struct _D3DMATERIAL9 { - D3DCOLORVALUE Diffuse; /* Diffuse color RGBA */ - D3DCOLORVALUE Ambient; /* Ambient color RGB */ - D3DCOLORVALUE Specular; /* Specular 'shininess' */ - D3DCOLORVALUE Emissive; /* Emissive color RGB */ - float Power; /* Sharpness if specular highlight */ -} D3DMATERIAL9; - -typedef enum _D3DLIGHTTYPE { - D3DLIGHT_POINT = 1, - D3DLIGHT_SPOT = 2, - D3DLIGHT_DIRECTIONAL = 3, - D3DLIGHT_FORCE_DWORD = 0x7fffffff, /* force 32-bit size enum */ -} D3DLIGHTTYPE; - -typedef struct _D3DLIGHT9 { - D3DLIGHTTYPE Type; /* Type of light source */ - D3DCOLORVALUE Diffuse; /* Diffuse color of light */ - D3DCOLORVALUE Specular; /* Specular color of light */ - D3DCOLORVALUE Ambient; /* Ambient color of light */ - D3DVECTOR Position; /* Position in world space */ - D3DVECTOR Direction; /* Direction in world space */ - float Range; /* Cutoff range */ - float Falloff; /* Falloff */ - float Attenuation0; /* Constant attenuation */ - float Attenuation1; /* Linear attenuation */ - float Attenuation2; /* Quadratic attenuation */ - float Theta; /* Inner angle of spotlight cone */ - float Phi; /* Outer angle of spotlight cone */ -} D3DLIGHT9; - -/* - * Options for clearing - */ -#define D3DCLEAR_TARGET 0x00000001l /* Clear target surface */ -#define D3DCLEAR_ZBUFFER 0x00000002l /* Clear target z buffer */ -#define D3DCLEAR_STENCIL 0x00000004l /* Clear stencil planes */ - -/* - * The following defines the rendering states - */ - -typedef enum _D3DSHADEMODE { - D3DSHADE_FLAT = 1, - D3DSHADE_GOURAUD = 2, - D3DSHADE_PHONG = 3, - D3DSHADE_FORCE_DWORD = 0x7fffffff, /* force 32-bit size enum */ -} D3DSHADEMODE; - -typedef enum _D3DFILLMODE { - D3DFILL_POINT = 1, - D3DFILL_WIREFRAME = 2, - D3DFILL_SOLID = 3, - D3DFILL_FORCE_DWORD = 0x7fffffff, /* force 32-bit size enum */ -} D3DFILLMODE; - -typedef enum _D3DBLEND { - D3DBLEND_ZERO = 1, - D3DBLEND_ONE = 2, - D3DBLEND_SRCCOLOR = 3, - D3DBLEND_INVSRCCOLOR = 4, - D3DBLEND_SRCALPHA = 5, - D3DBLEND_INVSRCALPHA = 6, - D3DBLEND_DESTALPHA = 7, - D3DBLEND_INVDESTALPHA = 8, - D3DBLEND_DESTCOLOR = 9, - D3DBLEND_INVDESTCOLOR = 10, - D3DBLEND_SRCALPHASAT = 11, - D3DBLEND_BOTHSRCALPHA = 12, - D3DBLEND_BOTHINVSRCALPHA = 13, - D3DBLEND_BLENDFACTOR = 14, /* Only supported if D3DPBLENDCAPS_BLENDFACTOR is on */ - D3DBLEND_INVBLENDFACTOR = 15, /* Only supported if D3DPBLENDCAPS_BLENDFACTOR is on */ -/* D3D9Ex only -- */ -#if !defined(D3D_DISABLE_9EX) - - D3DBLEND_SRCCOLOR2 = 16, - D3DBLEND_INVSRCCOLOR2 = 17, - -#endif // !D3D_DISABLE_9EX -/* -- D3D9Ex only */ - D3DBLEND_FORCE_DWORD = 0x7fffffff, /* force 32-bit size enum */ -} D3DBLEND; - -typedef enum _D3DBLENDOP { - D3DBLENDOP_ADD = 1, - D3DBLENDOP_SUBTRACT = 2, - D3DBLENDOP_REVSUBTRACT = 3, - D3DBLENDOP_MIN = 4, - D3DBLENDOP_MAX = 5, - D3DBLENDOP_FORCE_DWORD = 0x7fffffff, /* force 32-bit size enum */ -} D3DBLENDOP; - -typedef enum _D3DTEXTUREADDRESS { - D3DTADDRESS_WRAP = 1, - D3DTADDRESS_MIRROR = 2, - D3DTADDRESS_CLAMP = 3, - D3DTADDRESS_BORDER = 4, - D3DTADDRESS_MIRRORONCE = 5, - D3DTADDRESS_FORCE_DWORD = 0x7fffffff, /* force 32-bit size enum */ -} D3DTEXTUREADDRESS; - -typedef enum _D3DCULL { - D3DCULL_NONE = 1, - D3DCULL_CW = 2, - D3DCULL_CCW = 3, - D3DCULL_FORCE_DWORD = 0x7fffffff, /* force 32-bit size enum */ -} D3DCULL; - -typedef enum _D3DCMPFUNC { - D3DCMP_NEVER = 1, - D3DCMP_LESS = 2, - D3DCMP_EQUAL = 3, - D3DCMP_LESSEQUAL = 4, - D3DCMP_GREATER = 5, - D3DCMP_NOTEQUAL = 6, - D3DCMP_GREATEREQUAL = 7, - D3DCMP_ALWAYS = 8, - D3DCMP_FORCE_DWORD = 0x7fffffff, /* force 32-bit size enum */ -} D3DCMPFUNC; - -typedef enum _D3DSTENCILOP { - D3DSTENCILOP_KEEP = 1, - D3DSTENCILOP_ZERO = 2, - D3DSTENCILOP_REPLACE = 3, - D3DSTENCILOP_INCRSAT = 4, - D3DSTENCILOP_DECRSAT = 5, - D3DSTENCILOP_INVERT = 6, - D3DSTENCILOP_INCR = 7, - D3DSTENCILOP_DECR = 8, - D3DSTENCILOP_FORCE_DWORD = 0x7fffffff, /* force 32-bit size enum */ -} D3DSTENCILOP; - -typedef enum _D3DFOGMODE { - D3DFOG_NONE = 0, - D3DFOG_EXP = 1, - D3DFOG_EXP2 = 2, - D3DFOG_LINEAR = 3, - D3DFOG_FORCE_DWORD = 0x7fffffff, /* force 32-bit size enum */ -} D3DFOGMODE; - -typedef enum _D3DZBUFFERTYPE { - D3DZB_FALSE = 0, - D3DZB_TRUE = 1, // Z buffering - D3DZB_USEW = 2, // W buffering - D3DZB_FORCE_DWORD = 0x7fffffff, /* force 32-bit size enum */ -} D3DZBUFFERTYPE; - -// Primitives supported by draw-primitive API -typedef enum _D3DPRIMITIVETYPE { - D3DPT_POINTLIST = 1, - D3DPT_LINELIST = 2, - D3DPT_LINESTRIP = 3, - D3DPT_TRIANGLELIST = 4, - D3DPT_TRIANGLESTRIP = 5, - D3DPT_TRIANGLEFAN = 6, - D3DPT_FORCE_DWORD = 0x7fffffff, /* force 32-bit size enum */ -} D3DPRIMITIVETYPE; - -typedef enum _D3DTRANSFORMSTATETYPE { - D3DTS_VIEW = 2, - D3DTS_PROJECTION = 3, - D3DTS_TEXTURE0 = 16, - D3DTS_TEXTURE1 = 17, - D3DTS_TEXTURE2 = 18, - D3DTS_TEXTURE3 = 19, - D3DTS_TEXTURE4 = 20, - D3DTS_TEXTURE5 = 21, - D3DTS_TEXTURE6 = 22, - D3DTS_TEXTURE7 = 23, - D3DTS_FORCE_DWORD = 0x7fffffff, /* force 32-bit size enum */ -} D3DTRANSFORMSTATETYPE; - -#define D3DTS_WORLDMATRIX(index) (D3DTRANSFORMSTATETYPE)(index + 256) -#define D3DTS_WORLD D3DTS_WORLDMATRIX(0) -#define D3DTS_WORLD1 D3DTS_WORLDMATRIX(1) -#define D3DTS_WORLD2 D3DTS_WORLDMATRIX(2) -#define D3DTS_WORLD3 D3DTS_WORLDMATRIX(3) - -typedef enum _D3DRENDERSTATETYPE { - D3DRS_ZENABLE = 7, /* D3DZBUFFERTYPE (or TRUE/FALSE for legacy) */ - D3DRS_FILLMODE = 8, /* D3DFILLMODE */ - D3DRS_SHADEMODE = 9, /* D3DSHADEMODE */ - D3DRS_ZWRITEENABLE = 14, /* TRUE to enable z writes */ - D3DRS_ALPHATESTENABLE = 15, /* TRUE to enable alpha tests */ - D3DRS_LASTPIXEL = 16, /* TRUE for last-pixel on lines */ - D3DRS_SRCBLEND = 19, /* D3DBLEND */ - D3DRS_DESTBLEND = 20, /* D3DBLEND */ - D3DRS_CULLMODE = 22, /* D3DCULL */ - D3DRS_ZFUNC = 23, /* D3DCMPFUNC */ - D3DRS_ALPHAREF = 24, /* D3DFIXED */ - D3DRS_ALPHAFUNC = 25, /* D3DCMPFUNC */ - D3DRS_DITHERENABLE = 26, /* TRUE to enable dithering */ - D3DRS_ALPHABLENDENABLE = 27, /* TRUE to enable alpha blending */ - D3DRS_FOGENABLE = 28, /* TRUE to enable fog blending */ - D3DRS_SPECULARENABLE = 29, /* TRUE to enable specular */ - D3DRS_FOGCOLOR = 34, /* D3DCOLOR */ - D3DRS_FOGTABLEMODE = 35, /* D3DFOGMODE */ - D3DRS_FOGSTART = 36, /* Fog start (for both vertex and pixel fog) */ - D3DRS_FOGEND = 37, /* Fog end */ - D3DRS_FOGDENSITY = 38, /* Fog density */ - D3DRS_RANGEFOGENABLE = 48, /* Enables range-based fog */ - D3DRS_STENCILENABLE = 52, /* BOOL enable/disable stenciling */ - D3DRS_STENCILFAIL = 53, /* D3DSTENCILOP to do if stencil test fails */ - D3DRS_STENCILZFAIL = 54, /* D3DSTENCILOP to do if stencil test passes and Z test fails */ - D3DRS_STENCILPASS = 55, /* D3DSTENCILOP to do if both stencil and Z tests pass */ - D3DRS_STENCILFUNC = 56, /* D3DCMPFUNC fn. Stencil Test passes if ((ref & mask) stencilfn (stencil & mask)) is true */ - D3DRS_STENCILREF = 57, /* Reference value used in stencil test */ - D3DRS_STENCILMASK = 58, /* Mask value used in stencil test */ - D3DRS_STENCILWRITEMASK = 59, /* Write mask applied to values written to stencil buffer */ - D3DRS_TEXTUREFACTOR = 60, /* D3DCOLOR used for multi-texture blend */ - D3DRS_WRAP0 = 128, /* wrap for 1st texture coord. set */ - D3DRS_WRAP1 = 129, /* wrap for 2nd texture coord. set */ - D3DRS_WRAP2 = 130, /* wrap for 3rd texture coord. set */ - D3DRS_WRAP3 = 131, /* wrap for 4th texture coord. set */ - D3DRS_WRAP4 = 132, /* wrap for 5th texture coord. set */ - D3DRS_WRAP5 = 133, /* wrap for 6th texture coord. set */ - D3DRS_WRAP6 = 134, /* wrap for 7th texture coord. set */ - D3DRS_WRAP7 = 135, /* wrap for 8th texture coord. set */ - D3DRS_CLIPPING = 136, - D3DRS_LIGHTING = 137, - D3DRS_AMBIENT = 139, - D3DRS_FOGVERTEXMODE = 140, - D3DRS_COLORVERTEX = 141, - D3DRS_LOCALVIEWER = 142, - D3DRS_NORMALIZENORMALS = 143, - D3DRS_DIFFUSEMATERIALSOURCE = 145, - D3DRS_SPECULARMATERIALSOURCE = 146, - D3DRS_AMBIENTMATERIALSOURCE = 147, - D3DRS_EMISSIVEMATERIALSOURCE = 148, - D3DRS_VERTEXBLEND = 151, - D3DRS_CLIPPLANEENABLE = 152, - D3DRS_POINTSIZE = 154, /* float point size */ - D3DRS_POINTSIZE_MIN = 155, /* float point size min threshold */ - D3DRS_POINTSPRITEENABLE = 156, /* BOOL point texture coord control */ - D3DRS_POINTSCALEENABLE = 157, /* BOOL point size scale enable */ - D3DRS_POINTSCALE_A = 158, /* float point attenuation A value */ - D3DRS_POINTSCALE_B = 159, /* float point attenuation B value */ - D3DRS_POINTSCALE_C = 160, /* float point attenuation C value */ - D3DRS_MULTISAMPLEANTIALIAS = 161, // BOOL - set to do FSAA with multisample buffer - D3DRS_MULTISAMPLEMASK = 162, // DWORD - per-sample enable/disable - D3DRS_PATCHEDGESTYLE = 163, // Sets whether patch edges will use float style tessellation - D3DRS_DEBUGMONITORTOKEN = 165, // DEBUG ONLY - token to debug monitor - D3DRS_POINTSIZE_MAX = 166, /* float point size max threshold */ - D3DRS_INDEXEDVERTEXBLENDENABLE = 167, - D3DRS_COLORWRITEENABLE = 168, // per-channel write enable - D3DRS_TWEENFACTOR = 170, // float tween factor - D3DRS_BLENDOP = 171, // D3DBLENDOP setting - D3DRS_POSITIONDEGREE = 172, // NPatch position interpolation degree. D3DDEGREE_LINEAR or D3DDEGREE_CUBIC (default) - D3DRS_NORMALDEGREE = 173, // NPatch normal interpolation degree. D3DDEGREE_LINEAR (default) or D3DDEGREE_QUADRATIC - D3DRS_SCISSORTESTENABLE = 174, - D3DRS_SLOPESCALEDEPTHBIAS = 175, - D3DRS_ANTIALIASEDLINEENABLE = 176, - D3DRS_MINTESSELLATIONLEVEL = 178, - D3DRS_MAXTESSELLATIONLEVEL = 179, - D3DRS_ADAPTIVETESS_X = 180, - D3DRS_ADAPTIVETESS_Y = 181, - D3DRS_ADAPTIVETESS_Z = 182, - D3DRS_ADAPTIVETESS_W = 183, - D3DRS_ENABLEADAPTIVETESSELLATION = 184, - D3DRS_TWOSIDEDSTENCILMODE = 185, /* BOOL enable/disable 2 sided stenciling */ - D3DRS_CCW_STENCILFAIL = 186, /* D3DSTENCILOP to do if ccw stencil test fails */ - D3DRS_CCW_STENCILZFAIL = 187, /* D3DSTENCILOP to do if ccw stencil test passes and Z test fails */ - D3DRS_CCW_STENCILPASS = 188, /* D3DSTENCILOP to do if both ccw stencil and Z tests pass */ - D3DRS_CCW_STENCILFUNC = 189, /* D3DCMPFUNC fn. ccw Stencil Test passes if ((ref & mask) stencilfn (stencil & mask)) is true */ - D3DRS_COLORWRITEENABLE1 = 190, /* Additional ColorWriteEnables for the devices that support D3DPMISCCAPS_INDEPENDENTWRITEMASKS */ - D3DRS_COLORWRITEENABLE2 = 191, /* Additional ColorWriteEnables for the devices that support D3DPMISCCAPS_INDEPENDENTWRITEMASKS */ - D3DRS_COLORWRITEENABLE3 = 192, /* Additional ColorWriteEnables for the devices that support D3DPMISCCAPS_INDEPENDENTWRITEMASKS */ - D3DRS_BLENDFACTOR = 193, /* D3DCOLOR used for a constant blend factor during alpha blending for devices that support D3DPBLENDCAPS_BLENDFACTOR */ - D3DRS_SRGBWRITEENABLE = 194, /* Enable rendertarget writes to be DE-linearized to SRGB (for formats that expose D3DUSAGE_QUERY_SRGBWRITE) */ - D3DRS_DEPTHBIAS = 195, - D3DRS_WRAP8 = 198, /* Additional wrap states for vs_3_0+ attributes with D3DDECLUSAGE_TEXCOORD */ - D3DRS_WRAP9 = 199, - D3DRS_WRAP10 = 200, - D3DRS_WRAP11 = 201, - D3DRS_WRAP12 = 202, - D3DRS_WRAP13 = 203, - D3DRS_WRAP14 = 204, - D3DRS_WRAP15 = 205, - D3DRS_SEPARATEALPHABLENDENABLE = 206, /* TRUE to enable a separate blending function for the alpha channel */ - D3DRS_SRCBLENDALPHA = 207, /* SRC blend factor for the alpha channel when D3DRS_SEPARATEDESTALPHAENABLE is TRUE */ - D3DRS_DESTBLENDALPHA = 208, /* DST blend factor for the alpha channel when D3DRS_SEPARATEDESTALPHAENABLE is TRUE */ - D3DRS_BLENDOPALPHA = 209, /* Blending operation for the alpha channel when D3DRS_SEPARATEDESTALPHAENABLE is TRUE */ - - - D3DRS_FORCE_DWORD = 0x7fffffff, /* force 32-bit size enum */ -} D3DRENDERSTATETYPE; - -// Maximum number of simultaneous render targets D3D supports -#define D3D_MAX_SIMULTANEOUS_RENDERTARGETS 4 - -// Values for material source -typedef enum _D3DMATERIALCOLORSOURCE -{ - D3DMCS_MATERIAL = 0, // Color from material is used - D3DMCS_COLOR1 = 1, // Diffuse vertex color is used - D3DMCS_COLOR2 = 2, // Specular vertex color is used - D3DMCS_FORCE_DWORD = 0x7fffffff, // force 32-bit size enum -} D3DMATERIALCOLORSOURCE; - -// Bias to apply to the texture coordinate set to apply a wrap to. -#define D3DRENDERSTATE_WRAPBIAS 128UL - -/* Flags to construct the WRAP render states */ -#define D3DWRAP_U 0x00000001L -#define D3DWRAP_V 0x00000002L -#define D3DWRAP_W 0x00000004L - -/* Flags to construct the WRAP render states for 1D thru 4D texture coordinates */ -#define D3DWRAPCOORD_0 0x00000001L // same as D3DWRAP_U -#define D3DWRAPCOORD_1 0x00000002L // same as D3DWRAP_V -#define D3DWRAPCOORD_2 0x00000004L // same as D3DWRAP_W -#define D3DWRAPCOORD_3 0x00000008L - -/* Flags to construct D3DRS_COLORWRITEENABLE */ -#define D3DCOLORWRITEENABLE_RED (1L<<0) -#define D3DCOLORWRITEENABLE_GREEN (1L<<1) -#define D3DCOLORWRITEENABLE_BLUE (1L<<2) -#define D3DCOLORWRITEENABLE_ALPHA (1L<<3) - -/* - * State enumerants for per-stage processing of fixed function pixel processing - * Two of these affect fixed function vertex processing as well: TEXTURETRANSFORMFLAGS and TEXCOORDINDEX. - */ -typedef enum _D3DTEXTURESTAGESTATETYPE -{ - D3DTSS_COLOROP = 1, /* D3DTEXTUREOP - per-stage blending controls for color channels */ - D3DTSS_COLORARG1 = 2, /* D3DTA_* (texture arg) */ - D3DTSS_COLORARG2 = 3, /* D3DTA_* (texture arg) */ - D3DTSS_ALPHAOP = 4, /* D3DTEXTUREOP - per-stage blending controls for alpha channel */ - D3DTSS_ALPHAARG1 = 5, /* D3DTA_* (texture arg) */ - D3DTSS_ALPHAARG2 = 6, /* D3DTA_* (texture arg) */ - D3DTSS_BUMPENVMAT00 = 7, /* float (bump mapping matrix) */ - D3DTSS_BUMPENVMAT01 = 8, /* float (bump mapping matrix) */ - D3DTSS_BUMPENVMAT10 = 9, /* float (bump mapping matrix) */ - D3DTSS_BUMPENVMAT11 = 10, /* float (bump mapping matrix) */ - D3DTSS_TEXCOORDINDEX = 11, /* identifies which set of texture coordinates index this texture */ - D3DTSS_BUMPENVLSCALE = 22, /* float scale for bump map luminance */ - D3DTSS_BUMPENVLOFFSET = 23, /* float offset for bump map luminance */ - D3DTSS_TEXTURETRANSFORMFLAGS = 24, /* D3DTEXTURETRANSFORMFLAGS controls texture transform */ - D3DTSS_COLORARG0 = 26, /* D3DTA_* third arg for triadic ops */ - D3DTSS_ALPHAARG0 = 27, /* D3DTA_* third arg for triadic ops */ - D3DTSS_RESULTARG = 28, /* D3DTA_* arg for result (CURRENT or TEMP) */ - D3DTSS_CONSTANT = 32, /* Per-stage constant D3DTA_CONSTANT */ - - - D3DTSS_FORCE_DWORD = 0x7fffffff, /* force 32-bit size enum */ -} D3DTEXTURESTAGESTATETYPE; - -/* - * State enumerants for per-sampler texture processing. - */ -typedef enum _D3DSAMPLERSTATETYPE -{ - D3DSAMP_ADDRESSU = 1, /* D3DTEXTUREADDRESS for U coordinate */ - D3DSAMP_ADDRESSV = 2, /* D3DTEXTUREADDRESS for V coordinate */ - D3DSAMP_ADDRESSW = 3, /* D3DTEXTUREADDRESS for W coordinate */ - D3DSAMP_BORDERCOLOR = 4, /* D3DCOLOR */ - D3DSAMP_MAGFILTER = 5, /* D3DTEXTUREFILTER filter to use for magnification */ - D3DSAMP_MINFILTER = 6, /* D3DTEXTUREFILTER filter to use for minification */ - D3DSAMP_MIPFILTER = 7, /* D3DTEXTUREFILTER filter to use between mipmaps during minification */ - D3DSAMP_MIPMAPLODBIAS = 8, /* float Mipmap LOD bias */ - D3DSAMP_MAXMIPLEVEL = 9, /* DWORD 0..(n-1) LOD index of largest map to use (0 == largest) */ - D3DSAMP_MAXANISOTROPY = 10, /* DWORD maximum anisotropy */ - D3DSAMP_SRGBTEXTURE = 11, /* Default = 0 (which means Gamma 1.0, - no correction required.) else correct for - Gamma = 2.2 */ - D3DSAMP_ELEMENTINDEX = 12, /* When multi-element texture is assigned to sampler, this - indicates which element index to use. Default = 0. */ - D3DSAMP_DMAPOFFSET = 13, /* Offset in vertices in the pre-sampled displacement map. - Only valid for D3DDMAPSAMPLER sampler */ - D3DSAMP_FORCE_DWORD = 0x7fffffff, /* force 32-bit size enum */ -} D3DSAMPLERSTATETYPE; - -/* Special sampler which is used in the tesselator */ -#define D3DDMAPSAMPLER 256 - -// Samplers used in vertex shaders -#define D3DVERTEXTEXTURESAMPLER0 (D3DDMAPSAMPLER+1) -#define D3DVERTEXTEXTURESAMPLER1 (D3DDMAPSAMPLER+2) -#define D3DVERTEXTEXTURESAMPLER2 (D3DDMAPSAMPLER+3) -#define D3DVERTEXTEXTURESAMPLER3 (D3DDMAPSAMPLER+4) - -// Values, used with D3DTSS_TEXCOORDINDEX, to specify that the vertex data(position -// and normal in the camera space) should be taken as texture coordinates -// Low 16 bits are used to specify texture coordinate index, to take the WRAP mode from -// -#define D3DTSS_TCI_PASSTHRU 0x00000000 -#define D3DTSS_TCI_CAMERASPACENORMAL 0x00010000 -#define D3DTSS_TCI_CAMERASPACEPOSITION 0x00020000 -#define D3DTSS_TCI_CAMERASPACEREFLECTIONVECTOR 0x00030000 -#define D3DTSS_TCI_SPHEREMAP 0x00040000 - -/* - * Enumerations for COLOROP and ALPHAOP texture blending operations set in - * texture processing stage controls in D3DTSS. - */ -typedef enum _D3DTEXTUREOP -{ - // Control - D3DTOP_DISABLE = 1, // disables stage - D3DTOP_SELECTARG1 = 2, // the default - D3DTOP_SELECTARG2 = 3, - - // Modulate - D3DTOP_MODULATE = 4, // multiply args together - D3DTOP_MODULATE2X = 5, // multiply and 1 bit - D3DTOP_MODULATE4X = 6, // multiply and 2 bits - - // Add - D3DTOP_ADD = 7, // add arguments together - D3DTOP_ADDSIGNED = 8, // add with -0.5 bias - D3DTOP_ADDSIGNED2X = 9, // as above but left 1 bit - D3DTOP_SUBTRACT = 10, // Arg1 - Arg2, with no saturation - D3DTOP_ADDSMOOTH = 11, // add 2 args, subtract product - // Arg1 + Arg2 - Arg1*Arg2 - // = Arg1 + (1-Arg1)*Arg2 - - // Linear alpha blend: Arg1*(Alpha) + Arg2*(1-Alpha) - D3DTOP_BLENDDIFFUSEALPHA = 12, // iterated alpha - D3DTOP_BLENDTEXTUREALPHA = 13, // texture alpha - D3DTOP_BLENDFACTORALPHA = 14, // alpha from D3DRS_TEXTUREFACTOR - - // Linear alpha blend with pre-multiplied arg1 input: Arg1 + Arg2*(1-Alpha) - D3DTOP_BLENDTEXTUREALPHAPM = 15, // texture alpha - D3DTOP_BLENDCURRENTALPHA = 16, // by alpha of current color - - // Specular mapping - D3DTOP_PREMODULATE = 17, // modulate with next texture before use - D3DTOP_MODULATEALPHA_ADDCOLOR = 18, // Arg1.RGB + Arg1.A*Arg2.RGB - // COLOROP only - D3DTOP_MODULATECOLOR_ADDALPHA = 19, // Arg1.RGB*Arg2.RGB + Arg1.A - // COLOROP only - D3DTOP_MODULATEINVALPHA_ADDCOLOR = 20, // (1-Arg1.A)*Arg2.RGB + Arg1.RGB - // COLOROP only - D3DTOP_MODULATEINVCOLOR_ADDALPHA = 21, // (1-Arg1.RGB)*Arg2.RGB + Arg1.A - // COLOROP only - - // Bump mapping - D3DTOP_BUMPENVMAP = 22, // per pixel env map perturbation - D3DTOP_BUMPENVMAPLUMINANCE = 23, // with luminance channel - - // This can do either diffuse or specular bump mapping with correct input. - // Performs the function (Arg1.R*Arg2.R + Arg1.G*Arg2.G + Arg1.B*Arg2.B) - // where each component has been scaled and offset to make it signed. - // The result is replicated into all four (including alpha) channels. - // This is a valid COLOROP only. - D3DTOP_DOTPRODUCT3 = 24, - - // Triadic ops - D3DTOP_MULTIPLYADD = 25, // Arg0 + Arg1*Arg2 - D3DTOP_LERP = 26, // (Arg0)*Arg1 + (1-Arg0)*Arg2 - - D3DTOP_FORCE_DWORD = 0x7fffffff, -} D3DTEXTUREOP; - -/* - * Values for COLORARG0,1,2, ALPHAARG0,1,2, and RESULTARG texture blending - * operations set in texture processing stage controls in D3DRENDERSTATE. - */ -#define D3DTA_SELECTMASK 0x0000000f // mask for arg selector -#define D3DTA_DIFFUSE 0x00000000 // select diffuse color (read only) -#define D3DTA_CURRENT 0x00000001 // select stage destination register (read/write) -#define D3DTA_TEXTURE 0x00000002 // select texture color (read only) -#define D3DTA_TFACTOR 0x00000003 // select D3DRS_TEXTUREFACTOR (read only) -#define D3DTA_SPECULAR 0x00000004 // select specular color (read only) -#define D3DTA_TEMP 0x00000005 // select temporary register color (read/write) -#define D3DTA_CONSTANT 0x00000006 // select texture stage constant -#define D3DTA_COMPLEMENT 0x00000010 // take 1.0 - x (read modifier) -#define D3DTA_ALPHAREPLICATE 0x00000020 // replicate alpha to color components (read modifier) - -// -// Values for D3DSAMP_***FILTER texture stage states -// -typedef enum _D3DTEXTUREFILTERTYPE -{ - D3DTEXF_NONE = 0, // filtering disabled (valid for mip filter only) - D3DTEXF_POINT = 1, // nearest - D3DTEXF_LINEAR = 2, // linear interpolation - D3DTEXF_ANISOTROPIC = 3, // anisotropic - D3DTEXF_PYRAMIDALQUAD = 6, // 4-sample tent - D3DTEXF_GAUSSIANQUAD = 7, // 4-sample gaussian -/* D3D9Ex only -- */ -#if !defined(D3D_DISABLE_9EX) - - D3DTEXF_CONVOLUTIONMONO = 8, // Convolution filter for monochrome textures - -#endif // !D3D_DISABLE_9EX -/* -- D3D9Ex only */ - D3DTEXF_FORCE_DWORD = 0x7fffffff, // force 32-bit size enum -} D3DTEXTUREFILTERTYPE; - -/* Bits for Flags in ProcessVertices call */ - -#define D3DPV_DONOTCOPYDATA (1 << 0) - -//------------------------------------------------------------------- - -// Flexible vertex format bits -// -#define D3DFVF_RESERVED0 0x001 -#define D3DFVF_POSITION_MASK 0x400E -#define D3DFVF_XYZ 0x002 -#define D3DFVF_XYZRHW 0x004 -#define D3DFVF_XYZB1 0x006 -#define D3DFVF_XYZB2 0x008 -#define D3DFVF_XYZB3 0x00a -#define D3DFVF_XYZB4 0x00c -#define D3DFVF_XYZB5 0x00e -#define D3DFVF_XYZW 0x4002 - -#define D3DFVF_NORMAL 0x010 -#define D3DFVF_PSIZE 0x020 -#define D3DFVF_DIFFUSE 0x040 -#define D3DFVF_SPECULAR 0x080 - -#define D3DFVF_TEXCOUNT_MASK 0xf00 -#define D3DFVF_TEXCOUNT_SHIFT 8 -#define D3DFVF_TEX0 0x000 -#define D3DFVF_TEX1 0x100 -#define D3DFVF_TEX2 0x200 -#define D3DFVF_TEX3 0x300 -#define D3DFVF_TEX4 0x400 -#define D3DFVF_TEX5 0x500 -#define D3DFVF_TEX6 0x600 -#define D3DFVF_TEX7 0x700 -#define D3DFVF_TEX8 0x800 - -#define D3DFVF_LASTBETA_UBYTE4 0x1000 -#define D3DFVF_LASTBETA_D3DCOLOR 0x8000 - -#define D3DFVF_RESERVED2 0x6000 // 2 reserved bits - -//--------------------------------------------------------------------- -// Vertex Shaders -// - -// Vertex shader declaration - -// Vertex element semantics -// -typedef enum _D3DDECLUSAGE -{ - D3DDECLUSAGE_POSITION = 0, - D3DDECLUSAGE_BLENDWEIGHT, // 1 - D3DDECLUSAGE_BLENDINDICES, // 2 - D3DDECLUSAGE_NORMAL, // 3 - D3DDECLUSAGE_PSIZE, // 4 - D3DDECLUSAGE_TEXCOORD, // 5 - D3DDECLUSAGE_TANGENT, // 6 - D3DDECLUSAGE_BINORMAL, // 7 - D3DDECLUSAGE_TESSFACTOR, // 8 - D3DDECLUSAGE_POSITIONT, // 9 - D3DDECLUSAGE_COLOR, // 10 - D3DDECLUSAGE_FOG, // 11 - D3DDECLUSAGE_DEPTH, // 12 - D3DDECLUSAGE_SAMPLE, // 13 -} D3DDECLUSAGE; - -#define MAXD3DDECLUSAGE D3DDECLUSAGE_SAMPLE -#define MAXD3DDECLUSAGEINDEX 15 -#define MAXD3DDECLLENGTH 64 // does not include "end" marker vertex element - -typedef enum _D3DDECLMETHOD -{ - D3DDECLMETHOD_DEFAULT = 0, - D3DDECLMETHOD_PARTIALU, - D3DDECLMETHOD_PARTIALV, - D3DDECLMETHOD_CROSSUV, // Normal - D3DDECLMETHOD_UV, - D3DDECLMETHOD_LOOKUP, // Lookup a displacement map - D3DDECLMETHOD_LOOKUPPRESAMPLED, // Lookup a pre-sampled displacement map -} D3DDECLMETHOD; - -#define MAXD3DDECLMETHOD D3DDECLMETHOD_LOOKUPPRESAMPLED - -// Declarations for _Type fields -// -typedef enum _D3DDECLTYPE -{ - D3DDECLTYPE_FLOAT1 = 0, // 1D float expanded to (value, 0., 0., 1.) - D3DDECLTYPE_FLOAT2 = 1, // 2D float expanded to (value, value, 0., 1.) - D3DDECLTYPE_FLOAT3 = 2, // 3D float expanded to (value, value, value, 1.) - D3DDECLTYPE_FLOAT4 = 3, // 4D float - D3DDECLTYPE_D3DCOLOR = 4, // 4D packed unsigned bytes mapped to 0. to 1. range - // Input is in D3DCOLOR format (ARGB) expanded to (R, G, B, A) - D3DDECLTYPE_UBYTE4 = 5, // 4D unsigned byte - D3DDECLTYPE_SHORT2 = 6, // 2D signed short expanded to (value, value, 0., 1.) - D3DDECLTYPE_SHORT4 = 7, // 4D signed short - -// The following types are valid only with vertex shaders >= 2.0 - - - D3DDECLTYPE_UBYTE4N = 8, // Each of 4 bytes is normalized by dividing to 255.0 - D3DDECLTYPE_SHORT2N = 9, // 2D signed short normalized (v[0]/32767.0,v[1]/32767.0,0,1) - D3DDECLTYPE_SHORT4N = 10, // 4D signed short normalized (v[0]/32767.0,v[1]/32767.0,v[2]/32767.0,v[3]/32767.0) - D3DDECLTYPE_USHORT2N = 11, // 2D unsigned short normalized (v[0]/65535.0,v[1]/65535.0,0,1) - D3DDECLTYPE_USHORT4N = 12, // 4D unsigned short normalized (v[0]/65535.0,v[1]/65535.0,v[2]/65535.0,v[3]/65535.0) - D3DDECLTYPE_UDEC3 = 13, // 3D unsigned 10 10 10 format expanded to (value, value, value, 1) - D3DDECLTYPE_DEC3N = 14, // 3D signed 10 10 10 format normalized and expanded to (v[0]/511.0, v[1]/511.0, v[2]/511.0, 1) - D3DDECLTYPE_FLOAT16_2 = 15, // Two 16-bit floating point values, expanded to (value, value, 0, 1) - D3DDECLTYPE_FLOAT16_4 = 16, // Four 16-bit floating point values - D3DDECLTYPE_UNUSED = 17, // When the type field in a decl is unused. -} D3DDECLTYPE; - -#define MAXD3DDECLTYPE D3DDECLTYPE_UNUSED - -typedef struct _D3DVERTEXELEMENT9 -{ - WORD Stream; // Stream index - WORD Offset; // Offset in the stream in bytes - BYTE Type; // Data type - BYTE Method; // Processing method - BYTE Usage; // Semantics - BYTE UsageIndex; // Semantic index -} D3DVERTEXELEMENT9, *LPD3DVERTEXELEMENT9; - -// This is used to initialize the last vertex element in a vertex declaration -// array -// -#define D3DDECL_END() {0xFF,0,D3DDECLTYPE_UNUSED,0,0,0} - -// Maximum supported number of texture coordinate sets -#define D3DDP_MAXTEXCOORD 8 - -//--------------------------------------------------------------------- -// Values for IDirect3DDevice9::SetStreamSourceFreq's Setting parameter -//--------------------------------------------------------------------- -#define D3DSTREAMSOURCE_INDEXEDDATA (1<<30) -#define D3DSTREAMSOURCE_INSTANCEDATA (2<<30) - - - -//--------------------------------------------------------------------- -// -// The internal format of Pixel Shader (PS) & Vertex Shader (VS) -// Instruction Tokens is defined in the Direct3D Device Driver Kit -// -//--------------------------------------------------------------------- - -// -// Instruction Token Bit Definitions -// -#define D3DSI_OPCODE_MASK 0x0000FFFF - -#define D3DSI_INSTLENGTH_MASK 0x0F000000 -#define D3DSI_INSTLENGTH_SHIFT 24 - -typedef enum _D3DSHADER_INSTRUCTION_OPCODE_TYPE -{ - D3DSIO_NOP = 0, - D3DSIO_MOV , - D3DSIO_ADD , - D3DSIO_SUB , - D3DSIO_MAD , - D3DSIO_MUL , - D3DSIO_RCP , - D3DSIO_RSQ , - D3DSIO_DP3 , - D3DSIO_DP4 , - D3DSIO_MIN , - D3DSIO_MAX , - D3DSIO_SLT , - D3DSIO_SGE , - D3DSIO_EXP , - D3DSIO_LOG , - D3DSIO_LIT , - D3DSIO_DST , - D3DSIO_LRP , - D3DSIO_FRC , - D3DSIO_M4x4 , - D3DSIO_M4x3 , - D3DSIO_M3x4 , - D3DSIO_M3x3 , - D3DSIO_M3x2 , - D3DSIO_CALL , - D3DSIO_CALLNZ , - D3DSIO_LOOP , - D3DSIO_RET , - D3DSIO_ENDLOOP , - D3DSIO_LABEL , - D3DSIO_DCL , - D3DSIO_POW , - D3DSIO_CRS , - D3DSIO_SGN , - D3DSIO_ABS , - D3DSIO_NRM , - D3DSIO_SINCOS , - D3DSIO_REP , - D3DSIO_ENDREP , - D3DSIO_IF , - D3DSIO_IFC , - D3DSIO_ELSE , - D3DSIO_ENDIF , - D3DSIO_BREAK , - D3DSIO_BREAKC , - D3DSIO_MOVA , - D3DSIO_DEFB , - D3DSIO_DEFI , - - D3DSIO_TEXCOORD = 64, - D3DSIO_TEXKILL , - D3DSIO_TEX , - D3DSIO_TEXBEM , - D3DSIO_TEXBEML , - D3DSIO_TEXREG2AR , - D3DSIO_TEXREG2GB , - D3DSIO_TEXM3x2PAD , - D3DSIO_TEXM3x2TEX , - D3DSIO_TEXM3x3PAD , - D3DSIO_TEXM3x3TEX , - D3DSIO_RESERVED0 , - D3DSIO_TEXM3x3SPEC , - D3DSIO_TEXM3x3VSPEC , - D3DSIO_EXPP , - D3DSIO_LOGP , - D3DSIO_CND , - D3DSIO_DEF , - D3DSIO_TEXREG2RGB , - D3DSIO_TEXDP3TEX , - D3DSIO_TEXM3x2DEPTH , - D3DSIO_TEXDP3 , - D3DSIO_TEXM3x3 , - D3DSIO_TEXDEPTH , - D3DSIO_CMP , - D3DSIO_BEM , - D3DSIO_DP2ADD , - D3DSIO_DSX , - D3DSIO_DSY , - D3DSIO_TEXLDD , - D3DSIO_SETP , - D3DSIO_TEXLDL , - D3DSIO_BREAKP , - - D3DSIO_PHASE = 0xFFFD, - D3DSIO_COMMENT = 0xFFFE, - D3DSIO_END = 0xFFFF, - - D3DSIO_FORCE_DWORD = 0x7fffffff, // force 32-bit size enum -} D3DSHADER_INSTRUCTION_OPCODE_TYPE; - -//--------------------------------------------------------------------- -// Use these constants with D3DSIO_SINCOS macro as SRC2, SRC3 -// -#define D3DSINCOSCONST1 -1.5500992e-006f, -2.1701389e-005f, 0.0026041667f, 0.00026041668f -#define D3DSINCOSCONST2 -0.020833334f, -0.12500000f, 1.0f, 0.50000000f - -//--------------------------------------------------------------------- -// Co-Issue Instruction Modifier - if set then this instruction is to be -// issued in parallel with the previous instruction(s) for which this bit -// is not set. -// -#define D3DSI_COISSUE 0x40000000 - -//--------------------------------------------------------------------- -// Opcode specific controls - -#define D3DSP_OPCODESPECIFICCONTROL_MASK 0x00ff0000 -#define D3DSP_OPCODESPECIFICCONTROL_SHIFT 16 - -// ps_2_0 texld controls -#define D3DSI_TEXLD_PROJECT (0x01 << D3DSP_OPCODESPECIFICCONTROL_SHIFT) -#define D3DSI_TEXLD_BIAS (0x02 << D3DSP_OPCODESPECIFICCONTROL_SHIFT) - -// Comparison for dynamic conditional instruction opcodes (i.e. if, breakc) -typedef enum _D3DSHADER_COMPARISON -{ - // < = > - D3DSPC_RESERVED0= 0, // 0 0 0 - D3DSPC_GT = 1, // 0 0 1 - D3DSPC_EQ = 2, // 0 1 0 - D3DSPC_GE = 3, // 0 1 1 - D3DSPC_LT = 4, // 1 0 0 - D3DSPC_NE = 5, // 1 0 1 - D3DSPC_LE = 6, // 1 1 0 - D3DSPC_RESERVED1= 7 // 1 1 1 -} D3DSHADER_COMPARISON; - -// Comparison is part of instruction opcode token: -#define D3DSHADER_COMPARISON_SHIFT D3DSP_OPCODESPECIFICCONTROL_SHIFT -#define D3DSHADER_COMPARISON_MASK (0x7<>8)&0xFF) -#define D3DSHADER_VERSION_MINOR(_Version) (((_Version)>>0)&0xFF) - -// destination/source parameter register type -#define D3DSI_COMMENTSIZE_SHIFT 16 -#define D3DSI_COMMENTSIZE_MASK 0x7FFF0000 -#define D3DSHADER_COMMENT(_DWordSize) \ - ((((_DWordSize)<= 1200 -#pragma warning(pop) -#else -#pragma warning(default:4201) -#endif - -#endif /* (DIRECT3D_VERSION >= 0x0900) */ -#endif /* _d3d9TYPES(P)_H_ */ - diff --git a/SDK/Include/d3dx10async.h b/SDK/Include/d3dx10async.h deleted file mode 100644 index d1b1fc5..0000000 --- a/SDK/Include/d3dx10async.h +++ /dev/null @@ -1,290 +0,0 @@ - -////////////////////////////////////////////////////////////////////////////// -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// -// File: D3DX10Async.h -// Content: D3DX10 Asynchronous Effect / Shader loaders / compilers -// -////////////////////////////////////////////////////////////////////////////// - -#ifndef __D3DX10ASYNC_H__ -#define __D3DX10ASYNC_H__ - -#include "d3dx10.h" - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - - -//---------------------------------------------------------------------------- -// D3DX10Compile: -// ------------------ -// Compiles an effect or shader. -// -// Parameters: -// pSrcFile -// Source file name. -// hSrcModule -// Module handle. if NULL, current module will be used. -// pSrcResource -// Resource name in module. -// pSrcData -// Pointer to source code. -// SrcDataLen -// Size of source code, in bytes. -// pDefines -// Optional NULL-terminated array of preprocessor macro definitions. -// pInclude -// Optional interface pointer to use for handling #include directives. -// If this parameter is NULL, #includes will be honored when compiling -// from file, and will error when compiling from resource or memory. -// pFunctionName -// Name of the entrypoint function where execution should begin. -// pProfile -// Instruction set to be used when generating code. Currently supported -// profiles are "vs_1_1", "vs_2_0", "vs_2_a", "vs_2_sw", "vs_3_0", -// "vs_3_sw", "vs_4_0", "vs_4_1", -// "ps_2_0", "ps_2_a", "ps_2_b", "ps_2_sw", "ps_3_0", -// "ps_3_sw", "ps_4_0", "ps_4_1", -// "gs_4_0", "gs_4_1", -// "tx_1_0", -// "fx_4_0", "fx_4_1" -// Note that this entrypoint does not compile fx_2_0 targets, for that -// you need to use the D3DX9 function. -// Flags1 -// See D3D10_SHADER_xxx flags. -// Flags2 -// See D3D10_EFFECT_xxx flags. -// ppShader -// Returns a buffer containing the created shader. This buffer contains -// the compiled shader code, as well as any embedded debug and symbol -// table info. (See D3D10GetShaderConstantTable) -// ppErrorMsgs -// Returns a buffer containing a listing of errors and warnings that were -// encountered during the compile. If you are running in a debugger, -// these are the same messages you will see in your debug output. -// pHResult -// Pointer to a memory location to receive the return value upon completion. -// Maybe NULL if not needed. -// If pPump != NULL, pHResult must be a valid memory location until the -// the asynchronous execution completes. -//---------------------------------------------------------------------------- - -HRESULT WINAPI D3DX10CompileFromFileA(LPCSTR pSrcFile,CONST D3D10_SHADER_MACRO* pDefines, LPD3D10INCLUDE pInclude, - LPCSTR pFunctionName, LPCSTR pProfile, UINT Flags1, UINT Flags2, ID3DX10ThreadPump* pPump, ID3D10Blob** ppShader, ID3D10Blob** ppErrorMsgs, HRESULT* pHResult); - -HRESULT WINAPI D3DX10CompileFromFileW(LPCWSTR pSrcFile, CONST D3D10_SHADER_MACRO* pDefines, LPD3D10INCLUDE pInclude, - LPCSTR pFunctionName, LPCSTR pProfile, UINT Flags1, UINT Flags2, ID3DX10ThreadPump* pPump, ID3D10Blob** ppShader, ID3D10Blob** ppErrorMsgs, HRESULT* pHResult); - -#ifdef UNICODE -#define D3DX10CompileFromFile D3DX10CompileFromFileW -#else -#define D3DX10CompileFromFile D3DX10CompileFromFileA -#endif - -HRESULT WINAPI D3DX10CompileFromResourceA(HMODULE hSrcModule, LPCSTR pSrcResource, LPCSTR pSrcFileName, CONST D3D10_SHADER_MACRO* pDefines, - LPD3D10INCLUDE pInclude, LPCSTR pFunctionName, LPCSTR pProfile, UINT Flags1, UINT Flags2, ID3DX10ThreadPump* pPump, ID3D10Blob** ppShader, ID3D10Blob** ppErrorMsgs, HRESULT* pHResult); - -HRESULT WINAPI D3DX10CompileFromResourceW(HMODULE hSrcModule, LPCWSTR pSrcResource, LPCWSTR pSrcFileName, CONST D3D10_SHADER_MACRO* pDefines, - LPD3D10INCLUDE pInclude, LPCSTR pFunctionName, LPCSTR pProfile, UINT Flags1, UINT Flags2, ID3DX10ThreadPump* pPump, ID3D10Blob** ppShader, ID3D10Blob** ppErrorMsgs, HRESULT* pHResult); - -#ifdef UNICODE -#define D3DX10CompileFromResource D3DX10CompileFromResourceW -#else -#define D3DX10CompileFromResource D3DX10CompileFromResourceA -#endif - -HRESULT WINAPI D3DX10CompileFromMemory(LPCSTR pSrcData, SIZE_T SrcDataLen, LPCSTR pFileName, CONST D3D10_SHADER_MACRO* pDefines, LPD3D10INCLUDE pInclude, - LPCSTR pFunctionName, LPCSTR pProfile, UINT Flags1, UINT Flags2, ID3DX10ThreadPump* pPump, ID3D10Blob** ppShader, ID3D10Blob** ppErrorMsgs, HRESULT* pHResult); - -//---------------------------------------------------------------------------- -// D3DX10CreateEffectFromXXXX: -// -------------------------- -// Creates an effect from a binary effect or file -// -// Parameters: -// -// [in] -// -// -// pFileName -// Name of the ASCII (uncompiled) or binary (compiled) Effect file to load -// -// hModule -// Handle to the module containing the resource to compile from -// pResourceName -// Name of the resource within hModule to compile from -// -// pData -// Blob of effect data, either ASCII (uncompiled) or binary (compiled) -// DataLength -// Length of the data blob -// -// pDefines -// Optional NULL-terminated array of preprocessor macro definitions. -// pInclude -// Optional interface pointer to use for handling #include directives. -// If this parameter is NULL, #includes will be honored when compiling -// from file, and will error when compiling from resource or memory. -// pProfile -// Profile to use when compiling the effect. -// HLSLFlags -// Compilation flags pertaining to shaders and data types, honored by -// the HLSL compiler -// FXFlags -// Compilation flags pertaining to Effect compilation, honored -// by the Effect compiler -// pDevice -// Pointer to the D3D10 device on which to create Effect resources -// pEffectPool -// Pointer to an Effect pool to share variables with or NULL -// -// [out] -// -// ppEffect -// Address of the newly created Effect interface -// ppEffectPool -// Address of the newly created Effect pool interface -// ppErrors -// If non-NULL, address of a buffer with error messages that occurred -// during parsing or compilation -// pHResult -// Pointer to a memory location to receive the return value upon completion. -// Maybe NULL if not needed. -// If pPump != NULL, pHResult must be a valid memory location until the -// the asynchronous execution completes. -//---------------------------------------------------------------------------- - - -HRESULT WINAPI D3DX10CreateEffectFromFileA(LPCSTR pFileName, CONST D3D10_SHADER_MACRO *pDefines, - ID3D10Include *pInclude, LPCSTR pProfile, UINT HLSLFlags, UINT FXFlags, ID3D10Device *pDevice, - ID3D10EffectPool *pEffectPool, ID3DX10ThreadPump* pPump, ID3D10Effect **ppEffect, ID3D10Blob **ppErrors, HRESULT* pHResult); - -HRESULT WINAPI D3DX10CreateEffectFromFileW(LPCWSTR pFileName, CONST D3D10_SHADER_MACRO *pDefines, - ID3D10Include *pInclude, LPCSTR pProfile, UINT HLSLFlags, UINT FXFlags, ID3D10Device *pDevice, - ID3D10EffectPool *pEffectPool, ID3DX10ThreadPump* pPump, ID3D10Effect **ppEffect, ID3D10Blob **ppErrors, HRESULT* pHResult); - -HRESULT WINAPI D3DX10CreateEffectFromMemory(LPCVOID pData, SIZE_T DataLength, LPCSTR pSrcFileName, CONST D3D10_SHADER_MACRO *pDefines, - ID3D10Include *pInclude, LPCSTR pProfile, UINT HLSLFlags, UINT FXFlags, ID3D10Device *pDevice, - ID3D10EffectPool *pEffectPool, ID3DX10ThreadPump* pPump, ID3D10Effect **ppEffect, ID3D10Blob **ppErrors, HRESULT* pHResult); - -HRESULT WINAPI D3DX10CreateEffectFromResourceA(HMODULE hModule, LPCSTR pResourceName, LPCSTR pSrcFileName, CONST D3D10_SHADER_MACRO *pDefines, - ID3D10Include *pInclude, LPCSTR pProfile, UINT HLSLFlags, UINT FXFlags, ID3D10Device *pDevice, - ID3D10EffectPool *pEffectPool, ID3DX10ThreadPump* pPump, ID3D10Effect **ppEffect, ID3D10Blob **ppErrors, HRESULT* pHResult); - -HRESULT WINAPI D3DX10CreateEffectFromResourceW(HMODULE hModule, LPCWSTR pResourceName, LPCWSTR pSrcFileName, CONST D3D10_SHADER_MACRO *pDefines, - ID3D10Include *pInclude, LPCSTR pProfile, UINT HLSLFlags, UINT FXFlags, ID3D10Device *pDevice, - ID3D10EffectPool *pEffectPool, ID3DX10ThreadPump* pPump, ID3D10Effect **ppEffect, ID3D10Blob **ppErrors, HRESULT* pHResult); - - -#ifdef UNICODE -#define D3DX10CreateEffectFromFile D3DX10CreateEffectFromFileW -#define D3DX10CreateEffectFromResource D3DX10CreateEffectFromResourceW -#else -#define D3DX10CreateEffectFromFile D3DX10CreateEffectFromFileA -#define D3DX10CreateEffectFromResource D3DX10CreateEffectFromResourceA -#endif - -HRESULT WINAPI D3DX10CreateEffectPoolFromFileA(LPCSTR pFileName, CONST D3D10_SHADER_MACRO *pDefines, - ID3D10Include *pInclude, LPCSTR pProfile, UINT HLSLFlags, UINT FXFlags, ID3D10Device *pDevice, ID3DX10ThreadPump* pPump, - ID3D10EffectPool **ppEffectPool, ID3D10Blob **ppErrors, HRESULT* pHResult); - -HRESULT WINAPI D3DX10CreateEffectPoolFromFileW(LPCWSTR pFileName, CONST D3D10_SHADER_MACRO *pDefines, - ID3D10Include *pInclude, LPCSTR pProfile, UINT HLSLFlags, UINT FXFlags, ID3D10Device *pDevice, ID3DX10ThreadPump* pPump, - ID3D10EffectPool **ppEffectPool, ID3D10Blob **ppErrors, HRESULT* pHResult); - -HRESULT WINAPI D3DX10CreateEffectPoolFromMemory(LPCVOID pData, SIZE_T DataLength, LPCSTR pSrcFileName, CONST D3D10_SHADER_MACRO *pDefines, - ID3D10Include *pInclude, LPCSTR pProfile, UINT HLSLFlags, UINT FXFlags, ID3D10Device *pDevice, - ID3DX10ThreadPump* pPump, ID3D10EffectPool **ppEffectPool, ID3D10Blob **ppErrors, HRESULT* pHResult); - -HRESULT WINAPI D3DX10CreateEffectPoolFromResourceA(HMODULE hModule, LPCSTR pResourceName, LPCSTR pSrcFileName, CONST D3D10_SHADER_MACRO *pDefines, - ID3D10Include *pInclude, LPCSTR pProfile, UINT HLSLFlags, UINT FXFlags, ID3D10Device *pDevice, - ID3DX10ThreadPump* pPump, ID3D10EffectPool **ppEffectPool, ID3D10Blob **ppErrors, HRESULT* pHResult); - -HRESULT WINAPI D3DX10CreateEffectPoolFromResourceW(HMODULE hModule, LPCWSTR pResourceName, LPCWSTR pSrcFileName, CONST D3D10_SHADER_MACRO *pDefines, - ID3D10Include *pInclude, LPCSTR pProfile, UINT HLSLFlags, UINT FXFlags, ID3D10Device *pDevice, - ID3DX10ThreadPump* pPump, ID3D10EffectPool **ppEffectPool, ID3D10Blob **ppErrors, HRESULT* pHResult); - -#ifdef UNICODE -#define D3DX10CreateEffectPoolFromFile D3DX10CreateEffectPoolFromFileW -#define D3DX10CreateEffectPoolFromResource D3DX10CreateEffectPoolFromResourceW -#else -#define D3DX10CreateEffectPoolFromFile D3DX10CreateEffectPoolFromFileA -#define D3DX10CreateEffectPoolFromResource D3DX10CreateEffectPoolFromResourceA -#endif - -HRESULT WINAPI D3DX10PreprocessShaderFromFileA(LPCSTR pFileName, CONST D3D10_SHADER_MACRO* pDefines, - LPD3D10INCLUDE pInclude, ID3DX10ThreadPump *pPump, ID3D10Blob** ppShaderText, ID3D10Blob** ppErrorMsgs, HRESULT* pHResult); - -HRESULT WINAPI D3DX10PreprocessShaderFromFileW(LPCWSTR pFileName, CONST D3D10_SHADER_MACRO* pDefines, - LPD3D10INCLUDE pInclude, ID3DX10ThreadPump *pPump, ID3D10Blob** ppShaderText, ID3D10Blob** ppErrorMsgs, HRESULT* pHResult); - -HRESULT WINAPI D3DX10PreprocessShaderFromMemory(LPCSTR pSrcData, SIZE_T SrcDataSize, LPCSTR pFileName, CONST D3D10_SHADER_MACRO* pDefines, - LPD3D10INCLUDE pInclude, ID3DX10ThreadPump *pPump, ID3D10Blob** ppShaderText, ID3D10Blob** ppErrorMsgs, HRESULT* pHResult); - -HRESULT WINAPI D3DX10PreprocessShaderFromResourceA(HMODULE hModule, LPCSTR pResourceName, LPCSTR pSrcFileName, CONST D3D10_SHADER_MACRO* pDefines, - LPD3D10INCLUDE pInclude, ID3DX10ThreadPump *pPump, ID3D10Blob** ppShaderText, ID3D10Blob** ppErrorMsgs, HRESULT* pHResult); - -HRESULT WINAPI D3DX10PreprocessShaderFromResourceW(HMODULE hModule, LPCWSTR pResourceName, LPCWSTR pSrcFileName, CONST D3D10_SHADER_MACRO* pDefines, - LPD3D10INCLUDE pInclude, ID3DX10ThreadPump *pPump, ID3D10Blob** ppShaderText, ID3D10Blob** ppErrorMsgs, HRESULT* pHResult); - -#ifdef UNICODE -#define D3DX10PreprocessShaderFromFile D3DX10PreprocessShaderFromFileW -#define D3DX10PreprocessShaderFromResource D3DX10PreprocessShaderFromResourceW -#else -#define D3DX10PreprocessShaderFromFile D3DX10PreprocessShaderFromFileA -#define D3DX10PreprocessShaderFromResource D3DX10PreprocessShaderFromResourceA -#endif - -//---------------------------------------------------------------------------- -// Async processors -//---------------------------------------------------------------------------- - -HRESULT WINAPI D3DX10CreateAsyncCompilerProcessor(LPCSTR pFileName, CONST D3D10_SHADER_MACRO* pDefines, LPD3D10INCLUDE pInclude, - LPCSTR pFunctionName, LPCSTR pProfile, UINT Flags1, UINT Flags2, - ID3D10Blob **ppCompiledShader, ID3D10Blob **ppErrorBuffer, ID3DX10DataProcessor **ppProcessor); - -HRESULT WINAPI D3DX10CreateAsyncEffectCreateProcessor(LPCSTR pFileName, CONST D3D10_SHADER_MACRO* pDefines, LPD3D10INCLUDE pInclude, - LPCSTR pProfile, UINT Flags, UINT FXFlags, ID3D10Device *pDevice, - ID3D10EffectPool *pPool, ID3D10Blob **ppErrorBuffer, ID3DX10DataProcessor **ppProcessor); - -HRESULT WINAPI D3DX10CreateAsyncEffectPoolCreateProcessor(LPCSTR pFileName, CONST D3D10_SHADER_MACRO* pDefines, LPD3D10INCLUDE pInclude, - LPCSTR pProfile, UINT Flags, UINT FXFlags, ID3D10Device *pDevice, - ID3D10Blob **ppErrorBuffer, ID3DX10DataProcessor **ppProcessor); - -HRESULT WINAPI D3DX10CreateAsyncShaderPreprocessProcessor(LPCSTR pFileName, CONST D3D10_SHADER_MACRO* pDefines, LPD3D10INCLUDE pInclude, - ID3D10Blob** ppShaderText, ID3D10Blob **ppErrorBuffer, ID3DX10DataProcessor **ppProcessor); - - - -//---------------------------------------------------------------------------- -// D3DX10 Asynchronous texture I/O (advanced mode) -//---------------------------------------------------------------------------- - -HRESULT WINAPI D3DX10CreateAsyncFileLoaderW(LPCWSTR pFileName, ID3DX10DataLoader **ppDataLoader); -HRESULT WINAPI D3DX10CreateAsyncFileLoaderA(LPCSTR pFileName, ID3DX10DataLoader **ppDataLoader); -HRESULT WINAPI D3DX10CreateAsyncMemoryLoader(LPCVOID pData, SIZE_T cbData, ID3DX10DataLoader **ppDataLoader); -HRESULT WINAPI D3DX10CreateAsyncResourceLoaderW(HMODULE hSrcModule, LPCWSTR pSrcResource, ID3DX10DataLoader **ppDataLoader); -HRESULT WINAPI D3DX10CreateAsyncResourceLoaderA(HMODULE hSrcModule, LPCSTR pSrcResource, ID3DX10DataLoader **ppDataLoader); - -#ifdef UNICODE -#define D3DX10CreateAsyncFileLoader D3DX10CreateAsyncFileLoaderW -#define D3DX10CreateAsyncResourceLoader D3DX10CreateAsyncResourceLoaderW -#else -#define D3DX10CreateAsyncFileLoader D3DX10CreateAsyncFileLoaderA -#define D3DX10CreateAsyncResourceLoader D3DX10CreateAsyncResourceLoaderA -#endif - -HRESULT WINAPI D3DX10CreateAsyncTextureProcessor(ID3D10Device *pDevice, D3DX10_IMAGE_LOAD_INFO *pLoadInfo, ID3DX10DataProcessor **ppDataProcessor); -HRESULT WINAPI D3DX10CreateAsyncTextureInfoProcessor(D3DX10_IMAGE_INFO *pImageInfo, ID3DX10DataProcessor **ppDataProcessor); -HRESULT WINAPI D3DX10CreateAsyncShaderResourceViewProcessor(ID3D10Device *pDevice, D3DX10_IMAGE_LOAD_INFO *pLoadInfo, ID3DX10DataProcessor **ppDataProcessor); - -#ifdef __cplusplus -} -#endif //__cplusplus - -#endif //__D3DX10ASYNC_H__ - - diff --git a/SDK/Include/d3dx9.h b/SDK/Include/d3dx9.h deleted file mode 100644 index 43f9e62..0000000 --- a/SDK/Include/d3dx9.h +++ /dev/null @@ -1,78 +0,0 @@ -////////////////////////////////////////////////////////////////////////////// -// -// Copyright (C) Microsoft Corporation. All Rights Reserved. -// -// File: d3dx9.h -// Content: D3DX utility library -// -////////////////////////////////////////////////////////////////////////////// - -#ifdef __D3DX_INTERNAL__ -#error Incorrect D3DX header used -#endif - -#ifndef __D3DX9_H__ -#define __D3DX9_H__ - - -// Defines -#include - -#define D3DX_DEFAULT ((UINT) -1) -#define D3DX_DEFAULT_NONPOW2 ((UINT) -2) -#define D3DX_DEFAULT_FLOAT FLT_MAX -#define D3DX_FROM_FILE ((UINT) -3) -#define D3DFMT_FROM_FILE ((D3DFORMAT) -3) - -#ifndef D3DXINLINE -#ifdef _MSC_VER - #if (_MSC_VER >= 1200) - #define D3DXINLINE __forceinline - #else - #define D3DXINLINE __inline - #endif -#else - #ifdef __cplusplus - #define D3DXINLINE inline - #else - #define D3DXINLINE - #endif -#endif -#endif - - - -// Includes -#include "d3d9.h" -#include "d3dx9math.h" -#include "d3dx9core.h" -#include "d3dx9xof.h" -#include "d3dx9mesh.h" -#include "d3dx9shader.h" -#include "d3dx9effect.h" - -#include "d3dx9tex.h" -#include "d3dx9shape.h" -#include "d3dx9anim.h" - - - -// Errors -#define _FACDD 0x876 -#define MAKE_DDHRESULT( code ) MAKE_HRESULT( 1, _FACDD, code ) - -enum _D3DXERR { - D3DXERR_CANNOTMODIFYINDEXBUFFER = MAKE_DDHRESULT(2900), - D3DXERR_INVALIDMESH = MAKE_DDHRESULT(2901), - D3DXERR_CANNOTATTRSORT = MAKE_DDHRESULT(2902), - D3DXERR_SKINNINGNOTSUPPORTED = MAKE_DDHRESULT(2903), - D3DXERR_TOOMANYINFLUENCES = MAKE_DDHRESULT(2904), - D3DXERR_INVALIDDATA = MAKE_DDHRESULT(2905), - D3DXERR_LOADEDMESHASNODATA = MAKE_DDHRESULT(2906), - D3DXERR_DUPLICATENAMEDFRAGMENT = MAKE_DDHRESULT(2907), - D3DXERR_CANNOTREMOVELASTITEM = MAKE_DDHRESULT(2908), -}; - - -#endif //__D3DX9_H__ - diff --git a/SDK/Include/d3dx9anim.h b/SDK/Include/d3dx9anim.h deleted file mode 100644 index fedb1db..0000000 --- a/SDK/Include/d3dx9anim.h +++ /dev/null @@ -1,1114 +0,0 @@ -////////////////////////////////////////////////////////////////////////////// -// -// Copyright (C) Microsoft Corporation. All Rights Reserved. -// -// File: d3dx9anim.h -// Content: D3DX mesh types and functions -// -////////////////////////////////////////////////////////////////////////////// - -#ifndef __D3DX9ANIM_H__ -#define __D3DX9ANIM_H__ - -// {698CFB3F-9289-4d95-9A57-33A94B5A65F9} -DEFINE_GUID(IID_ID3DXAnimationSet, -0x698cfb3f, 0x9289, 0x4d95, 0x9a, 0x57, 0x33, 0xa9, 0x4b, 0x5a, 0x65, 0xf9); - -// {FA4E8E3A-9786-407d-8B4C-5995893764AF} -DEFINE_GUID(IID_ID3DXKeyframedAnimationSet, -0xfa4e8e3a, 0x9786, 0x407d, 0x8b, 0x4c, 0x59, 0x95, 0x89, 0x37, 0x64, 0xaf); - -// {6CC2480D-3808-4739-9F88-DE49FACD8D4C} -DEFINE_GUID(IID_ID3DXCompressedAnimationSet, -0x6cc2480d, 0x3808, 0x4739, 0x9f, 0x88, 0xde, 0x49, 0xfa, 0xcd, 0x8d, 0x4c); - -// {AC8948EC-F86D-43e2-96DE-31FC35F96D9E} -DEFINE_GUID(IID_ID3DXAnimationController, -0xac8948ec, 0xf86d, 0x43e2, 0x96, 0xde, 0x31, 0xfc, 0x35, 0xf9, 0x6d, 0x9e); - - -//---------------------------------------------------------------------------- -// D3DXMESHDATATYPE: -// ----------------- -// This enum defines the type of mesh data present in a MeshData structure. -//---------------------------------------------------------------------------- -typedef enum _D3DXMESHDATATYPE { - D3DXMESHTYPE_MESH = 0x001, // Normal ID3DXMesh data - D3DXMESHTYPE_PMESH = 0x002, // Progressive Mesh - ID3DXPMesh - D3DXMESHTYPE_PATCHMESH = 0x003, // Patch Mesh - ID3DXPatchMesh - - D3DXMESHTYPE_FORCE_DWORD = 0x7fffffff, /* force 32-bit size enum */ -} D3DXMESHDATATYPE; - -//---------------------------------------------------------------------------- -// D3DXMESHDATA: -// ------------- -// This struct encapsulates a the mesh data that can be present in a mesh -// container. The supported mesh types are pMesh, pPMesh, pPatchMesh. -// The valid way to access this is determined by the Type enum. -//---------------------------------------------------------------------------- -typedef struct _D3DXMESHDATA -{ - D3DXMESHDATATYPE Type; - - // current mesh data interface - union - { - LPD3DXMESH pMesh; - LPD3DXPMESH pPMesh; - LPD3DXPATCHMESH pPatchMesh; - }; -} D3DXMESHDATA, *LPD3DXMESHDATA; - -//---------------------------------------------------------------------------- -// D3DXMESHCONTAINER: -// ------------------ -// This struct encapsulates a mesh object in a transformation frame -// hierarchy. The app can derive from this structure to add other app specific -// data to this. -//---------------------------------------------------------------------------- -typedef struct _D3DXMESHCONTAINER -{ - LPSTR Name; - - D3DXMESHDATA MeshData; - - LPD3DXMATERIAL pMaterials; - LPD3DXEFFECTINSTANCE pEffects; - DWORD NumMaterials; - DWORD *pAdjacency; - - LPD3DXSKININFO pSkinInfo; - - struct _D3DXMESHCONTAINER *pNextMeshContainer; -} D3DXMESHCONTAINER, *LPD3DXMESHCONTAINER; - -//---------------------------------------------------------------------------- -// D3DXFRAME: -// ---------- -// This struct is the encapsulates a transform frame in a transformation frame -// hierarchy. The app can derive from this structure to add other app specific -// data to this -//---------------------------------------------------------------------------- -typedef struct _D3DXFRAME -{ - LPSTR Name; - D3DXMATRIX TransformationMatrix; - - LPD3DXMESHCONTAINER pMeshContainer; - - struct _D3DXFRAME *pFrameSibling; - struct _D3DXFRAME *pFrameFirstChild; -} D3DXFRAME, *LPD3DXFRAME; - - -//---------------------------------------------------------------------------- -// ID3DXAllocateHierarchy: -// ----------------------- -// This interface is implemented by the application to allocate/free frame and -// mesh container objects. Methods on this are called during loading and -// destroying frame hierarchies -//---------------------------------------------------------------------------- -typedef interface ID3DXAllocateHierarchy ID3DXAllocateHierarchy; -typedef interface ID3DXAllocateHierarchy *LPD3DXALLOCATEHIERARCHY; - -#undef INTERFACE -#define INTERFACE ID3DXAllocateHierarchy - -DECLARE_INTERFACE(ID3DXAllocateHierarchy) -{ - // ID3DXAllocateHierarchy - - //------------------------------------------------------------------------ - // CreateFrame: - // ------------ - // Requests allocation of a frame object. - // - // Parameters: - // Name - // Name of the frame to be created - // ppNewFrame - // Returns the created frame object - // - //------------------------------------------------------------------------ - STDMETHOD(CreateFrame)(THIS_ LPCSTR Name, - LPD3DXFRAME *ppNewFrame) PURE; - - //------------------------------------------------------------------------ - // CreateMeshContainer: - // -------------------- - // Requests allocation of a mesh container object. - // - // Parameters: - // Name - // Name of the mesh - // pMesh - // Pointer to the mesh object if basic polygon data found - // pPMesh - // Pointer to the progressive mesh object if progressive mesh data found - // pPatchMesh - // Pointer to the patch mesh object if patch data found - // pMaterials - // Array of materials used in the mesh - // pEffectInstances - // Array of effect instances used in the mesh - // NumMaterials - // Num elements in the pMaterials array - // pAdjacency - // Adjacency array for the mesh - // pSkinInfo - // Pointer to the skininfo object if the mesh is skinned - // pBoneNames - // Array of names, one for each bone in the skinned mesh. - // The numberof bones can be found from the pSkinMesh object - // pBoneOffsetMatrices - // Array of matrices, one for each bone in the skinned mesh. - // - //------------------------------------------------------------------------ - STDMETHOD(CreateMeshContainer)(THIS_ - LPCSTR Name, - CONST D3DXMESHDATA *pMeshData, - CONST D3DXMATERIAL *pMaterials, - CONST D3DXEFFECTINSTANCE *pEffectInstances, - DWORD NumMaterials, - CONST DWORD *pAdjacency, - LPD3DXSKININFO pSkinInfo, - LPD3DXMESHCONTAINER *ppNewMeshContainer) PURE; - - //------------------------------------------------------------------------ - // DestroyFrame: - // ------------- - // Requests de-allocation of a frame object. - // - // Parameters: - // pFrameToFree - // Pointer to the frame to be de-allocated - // - //------------------------------------------------------------------------ - STDMETHOD(DestroyFrame)(THIS_ LPD3DXFRAME pFrameToFree) PURE; - - //------------------------------------------------------------------------ - // DestroyMeshContainer: - // --------------------- - // Requests de-allocation of a mesh container object. - // - // Parameters: - // pMeshContainerToFree - // Pointer to the mesh container object to be de-allocated - // - //------------------------------------------------------------------------ - STDMETHOD(DestroyMeshContainer)(THIS_ LPD3DXMESHCONTAINER pMeshContainerToFree) PURE; -}; - -//---------------------------------------------------------------------------- -// ID3DXLoadUserData: -// ------------------ -// This interface is implemented by the application to load user data in a .X file -// When user data is found, these callbacks will be used to allow the application -// to load the data. -//---------------------------------------------------------------------------- -typedef interface ID3DXLoadUserData ID3DXLoadUserData; -typedef interface ID3DXLoadUserData *LPD3DXLOADUSERDATA; - -#undef INTERFACE -#define INTERFACE ID3DXLoadUserData - -DECLARE_INTERFACE(ID3DXLoadUserData) -{ - STDMETHOD(LoadTopLevelData)(LPD3DXFILEDATA pXofChildData) PURE; - - STDMETHOD(LoadFrameChildData)(LPD3DXFRAME pFrame, - LPD3DXFILEDATA pXofChildData) PURE; - - STDMETHOD(LoadMeshChildData)(LPD3DXMESHCONTAINER pMeshContainer, - LPD3DXFILEDATA pXofChildData) PURE; -}; - -//---------------------------------------------------------------------------- -// ID3DXSaveUserData: -// ------------------ -// This interface is implemented by the application to save user data in a .X file -// The callbacks are called for all data saved. The user can then add any -// child data objects to the object provided to the callback. -//---------------------------------------------------------------------------- -typedef interface ID3DXSaveUserData ID3DXSaveUserData; -typedef interface ID3DXSaveUserData *LPD3DXSAVEUSERDATA; - -#undef INTERFACE -#define INTERFACE ID3DXSaveUserData - -DECLARE_INTERFACE(ID3DXSaveUserData) -{ - STDMETHOD(AddFrameChildData)(CONST D3DXFRAME *pFrame, - LPD3DXFILESAVEOBJECT pXofSave, - LPD3DXFILESAVEDATA pXofFrameData) PURE; - - STDMETHOD(AddMeshChildData)(CONST D3DXMESHCONTAINER *pMeshContainer, - LPD3DXFILESAVEOBJECT pXofSave, - LPD3DXFILESAVEDATA pXofMeshData) PURE; - - // 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 - STDMETHOD(AddTopLevelDataObjectsPre)(LPD3DXFILESAVEOBJECT pXofSave) PURE; - STDMETHOD(AddTopLevelDataObjectsPost)(LPD3DXFILESAVEOBJECT pXofSave) PURE; - - // callbacks for the user to register and then save templates to the XFile - STDMETHOD(RegisterTemplates)(LPD3DXFILE pXFileApi) PURE; - STDMETHOD(SaveTemplates)(LPD3DXFILESAVEOBJECT pXofSave) PURE; -}; - - -//---------------------------------------------------------------------------- -// D3DXCALLBACK_SEARCH_FLAGS: -// -------------------------- -// Flags that can be passed into ID3DXAnimationSet::GetCallback. -//---------------------------------------------------------------------------- -typedef enum _D3DXCALLBACK_SEARCH_FLAGS -{ - 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_FORCE_DWORD = 0x7fffffff, -} D3DXCALLBACK_SEARCH_FLAGS; - -//---------------------------------------------------------------------------- -// ID3DXAnimationSet: -// ------------------ -// This interface implements an animation set. -//---------------------------------------------------------------------------- -typedef interface ID3DXAnimationSet ID3DXAnimationSet; -typedef interface ID3DXAnimationSet *LPD3DXANIMATIONSET; - -#undef INTERFACE -#define INTERFACE ID3DXAnimationSet - -DECLARE_INTERFACE_(ID3DXAnimationSet, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // Name - STDMETHOD_(LPCSTR, GetName)(THIS) PURE; - - // Period - STDMETHOD_(DOUBLE, GetPeriod)(THIS) PURE; - STDMETHOD_(DOUBLE, GetPeriodicPosition)(THIS_ DOUBLE Position) PURE; // Maps position into animation period - - // Animation names - STDMETHOD_(UINT, GetNumAnimations)(THIS) PURE; - STDMETHOD(GetAnimationNameByIndex)(THIS_ UINT Index, LPCSTR *ppName) PURE; - STDMETHOD(GetAnimationIndexByName)(THIS_ LPCSTR pName, UINT *pIndex) PURE; - - // SRT - STDMETHOD(GetSRT)(THIS_ - DOUBLE PeriodicPosition, // Position mapped to period (use GetPeriodicPosition) - UINT Animation, // Animation index - D3DXVECTOR3 *pScale, // Returns the scale - D3DXQUATERNION *pRotation, // Returns the rotation as a quaternion - D3DXVECTOR3 *pTranslation) PURE; // Returns the translation - - // Callbacks - STDMETHOD(GetCallback)(THIS_ - DOUBLE Position, // Position from which to find callbacks - DWORD Flags, // Callback search flags - DOUBLE *pCallbackPosition, // Returns the position of the callback - LPVOID *ppCallbackData) PURE; // Returns the callback data pointer -}; - - -//---------------------------------------------------------------------------- -// D3DXPLAYBACK_TYPE: -// ------------------ -// This enum defines the type of animation set loop modes. -//---------------------------------------------------------------------------- -typedef enum _D3DXPLAYBACK_TYPE -{ - D3DXPLAY_LOOP = 0, - D3DXPLAY_ONCE = 1, - D3DXPLAY_PINGPONG = 2, - - D3DXPLAY_FORCE_DWORD = 0x7fffffff, /* force 32-bit size enum */ -} D3DXPLAYBACK_TYPE; - - -//---------------------------------------------------------------------------- -// D3DXKEY_VECTOR3: -// ---------------- -// This structure describes a vector key for use in keyframe animation. -// It specifies a vector Value at a given Time. This is used for scale and -// translation keys. -//---------------------------------------------------------------------------- -typedef struct _D3DXKEY_VECTOR3 -{ - FLOAT Time; - D3DXVECTOR3 Value; -} D3DXKEY_VECTOR3, *LPD3DXKEY_VECTOR3; - - -//---------------------------------------------------------------------------- -// D3DXKEY_QUATERNION: -// ------------------- -// This structure describes a quaternion key for use in keyframe animation. -// It specifies a quaternion Value at a given Time. This is used for rotation -// keys. -//---------------------------------------------------------------------------- -typedef struct _D3DXKEY_QUATERNION -{ - FLOAT Time; - D3DXQUATERNION Value; -} D3DXKEY_QUATERNION, *LPD3DXKEY_QUATERNION; - - -//---------------------------------------------------------------------------- -// D3DXKEY_CALLBACK: -// ----------------- -// This structure describes an callback key for use in keyframe animation. -// It specifies a pointer to user data at a given Time. -//---------------------------------------------------------------------------- -typedef struct _D3DXKEY_CALLBACK -{ - FLOAT Time; - LPVOID pCallbackData; -} D3DXKEY_CALLBACK, *LPD3DXKEY_CALLBACK; - - -//---------------------------------------------------------------------------- -// D3DXCOMPRESSION_FLAGS: -// ---------------------- -// Flags that can be passed into ID3DXKeyframedAnimationSet::Compress. -//---------------------------------------------------------------------------- -typedef enum _D3DXCOMPRESSION_FLAGS -{ - D3DXCOMPRESS_DEFAULT = 0x00, - - D3DXCOMPRESS_FORCE_DWORD = 0x7fffffff, -} D3DXCOMPRESSION_FLAGS; - - -//---------------------------------------------------------------------------- -// ID3DXKeyframedAnimationSet: -// --------------------------- -// This interface implements a compressable keyframed animation set. -//---------------------------------------------------------------------------- -typedef interface ID3DXKeyframedAnimationSet ID3DXKeyframedAnimationSet; -typedef interface ID3DXKeyframedAnimationSet *LPD3DXKEYFRAMEDANIMATIONSET; - -#undef INTERFACE -#define INTERFACE ID3DXKeyframedAnimationSet - -DECLARE_INTERFACE_(ID3DXKeyframedAnimationSet, ID3DXAnimationSet) -{ - // ID3DXAnimationSet - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // Name - STDMETHOD_(LPCSTR, GetName)(THIS) PURE; - - // Period - STDMETHOD_(DOUBLE, GetPeriod)(THIS) PURE; - STDMETHOD_(DOUBLE, GetPeriodicPosition)(THIS_ DOUBLE Position) PURE; // Maps position into animation period - - // Animation names - STDMETHOD_(UINT, GetNumAnimations)(THIS) PURE; - STDMETHOD(GetAnimationNameByIndex)(THIS_ UINT Index, LPCSTR *ppName) PURE; - STDMETHOD(GetAnimationIndexByName)(THIS_ LPCSTR pName, UINT *pIndex) PURE; - - // SRT - STDMETHOD(GetSRT)(THIS_ - DOUBLE PeriodicPosition, // Position mapped to period (use GetPeriodicPosition) - UINT Animation, // Animation index - D3DXVECTOR3 *pScale, // Returns the scale - D3DXQUATERNION *pRotation, // Returns the rotation as a quaternion - D3DXVECTOR3 *pTranslation) PURE; // Returns the translation - - // Callbacks - STDMETHOD(GetCallback)(THIS_ - DOUBLE Position, // Position from which to find callbacks - DWORD Flags, // Callback search flags - DOUBLE *pCallbackPosition, // Returns the position of the callback - LPVOID *ppCallbackData) PURE; // Returns the callback data pointer - - // Playback - STDMETHOD_(D3DXPLAYBACK_TYPE, GetPlaybackType)(THIS) PURE; - STDMETHOD_(DOUBLE, GetSourceTicksPerSecond)(THIS) PURE; - - // Scale keys - STDMETHOD_(UINT, GetNumScaleKeys)(THIS_ UINT Animation) PURE; - STDMETHOD(GetScaleKeys)(THIS_ UINT Animation, LPD3DXKEY_VECTOR3 pScaleKeys) PURE; - STDMETHOD(GetScaleKey)(THIS_ UINT Animation, UINT Key, LPD3DXKEY_VECTOR3 pScaleKey) PURE; - STDMETHOD(SetScaleKey)(THIS_ UINT Animation, UINT Key, LPD3DXKEY_VECTOR3 pScaleKey) PURE; - - // Rotation keys - STDMETHOD_(UINT, GetNumRotationKeys)(THIS_ UINT Animation) PURE; - STDMETHOD(GetRotationKeys)(THIS_ UINT Animation, LPD3DXKEY_QUATERNION pRotationKeys) PURE; - STDMETHOD(GetRotationKey)(THIS_ UINT Animation, UINT Key, LPD3DXKEY_QUATERNION pRotationKey) PURE; - STDMETHOD(SetRotationKey)(THIS_ UINT Animation, UINT Key, LPD3DXKEY_QUATERNION pRotationKey) PURE; - - // Translation keys - STDMETHOD_(UINT, GetNumTranslationKeys)(THIS_ UINT Animation) PURE; - STDMETHOD(GetTranslationKeys)(THIS_ UINT Animation, LPD3DXKEY_VECTOR3 pTranslationKeys) PURE; - STDMETHOD(GetTranslationKey)(THIS_ UINT Animation, UINT Key, LPD3DXKEY_VECTOR3 pTranslationKey) PURE; - STDMETHOD(SetTranslationKey)(THIS_ UINT Animation, UINT Key, LPD3DXKEY_VECTOR3 pTranslationKey) PURE; - - // Callback keys - STDMETHOD_(UINT, GetNumCallbackKeys)(THIS) PURE; - STDMETHOD(GetCallbackKeys)(THIS_ LPD3DXKEY_CALLBACK pCallbackKeys) PURE; - STDMETHOD(GetCallbackKey)(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 - STDMETHOD(UnregisterScaleKey)(THIS_ UINT Animation, UINT Key) PURE; - STDMETHOD(UnregisterRotationKey)(THIS_ UINT Animation, UINT Key) PURE; - STDMETHOD(UnregisterTranslationKey)(THIS_ UINT Animation, UINT Key) PURE; - - // One-time animaton SRT keyframe registration - STDMETHOD(RegisterAnimationSRTKeys)(THIS_ - LPCSTR pName, // Animation name - UINT NumScaleKeys, // Number of scale keys - UINT NumRotationKeys, // Number of rotation keys - UINT NumTranslationKeys, // Number of translation keys - CONST D3DXKEY_VECTOR3 *pScaleKeys, // Array of scale keys - CONST D3DXKEY_QUATERNION *pRotationKeys, // Array of rotation keys - CONST D3DXKEY_VECTOR3 *pTranslationKeys, // Array of translation keys - DWORD *pAnimationIndex) PURE; // Returns the animation index - - // Compression - STDMETHOD(Compress)(THIS_ - DWORD Flags, // Compression flags (use D3DXCOMPRESS_STRONG for better results) - FLOAT Lossiness, // Compression loss ratio in the [0, 1] range - LPD3DXFRAME pHierarchy, // Frame hierarchy (optional) - LPD3DXBUFFER *ppCompressedData) PURE; // Returns the compressed animation set - - STDMETHOD(UnregisterAnimation)(THIS_ UINT Index) PURE; -}; - - -//---------------------------------------------------------------------------- -// ID3DXCompressedAnimationSet: -// ---------------------------- -// This interface implements a compressed keyframed animation set. -//---------------------------------------------------------------------------- -typedef interface ID3DXCompressedAnimationSet ID3DXCompressedAnimationSet; -typedef interface ID3DXCompressedAnimationSet *LPD3DXCOMPRESSEDANIMATIONSET; - -#undef INTERFACE -#define INTERFACE ID3DXCompressedAnimationSet - -DECLARE_INTERFACE_(ID3DXCompressedAnimationSet, ID3DXAnimationSet) -{ - // ID3DXAnimationSet - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // Name - STDMETHOD_(LPCSTR, GetName)(THIS) PURE; - - // Period - STDMETHOD_(DOUBLE, GetPeriod)(THIS) PURE; - STDMETHOD_(DOUBLE, GetPeriodicPosition)(THIS_ DOUBLE Position) PURE; // Maps position into animation period - - // Animation names - STDMETHOD_(UINT, GetNumAnimations)(THIS) PURE; - STDMETHOD(GetAnimationNameByIndex)(THIS_ UINT Index, LPCSTR *ppName) PURE; - STDMETHOD(GetAnimationIndexByName)(THIS_ LPCSTR pName, UINT *pIndex) PURE; - - // SRT - STDMETHOD(GetSRT)(THIS_ - DOUBLE PeriodicPosition, // Position mapped to period (use GetPeriodicPosition) - UINT Animation, // Animation index - D3DXVECTOR3 *pScale, // Returns the scale - D3DXQUATERNION *pRotation, // Returns the rotation as a quaternion - D3DXVECTOR3 *pTranslation) PURE; // Returns the translation - - // Callbacks - STDMETHOD(GetCallback)(THIS_ - DOUBLE Position, // Position from which to find callbacks - DWORD Flags, // Callback search flags - DOUBLE *pCallbackPosition, // Returns the position of the callback - LPVOID *ppCallbackData) PURE; // Returns the callback data pointer - - // Playback - STDMETHOD_(D3DXPLAYBACK_TYPE, GetPlaybackType)(THIS) PURE; - STDMETHOD_(DOUBLE, GetSourceTicksPerSecond)(THIS) PURE; - - // Scale keys - STDMETHOD(GetCompressedData)(THIS_ LPD3DXBUFFER *ppCompressedData) PURE; - - // Callback keys - STDMETHOD_(UINT, GetNumCallbackKeys)(THIS) PURE; - STDMETHOD(GetCallbackKeys)(THIS_ LPD3DXKEY_CALLBACK pCallbackKeys) PURE; -}; - - -//---------------------------------------------------------------------------- -// D3DXPRIORITY_TYPE: -// ------------------ -// This enum defines the type of priority group that a track can be assigned to. -//---------------------------------------------------------------------------- -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_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_TYPE; - -//---------------------------------------------------------------------------- -// D3DXTRACK_DESC: -// --------------- -// This structure describes the mixing information of an animation track. -// The mixing information consists of the current position, speed, and blending -// weight for the track. The Flags field also specifies whether the track is -// low or high priority. Tracks with the same priority are blended together -// and then the two resulting values are blended using the priority blend factor. -// A track also has an animation set (stored separately) associated with it. -//---------------------------------------------------------------------------- -typedef struct _D3DXTRACK_DESC -{ - D3DXPRIORITY_TYPE Priority; - FLOAT Weight; - FLOAT Speed; - DOUBLE Position; - BOOL Enable; -} D3DXTRACK_DESC, *LPD3DXTRACK_DESC; - -//---------------------------------------------------------------------------- -// D3DXEVENT_TYPE: -// --------------- -// This enum defines the type of events keyable via the animation controller. -//---------------------------------------------------------------------------- -typedef enum _D3DXEVENT_TYPE -{ - D3DXEVENT_TRACKSPEED = 0, - D3DXEVENT_TRACKWEIGHT = 1, - D3DXEVENT_TRACKPOSITION = 2, - D3DXEVENT_TRACKENABLE = 3, - D3DXEVENT_PRIORITYBLEND = 4, - - D3DXEVENT_FORCE_DWORD = 0x7fffffff, /* force 32-bit size enum */ -} D3DXEVENT_TYPE; - -//---------------------------------------------------------------------------- -// D3DXTRANSITION_TYPE: -// -------------------- -// This enum defines the type of transtion performed on a event that -// transitions from one value to another. -//---------------------------------------------------------------------------- -typedef enum _D3DXTRANSITION_TYPE { - D3DXTRANSITION_LINEAR = 0x000, // Linear transition from one value to the next - D3DXTRANSITION_EASEINEASEOUT = 0x001, // Ease-In Ease-Out spline transtion from one value to the next - - D3DXTRANSITION_FORCE_DWORD = 0x7fffffff, /* force 32-bit size enum */ -} D3DXTRANSITION_TYPE; - -//---------------------------------------------------------------------------- -// D3DXEVENT_DESC: -// --------------- -// This structure describes a animation controller event. -// It gives the event's type, track (if the event is a track event), global -// start time, duration, transition method, and target value. -//---------------------------------------------------------------------------- -typedef struct _D3DXEVENT_DESC -{ - D3DXEVENT_TYPE Type; - UINT Track; - DOUBLE StartTime; - DOUBLE Duration; - D3DXTRANSITION_TYPE Transition; - union - { - FLOAT Weight; - FLOAT Speed; - DOUBLE Position; - BOOL Enable; - }; -} D3DXEVENT_DESC, *LPD3DXEVENT_DESC; - -//---------------------------------------------------------------------------- -// D3DXEVENTHANDLE: -// ---------------- -// Handle values used to efficiently reference animation controller events. -//---------------------------------------------------------------------------- -typedef DWORD D3DXEVENTHANDLE; -typedef D3DXEVENTHANDLE *LPD3DXEVENTHANDLE; - - -//---------------------------------------------------------------------------- -// ID3DXAnimationCallbackHandler: -// ------------------------------ -// This interface is intended to be implemented by the application, and can -// be used to handle callbacks in animation sets generated when -// ID3DXAnimationController::AdvanceTime() is called. -//---------------------------------------------------------------------------- -typedef interface ID3DXAnimationCallbackHandler ID3DXAnimationCallbackHandler; -typedef interface ID3DXAnimationCallbackHandler *LPD3DXANIMATIONCALLBACKHANDLER; - -#undef INTERFACE -#define INTERFACE ID3DXAnimationCallbackHandler - -DECLARE_INTERFACE(ID3DXAnimationCallbackHandler) -{ - //---------------------------------------------------------------------------- - // ID3DXAnimationCallbackHandler::HandleCallback: - // ---------------------------------------------- - // This method gets called when a callback occurs for an animation set in one - // of the tracks during the ID3DXAnimationController::AdvanceTime() call. - // - // Parameters: - // Track - // Index of the track on which the callback occured. - // pCallbackData - // Pointer to user owned callback data. - // - //---------------------------------------------------------------------------- - STDMETHOD(HandleCallback)(THIS_ UINT Track, LPVOID pCallbackData) PURE; -}; - - -//---------------------------------------------------------------------------- -// ID3DXAnimationController: -// ------------------------- -// This interface implements the main animation functionality. It connects -// animation sets with the transform frames that are being animated. Allows -// mixing multiple animations for blended animations or for transistions -// It adds also has methods to modify blending parameters over time to -// enable smooth transistions and other effects. -//---------------------------------------------------------------------------- -typedef interface ID3DXAnimationController ID3DXAnimationController; -typedef interface ID3DXAnimationController *LPD3DXANIMATIONCONTROLLER; - -#undef INTERFACE -#define INTERFACE ID3DXAnimationController - -DECLARE_INTERFACE_(ID3DXAnimationController, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // Max sizes - STDMETHOD_(UINT, GetMaxNumAnimationOutputs)(THIS) PURE; - STDMETHOD_(UINT, GetMaxNumAnimationSets)(THIS) PURE; - STDMETHOD_(UINT, GetMaxNumTracks)(THIS) PURE; - STDMETHOD_(UINT, GetMaxNumEvents)(THIS) PURE; - - // Animation output registration - STDMETHOD(RegisterAnimationOutput)(THIS_ - LPCSTR pName, - D3DXMATRIX *pMatrix, - D3DXVECTOR3 *pScale, - D3DXQUATERNION *pRotation, - D3DXVECTOR3 *pTranslation) PURE; - - // Animation set registration - STDMETHOD(RegisterAnimationSet)(THIS_ LPD3DXANIMATIONSET pAnimSet) PURE; - STDMETHOD(UnregisterAnimationSet)(THIS_ LPD3DXANIMATIONSET pAnimSet) PURE; - - STDMETHOD_(UINT, GetNumAnimationSets)(THIS) PURE; - STDMETHOD(GetAnimationSet)(THIS_ UINT Index, LPD3DXANIMATIONSET *ppAnimationSet) PURE; - STDMETHOD(GetAnimationSetByName)(THIS_ LPCSTR szName, LPD3DXANIMATIONSET *ppAnimationSet) PURE; - - // Global time - STDMETHOD(AdvanceTime)(THIS_ DOUBLE TimeDelta, LPD3DXANIMATIONCALLBACKHANDLER pCallbackHandler) PURE; - STDMETHOD(ResetTime)(THIS) PURE; - STDMETHOD_(DOUBLE, GetTime)(THIS) PURE; - - // Tracks - STDMETHOD(SetTrackAnimationSet)(THIS_ UINT Track, LPD3DXANIMATIONSET pAnimSet) PURE; - STDMETHOD(GetTrackAnimationSet)(THIS_ UINT Track, LPD3DXANIMATIONSET *ppAnimSet) PURE; - - STDMETHOD(SetTrackPriority)(THIS_ UINT Track, D3DXPRIORITY_TYPE Priority) PURE; - - STDMETHOD(SetTrackSpeed)(THIS_ UINT Track, FLOAT Speed) PURE; - STDMETHOD(SetTrackWeight)(THIS_ UINT Track, FLOAT Weight) PURE; - STDMETHOD(SetTrackPosition)(THIS_ UINT Track, DOUBLE Position) PURE; - STDMETHOD(SetTrackEnable)(THIS_ UINT Track, BOOL Enable) PURE; - - STDMETHOD(SetTrackDesc)(THIS_ UINT Track, LPD3DXTRACK_DESC pDesc) PURE; - STDMETHOD(GetTrackDesc)(THIS_ UINT Track, LPD3DXTRACK_DESC pDesc) PURE; - - // Priority blending - STDMETHOD(SetPriorityBlend)(THIS_ FLOAT BlendWeight) PURE; - STDMETHOD_(FLOAT, GetPriorityBlend)(THIS) PURE; - - // Event keying - 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, KeyTrackPosition)(THIS_ UINT Track, DOUBLE NewPosition, DOUBLE StartTime) PURE; - STDMETHOD_(D3DXEVENTHANDLE, KeyTrackEnable)(THIS_ UINT Track, BOOL NewEnable, DOUBLE StartTime) PURE; - - STDMETHOD_(D3DXEVENTHANDLE, KeyPriorityBlend)(THIS_ FLOAT NewBlendWeight, DOUBLE StartTime, DOUBLE Duration, D3DXTRANSITION_TYPE Transition) PURE; - - // Event unkeying - STDMETHOD(UnkeyEvent)(THIS_ D3DXEVENTHANDLE hEvent) PURE; - - STDMETHOD(UnkeyAllTrackEvents)(THIS_ UINT Track) PURE; - STDMETHOD(UnkeyAllPriorityBlends)(THIS) PURE; - - // Event enumeration - STDMETHOD_(D3DXEVENTHANDLE, GetCurrentTrackEvent)(THIS_ UINT Track, D3DXEVENT_TYPE EventType) PURE; - STDMETHOD_(D3DXEVENTHANDLE, GetCurrentPriorityBlend)(THIS) PURE; - - STDMETHOD_(D3DXEVENTHANDLE, GetUpcomingTrackEvent)(THIS_ UINT Track, D3DXEVENTHANDLE hEvent) PURE; - STDMETHOD_(D3DXEVENTHANDLE, GetUpcomingPriorityBlend)(THIS_ D3DXEVENTHANDLE hEvent) PURE; - - STDMETHOD(ValidateEvent)(THIS_ D3DXEVENTHANDLE hEvent) PURE; - - STDMETHOD(GetEventDesc)(THIS_ D3DXEVENTHANDLE hEvent, LPD3DXEVENT_DESC pDesc) PURE; - - // Cloning - STDMETHOD(CloneAnimationController)(THIS_ - UINT MaxNumAnimationOutputs, - UINT MaxNumAnimationSets, - UINT MaxNumTracks, - UINT MaxNumEvents, - LPD3DXANIMATIONCONTROLLER *ppAnimController) PURE; -}; - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - - -//---------------------------------------------------------------------------- -// D3DXLoadMeshHierarchyFromX: -// --------------------------- -// Loads the first frame hierarchy in a .X file. -// -// Parameters: -// Filename -// Name of the .X file -// MeshOptions -// Mesh creation options for meshes in the file (see d3dx9mesh.h) -// pD3DDevice -// D3D9 device on which meshes in the file are created in -// pAlloc -// Allocation interface used to allocate nodes of the frame hierarchy -// pUserDataLoader -// Application provided interface to allow loading of user data -// ppFrameHierarchy -// Returns root node pointer of the loaded frame hierarchy -// ppAnimController -// Returns pointer to an animation controller corresponding to animation -// in the .X file. This is created with default max tracks and events -// -//---------------------------------------------------------------------------- -HRESULT WINAPI -D3DXLoadMeshHierarchyFromXA - ( - LPCSTR Filename, - DWORD MeshOptions, - LPDIRECT3DDEVICE9 pD3DDevice, - LPD3DXALLOCATEHIERARCHY pAlloc, - LPD3DXLOADUSERDATA pUserDataLoader, - LPD3DXFRAME *ppFrameHierarchy, - LPD3DXANIMATIONCONTROLLER *ppAnimController - ); - -HRESULT WINAPI -D3DXLoadMeshHierarchyFromXW - ( - LPCWSTR Filename, - DWORD MeshOptions, - LPDIRECT3DDEVICE9 pD3DDevice, - LPD3DXALLOCATEHIERARCHY pAlloc, - LPD3DXLOADUSERDATA pUserDataLoader, - LPD3DXFRAME *ppFrameHierarchy, - LPD3DXANIMATIONCONTROLLER *ppAnimController - ); - -#ifdef UNICODE -#define D3DXLoadMeshHierarchyFromX D3DXLoadMeshHierarchyFromXW -#else -#define D3DXLoadMeshHierarchyFromX D3DXLoadMeshHierarchyFromXA -#endif - -HRESULT WINAPI -D3DXLoadMeshHierarchyFromXInMemory - ( - LPCVOID Memory, - DWORD SizeOfMemory, - DWORD MeshOptions, - LPDIRECT3DDEVICE9 pD3DDevice, - LPD3DXALLOCATEHIERARCHY pAlloc, - LPD3DXLOADUSERDATA pUserDataLoader, - LPD3DXFRAME *ppFrameHierarchy, - LPD3DXANIMATIONCONTROLLER *ppAnimController - ); - -//---------------------------------------------------------------------------- -// D3DXSaveMeshHierarchyToFile: -// ---------------------------- -// Creates a .X file and saves the mesh hierarchy and corresponding animations -// in it -// -// Parameters: -// Filename -// Name of the .X file -// XFormat -// Format of the .X file (text or binary, compressed or not, etc) -// pFrameRoot -// Root node of the hierarchy to be saved -// pAnimController -// The animation controller whose animation sets are to be stored -// pUserDataSaver -// Application provided interface to allow adding of user data to -// data objects saved to .X file -// -//---------------------------------------------------------------------------- -HRESULT WINAPI -D3DXSaveMeshHierarchyToFileA - ( - LPCSTR Filename, - DWORD XFormat, - CONST D3DXFRAME *pFrameRoot, - LPD3DXANIMATIONCONTROLLER pAnimcontroller, - LPD3DXSAVEUSERDATA pUserDataSaver - ); - -HRESULT WINAPI -D3DXSaveMeshHierarchyToFileW - ( - LPCWSTR Filename, - DWORD XFormat, - CONST D3DXFRAME *pFrameRoot, - LPD3DXANIMATIONCONTROLLER pAnimController, - LPD3DXSAVEUSERDATA pUserDataSaver - ); - -#ifdef UNICODE -#define D3DXSaveMeshHierarchyToFile D3DXSaveMeshHierarchyToFileW -#else -#define D3DXSaveMeshHierarchyToFile D3DXSaveMeshHierarchyToFileA -#endif - -//---------------------------------------------------------------------------- -// D3DXFrameDestroy: -// ----------------- -// Destroys the subtree of frames under the root, including the root -// -// Parameters: -// pFrameRoot -// Pointer to the root node -// pAlloc -// Allocation interface used to de-allocate nodes of the frame hierarchy -// -//---------------------------------------------------------------------------- -HRESULT WINAPI -D3DXFrameDestroy - ( - LPD3DXFRAME pFrameRoot, - LPD3DXALLOCATEHIERARCHY pAlloc - ); - -//---------------------------------------------------------------------------- -// D3DXFrameAppendChild: -// --------------------- -// Add a child frame to a frame -// -// Parameters: -// pFrameParent -// Pointer to the parent node -// pFrameChild -// Pointer to the child node -// -//---------------------------------------------------------------------------- -HRESULT WINAPI -D3DXFrameAppendChild - ( - LPD3DXFRAME pFrameParent, - CONST D3DXFRAME *pFrameChild - ); - -//---------------------------------------------------------------------------- -// D3DXFrameFind: -// -------------- -// Finds a frame with the given name. Returns NULL if no frame found. -// -// Parameters: -// pFrameRoot -// Pointer to the root node -// Name -// Name of frame to find -// -//---------------------------------------------------------------------------- -LPD3DXFRAME WINAPI -D3DXFrameFind - ( - CONST D3DXFRAME *pFrameRoot, - LPCSTR Name - ); - -//---------------------------------------------------------------------------- -// D3DXFrameRegisterNamedMatrices: -// ------------------------------- -// Finds all frames that have non-null names and registers each of those frame -// matrices to the given animation controller -// -// Parameters: -// pFrameRoot -// Pointer to the root node -// pAnimController -// Pointer to the animation controller where the matrices are registered -// -//---------------------------------------------------------------------------- -HRESULT WINAPI -D3DXFrameRegisterNamedMatrices - ( - LPD3DXFRAME pFrameRoot, - LPD3DXANIMATIONCONTROLLER pAnimController - ); - -//---------------------------------------------------------------------------- -// D3DXFrameNumNamedMatrices: -// -------------------------- -// Counts number of frames in a subtree that have non-null names -// -// Parameters: -// pFrameRoot -// Pointer to the root node of the subtree -// Return Value: -// Count of frames -// -//---------------------------------------------------------------------------- -UINT WINAPI -D3DXFrameNumNamedMatrices - ( - CONST D3DXFRAME *pFrameRoot - ); - -//---------------------------------------------------------------------------- -// D3DXFrameCalculateBoundingSphere: -// --------------------------------- -// Computes the bounding sphere of all the meshes in the frame hierarchy. -// -// Parameters: -// pFrameRoot -// Pointer to the root node -// pObjectCenter -// Returns the center of the bounding sphere -// pObjectRadius -// Returns the radius of the bounding sphere -// -//---------------------------------------------------------------------------- -HRESULT WINAPI -D3DXFrameCalculateBoundingSphere - ( - CONST D3DXFRAME *pFrameRoot, - LPD3DXVECTOR3 pObjectCenter, - FLOAT *pObjectRadius - ); - - -//---------------------------------------------------------------------------- -// D3DXCreateKeyframedAnimationSet: -// -------------------------------- -// This function creates a compressable keyframed animations set interface. -// -// Parameters: -// pName -// Name of the animation set -// TicksPerSecond -// Number of keyframe ticks that elapse per second -// Playback -// Playback mode of keyframe looping -// NumAnimations -// Number of SRT animations -// NumCallbackKeys -// Number of callback keys -// pCallbackKeys -// Array of callback keys -// ppAnimationSet -// Returns the animation set interface -// -//----------------------------------------------------------------------------- -HRESULT WINAPI -D3DXCreateKeyframedAnimationSet - ( - LPCSTR pName, - DOUBLE TicksPerSecond, - D3DXPLAYBACK_TYPE Playback, - UINT NumAnimations, - UINT NumCallbackKeys, - CONST D3DXKEY_CALLBACK *pCallbackKeys, - LPD3DXKEYFRAMEDANIMATIONSET *ppAnimationSet - ); - - -//---------------------------------------------------------------------------- -// D3DXCreateCompressedAnimationSet: -// -------------------------------- -// This function creates a compressed animations set interface from -// compressed data. -// -// Parameters: -// pName -// Name of the animation set -// TicksPerSecond -// Number of keyframe ticks that elapse per second -// Playback -// Playback mode of keyframe looping -// pCompressedData -// Compressed animation SRT data -// NumCallbackKeys -// Number of callback keys -// pCallbackKeys -// Array of callback keys -// ppAnimationSet -// Returns the animation set interface -// -//----------------------------------------------------------------------------- -HRESULT WINAPI -D3DXCreateCompressedAnimationSet - ( - LPCSTR pName, - DOUBLE TicksPerSecond, - D3DXPLAYBACK_TYPE Playback, - LPD3DXBUFFER pCompressedData, - UINT NumCallbackKeys, - CONST D3DXKEY_CALLBACK *pCallbackKeys, - LPD3DXCOMPRESSEDANIMATIONSET *ppAnimationSet - ); - - -//---------------------------------------------------------------------------- -// D3DXCreateAnimationController: -// ------------------------------ -// This function creates an animation controller object. -// -// Parameters: -// MaxNumMatrices -// Maximum number of matrices that can be animated -// MaxNumAnimationSets -// Maximum number of animation sets that can be played -// MaxNumTracks -// Maximum number of animation sets that can be blended -// MaxNumEvents -// Maximum number of outstanding events that can be scheduled at any given time -// ppAnimController -// Returns the animation controller interface -// -//----------------------------------------------------------------------------- -HRESULT WINAPI -D3DXCreateAnimationController - ( - UINT MaxNumMatrices, - UINT MaxNumAnimationSets, - UINT MaxNumTracks, - UINT MaxNumEvents, - LPD3DXANIMATIONCONTROLLER *ppAnimController - ); - - -#ifdef __cplusplus -} -#endif //__cplusplus - -#endif //__D3DX9ANIM_H__ - - diff --git a/SDK/Include/d3dx9core.h b/SDK/Include/d3dx9core.h deleted file mode 100644 index 45243f4..0000000 --- a/SDK/Include/d3dx9core.h +++ /dev/null @@ -1,753 +0,0 @@ -/////////////////////////////////////////////////////////////////////////// -// -// Copyright (C) Microsoft Corporation. All Rights Reserved. -// -// File: d3dx9core.h -// Content: D3DX core types and functions -// -/////////////////////////////////////////////////////////////////////////// - -#include "d3dx9.h" - -#ifndef __D3DX9CORE_H__ -#define __D3DX9CORE_H__ - - -/////////////////////////////////////////////////////////////////////////// -// D3DX_SDK_VERSION: -// ----------------- -// This identifier is passed to D3DXCheckVersion in order to ensure that an -// application was built against the correct header files and lib files. -// This number is incremented whenever a header (or other) change would -// require applications to be rebuilt. If the version doesn't match, -// D3DXCheckVersion will return FALSE. (The number itself has no meaning.) -/////////////////////////////////////////////////////////////////////////// - -#define D3DX_VERSION 0x0902 - -#define D3DX_SDK_VERSION 43 - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - -BOOL WINAPI - D3DXCheckVersion(UINT D3DSdkVersion, UINT D3DXSdkVersion); - -#ifdef __cplusplus -} -#endif //__cplusplus - - - -/////////////////////////////////////////////////////////////////////////// -// D3DXDebugMute -// Mutes D3DX and D3D debug spew (TRUE - mute, FALSE - not mute) -// -// returns previous mute value -// -/////////////////////////////////////////////////////////////////////////// - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - -BOOL WINAPI - D3DXDebugMute(BOOL Mute); - -#ifdef __cplusplus -} -#endif //__cplusplus - - -/////////////////////////////////////////////////////////////////////////// -// D3DXGetDriverLevel: -// Returns driver version information: -// -// 700 - DX7 level driver -// 800 - DX8 level driver -// 900 - DX9 level driver -/////////////////////////////////////////////////////////////////////////// - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - -UINT WINAPI - D3DXGetDriverLevel(LPDIRECT3DDEVICE9 pDevice); - -#ifdef __cplusplus -} -#endif //__cplusplus - - -/////////////////////////////////////////////////////////////////////////// -// ID3DXBuffer: -// ------------ -// The buffer object is used by D3DX to return arbitrary size data. -// -// GetBufferPointer - -// Returns a pointer to the beginning of the buffer. -// -// GetBufferSize - -// Returns the size of the buffer, in bytes. -/////////////////////////////////////////////////////////////////////////// - -typedef interface ID3DXBuffer ID3DXBuffer; -typedef interface ID3DXBuffer *LPD3DXBUFFER; - -// {8BA5FB08-5195-40e2-AC58-0D989C3A0102} -DEFINE_GUID(IID_ID3DXBuffer, -0x8ba5fb08, 0x5195, 0x40e2, 0xac, 0x58, 0xd, 0x98, 0x9c, 0x3a, 0x1, 0x2); - -#undef INTERFACE -#define INTERFACE ID3DXBuffer - -DECLARE_INTERFACE_(ID3DXBuffer, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // ID3DXBuffer - STDMETHOD_(LPVOID, GetBufferPointer)(THIS) PURE; - STDMETHOD_(DWORD, GetBufferSize)(THIS) PURE; -}; - - - -////////////////////////////////////////////////////////////////////////////// -// D3DXSPRITE flags: -// ----------------- -// D3DXSPRITE_DONOTSAVESTATE -// Specifies device state is not to be saved and restored in Begin/End. -// D3DXSPRITE_DONOTMODIFY_RENDERSTATE -// Specifies device render state is not to be changed in Begin. The device -// is assumed to be in a valid state to draw vertices containing POSITION0, -// TEXCOORD0, and COLOR0 data. -// D3DXSPRITE_OBJECTSPACE -// The WORLD, VIEW, and PROJECTION transforms are NOT modified. The -// transforms currently set to the device are used to transform the sprites -// when the batch is drawn (at Flush or End). If this is not specified, -// WORLD, VIEW, and PROJECTION transforms are modified so that sprites are -// drawn in screenspace coordinates. -// D3DXSPRITE_BILLBOARD -// Rotates each sprite about its center so that it is facing the viewer. -// D3DXSPRITE_ALPHABLEND -// Enables ALPHABLEND(SRCALPHA, INVSRCALPHA) and ALPHATEST(alpha > 0). -// ID3DXFont expects this to be set when drawing text. -// D3DXSPRITE_SORT_TEXTURE -// Sprites are sorted by texture prior to drawing. This is recommended when -// drawing non-overlapping sprites of uniform depth. For example, drawing -// screen-aligned text with ID3DXFont. -// D3DXSPRITE_SORT_DEPTH_FRONTTOBACK -// Sprites are sorted by depth front-to-back prior to drawing. This is -// recommended when drawing opaque sprites of varying depths. -// D3DXSPRITE_SORT_DEPTH_BACKTOFRONT -// Sprites are sorted by depth back-to-front prior to drawing. This is -// recommended when drawing transparent sprites of varying depths. -// D3DXSPRITE_DO_NOT_ADDREF_TEXTURE -// Disables calling AddRef() on every draw, and Release() on Flush() for -// better performance. -////////////////////////////////////////////////////////////////////////////// - -#define D3DXSPRITE_DONOTSAVESTATE (1 << 0) -#define D3DXSPRITE_DONOTMODIFY_RENDERSTATE (1 << 1) -#define D3DXSPRITE_OBJECTSPACE (1 << 2) -#define D3DXSPRITE_BILLBOARD (1 << 3) -#define D3DXSPRITE_ALPHABLEND (1 << 4) -#define D3DXSPRITE_SORT_TEXTURE (1 << 5) -#define D3DXSPRITE_SORT_DEPTH_FRONTTOBACK (1 << 6) -#define D3DXSPRITE_SORT_DEPTH_BACKTOFRONT (1 << 7) -#define D3DXSPRITE_DO_NOT_ADDREF_TEXTURE (1 << 8) - - -////////////////////////////////////////////////////////////////////////////// -// ID3DXSprite: -// ------------ -// This object intends to provide an easy way to drawing sprites using D3D. -// -// Begin - -// Prepares device for drawing sprites. -// -// Draw - -// Draws a sprite. Before transformation, the sprite is the size of -// SrcRect, with its top-left corner specified by Position. The color -// and alpha channels are modulated by Color. -// -// Flush - -// Forces all batched sprites to submitted to the device. -// -// End - -// Restores device state to how it was when Begin was called. -// -// OnLostDevice, OnResetDevice - -// Call OnLostDevice() on this object before calling Reset() on the -// device, so that this object can release any stateblocks and video -// memory resources. After Reset(), the call OnResetDevice(). -////////////////////////////////////////////////////////////////////////////// - -typedef interface ID3DXSprite ID3DXSprite; -typedef interface ID3DXSprite *LPD3DXSPRITE; - - -// {BA0B762D-7D28-43ec-B9DC-2F84443B0614} -DEFINE_GUID(IID_ID3DXSprite, -0xba0b762d, 0x7d28, 0x43ec, 0xb9, 0xdc, 0x2f, 0x84, 0x44, 0x3b, 0x6, 0x14); - - -#undef INTERFACE -#define INTERFACE ID3DXSprite - -DECLARE_INTERFACE_(ID3DXSprite, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // ID3DXSprite - STDMETHOD(GetDevice)(THIS_ LPDIRECT3DDEVICE9* ppDevice) PURE; - - STDMETHOD(GetTransform)(THIS_ D3DXMATRIX *pTransform) PURE; - STDMETHOD(SetTransform)(THIS_ CONST D3DXMATRIX *pTransform) PURE; - - STDMETHOD(SetWorldViewRH)(THIS_ CONST D3DXMATRIX *pWorld, CONST D3DXMATRIX *pView) PURE; - STDMETHOD(SetWorldViewLH)(THIS_ CONST D3DXMATRIX *pWorld, CONST D3DXMATRIX *pView) PURE; - - STDMETHOD(Begin)(THIS_ DWORD Flags) PURE; - STDMETHOD(Draw)(THIS_ LPDIRECT3DTEXTURE9 pTexture, CONST RECT *pSrcRect, CONST D3DXVECTOR3 *pCenter, CONST D3DXVECTOR3 *pPosition, D3DCOLOR Color) PURE; - STDMETHOD(Flush)(THIS) PURE; - STDMETHOD(End)(THIS) PURE; - - STDMETHOD(OnLostDevice)(THIS) PURE; - STDMETHOD(OnResetDevice)(THIS) PURE; -}; - - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - -HRESULT WINAPI - D3DXCreateSprite( - LPDIRECT3DDEVICE9 pDevice, - LPD3DXSPRITE* ppSprite); - -#ifdef __cplusplus -} -#endif //__cplusplus - - - -////////////////////////////////////////////////////////////////////////////// -// ID3DXFont: -// ---------- -// Font objects contain the textures and resources needed to render a specific -// font on a specific device. -// -// GetGlyphData - -// Returns glyph cache data, for a given glyph. -// -// PreloadCharacters/PreloadGlyphs/PreloadText - -// Preloads glyphs into the glyph cache textures. -// -// DrawText - -// Draws formatted text on a D3D device. Some parameters are -// surprisingly similar to those of GDI's DrawText function. See GDI -// documentation for a detailed description of these parameters. -// If pSprite is NULL, an internal sprite object will be used. -// -// OnLostDevice, OnResetDevice - -// Call OnLostDevice() on this object before calling Reset() on the -// device, so that this object can release any stateblocks and video -// memory resources. After Reset(), the call OnResetDevice(). -////////////////////////////////////////////////////////////////////////////// - -typedef struct _D3DXFONT_DESCA -{ - INT Height; - UINT Width; - UINT Weight; - UINT MipLevels; - BOOL Italic; - BYTE CharSet; - BYTE OutputPrecision; - BYTE Quality; - BYTE PitchAndFamily; - CHAR FaceName[LF_FACESIZE]; - -} D3DXFONT_DESCA, *LPD3DXFONT_DESCA; - -typedef struct _D3DXFONT_DESCW -{ - INT Height; - UINT Width; - UINT Weight; - UINT MipLevels; - BOOL Italic; - BYTE CharSet; - BYTE OutputPrecision; - BYTE Quality; - BYTE PitchAndFamily; - WCHAR FaceName[LF_FACESIZE]; - -} D3DXFONT_DESCW, *LPD3DXFONT_DESCW; - -#ifdef UNICODE -typedef D3DXFONT_DESCW D3DXFONT_DESC; -typedef LPD3DXFONT_DESCW LPD3DXFONT_DESC; -#else -typedef D3DXFONT_DESCA D3DXFONT_DESC; -typedef LPD3DXFONT_DESCA LPD3DXFONT_DESC; -#endif - - -typedef interface ID3DXFont ID3DXFont; -typedef interface ID3DXFont *LPD3DXFONT; - - -// {D79DBB70-5F21-4d36-BBC2-FF525C213CDC} -DEFINE_GUID(IID_ID3DXFont, -0xd79dbb70, 0x5f21, 0x4d36, 0xbb, 0xc2, 0xff, 0x52, 0x5c, 0x21, 0x3c, 0xdc); - - -#undef INTERFACE -#define INTERFACE ID3DXFont - -DECLARE_INTERFACE_(ID3DXFont, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // ID3DXFont - STDMETHOD(GetDevice)(THIS_ LPDIRECT3DDEVICE9 *ppDevice) PURE; - STDMETHOD(GetDescA)(THIS_ D3DXFONT_DESCA *pDesc) PURE; - STDMETHOD(GetDescW)(THIS_ D3DXFONT_DESCW *pDesc) PURE; - STDMETHOD_(BOOL, GetTextMetricsA)(THIS_ TEXTMETRICA *pTextMetrics) PURE; - STDMETHOD_(BOOL, GetTextMetricsW)(THIS_ TEXTMETRICW *pTextMetrics) PURE; - - STDMETHOD_(HDC, GetDC)(THIS) PURE; - STDMETHOD(GetGlyphData)(THIS_ UINT Glyph, LPDIRECT3DTEXTURE9 *ppTexture, RECT *pBlackBox, POINT *pCellInc) PURE; - - STDMETHOD(PreloadCharacters)(THIS_ UINT First, UINT Last) PURE; - STDMETHOD(PreloadGlyphs)(THIS_ UINT First, UINT Last) PURE; - STDMETHOD(PreloadTextA)(THIS_ LPCSTR pString, INT Count) PURE; - STDMETHOD(PreloadTextW)(THIS_ LPCWSTR pString, INT Count) PURE; - - STDMETHOD_(INT, DrawTextA)(THIS_ LPD3DXSPRITE pSprite, LPCSTR pString, INT Count, LPRECT pRect, DWORD Format, D3DCOLOR Color) PURE; - STDMETHOD_(INT, DrawTextW)(THIS_ LPD3DXSPRITE pSprite, LPCWSTR pString, INT Count, LPRECT pRect, DWORD Format, D3DCOLOR Color) PURE; - - STDMETHOD(OnLostDevice)(THIS) PURE; - STDMETHOD(OnResetDevice)(THIS) PURE; - -#ifdef __cplusplus -#ifdef UNICODE - HRESULT GetDesc(D3DXFONT_DESCW *pDesc) { return GetDescW(pDesc); } - HRESULT PreloadText(LPCWSTR pString, INT Count) { return PreloadTextW(pString, Count); } -#else - HRESULT GetDesc(D3DXFONT_DESCA *pDesc) { return GetDescA(pDesc); } - HRESULT PreloadText(LPCSTR pString, INT Count) { return PreloadTextA(pString, Count); } -#endif -#endif //__cplusplus -}; - -#ifndef GetTextMetrics -#ifdef UNICODE -#define GetTextMetrics GetTextMetricsW -#else -#define GetTextMetrics GetTextMetricsA -#endif -#endif - -#ifndef DrawText -#ifdef UNICODE -#define DrawText DrawTextW -#else -#define DrawText DrawTextA -#endif -#endif - - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - - -HRESULT WINAPI - D3DXCreateFontA( - LPDIRECT3DDEVICE9 pDevice, - INT Height, - UINT Width, - UINT Weight, - UINT MipLevels, - BOOL Italic, - DWORD CharSet, - DWORD OutputPrecision, - DWORD Quality, - DWORD PitchAndFamily, - LPCSTR pFaceName, - LPD3DXFONT* ppFont); - -HRESULT WINAPI - D3DXCreateFontW( - LPDIRECT3DDEVICE9 pDevice, - INT Height, - UINT Width, - UINT Weight, - UINT MipLevels, - BOOL Italic, - DWORD CharSet, - DWORD OutputPrecision, - DWORD Quality, - DWORD PitchAndFamily, - LPCWSTR pFaceName, - LPD3DXFONT* ppFont); - -#ifdef UNICODE -#define D3DXCreateFont D3DXCreateFontW -#else -#define D3DXCreateFont D3DXCreateFontA -#endif - - -HRESULT WINAPI - D3DXCreateFontIndirectA( - LPDIRECT3DDEVICE9 pDevice, - CONST D3DXFONT_DESCA* pDesc, - LPD3DXFONT* ppFont); - -HRESULT WINAPI - D3DXCreateFontIndirectW( - LPDIRECT3DDEVICE9 pDevice, - CONST D3DXFONT_DESCW* pDesc, - LPD3DXFONT* ppFont); - -#ifdef UNICODE -#define D3DXCreateFontIndirect D3DXCreateFontIndirectW -#else -#define D3DXCreateFontIndirect D3DXCreateFontIndirectA -#endif - - -#ifdef __cplusplus -} -#endif //__cplusplus - - - -/////////////////////////////////////////////////////////////////////////// -// ID3DXRenderToSurface: -// --------------------- -// This object abstracts rendering to surfaces. These surfaces do not -// necessarily need to be render targets. If they are not, a compatible -// render target is used, and the result copied into surface at end scene. -// -// BeginScene, EndScene - -// Call BeginScene() and EndScene() at the beginning and ending of your -// scene. These calls will setup and restore render targets, viewports, -// etc.. -// -// OnLostDevice, OnResetDevice - -// Call OnLostDevice() on this object before calling Reset() on the -// device, so that this object can release any stateblocks and video -// memory resources. After Reset(), the call OnResetDevice(). -/////////////////////////////////////////////////////////////////////////// - -typedef struct _D3DXRTS_DESC -{ - UINT Width; - UINT Height; - D3DFORMAT Format; - BOOL DepthStencil; - D3DFORMAT DepthStencilFormat; - -} D3DXRTS_DESC, *LPD3DXRTS_DESC; - - -typedef interface ID3DXRenderToSurface ID3DXRenderToSurface; -typedef interface ID3DXRenderToSurface *LPD3DXRENDERTOSURFACE; - - -// {6985F346-2C3D-43b3-BE8B-DAAE8A03D894} -DEFINE_GUID(IID_ID3DXRenderToSurface, -0x6985f346, 0x2c3d, 0x43b3, 0xbe, 0x8b, 0xda, 0xae, 0x8a, 0x3, 0xd8, 0x94); - - -#undef INTERFACE -#define INTERFACE ID3DXRenderToSurface - -DECLARE_INTERFACE_(ID3DXRenderToSurface, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // ID3DXRenderToSurface - STDMETHOD(GetDevice)(THIS_ LPDIRECT3DDEVICE9* ppDevice) PURE; - STDMETHOD(GetDesc)(THIS_ D3DXRTS_DESC* pDesc) PURE; - - STDMETHOD(BeginScene)(THIS_ LPDIRECT3DSURFACE9 pSurface, CONST D3DVIEWPORT9* pViewport) PURE; - STDMETHOD(EndScene)(THIS_ DWORD MipFilter) PURE; - - STDMETHOD(OnLostDevice)(THIS) PURE; - STDMETHOD(OnResetDevice)(THIS) PURE; -}; - - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - -HRESULT WINAPI - D3DXCreateRenderToSurface( - LPDIRECT3DDEVICE9 pDevice, - UINT Width, - UINT Height, - D3DFORMAT Format, - BOOL DepthStencil, - D3DFORMAT DepthStencilFormat, - LPD3DXRENDERTOSURFACE* ppRenderToSurface); - -#ifdef __cplusplus -} -#endif //__cplusplus - - - -/////////////////////////////////////////////////////////////////////////// -// ID3DXRenderToEnvMap: -// -------------------- -// This object abstracts rendering to environment maps. These surfaces -// do not necessarily need to be render targets. If they are not, a -// compatible render target is used, and the result copied into the -// environment map at end scene. -// -// BeginCube, BeginSphere, BeginHemisphere, BeginParabolic - -// This function initiates the rendering of the environment map. As -// parameters, you pass the textures in which will get filled in with -// the resulting environment map. -// -// Face - -// Call this function to initiate the drawing of each face. For each -// environment map, you will call this six times.. once for each face -// in D3DCUBEMAP_FACES. -// -// End - -// This will restore all render targets, and if needed compose all the -// rendered faces into the environment map surfaces. -// -// OnLostDevice, OnResetDevice - -// Call OnLostDevice() on this object before calling Reset() on the -// device, so that this object can release any stateblocks and video -// memory resources. After Reset(), the call OnResetDevice(). -/////////////////////////////////////////////////////////////////////////// - -typedef struct _D3DXRTE_DESC -{ - UINT Size; - UINT MipLevels; - D3DFORMAT Format; - BOOL DepthStencil; - D3DFORMAT DepthStencilFormat; - -} D3DXRTE_DESC, *LPD3DXRTE_DESC; - - -typedef interface ID3DXRenderToEnvMap ID3DXRenderToEnvMap; -typedef interface ID3DXRenderToEnvMap *LPD3DXRenderToEnvMap; - - -// {313F1B4B-C7B0-4fa2-9D9D-8D380B64385E} -DEFINE_GUID(IID_ID3DXRenderToEnvMap, -0x313f1b4b, 0xc7b0, 0x4fa2, 0x9d, 0x9d, 0x8d, 0x38, 0xb, 0x64, 0x38, 0x5e); - - -#undef INTERFACE -#define INTERFACE ID3DXRenderToEnvMap - -DECLARE_INTERFACE_(ID3DXRenderToEnvMap, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // ID3DXRenderToEnvMap - STDMETHOD(GetDevice)(THIS_ LPDIRECT3DDEVICE9* ppDevice) PURE; - STDMETHOD(GetDesc)(THIS_ D3DXRTE_DESC* pDesc) PURE; - - STDMETHOD(BeginCube)(THIS_ - LPDIRECT3DCUBETEXTURE9 pCubeTex) PURE; - - STDMETHOD(BeginSphere)(THIS_ - LPDIRECT3DTEXTURE9 pTex) PURE; - - STDMETHOD(BeginHemisphere)(THIS_ - LPDIRECT3DTEXTURE9 pTexZPos, - LPDIRECT3DTEXTURE9 pTexZNeg) PURE; - - STDMETHOD(BeginParabolic)(THIS_ - LPDIRECT3DTEXTURE9 pTexZPos, - LPDIRECT3DTEXTURE9 pTexZNeg) PURE; - - STDMETHOD(Face)(THIS_ D3DCUBEMAP_FACES Face, DWORD MipFilter) PURE; - STDMETHOD(End)(THIS_ DWORD MipFilter) PURE; - - STDMETHOD(OnLostDevice)(THIS) PURE; - STDMETHOD(OnResetDevice)(THIS) PURE; -}; - - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - -HRESULT WINAPI - D3DXCreateRenderToEnvMap( - LPDIRECT3DDEVICE9 pDevice, - UINT Size, - UINT MipLevels, - D3DFORMAT Format, - BOOL DepthStencil, - D3DFORMAT DepthStencilFormat, - LPD3DXRenderToEnvMap* ppRenderToEnvMap); - -#ifdef __cplusplus -} -#endif //__cplusplus - - - -/////////////////////////////////////////////////////////////////////////// -// ID3DXLine: -// ------------ -// This object intends to provide an easy way to draw lines using D3D. -// -// Begin - -// Prepares device for drawing lines -// -// Draw - -// Draws a line strip in screen-space. -// Input is in the form of a array defining points on the line strip. of D3DXVECTOR2 -// -// DrawTransform - -// Draws a line in screen-space with a specified input transformation matrix. -// -// End - -// Restores device state to how it was when Begin was called. -// -// SetPattern - -// Applies a stipple pattern to the line. Input is one 32-bit -// DWORD which describes the stipple pattern. 1 is opaque, 0 is -// transparent. -// -// SetPatternScale - -// Stretches the stipple pattern in the u direction. Input is one -// floating-point value. 0.0f is no scaling, whereas 1.0f doubles -// the length of the stipple pattern. -// -// SetWidth - -// Specifies the thickness of the line in the v direction. Input is -// one floating-point value. -// -// SetAntialias - -// Toggles line antialiasing. Input is a BOOL. -// TRUE = Antialiasing on. -// FALSE = Antialiasing off. -// -// SetGLLines - -// Toggles non-antialiased OpenGL line emulation. Input is a BOOL. -// TRUE = OpenGL line emulation on. -// FALSE = OpenGL line emulation off. -// -// OpenGL line: Regular line: -// *\ *\ -// | \ / \ -// | \ *\ \ -// *\ \ \ \ -// \ \ \ \ -// \ * \ * -// \ | \ / -// \| * -// * -// -// OnLostDevice, OnResetDevice - -// Call OnLostDevice() on this object before calling Reset() on the -// device, so that this object can release any stateblocks and video -// memory resources. After Reset(), the call OnResetDevice(). -/////////////////////////////////////////////////////////////////////////// - - -typedef interface ID3DXLine ID3DXLine; -typedef interface ID3DXLine *LPD3DXLINE; - - -// {D379BA7F-9042-4ac4-9F5E-58192A4C6BD8} -DEFINE_GUID(IID_ID3DXLine, -0xd379ba7f, 0x9042, 0x4ac4, 0x9f, 0x5e, 0x58, 0x19, 0x2a, 0x4c, 0x6b, 0xd8); - -#undef INTERFACE -#define INTERFACE ID3DXLine - -DECLARE_INTERFACE_(ID3DXLine, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // ID3DXLine - STDMETHOD(GetDevice)(THIS_ LPDIRECT3DDEVICE9* ppDevice) PURE; - - STDMETHOD(Begin)(THIS) PURE; - - STDMETHOD(Draw)(THIS_ CONST D3DXVECTOR2 *pVertexList, - DWORD dwVertexListCount, D3DCOLOR Color) PURE; - - STDMETHOD(DrawTransform)(THIS_ CONST D3DXVECTOR3 *pVertexList, - DWORD dwVertexListCount, CONST D3DXMATRIX* pTransform, - D3DCOLOR Color) PURE; - - STDMETHOD(SetPattern)(THIS_ DWORD dwPattern) PURE; - STDMETHOD_(DWORD, GetPattern)(THIS) PURE; - - STDMETHOD(SetPatternScale)(THIS_ FLOAT fPatternScale) PURE; - STDMETHOD_(FLOAT, GetPatternScale)(THIS) PURE; - - STDMETHOD(SetWidth)(THIS_ FLOAT fWidth) PURE; - STDMETHOD_(FLOAT, GetWidth)(THIS) PURE; - - STDMETHOD(SetAntialias)(THIS_ BOOL bAntialias) PURE; - STDMETHOD_(BOOL, GetAntialias)(THIS) PURE; - - STDMETHOD(SetGLLines)(THIS_ BOOL bGLLines) PURE; - STDMETHOD_(BOOL, GetGLLines)(THIS) PURE; - - STDMETHOD(End)(THIS) PURE; - - STDMETHOD(OnLostDevice)(THIS) PURE; - STDMETHOD(OnResetDevice)(THIS) PURE; -}; - - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - - -HRESULT WINAPI - D3DXCreateLine( - LPDIRECT3DDEVICE9 pDevice, - LPD3DXLINE* ppLine); - -#ifdef __cplusplus -} -#endif //__cplusplus - -#endif //__D3DX9CORE_H__ - diff --git a/SDK/Include/d3dx9effect.h b/SDK/Include/d3dx9effect.h deleted file mode 100644 index a3bcd30..0000000 --- a/SDK/Include/d3dx9effect.h +++ /dev/null @@ -1,873 +0,0 @@ - -////////////////////////////////////////////////////////////////////////////// -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// -// File: d3dx9effect.h -// Content: D3DX effect types and Shaders -// -////////////////////////////////////////////////////////////////////////////// - -#include "d3dx9.h" - -#ifndef __D3DX9EFFECT_H__ -#define __D3DX9EFFECT_H__ - - -//---------------------------------------------------------------------------- -// D3DXFX_DONOTSAVESTATE -// This flag is used as a parameter to ID3DXEffect::Begin(). When this flag -// is specified, device state is not saved or restored in Begin/End. -// D3DXFX_DONOTSAVESHADERSTATE -// This flag is used as a parameter to ID3DXEffect::Begin(). When this flag -// is specified, shader device state is not saved or restored in Begin/End. -// This includes pixel/vertex shaders and shader constants -// D3DXFX_DONOTSAVESAMPLERSTATE -// This flag is used as a parameter to ID3DXEffect::Begin(). When this flag -// is specified, sampler device state is not saved or restored in Begin/End. -// D3DXFX_NOT_CLONEABLE -// This flag is used as a parameter to the D3DXCreateEffect family of APIs. -// When this flag is specified, the effect will be non-cloneable and will not -// contain any shader binary data. -// Furthermore, GetPassDesc will not return shader function pointers. -// Setting this flag reduces effect memory usage by about 50%. -//---------------------------------------------------------------------------- - -#define D3DXFX_DONOTSAVESTATE (1 << 0) -#define D3DXFX_DONOTSAVESHADERSTATE (1 << 1) -#define D3DXFX_DONOTSAVESAMPLERSTATE (1 << 2) - -#define D3DXFX_NOT_CLONEABLE (1 << 11) -#define D3DXFX_LARGEADDRESSAWARE (1 << 17) - -//---------------------------------------------------------------------------- -// D3DX_PARAMETER_SHARED -// Indicates that the value of a parameter will be shared with all effects -// which share the same namespace. Changing the value in one effect will -// change it in all. -// -// D3DX_PARAMETER_LITERAL -// Indicates that the value of this parameter can be treated as literal. -// Literal parameters can be marked when the effect is compiled, and their -// cannot be changed after the effect is compiled. Shared parameters cannot -// be literal. -//---------------------------------------------------------------------------- - -#define D3DX_PARAMETER_SHARED (1 << 0) -#define D3DX_PARAMETER_LITERAL (1 << 1) -#define D3DX_PARAMETER_ANNOTATION (1 << 2) - -//---------------------------------------------------------------------------- -// D3DXEFFECT_DESC: -//---------------------------------------------------------------------------- - -typedef struct _D3DXEFFECT_DESC -{ - LPCSTR Creator; // Creator string - UINT Parameters; // Number of parameters - UINT Techniques; // Number of techniques - UINT Functions; // Number of function entrypoints - -} D3DXEFFECT_DESC; - - -//---------------------------------------------------------------------------- -// D3DXPARAMETER_DESC: -//---------------------------------------------------------------------------- - -typedef struct _D3DXPARAMETER_DESC -{ - LPCSTR Name; // Parameter name - LPCSTR Semantic; // Parameter semantic - D3DXPARAMETER_CLASS Class; // Class - D3DXPARAMETER_TYPE Type; // Component type - UINT Rows; // Number of rows - UINT Columns; // Number of columns - UINT Elements; // Number of array elements - UINT Annotations; // Number of annotations - UINT StructMembers; // Number of structure member sub-parameters - DWORD Flags; // D3DX_PARAMETER_* flags - UINT Bytes; // Parameter size, in bytes - -} D3DXPARAMETER_DESC; - - -//---------------------------------------------------------------------------- -// D3DXTECHNIQUE_DESC: -//---------------------------------------------------------------------------- - -typedef struct _D3DXTECHNIQUE_DESC -{ - LPCSTR Name; // Technique name - UINT Passes; // Number of passes - UINT Annotations; // Number of annotations - -} D3DXTECHNIQUE_DESC; - - -//---------------------------------------------------------------------------- -// D3DXPASS_DESC: -//---------------------------------------------------------------------------- - -typedef struct _D3DXPASS_DESC -{ - LPCSTR Name; // Pass name - UINT Annotations; // Number of annotations - - CONST DWORD *pVertexShaderFunction; // Vertex shader function - CONST DWORD *pPixelShaderFunction; // Pixel shader function - -} D3DXPASS_DESC; - - -//---------------------------------------------------------------------------- -// D3DXFUNCTION_DESC: -//---------------------------------------------------------------------------- - -typedef struct _D3DXFUNCTION_DESC -{ - LPCSTR Name; // Function name - UINT Annotations; // Number of annotations - -} D3DXFUNCTION_DESC; - - - -////////////////////////////////////////////////////////////////////////////// -// ID3DXEffectPool /////////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -typedef interface ID3DXEffectPool ID3DXEffectPool; -typedef interface ID3DXEffectPool *LPD3DXEFFECTPOOL; - -// {9537AB04-3250-412e-8213-FCD2F8677933} -DEFINE_GUID(IID_ID3DXEffectPool, -0x9537ab04, 0x3250, 0x412e, 0x82, 0x13, 0xfc, 0xd2, 0xf8, 0x67, 0x79, 0x33); - - -#undef INTERFACE -#define INTERFACE ID3DXEffectPool - -DECLARE_INTERFACE_(ID3DXEffectPool, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // No public methods -}; - - -////////////////////////////////////////////////////////////////////////////// -// ID3DXBaseEffect /////////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -typedef interface ID3DXBaseEffect ID3DXBaseEffect; -typedef interface ID3DXBaseEffect *LPD3DXBASEEFFECT; - -// {017C18AC-103F-4417-8C51-6BF6EF1E56BE} -DEFINE_GUID(IID_ID3DXBaseEffect, -0x17c18ac, 0x103f, 0x4417, 0x8c, 0x51, 0x6b, 0xf6, 0xef, 0x1e, 0x56, 0xbe); - - -#undef INTERFACE -#define INTERFACE ID3DXBaseEffect - -DECLARE_INTERFACE_(ID3DXBaseEffect, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // Descs - STDMETHOD(GetDesc)(THIS_ D3DXEFFECT_DESC* pDesc) PURE; - STDMETHOD(GetParameterDesc)(THIS_ D3DXHANDLE hParameter, D3DXPARAMETER_DESC* pDesc) PURE; - STDMETHOD(GetTechniqueDesc)(THIS_ D3DXHANDLE hTechnique, D3DXTECHNIQUE_DESC* pDesc) PURE; - STDMETHOD(GetPassDesc)(THIS_ D3DXHANDLE hPass, D3DXPASS_DESC* pDesc) PURE; - STDMETHOD(GetFunctionDesc)(THIS_ D3DXHANDLE hShader, D3DXFUNCTION_DESC* pDesc) PURE; - - // Handle operations - STDMETHOD_(D3DXHANDLE, GetParameter)(THIS_ D3DXHANDLE hParameter, UINT Index) PURE; - STDMETHOD_(D3DXHANDLE, GetParameterByName)(THIS_ D3DXHANDLE hParameter, LPCSTR pName) PURE; - STDMETHOD_(D3DXHANDLE, GetParameterBySemantic)(THIS_ D3DXHANDLE hParameter, LPCSTR pSemantic) PURE; - STDMETHOD_(D3DXHANDLE, GetParameterElement)(THIS_ D3DXHANDLE hParameter, UINT Index) PURE; - STDMETHOD_(D3DXHANDLE, GetTechnique)(THIS_ UINT Index) PURE; - STDMETHOD_(D3DXHANDLE, GetTechniqueByName)(THIS_ LPCSTR pName) PURE; - STDMETHOD_(D3DXHANDLE, GetPass)(THIS_ D3DXHANDLE hTechnique, UINT Index) PURE; - STDMETHOD_(D3DXHANDLE, GetPassByName)(THIS_ D3DXHANDLE hTechnique, LPCSTR pName) PURE; - STDMETHOD_(D3DXHANDLE, GetFunction)(THIS_ UINT Index) PURE; - STDMETHOD_(D3DXHANDLE, GetFunctionByName)(THIS_ LPCSTR pName) PURE; - STDMETHOD_(D3DXHANDLE, GetAnnotation)(THIS_ D3DXHANDLE hObject, UINT Index) PURE; - STDMETHOD_(D3DXHANDLE, GetAnnotationByName)(THIS_ D3DXHANDLE hObject, LPCSTR pName) PURE; - - // Get/Set Parameters - STDMETHOD(SetValue)(THIS_ D3DXHANDLE hParameter, LPCVOID pData, UINT Bytes) PURE; - STDMETHOD(GetValue)(THIS_ D3DXHANDLE hParameter, LPVOID pData, UINT Bytes) PURE; - STDMETHOD(SetBool)(THIS_ D3DXHANDLE hParameter, BOOL b) PURE; - STDMETHOD(GetBool)(THIS_ D3DXHANDLE hParameter, BOOL* pb) PURE; - STDMETHOD(SetBoolArray)(THIS_ D3DXHANDLE hParameter, CONST BOOL* pb, UINT Count) PURE; - STDMETHOD(GetBoolArray)(THIS_ D3DXHANDLE hParameter, BOOL* pb, UINT Count) PURE; - STDMETHOD(SetInt)(THIS_ D3DXHANDLE hParameter, INT n) PURE; - STDMETHOD(GetInt)(THIS_ D3DXHANDLE hParameter, INT* pn) PURE; - STDMETHOD(SetIntArray)(THIS_ D3DXHANDLE hParameter, CONST INT* pn, UINT Count) PURE; - STDMETHOD(GetIntArray)(THIS_ D3DXHANDLE hParameter, INT* pn, UINT Count) PURE; - STDMETHOD(SetFloat)(THIS_ D3DXHANDLE hParameter, FLOAT f) PURE; - STDMETHOD(GetFloat)(THIS_ D3DXHANDLE hParameter, FLOAT* pf) PURE; - STDMETHOD(SetFloatArray)(THIS_ D3DXHANDLE hParameter, CONST FLOAT* pf, UINT Count) PURE; - STDMETHOD(GetFloatArray)(THIS_ D3DXHANDLE hParameter, FLOAT* pf, UINT Count) PURE; - STDMETHOD(SetVector)(THIS_ D3DXHANDLE hParameter, CONST D3DXVECTOR4* pVector) PURE; - STDMETHOD(GetVector)(THIS_ D3DXHANDLE hParameter, D3DXVECTOR4* pVector) PURE; - STDMETHOD(SetVectorArray)(THIS_ D3DXHANDLE hParameter, CONST D3DXVECTOR4* pVector, UINT Count) PURE; - STDMETHOD(GetVectorArray)(THIS_ D3DXHANDLE hParameter, D3DXVECTOR4* pVector, UINT Count) PURE; - STDMETHOD(SetMatrix)(THIS_ D3DXHANDLE hParameter, CONST D3DXMATRIX* pMatrix) PURE; - STDMETHOD(GetMatrix)(THIS_ D3DXHANDLE hParameter, D3DXMATRIX* pMatrix) PURE; - STDMETHOD(SetMatrixArray)(THIS_ D3DXHANDLE hParameter, CONST D3DXMATRIX* pMatrix, UINT Count) PURE; - STDMETHOD(GetMatrixArray)(THIS_ D3DXHANDLE hParameter, D3DXMATRIX* pMatrix, UINT Count) PURE; - STDMETHOD(SetMatrixPointerArray)(THIS_ D3DXHANDLE hParameter, CONST D3DXMATRIX** ppMatrix, UINT Count) PURE; - STDMETHOD(GetMatrixPointerArray)(THIS_ D3DXHANDLE hParameter, D3DXMATRIX** ppMatrix, UINT Count) PURE; - STDMETHOD(SetMatrixTranspose)(THIS_ D3DXHANDLE hParameter, CONST D3DXMATRIX* pMatrix) PURE; - STDMETHOD(GetMatrixTranspose)(THIS_ D3DXHANDLE hParameter, D3DXMATRIX* pMatrix) PURE; - STDMETHOD(SetMatrixTransposeArray)(THIS_ D3DXHANDLE hParameter, CONST D3DXMATRIX* pMatrix, UINT Count) PURE; - STDMETHOD(GetMatrixTransposeArray)(THIS_ D3DXHANDLE hParameter, D3DXMATRIX* pMatrix, UINT Count) PURE; - STDMETHOD(SetMatrixTransposePointerArray)(THIS_ D3DXHANDLE hParameter, CONST D3DXMATRIX** ppMatrix, UINT Count) PURE; - STDMETHOD(GetMatrixTransposePointerArray)(THIS_ D3DXHANDLE hParameter, D3DXMATRIX** ppMatrix, UINT Count) PURE; - STDMETHOD(SetString)(THIS_ D3DXHANDLE hParameter, LPCSTR pString) PURE; - STDMETHOD(GetString)(THIS_ D3DXHANDLE hParameter, LPCSTR* ppString) PURE; - STDMETHOD(SetTexture)(THIS_ D3DXHANDLE hParameter, LPDIRECT3DBASETEXTURE9 pTexture) PURE; - STDMETHOD(GetTexture)(THIS_ D3DXHANDLE hParameter, LPDIRECT3DBASETEXTURE9 *ppTexture) PURE; - STDMETHOD(GetPixelShader)(THIS_ D3DXHANDLE hParameter, LPDIRECT3DPIXELSHADER9 *ppPShader) PURE; - STDMETHOD(GetVertexShader)(THIS_ D3DXHANDLE hParameter, LPDIRECT3DVERTEXSHADER9 *ppVShader) PURE; - - //Set Range of an Array to pass to device - //Useful for sending only a subrange of an array down to the device - STDMETHOD(SetArrayRange)(THIS_ D3DXHANDLE hParameter, UINT uStart, UINT uEnd) PURE; - -}; - - -//---------------------------------------------------------------------------- -// ID3DXEffectStateManager: -// ------------------------ -// This is a user implemented interface that can be used to manage device -// state changes made by an Effect. -//---------------------------------------------------------------------------- - -typedef interface ID3DXEffectStateManager ID3DXEffectStateManager; -typedef interface ID3DXEffectStateManager *LPD3DXEFFECTSTATEMANAGER; - -// {79AAB587-6DBC-4fa7-82DE-37FA1781C5CE} -DEFINE_GUID(IID_ID3DXEffectStateManager, -0x79aab587, 0x6dbc, 0x4fa7, 0x82, 0xde, 0x37, 0xfa, 0x17, 0x81, 0xc5, 0xce); - -#undef INTERFACE -#define INTERFACE ID3DXEffectStateManager - -DECLARE_INTERFACE_(ID3DXEffectStateManager, IUnknown) -{ - // The user must correctly implement QueryInterface, AddRef, and Release. - - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // The following methods are called by the Effect when it wants to make - // the corresponding device call. Note that: - // 1. Users manage the state and are therefore responsible for making the - // the corresponding device calls themselves inside their callbacks. - // 2. Effects pay attention to the return values of the callbacks, and so - // users must pay attention to what they return in their callbacks. - - STDMETHOD(SetTransform)(THIS_ D3DTRANSFORMSTATETYPE State, CONST D3DMATRIX *pMatrix) PURE; - STDMETHOD(SetMaterial)(THIS_ CONST D3DMATERIAL9 *pMaterial) PURE; - STDMETHOD(SetLight)(THIS_ DWORD Index, CONST D3DLIGHT9 *pLight) PURE; - STDMETHOD(LightEnable)(THIS_ DWORD Index, BOOL Enable) PURE; - STDMETHOD(SetRenderState)(THIS_ D3DRENDERSTATETYPE State, DWORD Value) PURE; - STDMETHOD(SetTexture)(THIS_ DWORD Stage, LPDIRECT3DBASETEXTURE9 pTexture) PURE; - STDMETHOD(SetTextureStageState)(THIS_ DWORD Stage, D3DTEXTURESTAGESTATETYPE Type, DWORD Value) PURE; - STDMETHOD(SetSamplerState)(THIS_ DWORD Sampler, D3DSAMPLERSTATETYPE Type, DWORD Value) PURE; - STDMETHOD(SetNPatchMode)(THIS_ FLOAT NumSegments) PURE; - STDMETHOD(SetFVF)(THIS_ DWORD FVF) PURE; - STDMETHOD(SetVertexShader)(THIS_ LPDIRECT3DVERTEXSHADER9 pShader) PURE; - STDMETHOD(SetVertexShaderConstantF)(THIS_ UINT RegisterIndex, CONST FLOAT *pConstantData, UINT RegisterCount) PURE; - STDMETHOD(SetVertexShaderConstantI)(THIS_ UINT RegisterIndex, CONST INT *pConstantData, UINT RegisterCount) PURE; - STDMETHOD(SetVertexShaderConstantB)(THIS_ UINT RegisterIndex, CONST BOOL *pConstantData, UINT RegisterCount) PURE; - STDMETHOD(SetPixelShader)(THIS_ LPDIRECT3DPIXELSHADER9 pShader) PURE; - STDMETHOD(SetPixelShaderConstantF)(THIS_ UINT RegisterIndex, CONST FLOAT *pConstantData, UINT RegisterCount) PURE; - STDMETHOD(SetPixelShaderConstantI)(THIS_ UINT RegisterIndex, CONST INT *pConstantData, UINT RegisterCount) PURE; - STDMETHOD(SetPixelShaderConstantB)(THIS_ UINT RegisterIndex, CONST BOOL *pConstantData, UINT RegisterCount) PURE; -}; - - -////////////////////////////////////////////////////////////////////////////// -// ID3DXEffect /////////////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -typedef interface ID3DXEffect ID3DXEffect; -typedef interface ID3DXEffect *LPD3DXEFFECT; - -// {F6CEB4B3-4E4C-40dd-B883-8D8DE5EA0CD5} -DEFINE_GUID(IID_ID3DXEffect, -0xf6ceb4b3, 0x4e4c, 0x40dd, 0xb8, 0x83, 0x8d, 0x8d, 0xe5, 0xea, 0xc, 0xd5); - -#undef INTERFACE -#define INTERFACE ID3DXEffect - -DECLARE_INTERFACE_(ID3DXEffect, ID3DXBaseEffect) -{ - // ID3DXBaseEffect - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // Descs - STDMETHOD(GetDesc)(THIS_ D3DXEFFECT_DESC* pDesc) PURE; - STDMETHOD(GetParameterDesc)(THIS_ D3DXHANDLE hParameter, D3DXPARAMETER_DESC* pDesc) PURE; - STDMETHOD(GetTechniqueDesc)(THIS_ D3DXHANDLE hTechnique, D3DXTECHNIQUE_DESC* pDesc) PURE; - STDMETHOD(GetPassDesc)(THIS_ D3DXHANDLE hPass, D3DXPASS_DESC* pDesc) PURE; - STDMETHOD(GetFunctionDesc)(THIS_ D3DXHANDLE hShader, D3DXFUNCTION_DESC* pDesc) PURE; - - // Handle operations - STDMETHOD_(D3DXHANDLE, GetParameter)(THIS_ D3DXHANDLE hParameter, UINT Index) PURE; - STDMETHOD_(D3DXHANDLE, GetParameterByName)(THIS_ D3DXHANDLE hParameter, LPCSTR pName) PURE; - STDMETHOD_(D3DXHANDLE, GetParameterBySemantic)(THIS_ D3DXHANDLE hParameter, LPCSTR pSemantic) PURE; - STDMETHOD_(D3DXHANDLE, GetParameterElement)(THIS_ D3DXHANDLE hParameter, UINT Index) PURE; - STDMETHOD_(D3DXHANDLE, GetTechnique)(THIS_ UINT Index) PURE; - STDMETHOD_(D3DXHANDLE, GetTechniqueByName)(THIS_ LPCSTR pName) PURE; - STDMETHOD_(D3DXHANDLE, GetPass)(THIS_ D3DXHANDLE hTechnique, UINT Index) PURE; - STDMETHOD_(D3DXHANDLE, GetPassByName)(THIS_ D3DXHANDLE hTechnique, LPCSTR pName) PURE; - STDMETHOD_(D3DXHANDLE, GetFunction)(THIS_ UINT Index) PURE; - STDMETHOD_(D3DXHANDLE, GetFunctionByName)(THIS_ LPCSTR pName) PURE; - STDMETHOD_(D3DXHANDLE, GetAnnotation)(THIS_ D3DXHANDLE hObject, UINT Index) PURE; - STDMETHOD_(D3DXHANDLE, GetAnnotationByName)(THIS_ D3DXHANDLE hObject, LPCSTR pName) PURE; - - // Get/Set Parameters - STDMETHOD(SetValue)(THIS_ D3DXHANDLE hParameter, LPCVOID pData, UINT Bytes) PURE; - STDMETHOD(GetValue)(THIS_ D3DXHANDLE hParameter, LPVOID pData, UINT Bytes) PURE; - STDMETHOD(SetBool)(THIS_ D3DXHANDLE hParameter, BOOL b) PURE; - STDMETHOD(GetBool)(THIS_ D3DXHANDLE hParameter, BOOL* pb) PURE; - STDMETHOD(SetBoolArray)(THIS_ D3DXHANDLE hParameter, CONST BOOL* pb, UINT Count) PURE; - STDMETHOD(GetBoolArray)(THIS_ D3DXHANDLE hParameter, BOOL* pb, UINT Count) PURE; - STDMETHOD(SetInt)(THIS_ D3DXHANDLE hParameter, INT n) PURE; - STDMETHOD(GetInt)(THIS_ D3DXHANDLE hParameter, INT* pn) PURE; - STDMETHOD(SetIntArray)(THIS_ D3DXHANDLE hParameter, CONST INT* pn, UINT Count) PURE; - STDMETHOD(GetIntArray)(THIS_ D3DXHANDLE hParameter, INT* pn, UINT Count) PURE; - STDMETHOD(SetFloat)(THIS_ D3DXHANDLE hParameter, FLOAT f) PURE; - STDMETHOD(GetFloat)(THIS_ D3DXHANDLE hParameter, FLOAT* pf) PURE; - STDMETHOD(SetFloatArray)(THIS_ D3DXHANDLE hParameter, CONST FLOAT* pf, UINT Count) PURE; - STDMETHOD(GetFloatArray)(THIS_ D3DXHANDLE hParameter, FLOAT* pf, UINT Count) PURE; - STDMETHOD(SetVector)(THIS_ D3DXHANDLE hParameter, CONST D3DXVECTOR4* pVector) PURE; - STDMETHOD(GetVector)(THIS_ D3DXHANDLE hParameter, D3DXVECTOR4* pVector) PURE; - STDMETHOD(SetVectorArray)(THIS_ D3DXHANDLE hParameter, CONST D3DXVECTOR4* pVector, UINT Count) PURE; - STDMETHOD(GetVectorArray)(THIS_ D3DXHANDLE hParameter, D3DXVECTOR4* pVector, UINT Count) PURE; - STDMETHOD(SetMatrix)(THIS_ D3DXHANDLE hParameter, CONST D3DXMATRIX* pMatrix) PURE; - STDMETHOD(GetMatrix)(THIS_ D3DXHANDLE hParameter, D3DXMATRIX* pMatrix) PURE; - STDMETHOD(SetMatrixArray)(THIS_ D3DXHANDLE hParameter, CONST D3DXMATRIX* pMatrix, UINT Count) PURE; - STDMETHOD(GetMatrixArray)(THIS_ D3DXHANDLE hParameter, D3DXMATRIX* pMatrix, UINT Count) PURE; - STDMETHOD(SetMatrixPointerArray)(THIS_ D3DXHANDLE hParameter, CONST D3DXMATRIX** ppMatrix, UINT Count) PURE; - STDMETHOD(GetMatrixPointerArray)(THIS_ D3DXHANDLE hParameter, D3DXMATRIX** ppMatrix, UINT Count) PURE; - STDMETHOD(SetMatrixTranspose)(THIS_ D3DXHANDLE hParameter, CONST D3DXMATRIX* pMatrix) PURE; - STDMETHOD(GetMatrixTranspose)(THIS_ D3DXHANDLE hParameter, D3DXMATRIX* pMatrix) PURE; - STDMETHOD(SetMatrixTransposeArray)(THIS_ D3DXHANDLE hParameter, CONST D3DXMATRIX* pMatrix, UINT Count) PURE; - STDMETHOD(GetMatrixTransposeArray)(THIS_ D3DXHANDLE hParameter, D3DXMATRIX* pMatrix, UINT Count) PURE; - STDMETHOD(SetMatrixTransposePointerArray)(THIS_ D3DXHANDLE hParameter, CONST D3DXMATRIX** ppMatrix, UINT Count) PURE; - STDMETHOD(GetMatrixTransposePointerArray)(THIS_ D3DXHANDLE hParameter, D3DXMATRIX** ppMatrix, UINT Count) PURE; - STDMETHOD(SetString)(THIS_ D3DXHANDLE hParameter, LPCSTR pString) PURE; - STDMETHOD(GetString)(THIS_ D3DXHANDLE hParameter, LPCSTR* ppString) PURE; - STDMETHOD(SetTexture)(THIS_ D3DXHANDLE hParameter, LPDIRECT3DBASETEXTURE9 pTexture) PURE; - STDMETHOD(GetTexture)(THIS_ D3DXHANDLE hParameter, LPDIRECT3DBASETEXTURE9 *ppTexture) PURE; - STDMETHOD(GetPixelShader)(THIS_ D3DXHANDLE hParameter, LPDIRECT3DPIXELSHADER9 *ppPShader) PURE; - STDMETHOD(GetVertexShader)(THIS_ D3DXHANDLE hParameter, LPDIRECT3DVERTEXSHADER9 *ppVShader) PURE; - - //Set Range of an Array to pass to device - //Usefull for sending only a subrange of an array down to the device - STDMETHOD(SetArrayRange)(THIS_ D3DXHANDLE hParameter, UINT uStart, UINT uEnd) PURE; - // ID3DXBaseEffect - - - // Pool - STDMETHOD(GetPool)(THIS_ LPD3DXEFFECTPOOL* ppPool) PURE; - - // Selecting and setting a technique - STDMETHOD(SetTechnique)(THIS_ D3DXHANDLE hTechnique) PURE; - STDMETHOD_(D3DXHANDLE, GetCurrentTechnique)(THIS) PURE; - STDMETHOD(ValidateTechnique)(THIS_ D3DXHANDLE hTechnique) PURE; - STDMETHOD(FindNextValidTechnique)(THIS_ D3DXHANDLE hTechnique, D3DXHANDLE *pTechnique) PURE; - STDMETHOD_(BOOL, IsParameterUsed)(THIS_ D3DXHANDLE hParameter, D3DXHANDLE hTechnique) PURE; - - // Using current technique - // Begin starts active technique - // BeginPass begins a pass - // CommitChanges updates changes to any set calls in the pass. This should be called before - // any DrawPrimitive call to d3d - // EndPass ends a pass - // End ends active technique - STDMETHOD(Begin)(THIS_ UINT *pPasses, DWORD Flags) PURE; - STDMETHOD(BeginPass)(THIS_ UINT Pass) PURE; - STDMETHOD(CommitChanges)(THIS) PURE; - STDMETHOD(EndPass)(THIS) PURE; - STDMETHOD(End)(THIS) PURE; - - // Managing D3D Device - STDMETHOD(GetDevice)(THIS_ LPDIRECT3DDEVICE9* ppDevice) PURE; - STDMETHOD(OnLostDevice)(THIS) PURE; - STDMETHOD(OnResetDevice)(THIS) PURE; - - // Logging device calls - STDMETHOD(SetStateManager)(THIS_ LPD3DXEFFECTSTATEMANAGER pManager) PURE; - STDMETHOD(GetStateManager)(THIS_ LPD3DXEFFECTSTATEMANAGER *ppManager) PURE; - - // Parameter blocks - STDMETHOD(BeginParameterBlock)(THIS) PURE; - STDMETHOD_(D3DXHANDLE, EndParameterBlock)(THIS) PURE; - STDMETHOD(ApplyParameterBlock)(THIS_ D3DXHANDLE hParameterBlock) PURE; - STDMETHOD(DeleteParameterBlock)(THIS_ D3DXHANDLE hParameterBlock) PURE; - - // Cloning - STDMETHOD(CloneEffect)(THIS_ LPDIRECT3DDEVICE9 pDevice, LPD3DXEFFECT* ppEffect) PURE; - - // Fast path for setting variables directly in ID3DXEffect - STDMETHOD(SetRawValue)(THIS_ D3DXHANDLE hParameter, LPCVOID pData, UINT ByteOffset, UINT Bytes) PURE; -}; - - -////////////////////////////////////////////////////////////////////////////// -// ID3DXEffectCompiler /////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -typedef interface ID3DXEffectCompiler ID3DXEffectCompiler; -typedef interface ID3DXEffectCompiler *LPD3DXEFFECTCOMPILER; - -// {51B8A949-1A31-47e6-BEA0-4B30DB53F1E0} -DEFINE_GUID(IID_ID3DXEffectCompiler, -0x51b8a949, 0x1a31, 0x47e6, 0xbe, 0xa0, 0x4b, 0x30, 0xdb, 0x53, 0xf1, 0xe0); - - -#undef INTERFACE -#define INTERFACE ID3DXEffectCompiler - -DECLARE_INTERFACE_(ID3DXEffectCompiler, ID3DXBaseEffect) -{ - // ID3DXBaseEffect - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // Descs - STDMETHOD(GetDesc)(THIS_ D3DXEFFECT_DESC* pDesc) PURE; - STDMETHOD(GetParameterDesc)(THIS_ D3DXHANDLE hParameter, D3DXPARAMETER_DESC* pDesc) PURE; - STDMETHOD(GetTechniqueDesc)(THIS_ D3DXHANDLE hTechnique, D3DXTECHNIQUE_DESC* pDesc) PURE; - STDMETHOD(GetPassDesc)(THIS_ D3DXHANDLE hPass, D3DXPASS_DESC* pDesc) PURE; - STDMETHOD(GetFunctionDesc)(THIS_ D3DXHANDLE hShader, D3DXFUNCTION_DESC* pDesc) PURE; - - // Handle operations - STDMETHOD_(D3DXHANDLE, GetParameter)(THIS_ D3DXHANDLE hParameter, UINT Index) PURE; - STDMETHOD_(D3DXHANDLE, GetParameterByName)(THIS_ D3DXHANDLE hParameter, LPCSTR pName) PURE; - STDMETHOD_(D3DXHANDLE, GetParameterBySemantic)(THIS_ D3DXHANDLE hParameter, LPCSTR pSemantic) PURE; - STDMETHOD_(D3DXHANDLE, GetParameterElement)(THIS_ D3DXHANDLE hParameter, UINT Index) PURE; - STDMETHOD_(D3DXHANDLE, GetTechnique)(THIS_ UINT Index) PURE; - STDMETHOD_(D3DXHANDLE, GetTechniqueByName)(THIS_ LPCSTR pName) PURE; - STDMETHOD_(D3DXHANDLE, GetPass)(THIS_ D3DXHANDLE hTechnique, UINT Index) PURE; - STDMETHOD_(D3DXHANDLE, GetPassByName)(THIS_ D3DXHANDLE hTechnique, LPCSTR pName) PURE; - STDMETHOD_(D3DXHANDLE, GetFunction)(THIS_ UINT Index) PURE; - STDMETHOD_(D3DXHANDLE, GetFunctionByName)(THIS_ LPCSTR pName) PURE; - STDMETHOD_(D3DXHANDLE, GetAnnotation)(THIS_ D3DXHANDLE hObject, UINT Index) PURE; - STDMETHOD_(D3DXHANDLE, GetAnnotationByName)(THIS_ D3DXHANDLE hObject, LPCSTR pName) PURE; - - // Get/Set Parameters - STDMETHOD(SetValue)(THIS_ D3DXHANDLE hParameter, LPCVOID pData, UINT Bytes) PURE; - STDMETHOD(GetValue)(THIS_ D3DXHANDLE hParameter, LPVOID pData, UINT Bytes) PURE; - STDMETHOD(SetBool)(THIS_ D3DXHANDLE hParameter, BOOL b) PURE; - STDMETHOD(GetBool)(THIS_ D3DXHANDLE hParameter, BOOL* pb) PURE; - STDMETHOD(SetBoolArray)(THIS_ D3DXHANDLE hParameter, CONST BOOL* pb, UINT Count) PURE; - STDMETHOD(GetBoolArray)(THIS_ D3DXHANDLE hParameter, BOOL* pb, UINT Count) PURE; - STDMETHOD(SetInt)(THIS_ D3DXHANDLE hParameter, INT n) PURE; - STDMETHOD(GetInt)(THIS_ D3DXHANDLE hParameter, INT* pn) PURE; - STDMETHOD(SetIntArray)(THIS_ D3DXHANDLE hParameter, CONST INT* pn, UINT Count) PURE; - STDMETHOD(GetIntArray)(THIS_ D3DXHANDLE hParameter, INT* pn, UINT Count) PURE; - STDMETHOD(SetFloat)(THIS_ D3DXHANDLE hParameter, FLOAT f) PURE; - STDMETHOD(GetFloat)(THIS_ D3DXHANDLE hParameter, FLOAT* pf) PURE; - STDMETHOD(SetFloatArray)(THIS_ D3DXHANDLE hParameter, CONST FLOAT* pf, UINT Count) PURE; - STDMETHOD(GetFloatArray)(THIS_ D3DXHANDLE hParameter, FLOAT* pf, UINT Count) PURE; - STDMETHOD(SetVector)(THIS_ D3DXHANDLE hParameter, CONST D3DXVECTOR4* pVector) PURE; - STDMETHOD(GetVector)(THIS_ D3DXHANDLE hParameter, D3DXVECTOR4* pVector) PURE; - STDMETHOD(SetVectorArray)(THIS_ D3DXHANDLE hParameter, CONST D3DXVECTOR4* pVector, UINT Count) PURE; - STDMETHOD(GetVectorArray)(THIS_ D3DXHANDLE hParameter, D3DXVECTOR4* pVector, UINT Count) PURE; - STDMETHOD(SetMatrix)(THIS_ D3DXHANDLE hParameter, CONST D3DXMATRIX* pMatrix) PURE; - STDMETHOD(GetMatrix)(THIS_ D3DXHANDLE hParameter, D3DXMATRIX* pMatrix) PURE; - STDMETHOD(SetMatrixArray)(THIS_ D3DXHANDLE hParameter, CONST D3DXMATRIX* pMatrix, UINT Count) PURE; - STDMETHOD(GetMatrixArray)(THIS_ D3DXHANDLE hParameter, D3DXMATRIX* pMatrix, UINT Count) PURE; - STDMETHOD(SetMatrixPointerArray)(THIS_ D3DXHANDLE hParameter, CONST D3DXMATRIX** ppMatrix, UINT Count) PURE; - STDMETHOD(GetMatrixPointerArray)(THIS_ D3DXHANDLE hParameter, D3DXMATRIX** ppMatrix, UINT Count) PURE; - STDMETHOD(SetMatrixTranspose)(THIS_ D3DXHANDLE hParameter, CONST D3DXMATRIX* pMatrix) PURE; - STDMETHOD(GetMatrixTranspose)(THIS_ D3DXHANDLE hParameter, D3DXMATRIX* pMatrix) PURE; - STDMETHOD(SetMatrixTransposeArray)(THIS_ D3DXHANDLE hParameter, CONST D3DXMATRIX* pMatrix, UINT Count) PURE; - STDMETHOD(GetMatrixTransposeArray)(THIS_ D3DXHANDLE hParameter, D3DXMATRIX* pMatrix, UINT Count) PURE; - STDMETHOD(SetMatrixTransposePointerArray)(THIS_ D3DXHANDLE hParameter, CONST D3DXMATRIX** ppMatrix, UINT Count) PURE; - STDMETHOD(GetMatrixTransposePointerArray)(THIS_ D3DXHANDLE hParameter, D3DXMATRIX** ppMatrix, UINT Count) PURE; - STDMETHOD(SetString)(THIS_ D3DXHANDLE hParameter, LPCSTR pString) PURE; - STDMETHOD(GetString)(THIS_ D3DXHANDLE hParameter, LPCSTR* ppString) PURE; - STDMETHOD(SetTexture)(THIS_ D3DXHANDLE hParameter, LPDIRECT3DBASETEXTURE9 pTexture) PURE; - STDMETHOD(GetTexture)(THIS_ D3DXHANDLE hParameter, LPDIRECT3DBASETEXTURE9 *ppTexture) PURE; - STDMETHOD(GetPixelShader)(THIS_ D3DXHANDLE hParameter, LPDIRECT3DPIXELSHADER9 *ppPShader) PURE; - STDMETHOD(GetVertexShader)(THIS_ D3DXHANDLE hParameter, LPDIRECT3DVERTEXSHADER9 *ppVShader) PURE; - - //Set Range of an Array to pass to device - //Usefull for sending only a subrange of an array down to the device - STDMETHOD(SetArrayRange)(THIS_ D3DXHANDLE hParameter, UINT uStart, UINT uEnd) PURE; - // ID3DXBaseEffect - - // Parameter sharing, specialization, and information - STDMETHOD(SetLiteral)(THIS_ D3DXHANDLE hParameter, BOOL Literal) PURE; - STDMETHOD(GetLiteral)(THIS_ D3DXHANDLE hParameter, BOOL *pLiteral) PURE; - - // Compilation - STDMETHOD(CompileEffect)(THIS_ DWORD Flags, - LPD3DXBUFFER* ppEffect, LPD3DXBUFFER* ppErrorMsgs) PURE; - - STDMETHOD(CompileShader)(THIS_ D3DXHANDLE hFunction, LPCSTR pTarget, DWORD Flags, - LPD3DXBUFFER* ppShader, LPD3DXBUFFER* ppErrorMsgs, LPD3DXCONSTANTTABLE* ppConstantTable) PURE; -}; - - -////////////////////////////////////////////////////////////////////////////// -// APIs ////////////////////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - -//---------------------------------------------------------------------------- -// D3DXCreateEffectPool: -// --------------------- -// Creates an effect pool. Pools are used for sharing parameters between -// multiple effects. For all effects within a pool, shared parameters of the -// same name all share the same value. -// -// Parameters: -// ppPool -// Returns the created pool. -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXCreateEffectPool( - LPD3DXEFFECTPOOL* ppPool); - - -//---------------------------------------------------------------------------- -// D3DXCreateEffect: -// ----------------- -// Creates an effect from an ascii or binary effect description. -// -// Parameters: -// pDevice -// Pointer of the device on which to create the effect -// pSrcFile -// Name of the file containing the effect description -// hSrcModule -// Module handle. if NULL, current module will be used. -// pSrcResource -// Resource name in module -// pSrcData -// Pointer to effect description -// SrcDataSize -// Size of the effect description in bytes -// pDefines -// Optional NULL-terminated array of preprocessor macro definitions. -// Flags -// See D3DXSHADER_xxx flags. -// pSkipConstants -// A list of semi-colon delimited variable names. The effect will -// not set these variables to the device when they are referenced -// by a shader. NOTE: the variables specified here must be -// register bound in the file and must not be used in expressions -// in passes or samplers or the file will not load. -// pInclude -// Optional interface pointer to use for handling #include directives. -// If this parameter is NULL, #includes will be honored when compiling -// from file, and will error when compiling from resource or memory. -// pPool -// Pointer to ID3DXEffectPool object to use for shared parameters. -// If NULL, no parameters will be shared. -// ppEffect -// Returns a buffer containing created effect. -// ppCompilationErrors -// Returns a buffer containing any error messages which occurred during -// compile. Or NULL if you do not care about the error messages. -// -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXCreateEffectFromFileA( - LPDIRECT3DDEVICE9 pDevice, - LPCSTR pSrcFile, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - DWORD Flags, - LPD3DXEFFECTPOOL pPool, - LPD3DXEFFECT* ppEffect, - LPD3DXBUFFER* ppCompilationErrors); - -HRESULT WINAPI - D3DXCreateEffectFromFileW( - LPDIRECT3DDEVICE9 pDevice, - LPCWSTR pSrcFile, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - DWORD Flags, - LPD3DXEFFECTPOOL pPool, - LPD3DXEFFECT* ppEffect, - LPD3DXBUFFER* ppCompilationErrors); - -#ifdef UNICODE -#define D3DXCreateEffectFromFile D3DXCreateEffectFromFileW -#else -#define D3DXCreateEffectFromFile D3DXCreateEffectFromFileA -#endif - - -HRESULT WINAPI - D3DXCreateEffectFromResourceA( - LPDIRECT3DDEVICE9 pDevice, - HMODULE hSrcModule, - LPCSTR pSrcResource, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - DWORD Flags, - LPD3DXEFFECTPOOL pPool, - LPD3DXEFFECT* ppEffect, - LPD3DXBUFFER* ppCompilationErrors); - -HRESULT WINAPI - D3DXCreateEffectFromResourceW( - LPDIRECT3DDEVICE9 pDevice, - HMODULE hSrcModule, - LPCWSTR pSrcResource, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - DWORD Flags, - LPD3DXEFFECTPOOL pPool, - LPD3DXEFFECT* ppEffect, - LPD3DXBUFFER* ppCompilationErrors); - -#ifdef UNICODE -#define D3DXCreateEffectFromResource D3DXCreateEffectFromResourceW -#else -#define D3DXCreateEffectFromResource D3DXCreateEffectFromResourceA -#endif - - -HRESULT WINAPI - D3DXCreateEffect( - LPDIRECT3DDEVICE9 pDevice, - LPCVOID pSrcData, - UINT SrcDataLen, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - DWORD Flags, - LPD3DXEFFECTPOOL pPool, - LPD3DXEFFECT* ppEffect, - LPD3DXBUFFER* ppCompilationErrors); - -// -// Ex functions that accept pSkipConstants in addition to other parameters -// - -HRESULT WINAPI - D3DXCreateEffectFromFileExA( - LPDIRECT3DDEVICE9 pDevice, - LPCSTR pSrcFile, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - LPCSTR pSkipConstants, - DWORD Flags, - LPD3DXEFFECTPOOL pPool, - LPD3DXEFFECT* ppEffect, - LPD3DXBUFFER* ppCompilationErrors); - -HRESULT WINAPI - D3DXCreateEffectFromFileExW( - LPDIRECT3DDEVICE9 pDevice, - LPCWSTR pSrcFile, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - LPCSTR pSkipConstants, - DWORD Flags, - LPD3DXEFFECTPOOL pPool, - LPD3DXEFFECT* ppEffect, - LPD3DXBUFFER* ppCompilationErrors); - -#ifdef UNICODE -#define D3DXCreateEffectFromFileEx D3DXCreateEffectFromFileExW -#else -#define D3DXCreateEffectFromFileEx D3DXCreateEffectFromFileExA -#endif - - -HRESULT WINAPI - D3DXCreateEffectFromResourceExA( - LPDIRECT3DDEVICE9 pDevice, - HMODULE hSrcModule, - LPCSTR pSrcResource, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - LPCSTR pSkipConstants, - DWORD Flags, - LPD3DXEFFECTPOOL pPool, - LPD3DXEFFECT* ppEffect, - LPD3DXBUFFER* ppCompilationErrors); - -HRESULT WINAPI - D3DXCreateEffectFromResourceExW( - LPDIRECT3DDEVICE9 pDevice, - HMODULE hSrcModule, - LPCWSTR pSrcResource, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - LPCSTR pSkipConstants, - DWORD Flags, - LPD3DXEFFECTPOOL pPool, - LPD3DXEFFECT* ppEffect, - LPD3DXBUFFER* ppCompilationErrors); - -#ifdef UNICODE -#define D3DXCreateEffectFromResourceEx D3DXCreateEffectFromResourceExW -#else -#define D3DXCreateEffectFromResourceEx D3DXCreateEffectFromResourceExA -#endif - - -HRESULT WINAPI - D3DXCreateEffectEx( - LPDIRECT3DDEVICE9 pDevice, - LPCVOID pSrcData, - UINT SrcDataLen, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - LPCSTR pSkipConstants, - DWORD Flags, - LPD3DXEFFECTPOOL pPool, - LPD3DXEFFECT* ppEffect, - LPD3DXBUFFER* ppCompilationErrors); - -//---------------------------------------------------------------------------- -// D3DXCreateEffectCompiler: -// ------------------------- -// Creates an effect from an ascii or binary effect description. -// -// Parameters: -// pSrcFile -// Name of the file containing the effect description -// hSrcModule -// Module handle. if NULL, current module will be used. -// pSrcResource -// Resource name in module -// pSrcData -// Pointer to effect description -// SrcDataSize -// Size of the effect description in bytes -// pDefines -// Optional NULL-terminated array of preprocessor macro definitions. -// pInclude -// Optional interface pointer to use for handling #include directives. -// If this parameter is NULL, #includes will be honored when compiling -// from file, and will error when compiling from resource or memory. -// pPool -// Pointer to ID3DXEffectPool object to use for shared parameters. -// If NULL, no parameters will be shared. -// ppCompiler -// Returns a buffer containing created effect compiler. -// ppParseErrors -// Returns a buffer containing any error messages which occurred during -// parse. Or NULL if you do not care about the error messages. -// -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXCreateEffectCompilerFromFileA( - LPCSTR pSrcFile, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - DWORD Flags, - LPD3DXEFFECTCOMPILER* ppCompiler, - LPD3DXBUFFER* ppParseErrors); - -HRESULT WINAPI - D3DXCreateEffectCompilerFromFileW( - LPCWSTR pSrcFile, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - DWORD Flags, - LPD3DXEFFECTCOMPILER* ppCompiler, - LPD3DXBUFFER* ppParseErrors); - -#ifdef UNICODE -#define D3DXCreateEffectCompilerFromFile D3DXCreateEffectCompilerFromFileW -#else -#define D3DXCreateEffectCompilerFromFile D3DXCreateEffectCompilerFromFileA -#endif - - -HRESULT WINAPI - D3DXCreateEffectCompilerFromResourceA( - HMODULE hSrcModule, - LPCSTR pSrcResource, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - DWORD Flags, - LPD3DXEFFECTCOMPILER* ppCompiler, - LPD3DXBUFFER* ppParseErrors); - -HRESULT WINAPI - D3DXCreateEffectCompilerFromResourceW( - HMODULE hSrcModule, - LPCWSTR pSrcResource, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - DWORD Flags, - LPD3DXEFFECTCOMPILER* ppCompiler, - LPD3DXBUFFER* ppParseErrors); - -#ifdef UNICODE -#define D3DXCreateEffectCompilerFromResource D3DXCreateEffectCompilerFromResourceW -#else -#define D3DXCreateEffectCompilerFromResource D3DXCreateEffectCompilerFromResourceA -#endif - - -HRESULT WINAPI - D3DXCreateEffectCompiler( - LPCSTR pSrcData, - UINT SrcDataLen, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - DWORD Flags, - LPD3DXEFFECTCOMPILER* ppCompiler, - LPD3DXBUFFER* ppParseErrors); - -//---------------------------------------------------------------------------- -// D3DXDisassembleEffect: -// ----------------------- -// -// Parameters: -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXDisassembleEffect( - LPD3DXEFFECT pEffect, - BOOL EnableColorCode, - LPD3DXBUFFER *ppDisassembly); - - - -#ifdef __cplusplus -} -#endif //__cplusplus - -#endif //__D3DX9EFFECT_H__ - - diff --git a/SDK/Include/d3dx9math.h b/SDK/Include/d3dx9math.h deleted file mode 100644 index 3fda053..0000000 --- a/SDK/Include/d3dx9math.h +++ /dev/null @@ -1,1796 +0,0 @@ -////////////////////////////////////////////////////////////////////////////// -// -// Copyright (C) Microsoft Corporation. All Rights Reserved. -// -// File: d3dx9math.h -// Content: D3DX math types and functions -// -////////////////////////////////////////////////////////////////////////////// - -#include "d3dx9.h" - -#ifndef __D3DX9MATH_H__ -#define __D3DX9MATH_H__ - -#include -#if _MSC_VER >= 1200 -#pragma warning(push) -#endif -#pragma warning(disable:4201) // anonymous unions warning - - - -//=========================================================================== -// -// General purpose utilities -// -//=========================================================================== -#define D3DX_PI ((FLOAT) 3.141592654f) -#define D3DX_1BYPI ((FLOAT) 0.318309886f) - -#define D3DXToRadian( degree ) ((degree) * (D3DX_PI / 180.0f)) -#define D3DXToDegree( radian ) ((radian) * (180.0f / D3DX_PI)) - - - -//=========================================================================== -// -// 16 bit floating point numbers -// -//=========================================================================== - -#define D3DX_16F_DIG 3 // # of decimal digits of precision -#define D3DX_16F_EPSILON 4.8875809e-4f // smallest such that 1.0 + epsilon != 1.0 -#define D3DX_16F_MANT_DIG 11 // # of bits in mantissa -#define D3DX_16F_MAX 6.550400e+004 // max value -#define D3DX_16F_MAX_10_EXP 4 // max decimal exponent -#define D3DX_16F_MAX_EXP 15 // max binary exponent -#define D3DX_16F_MIN 6.1035156e-5f // min positive value -#define D3DX_16F_MIN_10_EXP (-4) // min decimal exponent -#define D3DX_16F_MIN_EXP (-14) // min binary exponent -#define D3DX_16F_RADIX 2 // exponent radix -#define D3DX_16F_ROUNDS 1 // addition rounding: near - - -typedef struct D3DXFLOAT16 -{ -#ifdef __cplusplus -public: - D3DXFLOAT16() {}; - D3DXFLOAT16( FLOAT ); - D3DXFLOAT16( CONST D3DXFLOAT16& ); - - // casting - operator FLOAT (); - - // binary operators - BOOL operator == ( CONST D3DXFLOAT16& ) const; - BOOL operator != ( CONST D3DXFLOAT16& ) const; - -protected: -#endif //__cplusplus - WORD value; -} D3DXFLOAT16, *LPD3DXFLOAT16; - - - -//=========================================================================== -// -// Vectors -// -//=========================================================================== - - -//-------------------------- -// 2D Vector -//-------------------------- -typedef struct D3DXVECTOR2 -{ -#ifdef __cplusplus -public: - D3DXVECTOR2() {}; - D3DXVECTOR2( CONST FLOAT * ); - D3DXVECTOR2( CONST D3DXFLOAT16 * ); - D3DXVECTOR2( FLOAT x, FLOAT y ); - - // casting - operator FLOAT* (); - operator CONST FLOAT* () const; - - // assignment operators - D3DXVECTOR2& operator += ( CONST D3DXVECTOR2& ); - D3DXVECTOR2& operator -= ( CONST D3DXVECTOR2& ); - D3DXVECTOR2& operator *= ( FLOAT ); - D3DXVECTOR2& operator /= ( FLOAT ); - - // unary operators - D3DXVECTOR2 operator + () const; - D3DXVECTOR2 operator - () const; - - // binary operators - D3DXVECTOR2 operator + ( CONST D3DXVECTOR2& ) const; - D3DXVECTOR2 operator - ( CONST D3DXVECTOR2& ) const; - D3DXVECTOR2 operator * ( FLOAT ) const; - D3DXVECTOR2 operator / ( FLOAT ) const; - - friend D3DXVECTOR2 operator * ( FLOAT, CONST D3DXVECTOR2& ); - - BOOL operator == ( CONST D3DXVECTOR2& ) const; - BOOL operator != ( CONST D3DXVECTOR2& ) const; - - -public: -#endif //__cplusplus - FLOAT x, y; -} D3DXVECTOR2, *LPD3DXVECTOR2; - - - -//-------------------------- -// 2D Vector (16 bit) -//-------------------------- - -typedef struct D3DXVECTOR2_16F -{ -#ifdef __cplusplus -public: - D3DXVECTOR2_16F() {}; - D3DXVECTOR2_16F( CONST FLOAT * ); - D3DXVECTOR2_16F( CONST D3DXFLOAT16 * ); - D3DXVECTOR2_16F( CONST D3DXFLOAT16 &x, CONST D3DXFLOAT16 &y ); - - // casting - operator D3DXFLOAT16* (); - operator CONST D3DXFLOAT16* () const; - - // binary operators - BOOL operator == ( CONST D3DXVECTOR2_16F& ) const; - BOOL operator != ( CONST D3DXVECTOR2_16F& ) const; - -public: -#endif //__cplusplus - D3DXFLOAT16 x, y; - -} D3DXVECTOR2_16F, *LPD3DXVECTOR2_16F; - - - -//-------------------------- -// 3D Vector -//-------------------------- -#ifdef __cplusplus -typedef struct D3DXVECTOR3 : public D3DVECTOR -{ -public: - D3DXVECTOR3() {}; - D3DXVECTOR3( CONST FLOAT * ); - D3DXVECTOR3( CONST D3DVECTOR& ); - D3DXVECTOR3( CONST D3DXFLOAT16 * ); - D3DXVECTOR3( FLOAT x, FLOAT y, FLOAT z ); - - // casting - operator FLOAT* (); - operator CONST FLOAT* () const; - - // assignment operators - D3DXVECTOR3& operator += ( CONST D3DXVECTOR3& ); - D3DXVECTOR3& operator -= ( CONST D3DXVECTOR3& ); - D3DXVECTOR3& operator *= ( FLOAT ); - D3DXVECTOR3& operator /= ( FLOAT ); - - // unary operators - D3DXVECTOR3 operator + () const; - D3DXVECTOR3 operator - () const; - - // binary operators - D3DXVECTOR3 operator + ( CONST D3DXVECTOR3& ) const; - D3DXVECTOR3 operator - ( CONST D3DXVECTOR3& ) const; - D3DXVECTOR3 operator * ( FLOAT ) const; - D3DXVECTOR3 operator / ( FLOAT ) const; - - friend D3DXVECTOR3 operator * ( FLOAT, CONST struct D3DXVECTOR3& ); - - BOOL operator == ( CONST D3DXVECTOR3& ) const; - BOOL operator != ( CONST D3DXVECTOR3& ) const; - -} D3DXVECTOR3, *LPD3DXVECTOR3; - -#else //!__cplusplus -typedef struct _D3DVECTOR D3DXVECTOR3, *LPD3DXVECTOR3; -#endif //!__cplusplus - - - -//-------------------------- -// 3D Vector (16 bit) -//-------------------------- -typedef struct D3DXVECTOR3_16F -{ -#ifdef __cplusplus -public: - D3DXVECTOR3_16F() {}; - D3DXVECTOR3_16F( CONST FLOAT * ); - D3DXVECTOR3_16F( CONST D3DVECTOR& ); - D3DXVECTOR3_16F( CONST D3DXFLOAT16 * ); - D3DXVECTOR3_16F( CONST D3DXFLOAT16 &x, CONST D3DXFLOAT16 &y, CONST D3DXFLOAT16 &z ); - - // casting - operator D3DXFLOAT16* (); - operator CONST D3DXFLOAT16* () const; - - // binary operators - BOOL operator == ( CONST D3DXVECTOR3_16F& ) const; - BOOL operator != ( CONST D3DXVECTOR3_16F& ) const; - -public: -#endif //__cplusplus - D3DXFLOAT16 x, y, z; - -} D3DXVECTOR3_16F, *LPD3DXVECTOR3_16F; - - - -//-------------------------- -// 4D Vector -//-------------------------- -typedef struct D3DXVECTOR4 -{ -#ifdef __cplusplus -public: - D3DXVECTOR4() {}; - D3DXVECTOR4( CONST FLOAT* ); - D3DXVECTOR4( CONST D3DXFLOAT16* ); - D3DXVECTOR4( CONST D3DVECTOR& xyz, FLOAT w ); - D3DXVECTOR4( FLOAT x, FLOAT y, FLOAT z, FLOAT w ); - - // casting - operator FLOAT* (); - operator CONST FLOAT* () const; - - // assignment operators - D3DXVECTOR4& operator += ( CONST D3DXVECTOR4& ); - D3DXVECTOR4& operator -= ( CONST D3DXVECTOR4& ); - D3DXVECTOR4& operator *= ( FLOAT ); - D3DXVECTOR4& operator /= ( FLOAT ); - - // unary operators - D3DXVECTOR4 operator + () const; - D3DXVECTOR4 operator - () const; - - // binary operators - D3DXVECTOR4 operator + ( CONST D3DXVECTOR4& ) const; - D3DXVECTOR4 operator - ( CONST D3DXVECTOR4& ) const; - D3DXVECTOR4 operator * ( FLOAT ) const; - D3DXVECTOR4 operator / ( FLOAT ) const; - - friend D3DXVECTOR4 operator * ( FLOAT, CONST D3DXVECTOR4& ); - - BOOL operator == ( CONST D3DXVECTOR4& ) const; - BOOL operator != ( CONST D3DXVECTOR4& ) const; - -public: -#endif //__cplusplus - FLOAT x, y, z, w; -} D3DXVECTOR4, *LPD3DXVECTOR4; - - -//-------------------------- -// 4D Vector (16 bit) -//-------------------------- -typedef struct D3DXVECTOR4_16F -{ -#ifdef __cplusplus -public: - D3DXVECTOR4_16F() {}; - D3DXVECTOR4_16F( CONST FLOAT * ); - D3DXVECTOR4_16F( CONST D3DXFLOAT16* ); - D3DXVECTOR4_16F( CONST D3DXVECTOR3_16F& xyz, CONST D3DXFLOAT16& w ); - D3DXVECTOR4_16F( CONST D3DXFLOAT16& x, CONST D3DXFLOAT16& y, CONST D3DXFLOAT16& z, CONST D3DXFLOAT16& w ); - - // casting - operator D3DXFLOAT16* (); - operator CONST D3DXFLOAT16* () const; - - // binary operators - BOOL operator == ( CONST D3DXVECTOR4_16F& ) const; - BOOL operator != ( CONST D3DXVECTOR4_16F& ) const; - -public: -#endif //__cplusplus - D3DXFLOAT16 x, y, z, w; - -} D3DXVECTOR4_16F, *LPD3DXVECTOR4_16F; - - - -//=========================================================================== -// -// Matrices -// -//=========================================================================== -#ifdef __cplusplus -typedef struct D3DXMATRIX : public D3DMATRIX -{ -public: - D3DXMATRIX() {}; - D3DXMATRIX( CONST FLOAT * ); - D3DXMATRIX( CONST D3DMATRIX& ); - D3DXMATRIX( CONST D3DXFLOAT16 * ); - D3DXMATRIX( FLOAT _11, FLOAT _12, FLOAT _13, FLOAT _14, - FLOAT _21, FLOAT _22, FLOAT _23, FLOAT _24, - FLOAT _31, FLOAT _32, FLOAT _33, FLOAT _34, - FLOAT _41, FLOAT _42, FLOAT _43, FLOAT _44 ); - - - // access grants - FLOAT& operator () ( UINT Row, UINT Col ); - FLOAT operator () ( UINT Row, UINT Col ) const; - - // casting operators - operator FLOAT* (); - operator CONST FLOAT* () const; - - // assignment operators - D3DXMATRIX& operator *= ( CONST D3DXMATRIX& ); - D3DXMATRIX& operator += ( CONST D3DXMATRIX& ); - D3DXMATRIX& operator -= ( CONST D3DXMATRIX& ); - D3DXMATRIX& operator *= ( FLOAT ); - D3DXMATRIX& operator /= ( FLOAT ); - - // unary operators - D3DXMATRIX operator + () const; - D3DXMATRIX operator - () const; - - // binary operators - D3DXMATRIX operator * ( CONST D3DXMATRIX& ) const; - D3DXMATRIX operator + ( CONST D3DXMATRIX& ) const; - D3DXMATRIX operator - ( CONST D3DXMATRIX& ) const; - D3DXMATRIX operator * ( FLOAT ) const; - D3DXMATRIX operator / ( FLOAT ) const; - - friend D3DXMATRIX operator * ( FLOAT, CONST D3DXMATRIX& ); - - BOOL operator == ( CONST D3DXMATRIX& ) const; - BOOL operator != ( CONST D3DXMATRIX& ) const; - -} D3DXMATRIX, *LPD3DXMATRIX; - -#else //!__cplusplus -typedef struct _D3DMATRIX D3DXMATRIX, *LPD3DXMATRIX; -#endif //!__cplusplus - - -//--------------------------------------------------------------------------- -// Aligned Matrices -// -// This class helps keep matrices 16-byte aligned as preferred by P4 cpus. -// It aligns matrices on the stack and on the heap or in global scope. -// It does this using __declspec(align(16)) which works on VC7 and on VC 6 -// with the processor pack. Unfortunately there is no way to detect the -// latter so this is turned on only on VC7. On other compilers this is the -// the same as D3DXMATRIX. -// -// Using this class on a compiler that does not actually do the alignment -// can be dangerous since it will not expose bugs that ignore alignment. -// E.g if an object of this class in inside a struct or class, and some code -// memcopys data in it assuming tight packing. This could break on a compiler -// that eventually start aligning the matrix. -//--------------------------------------------------------------------------- -#ifdef __cplusplus -typedef struct _D3DXMATRIXA16 : public D3DXMATRIX -{ - _D3DXMATRIXA16() {} - _D3DXMATRIXA16( CONST FLOAT * ); - _D3DXMATRIXA16( CONST D3DMATRIX& ); - _D3DXMATRIXA16( CONST D3DXFLOAT16 * ); - _D3DXMATRIXA16( FLOAT _11, FLOAT _12, FLOAT _13, FLOAT _14, - FLOAT _21, FLOAT _22, FLOAT _23, FLOAT _24, - FLOAT _31, FLOAT _32, FLOAT _33, FLOAT _34, - FLOAT _41, FLOAT _42, FLOAT _43, FLOAT _44 ); - - // new operators - void* operator new ( size_t ); - void* operator new[] ( size_t ); - - // delete operators - void operator delete ( void* ); // These are NOT virtual; Do not - void operator delete[] ( void* ); // cast to D3DXMATRIX and delete. - - // assignment operators - _D3DXMATRIXA16& operator = ( CONST D3DXMATRIX& ); - -} _D3DXMATRIXA16; - -#else //!__cplusplus -typedef D3DXMATRIX _D3DXMATRIXA16; -#endif //!__cplusplus - - - -#if _MSC_VER >= 1300 // VC7 -#define D3DX_ALIGN16 __declspec(align(16)) -#else -#define D3DX_ALIGN16 // Earlier compiler may not understand this, do nothing. -#endif - -typedef D3DX_ALIGN16 _D3DXMATRIXA16 D3DXMATRIXA16, *LPD3DXMATRIXA16; - - - -//=========================================================================== -// -// Quaternions -// -//=========================================================================== -typedef struct D3DXQUATERNION -{ -#ifdef __cplusplus -public: - D3DXQUATERNION() {} - D3DXQUATERNION( CONST FLOAT * ); - D3DXQUATERNION( CONST D3DXFLOAT16 * ); - D3DXQUATERNION( FLOAT x, FLOAT y, FLOAT z, FLOAT w ); - - // casting - operator FLOAT* (); - operator CONST FLOAT* () const; - - // assignment operators - D3DXQUATERNION& operator += ( CONST D3DXQUATERNION& ); - D3DXQUATERNION& operator -= ( CONST D3DXQUATERNION& ); - D3DXQUATERNION& operator *= ( CONST D3DXQUATERNION& ); - D3DXQUATERNION& operator *= ( FLOAT ); - D3DXQUATERNION& operator /= ( FLOAT ); - - // unary operators - D3DXQUATERNION operator + () const; - D3DXQUATERNION operator - () const; - - // binary operators - D3DXQUATERNION operator + ( CONST D3DXQUATERNION& ) const; - D3DXQUATERNION operator - ( CONST D3DXQUATERNION& ) const; - D3DXQUATERNION operator * ( CONST D3DXQUATERNION& ) const; - D3DXQUATERNION operator * ( FLOAT ) const; - D3DXQUATERNION operator / ( FLOAT ) const; - - friend D3DXQUATERNION operator * (FLOAT, CONST D3DXQUATERNION& ); - - BOOL operator == ( CONST D3DXQUATERNION& ) const; - BOOL operator != ( CONST D3DXQUATERNION& ) const; - -#endif //__cplusplus - FLOAT x, y, z, w; -} D3DXQUATERNION, *LPD3DXQUATERNION; - - -//=========================================================================== -// -// Planes -// -//=========================================================================== -typedef struct D3DXPLANE -{ -#ifdef __cplusplus -public: - D3DXPLANE() {} - D3DXPLANE( CONST FLOAT* ); - D3DXPLANE( CONST D3DXFLOAT16* ); - D3DXPLANE( FLOAT a, FLOAT b, FLOAT c, FLOAT d ); - - // casting - operator FLOAT* (); - operator CONST FLOAT* () const; - - // assignment operators - D3DXPLANE& operator *= ( FLOAT ); - D3DXPLANE& operator /= ( FLOAT ); - - // unary operators - D3DXPLANE operator + () const; - D3DXPLANE operator - () const; - - // binary operators - D3DXPLANE operator * ( FLOAT ) const; - D3DXPLANE operator / ( FLOAT ) const; - - friend D3DXPLANE operator * ( FLOAT, CONST D3DXPLANE& ); - - BOOL operator == ( CONST D3DXPLANE& ) const; - BOOL operator != ( CONST D3DXPLANE& ) const; - -#endif //__cplusplus - FLOAT a, b, c, d; -} D3DXPLANE, *LPD3DXPLANE; - - -//=========================================================================== -// -// Colors -// -//=========================================================================== - -typedef struct D3DXCOLOR -{ -#ifdef __cplusplus -public: - D3DXCOLOR() {} - D3DXCOLOR( DWORD argb ); - D3DXCOLOR( CONST FLOAT * ); - D3DXCOLOR( CONST D3DXFLOAT16 * ); - D3DXCOLOR( CONST D3DCOLORVALUE& ); - D3DXCOLOR( FLOAT r, FLOAT g, FLOAT b, FLOAT a ); - - // casting - operator DWORD () const; - - operator FLOAT* (); - operator CONST FLOAT* () const; - - operator D3DCOLORVALUE* (); - operator CONST D3DCOLORVALUE* () const; - - operator D3DCOLORVALUE& (); - operator CONST D3DCOLORVALUE& () const; - - // assignment operators - D3DXCOLOR& operator += ( CONST D3DXCOLOR& ); - D3DXCOLOR& operator -= ( CONST D3DXCOLOR& ); - D3DXCOLOR& operator *= ( FLOAT ); - D3DXCOLOR& operator /= ( FLOAT ); - - // unary operators - D3DXCOLOR operator + () const; - D3DXCOLOR operator - () const; - - // binary operators - D3DXCOLOR operator + ( CONST D3DXCOLOR& ) const; - D3DXCOLOR operator - ( CONST D3DXCOLOR& ) const; - D3DXCOLOR operator * ( FLOAT ) const; - D3DXCOLOR operator / ( FLOAT ) const; - - friend D3DXCOLOR operator * ( FLOAT, CONST D3DXCOLOR& ); - - BOOL operator == ( CONST D3DXCOLOR& ) const; - BOOL operator != ( CONST D3DXCOLOR& ) const; - -#endif //__cplusplus - FLOAT r, g, b, a; -} D3DXCOLOR, *LPD3DXCOLOR; - - - -//=========================================================================== -// -// D3DX math functions: -// -// NOTE: -// * All these functions can take the same object as in and out parameters. -// -// * Out parameters are typically also returned as return values, so that -// the output of one function may be used as a parameter to another. -// -//=========================================================================== - -//-------------------------- -// Float16 -//-------------------------- - -// non-inline -#ifdef __cplusplus -extern "C" { -#endif - -// Converts an array 32-bit floats to 16-bit floats -D3DXFLOAT16* WINAPI D3DXFloat32To16Array - ( D3DXFLOAT16 *pOut, CONST FLOAT *pIn, UINT n ); - -// Converts an array 16-bit floats to 32-bit floats -FLOAT* WINAPI D3DXFloat16To32Array - ( FLOAT *pOut, CONST D3DXFLOAT16 *pIn, UINT n ); - -#ifdef __cplusplus -} -#endif - - -//-------------------------- -// 2D Vector -//-------------------------- - -// inline - -FLOAT D3DXVec2Length - ( CONST D3DXVECTOR2 *pV ); - -FLOAT D3DXVec2LengthSq - ( CONST D3DXVECTOR2 *pV ); - -FLOAT D3DXVec2Dot - ( CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2 ); - -// Z component of ((x1,y1,0) cross (x2,y2,0)) -FLOAT D3DXVec2CCW - ( CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2 ); - -D3DXVECTOR2* D3DXVec2Add - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2 ); - -D3DXVECTOR2* D3DXVec2Subtract - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2 ); - -// Minimize each component. x = min(x1, x2), y = min(y1, y2) -D3DXVECTOR2* D3DXVec2Minimize - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2 ); - -// Maximize each component. x = max(x1, x2), y = max(y1, y2) -D3DXVECTOR2* D3DXVec2Maximize - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2 ); - -D3DXVECTOR2* D3DXVec2Scale - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV, FLOAT s ); - -// Linear interpolation. V1 + s(V2-V1) -D3DXVECTOR2* D3DXVec2Lerp - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2, - FLOAT s ); - -// non-inline -#ifdef __cplusplus -extern "C" { -#endif - -D3DXVECTOR2* WINAPI D3DXVec2Normalize - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV ); - -// Hermite interpolation between position V1, tangent T1 (when s == 0) -// and position V2, tangent T2 (when s == 1). -D3DXVECTOR2* WINAPI D3DXVec2Hermite - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pT1, - CONST D3DXVECTOR2 *pV2, CONST D3DXVECTOR2 *pT2, FLOAT s ); - -// CatmullRom interpolation between V1 (when s == 0) and V2 (when s == 1) -D3DXVECTOR2* WINAPI D3DXVec2CatmullRom - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV0, CONST D3DXVECTOR2 *pV1, - CONST D3DXVECTOR2 *pV2, CONST D3DXVECTOR2 *pV3, FLOAT s ); - -// Barycentric coordinates. V1 + f(V2-V1) + g(V3-V1) -D3DXVECTOR2* WINAPI D3DXVec2BaryCentric - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2, - CONST D3DXVECTOR2 *pV3, FLOAT f, FLOAT g); - -// Transform (x, y, 0, 1) by matrix. -D3DXVECTOR4* WINAPI D3DXVec2Transform - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR2 *pV, CONST D3DXMATRIX *pM ); - -// Transform (x, y, 0, 1) by matrix, project result back into w=1. -D3DXVECTOR2* WINAPI D3DXVec2TransformCoord - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV, CONST D3DXMATRIX *pM ); - -// Transform (x, y, 0, 0) by matrix. -D3DXVECTOR2* WINAPI D3DXVec2TransformNormal - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV, CONST D3DXMATRIX *pM ); - -// Transform Array (x, y, 0, 1) by matrix. -D3DXVECTOR4* WINAPI D3DXVec2TransformArray - ( D3DXVECTOR4 *pOut, UINT OutStride, CONST D3DXVECTOR2 *pV, UINT VStride, CONST D3DXMATRIX *pM, UINT n); - -// Transform Array (x, y, 0, 1) by matrix, project result back into w=1. -D3DXVECTOR2* WINAPI D3DXVec2TransformCoordArray - ( D3DXVECTOR2 *pOut, UINT OutStride, CONST D3DXVECTOR2 *pV, UINT VStride, CONST D3DXMATRIX *pM, UINT n ); - -// Transform Array (x, y, 0, 0) by matrix. -D3DXVECTOR2* WINAPI D3DXVec2TransformNormalArray - ( D3DXVECTOR2 *pOut, UINT OutStride, CONST D3DXVECTOR2 *pV, UINT VStride, CONST D3DXMATRIX *pM, UINT n ); - - - -#ifdef __cplusplus -} -#endif - - -//-------------------------- -// 3D Vector -//-------------------------- - -// inline - -FLOAT D3DXVec3Length - ( CONST D3DXVECTOR3 *pV ); - -FLOAT D3DXVec3LengthSq - ( CONST D3DXVECTOR3 *pV ); - -FLOAT D3DXVec3Dot - ( CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2 ); - -D3DXVECTOR3* D3DXVec3Cross - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2 ); - -D3DXVECTOR3* D3DXVec3Add - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2 ); - -D3DXVECTOR3* D3DXVec3Subtract - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2 ); - -// Minimize each component. x = min(x1, x2), y = min(y1, y2), ... -D3DXVECTOR3* D3DXVec3Minimize - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2 ); - -// Maximize each component. x = max(x1, x2), y = max(y1, y2), ... -D3DXVECTOR3* D3DXVec3Maximize - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2 ); - -D3DXVECTOR3* D3DXVec3Scale - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV, FLOAT s); - -// Linear interpolation. V1 + s(V2-V1) -D3DXVECTOR3* D3DXVec3Lerp - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2, - FLOAT s ); - -// non-inline -#ifdef __cplusplus -extern "C" { -#endif - -D3DXVECTOR3* WINAPI D3DXVec3Normalize - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV ); - -// Hermite interpolation between position V1, tangent T1 (when s == 0) -// and position V2, tangent T2 (when s == 1). -D3DXVECTOR3* WINAPI D3DXVec3Hermite - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pT1, - CONST D3DXVECTOR3 *pV2, CONST D3DXVECTOR3 *pT2, FLOAT s ); - -// CatmullRom interpolation between V1 (when s == 0) and V2 (when s == 1) -D3DXVECTOR3* WINAPI D3DXVec3CatmullRom - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV0, CONST D3DXVECTOR3 *pV1, - CONST D3DXVECTOR3 *pV2, CONST D3DXVECTOR3 *pV3, FLOAT s ); - -// Barycentric coordinates. V1 + f(V2-V1) + g(V3-V1) -D3DXVECTOR3* WINAPI D3DXVec3BaryCentric - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2, - CONST D3DXVECTOR3 *pV3, FLOAT f, FLOAT g); - -// Transform (x, y, z, 1) by matrix. -D3DXVECTOR4* WINAPI D3DXVec3Transform - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR3 *pV, CONST D3DXMATRIX *pM ); - -// Transform (x, y, z, 1) by matrix, project result back into w=1. -D3DXVECTOR3* WINAPI D3DXVec3TransformCoord - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV, CONST D3DXMATRIX *pM ); - -// Transform (x, y, z, 0) by matrix. If you transforming a normal by a -// non-affine matrix, the matrix you pass to this function should be the -// transpose of the inverse of the matrix you would use to transform a coord. -D3DXVECTOR3* WINAPI D3DXVec3TransformNormal - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV, CONST D3DXMATRIX *pM ); - - -// Transform Array (x, y, z, 1) by matrix. -D3DXVECTOR4* WINAPI D3DXVec3TransformArray - ( D3DXVECTOR4 *pOut, UINT OutStride, CONST D3DXVECTOR3 *pV, UINT VStride, CONST D3DXMATRIX *pM, UINT n ); - -// Transform Array (x, y, z, 1) by matrix, project result back into w=1. -D3DXVECTOR3* WINAPI D3DXVec3TransformCoordArray - ( D3DXVECTOR3 *pOut, UINT OutStride, CONST D3DXVECTOR3 *pV, UINT VStride, CONST D3DXMATRIX *pM, UINT n ); - -// Transform (x, y, z, 0) by matrix. If you transforming a normal by a -// non-affine matrix, the matrix you pass to this function should be the -// transpose of the inverse of the matrix you would use to transform a coord. -D3DXVECTOR3* WINAPI D3DXVec3TransformNormalArray - ( D3DXVECTOR3 *pOut, UINT OutStride, CONST D3DXVECTOR3 *pV, UINT VStride, CONST D3DXMATRIX *pM, UINT n ); - -// Project vector from object space into screen space -D3DXVECTOR3* WINAPI D3DXVec3Project - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV, CONST D3DVIEWPORT9 *pViewport, - CONST D3DXMATRIX *pProjection, CONST D3DXMATRIX *pView, CONST D3DXMATRIX *pWorld); - -// Project vector from screen space into object space -D3DXVECTOR3* WINAPI D3DXVec3Unproject - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV, CONST D3DVIEWPORT9 *pViewport, - CONST D3DXMATRIX *pProjection, CONST D3DXMATRIX *pView, CONST D3DXMATRIX *pWorld); - -// Project vector Array from object space into screen space -D3DXVECTOR3* WINAPI D3DXVec3ProjectArray - ( D3DXVECTOR3 *pOut, UINT OutStride,CONST D3DXVECTOR3 *pV, UINT VStride,CONST D3DVIEWPORT9 *pViewport, - CONST D3DXMATRIX *pProjection, CONST D3DXMATRIX *pView, CONST D3DXMATRIX *pWorld, UINT n); - -// Project vector Array from screen space into object space -D3DXVECTOR3* WINAPI D3DXVec3UnprojectArray - ( D3DXVECTOR3 *pOut, UINT OutStride, CONST D3DXVECTOR3 *pV, UINT VStride, CONST D3DVIEWPORT9 *pViewport, - CONST D3DXMATRIX *pProjection, CONST D3DXMATRIX *pView, CONST D3DXMATRIX *pWorld, UINT n); - - -#ifdef __cplusplus -} -#endif - - - -//-------------------------- -// 4D Vector -//-------------------------- - -// inline - -FLOAT D3DXVec4Length - ( CONST D3DXVECTOR4 *pV ); - -FLOAT D3DXVec4LengthSq - ( CONST D3DXVECTOR4 *pV ); - -FLOAT D3DXVec4Dot - ( CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pV2 ); - -D3DXVECTOR4* D3DXVec4Add - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pV2); - -D3DXVECTOR4* D3DXVec4Subtract - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pV2); - -// Minimize each component. x = min(x1, x2), y = min(y1, y2), ... -D3DXVECTOR4* D3DXVec4Minimize - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pV2); - -// Maximize each component. x = max(x1, x2), y = max(y1, y2), ... -D3DXVECTOR4* D3DXVec4Maximize - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pV2); - -D3DXVECTOR4* D3DXVec4Scale - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV, FLOAT s); - -// Linear interpolation. V1 + s(V2-V1) -D3DXVECTOR4* D3DXVec4Lerp - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pV2, - FLOAT s ); - -// non-inline -#ifdef __cplusplus -extern "C" { -#endif - -// Cross-product in 4 dimensions. -D3DXVECTOR4* WINAPI D3DXVec4Cross - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pV2, - CONST D3DXVECTOR4 *pV3); - -D3DXVECTOR4* WINAPI D3DXVec4Normalize - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV ); - -// Hermite interpolation between position V1, tangent T1 (when s == 0) -// and position V2, tangent T2 (when s == 1). -D3DXVECTOR4* WINAPI D3DXVec4Hermite - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pT1, - CONST D3DXVECTOR4 *pV2, CONST D3DXVECTOR4 *pT2, FLOAT s ); - -// CatmullRom interpolation between V1 (when s == 0) and V2 (when s == 1) -D3DXVECTOR4* WINAPI D3DXVec4CatmullRom - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV0, CONST D3DXVECTOR4 *pV1, - CONST D3DXVECTOR4 *pV2, CONST D3DXVECTOR4 *pV3, FLOAT s ); - -// Barycentric coordinates. V1 + f(V2-V1) + g(V3-V1) -D3DXVECTOR4* WINAPI D3DXVec4BaryCentric - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pV2, - CONST D3DXVECTOR4 *pV3, FLOAT f, FLOAT g); - -// Transform vector by matrix. -D3DXVECTOR4* WINAPI D3DXVec4Transform - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV, CONST D3DXMATRIX *pM ); - -// Transform vector array by matrix. -D3DXVECTOR4* WINAPI D3DXVec4TransformArray - ( D3DXVECTOR4 *pOut, UINT OutStride, CONST D3DXVECTOR4 *pV, UINT VStride, CONST D3DXMATRIX *pM, UINT n ); - -#ifdef __cplusplus -} -#endif - - -//-------------------------- -// 4D Matrix -//-------------------------- - -// inline - -D3DXMATRIX* D3DXMatrixIdentity - ( D3DXMATRIX *pOut ); - -BOOL D3DXMatrixIsIdentity - ( CONST D3DXMATRIX *pM ); - - -// non-inline -#ifdef __cplusplus -extern "C" { -#endif - -FLOAT WINAPI D3DXMatrixDeterminant - ( CONST D3DXMATRIX *pM ); - -HRESULT WINAPI D3DXMatrixDecompose - ( D3DXVECTOR3 *pOutScale, D3DXQUATERNION *pOutRotation, - D3DXVECTOR3 *pOutTranslation, CONST D3DXMATRIX *pM ); - -D3DXMATRIX* WINAPI D3DXMatrixTranspose - ( D3DXMATRIX *pOut, CONST D3DXMATRIX *pM ); - -// Matrix multiplication. The result represents the transformation M2 -// followed by the transformation M1. (Out = M1 * M2) -D3DXMATRIX* WINAPI D3DXMatrixMultiply - ( D3DXMATRIX *pOut, CONST D3DXMATRIX *pM1, CONST D3DXMATRIX *pM2 ); - -// Matrix multiplication, followed by a transpose. (Out = T(M1 * M2)) -D3DXMATRIX* WINAPI D3DXMatrixMultiplyTranspose - ( D3DXMATRIX *pOut, CONST D3DXMATRIX *pM1, CONST D3DXMATRIX *pM2 ); - -// Calculate inverse of matrix. Inversion my fail, in which case NULL will -// be returned. The determinant of pM is also returned it pfDeterminant -// is non-NULL. -D3DXMATRIX* WINAPI D3DXMatrixInverse - ( D3DXMATRIX *pOut, FLOAT *pDeterminant, CONST D3DXMATRIX *pM ); - -// Build a matrix which scales by (sx, sy, sz) -D3DXMATRIX* WINAPI D3DXMatrixScaling - ( D3DXMATRIX *pOut, FLOAT sx, FLOAT sy, FLOAT sz ); - -// Build a matrix which translates by (x, y, z) -D3DXMATRIX* WINAPI D3DXMatrixTranslation - ( D3DXMATRIX *pOut, FLOAT x, FLOAT y, FLOAT z ); - -// Build a matrix which rotates around the X axis -D3DXMATRIX* WINAPI D3DXMatrixRotationX - ( D3DXMATRIX *pOut, FLOAT Angle ); - -// Build a matrix which rotates around the Y axis -D3DXMATRIX* WINAPI D3DXMatrixRotationY - ( D3DXMATRIX *pOut, FLOAT Angle ); - -// Build a matrix which rotates around the Z axis -D3DXMATRIX* WINAPI D3DXMatrixRotationZ - ( D3DXMATRIX *pOut, FLOAT Angle ); - -// Build a matrix which rotates around an arbitrary axis -D3DXMATRIX* WINAPI D3DXMatrixRotationAxis - ( D3DXMATRIX *pOut, CONST D3DXVECTOR3 *pV, FLOAT Angle ); - -// Build a matrix from a quaternion -D3DXMATRIX* WINAPI D3DXMatrixRotationQuaternion - ( D3DXMATRIX *pOut, CONST D3DXQUATERNION *pQ); - -// Yaw around the Y axis, a pitch around the X axis, -// and a roll around the Z axis. -D3DXMATRIX* WINAPI D3DXMatrixRotationYawPitchRoll - ( D3DXMATRIX *pOut, FLOAT Yaw, FLOAT Pitch, FLOAT Roll ); - -// Build transformation matrix. NULL arguments are treated as identity. -// Mout = Msc-1 * Msr-1 * Ms * Msr * Msc * Mrc-1 * Mr * Mrc * Mt -D3DXMATRIX* WINAPI D3DXMatrixTransformation - ( D3DXMATRIX *pOut, CONST D3DXVECTOR3 *pScalingCenter, - CONST D3DXQUATERNION *pScalingRotation, CONST D3DXVECTOR3 *pScaling, - CONST D3DXVECTOR3 *pRotationCenter, CONST D3DXQUATERNION *pRotation, - CONST D3DXVECTOR3 *pTranslation); - -// Build 2D transformation matrix in XY plane. NULL arguments are treated as identity. -// Mout = Msc-1 * Msr-1 * Ms * Msr * Msc * Mrc-1 * Mr * Mrc * Mt -D3DXMATRIX* WINAPI D3DXMatrixTransformation2D - ( D3DXMATRIX *pOut, CONST D3DXVECTOR2* pScalingCenter, - FLOAT ScalingRotation, CONST D3DXVECTOR2* pScaling, - CONST D3DXVECTOR2* pRotationCenter, FLOAT Rotation, - CONST D3DXVECTOR2* pTranslation); - -// Build affine transformation matrix. NULL arguments are treated as identity. -// Mout = Ms * Mrc-1 * Mr * Mrc * Mt -D3DXMATRIX* WINAPI D3DXMatrixAffineTransformation - ( D3DXMATRIX *pOut, FLOAT Scaling, CONST D3DXVECTOR3 *pRotationCenter, - CONST D3DXQUATERNION *pRotation, CONST D3DXVECTOR3 *pTranslation); - -// Build 2D affine transformation matrix in XY plane. NULL arguments are treated as identity. -// Mout = Ms * Mrc-1 * Mr * Mrc * Mt -D3DXMATRIX* WINAPI D3DXMatrixAffineTransformation2D - ( D3DXMATRIX *pOut, FLOAT Scaling, CONST D3DXVECTOR2* pRotationCenter, - FLOAT Rotation, CONST D3DXVECTOR2* pTranslation); - -// Build a lookat matrix. (right-handed) -D3DXMATRIX* WINAPI D3DXMatrixLookAtRH - ( D3DXMATRIX *pOut, CONST D3DXVECTOR3 *pEye, CONST D3DXVECTOR3 *pAt, - CONST D3DXVECTOR3 *pUp ); - -// Build a lookat matrix. (left-handed) -D3DXMATRIX* WINAPI D3DXMatrixLookAtLH - ( D3DXMATRIX *pOut, CONST D3DXVECTOR3 *pEye, CONST D3DXVECTOR3 *pAt, - CONST D3DXVECTOR3 *pUp ); - -// Build a perspective projection matrix. (right-handed) -D3DXMATRIX* WINAPI D3DXMatrixPerspectiveRH - ( D3DXMATRIX *pOut, FLOAT w, FLOAT h, FLOAT zn, FLOAT zf ); - -// Build a perspective projection matrix. (left-handed) -D3DXMATRIX* WINAPI D3DXMatrixPerspectiveLH - ( D3DXMATRIX *pOut, FLOAT w, FLOAT h, FLOAT zn, FLOAT zf ); - -// Build a perspective projection matrix. (right-handed) -D3DXMATRIX* WINAPI D3DXMatrixPerspectiveFovRH - ( D3DXMATRIX *pOut, FLOAT fovy, FLOAT Aspect, FLOAT zn, FLOAT zf ); - -// Build a perspective projection matrix. (left-handed) -D3DXMATRIX* WINAPI D3DXMatrixPerspectiveFovLH - ( D3DXMATRIX *pOut, FLOAT fovy, FLOAT Aspect, FLOAT zn, FLOAT zf ); - -// Build a perspective projection matrix. (right-handed) -D3DXMATRIX* WINAPI D3DXMatrixPerspectiveOffCenterRH - ( D3DXMATRIX *pOut, FLOAT l, FLOAT r, FLOAT b, FLOAT t, FLOAT zn, - FLOAT zf ); - -// Build a perspective projection matrix. (left-handed) -D3DXMATRIX* WINAPI D3DXMatrixPerspectiveOffCenterLH - ( D3DXMATRIX *pOut, FLOAT l, FLOAT r, FLOAT b, FLOAT t, FLOAT zn, - FLOAT zf ); - -// Build an ortho projection matrix. (right-handed) -D3DXMATRIX* WINAPI D3DXMatrixOrthoRH - ( D3DXMATRIX *pOut, FLOAT w, FLOAT h, FLOAT zn, FLOAT zf ); - -// Build an ortho projection matrix. (left-handed) -D3DXMATRIX* WINAPI D3DXMatrixOrthoLH - ( D3DXMATRIX *pOut, FLOAT w, FLOAT h, FLOAT zn, FLOAT zf ); - -// Build an ortho projection matrix. (right-handed) -D3DXMATRIX* WINAPI D3DXMatrixOrthoOffCenterRH - ( D3DXMATRIX *pOut, FLOAT l, FLOAT r, FLOAT b, FLOAT t, FLOAT zn, - FLOAT zf ); - -// Build an ortho projection matrix. (left-handed) -D3DXMATRIX* WINAPI D3DXMatrixOrthoOffCenterLH - ( D3DXMATRIX *pOut, FLOAT l, FLOAT r, FLOAT b, FLOAT t, FLOAT zn, - FLOAT zf ); - -// Build a matrix which flattens geometry into a plane, as if casting -// a shadow from a light. -D3DXMATRIX* WINAPI D3DXMatrixShadow - ( D3DXMATRIX *pOut, CONST D3DXVECTOR4 *pLight, - CONST D3DXPLANE *pPlane ); - -// Build a matrix which reflects the coordinate system about a plane -D3DXMATRIX* WINAPI D3DXMatrixReflect - ( D3DXMATRIX *pOut, CONST D3DXPLANE *pPlane ); - -#ifdef __cplusplus -} -#endif - - -//-------------------------- -// Quaternion -//-------------------------- - -// inline - -FLOAT D3DXQuaternionLength - ( CONST D3DXQUATERNION *pQ ); - -// Length squared, or "norm" -FLOAT D3DXQuaternionLengthSq - ( CONST D3DXQUATERNION *pQ ); - -FLOAT D3DXQuaternionDot - ( CONST D3DXQUATERNION *pQ1, CONST D3DXQUATERNION *pQ2 ); - -// (0, 0, 0, 1) -D3DXQUATERNION* D3DXQuaternionIdentity - ( D3DXQUATERNION *pOut ); - -BOOL D3DXQuaternionIsIdentity - ( CONST D3DXQUATERNION *pQ ); - -// (-x, -y, -z, w) -D3DXQUATERNION* D3DXQuaternionConjugate - ( D3DXQUATERNION *pOut, CONST D3DXQUATERNION *pQ ); - - -// non-inline -#ifdef __cplusplus -extern "C" { -#endif - -// Compute a quaternin's axis and angle of rotation. Expects unit quaternions. -void WINAPI D3DXQuaternionToAxisAngle - ( CONST D3DXQUATERNION *pQ, D3DXVECTOR3 *pAxis, FLOAT *pAngle ); - -// Build a quaternion from a rotation matrix. -D3DXQUATERNION* WINAPI D3DXQuaternionRotationMatrix - ( D3DXQUATERNION *pOut, CONST D3DXMATRIX *pM); - -// Rotation about arbitrary axis. -D3DXQUATERNION* WINAPI D3DXQuaternionRotationAxis - ( D3DXQUATERNION *pOut, CONST D3DXVECTOR3 *pV, FLOAT Angle ); - -// Yaw around the Y axis, a pitch around the X axis, -// and a roll around the Z axis. -D3DXQUATERNION* WINAPI D3DXQuaternionRotationYawPitchRoll - ( D3DXQUATERNION *pOut, FLOAT Yaw, FLOAT Pitch, FLOAT Roll ); - -// Quaternion multiplication. The result represents the rotation Q2 -// followed by the rotation Q1. (Out = Q2 * Q1) -D3DXQUATERNION* WINAPI D3DXQuaternionMultiply - ( D3DXQUATERNION *pOut, CONST D3DXQUATERNION *pQ1, - CONST D3DXQUATERNION *pQ2 ); - -D3DXQUATERNION* WINAPI D3DXQuaternionNormalize - ( D3DXQUATERNION *pOut, CONST D3DXQUATERNION *pQ ); - -// Conjugate and re-norm -D3DXQUATERNION* WINAPI D3DXQuaternionInverse - ( D3DXQUATERNION *pOut, CONST D3DXQUATERNION *pQ ); - -// Expects unit quaternions. -// if q = (cos(theta), sin(theta) * v); ln(q) = (0, theta * v) -D3DXQUATERNION* WINAPI D3DXQuaternionLn - ( D3DXQUATERNION *pOut, CONST D3DXQUATERNION *pQ ); - -// Expects pure quaternions. (w == 0) w is ignored in calculation. -// if q = (0, theta * v); exp(q) = (cos(theta), sin(theta) * v) -D3DXQUATERNION* WINAPI D3DXQuaternionExp - ( D3DXQUATERNION *pOut, CONST D3DXQUATERNION *pQ ); - -// Spherical linear interpolation between Q1 (t == 0) and Q2 (t == 1). -// Expects unit quaternions. -D3DXQUATERNION* WINAPI D3DXQuaternionSlerp - ( D3DXQUATERNION *pOut, CONST D3DXQUATERNION *pQ1, - CONST D3DXQUATERNION *pQ2, FLOAT t ); - -// Spherical quadrangle interpolation. -// Slerp(Slerp(Q1, C, t), Slerp(A, B, t), 2t(1-t)) -D3DXQUATERNION* WINAPI D3DXQuaternionSquad - ( D3DXQUATERNION *pOut, CONST D3DXQUATERNION *pQ1, - CONST D3DXQUATERNION *pA, CONST D3DXQUATERNION *pB, - CONST D3DXQUATERNION *pC, FLOAT t ); - -// Setup control points for spherical quadrangle interpolation -// from Q1 to Q2. The control points are chosen in such a way -// to ensure the continuity of tangents with adjacent segments. -void WINAPI D3DXQuaternionSquadSetup - ( D3DXQUATERNION *pAOut, D3DXQUATERNION *pBOut, D3DXQUATERNION *pCOut, - CONST D3DXQUATERNION *pQ0, CONST D3DXQUATERNION *pQ1, - CONST D3DXQUATERNION *pQ2, CONST D3DXQUATERNION *pQ3 ); - -// Barycentric interpolation. -// Slerp(Slerp(Q1, Q2, f+g), Slerp(Q1, Q3, f+g), g/(f+g)) -D3DXQUATERNION* WINAPI D3DXQuaternionBaryCentric - ( D3DXQUATERNION *pOut, CONST D3DXQUATERNION *pQ1, - CONST D3DXQUATERNION *pQ2, CONST D3DXQUATERNION *pQ3, - FLOAT f, FLOAT g ); - -#ifdef __cplusplus -} -#endif - - -//-------------------------- -// Plane -//-------------------------- - -// inline - -// ax + by + cz + dw -FLOAT D3DXPlaneDot - ( CONST D3DXPLANE *pP, CONST D3DXVECTOR4 *pV); - -// ax + by + cz + d -FLOAT D3DXPlaneDotCoord - ( CONST D3DXPLANE *pP, CONST D3DXVECTOR3 *pV); - -// ax + by + cz -FLOAT D3DXPlaneDotNormal - ( CONST D3DXPLANE *pP, CONST D3DXVECTOR3 *pV); - -D3DXPLANE* D3DXPlaneScale - (D3DXPLANE *pOut, CONST D3DXPLANE *pP, FLOAT s); - -// non-inline -#ifdef __cplusplus -extern "C" { -#endif - -// Normalize plane (so that |a,b,c| == 1) -D3DXPLANE* WINAPI D3DXPlaneNormalize - ( D3DXPLANE *pOut, CONST D3DXPLANE *pP); - -// Find the intersection between a plane and a line. If the line is -// parallel to the plane, NULL is returned. -D3DXVECTOR3* WINAPI D3DXPlaneIntersectLine - ( D3DXVECTOR3 *pOut, CONST D3DXPLANE *pP, CONST D3DXVECTOR3 *pV1, - CONST D3DXVECTOR3 *pV2); - -// Construct a plane from a point and a normal -D3DXPLANE* WINAPI D3DXPlaneFromPointNormal - ( D3DXPLANE *pOut, CONST D3DXVECTOR3 *pPoint, CONST D3DXVECTOR3 *pNormal); - -// Construct a plane from 3 points -D3DXPLANE* WINAPI D3DXPlaneFromPoints - ( D3DXPLANE *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2, - CONST D3DXVECTOR3 *pV3); - -// Transform a plane by a matrix. The vector (a,b,c) must be normal. -// M should be the inverse transpose of the transformation desired. -D3DXPLANE* WINAPI D3DXPlaneTransform - ( D3DXPLANE *pOut, CONST D3DXPLANE *pP, CONST D3DXMATRIX *pM ); - -// Transform an array of planes by a matrix. The vectors (a,b,c) must be normal. -// M should be the inverse transpose of the transformation desired. -D3DXPLANE* WINAPI D3DXPlaneTransformArray - ( D3DXPLANE *pOut, UINT OutStride, CONST D3DXPLANE *pP, UINT PStride, CONST D3DXMATRIX *pM, UINT n ); - -#ifdef __cplusplus -} -#endif - - -//-------------------------- -// Color -//-------------------------- - -// inline - -// (1-r, 1-g, 1-b, a) -D3DXCOLOR* D3DXColorNegative - (D3DXCOLOR *pOut, CONST D3DXCOLOR *pC); - -D3DXCOLOR* D3DXColorAdd - (D3DXCOLOR *pOut, CONST D3DXCOLOR *pC1, CONST D3DXCOLOR *pC2); - -D3DXCOLOR* D3DXColorSubtract - (D3DXCOLOR *pOut, CONST D3DXCOLOR *pC1, CONST D3DXCOLOR *pC2); - -D3DXCOLOR* D3DXColorScale - (D3DXCOLOR *pOut, CONST D3DXCOLOR *pC, FLOAT s); - -// (r1*r2, g1*g2, b1*b2, a1*a2) -D3DXCOLOR* D3DXColorModulate - (D3DXCOLOR *pOut, CONST D3DXCOLOR *pC1, CONST D3DXCOLOR *pC2); - -// Linear interpolation of r,g,b, and a. C1 + s(C2-C1) -D3DXCOLOR* D3DXColorLerp - (D3DXCOLOR *pOut, CONST D3DXCOLOR *pC1, CONST D3DXCOLOR *pC2, FLOAT s); - -// non-inline -#ifdef __cplusplus -extern "C" { -#endif - -// Interpolate r,g,b between desaturated color and color. -// DesaturatedColor + s(Color - DesaturatedColor) -D3DXCOLOR* WINAPI D3DXColorAdjustSaturation - (D3DXCOLOR *pOut, CONST D3DXCOLOR *pC, FLOAT s); - -// Interpolate r,g,b between 50% grey and color. Grey + s(Color - Grey) -D3DXCOLOR* WINAPI D3DXColorAdjustContrast - (D3DXCOLOR *pOut, CONST D3DXCOLOR *pC, FLOAT c); - -#ifdef __cplusplus -} -#endif - - - - -//-------------------------- -// Misc -//-------------------------- - -#ifdef __cplusplus -extern "C" { -#endif - -// Calculate Fresnel term given the cosine of theta (likely obtained by -// taking the dot of two normals), and the refraction index of the material. -FLOAT WINAPI D3DXFresnelTerm - (FLOAT CosTheta, FLOAT RefractionIndex); - -#ifdef __cplusplus -} -#endif - - - -//=========================================================================== -// -// Matrix Stack -// -//=========================================================================== - -typedef interface ID3DXMatrixStack ID3DXMatrixStack; -typedef interface ID3DXMatrixStack *LPD3DXMATRIXSTACK; - -// {C7885BA7-F990-4fe7-922D-8515E477DD85} -DEFINE_GUID(IID_ID3DXMatrixStack, -0xc7885ba7, 0xf990, 0x4fe7, 0x92, 0x2d, 0x85, 0x15, 0xe4, 0x77, 0xdd, 0x85); - - -#undef INTERFACE -#define INTERFACE ID3DXMatrixStack - -DECLARE_INTERFACE_(ID3DXMatrixStack, IUnknown) -{ - // - // IUnknown methods - // - STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID * ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - // - // ID3DXMatrixStack methods - // - - // Pops the top of the stack, returns the current top - // *after* popping the top. - STDMETHOD(Pop)(THIS) PURE; - - // Pushes the stack by one, duplicating the current matrix. - STDMETHOD(Push)(THIS) PURE; - - // Loads identity in the current matrix. - STDMETHOD(LoadIdentity)(THIS) PURE; - - // Loads the given matrix into the current matrix - STDMETHOD(LoadMatrix)(THIS_ CONST D3DXMATRIX* pM ) PURE; - - // Right-Multiplies the given matrix to the current matrix. - // (transformation is about the current world origin) - STDMETHOD(MultMatrix)(THIS_ CONST D3DXMATRIX* pM ) PURE; - - // Left-Multiplies the given matrix to the current matrix - // (transformation is about the local origin of the object) - STDMETHOD(MultMatrixLocal)(THIS_ CONST D3DXMATRIX* pM ) PURE; - - // Right multiply the current matrix with the computed rotation - // matrix, counterclockwise about the given axis with the given angle. - // (rotation is about the current world origin) - STDMETHOD(RotateAxis) - (THIS_ CONST D3DXVECTOR3* pV, FLOAT Angle) PURE; - - // Left multiply the current matrix with the computed rotation - // matrix, counterclockwise about the given axis with the given angle. - // (rotation is about the local origin of the object) - STDMETHOD(RotateAxisLocal) - (THIS_ CONST D3DXVECTOR3* pV, FLOAT Angle) PURE; - - // Right multiply the current matrix with the computed rotation - // matrix. All angles are counterclockwise. (rotation is about the - // current world origin) - - // The rotation is composed of a yaw around the Y axis, a pitch around - // the X axis, and a roll around the Z axis. - STDMETHOD(RotateYawPitchRoll) - (THIS_ FLOAT Yaw, FLOAT Pitch, FLOAT Roll) PURE; - - // Left multiply the current matrix with the computed rotation - // matrix. All angles are counterclockwise. (rotation is about the - // local origin of the object) - - // The rotation is composed of a yaw around the Y axis, a pitch around - // the X axis, and a roll around the Z axis. - STDMETHOD(RotateYawPitchRollLocal) - (THIS_ FLOAT Yaw, FLOAT Pitch, FLOAT Roll) PURE; - - // Right multiply the current matrix with the computed scale - // matrix. (transformation is about the current world origin) - STDMETHOD(Scale)(THIS_ FLOAT x, FLOAT y, FLOAT z) PURE; - - // Left multiply the current matrix with the computed scale - // matrix. (transformation is about the local origin of the object) - STDMETHOD(ScaleLocal)(THIS_ FLOAT x, FLOAT y, FLOAT z) PURE; - - // Right multiply the current matrix with the computed translation - // matrix. (transformation is about the current world origin) - STDMETHOD(Translate)(THIS_ FLOAT x, FLOAT y, FLOAT z ) PURE; - - // Left multiply the current matrix with the computed translation - // matrix. (transformation is about the local origin of the object) - STDMETHOD(TranslateLocal)(THIS_ FLOAT x, FLOAT y, FLOAT z) PURE; - - // Obtain the current matrix at the top of the stack - STDMETHOD_(D3DXMATRIX*, GetTop)(THIS) PURE; -}; - -#ifdef __cplusplus -extern "C" { -#endif - -HRESULT WINAPI - D3DXCreateMatrixStack( - DWORD Flags, - LPD3DXMATRIXSTACK* ppStack); - -#ifdef __cplusplus -} -#endif - -//=========================================================================== -// -// Spherical Harmonic Runtime Routines -// -// NOTE: -// * Most of these functions can take the same object as in and out parameters. -// The exceptions are the rotation functions. -// -// * Out parameters are typically also returned as return values, so that -// the output of one function may be used as a parameter to another. -// -//============================================================================ - - -// non-inline -#ifdef __cplusplus -extern "C" { -#endif - -//============================================================================ -// -// Basic Spherical Harmonic math routines -// -//============================================================================ - -#define D3DXSH_MINORDER 2 -#define D3DXSH_MAXORDER 6 - -//============================================================================ -// -// D3DXSHEvalDirection: -// -------------------- -// Evaluates the Spherical Harmonic basis functions -// -// Parameters: -// pOut -// Output SH coefficients - basis function Ylm is stored at l*l + m+l -// This is the pointer that is returned. -// Order -// Order of the SH evaluation, generates Order^2 coefs, degree is Order-1 -// pDir -// Direction to evaluate in - assumed to be normalized -// -//============================================================================ - -FLOAT* WINAPI D3DXSHEvalDirection - ( FLOAT *pOut, UINT Order, CONST D3DXVECTOR3 *pDir ); - -//============================================================================ -// -// D3DXSHRotate: -// -------------------- -// Rotates SH vector by a rotation matrix -// -// Parameters: -// pOut -// Output SH coefficients - basis function Ylm is stored at l*l + m+l -// This is the pointer that is returned (should not alias with pIn.) -// Order -// Order of the SH evaluation, generates Order^2 coefs, degree is Order-1 -// pMatrix -// Matrix used for rotation - rotation sub matrix should be orthogonal -// and have a unit determinant. -// pIn -// Input SH coeffs (rotated), incorect results if this is also output. -// -//============================================================================ - -FLOAT* WINAPI D3DXSHRotate - ( FLOAT *pOut, UINT Order, CONST D3DXMATRIX *pMatrix, CONST FLOAT *pIn ); - -//============================================================================ -// -// D3DXSHRotateZ: -// -------------------- -// Rotates the SH vector in the Z axis by an angle -// -// Parameters: -// pOut -// Output SH coefficients - basis function Ylm is stored at l*l + m+l -// This is the pointer that is returned (should not alias with pIn.) -// Order -// Order of the SH evaluation, generates Order^2 coefs, degree is Order-1 -// Angle -// Angle in radians to rotate around the Z axis. -// pIn -// Input SH coeffs (rotated), incorect results if this is also output. -// -//============================================================================ - - -FLOAT* WINAPI D3DXSHRotateZ - ( FLOAT *pOut, UINT Order, FLOAT Angle, CONST FLOAT *pIn ); - -//============================================================================ -// -// D3DXSHAdd: -// -------------------- -// Adds two SH vectors, pOut[i] = pA[i] + pB[i]; -// -// Parameters: -// pOut -// Output SH coefficients - basis function Ylm is stored at l*l + m+l -// This is the pointer that is returned. -// Order -// Order of the SH evaluation, generates Order^2 coefs, degree is Order-1 -// pA -// Input SH coeffs. -// pB -// Input SH coeffs (second vector.) -// -//============================================================================ - -FLOAT* WINAPI D3DXSHAdd - ( FLOAT *pOut, UINT Order, CONST FLOAT *pA, CONST FLOAT *pB ); - -//============================================================================ -// -// D3DXSHScale: -// -------------------- -// Adds two SH vectors, pOut[i] = pA[i]*Scale; -// -// Parameters: -// pOut -// Output SH coefficients - basis function Ylm is stored at l*l + m+l -// This is the pointer that is returned. -// Order -// Order of the SH evaluation, generates Order^2 coefs, degree is Order-1 -// pIn -// Input SH coeffs. -// Scale -// Scale factor. -// -//============================================================================ - -FLOAT* WINAPI D3DXSHScale - ( FLOAT *pOut, UINT Order, CONST FLOAT *pIn, CONST FLOAT Scale ); - -//============================================================================ -// -// D3DXSHDot: -// -------------------- -// Computes the dot product of two SH vectors -// -// Parameters: -// Order -// Order of the SH evaluation, generates Order^2 coefs, degree is Order-1 -// pA -// Input SH coeffs. -// pB -// Second set of input SH coeffs. -// -//============================================================================ - -FLOAT WINAPI D3DXSHDot - ( UINT Order, CONST FLOAT *pA, CONST FLOAT *pB ); - -//============================================================================ -// -// D3DXSHMultiply[O]: -// -------------------- -// Computes the product of two functions represented using SH (f and g), where: -// pOut[i] = int(y_i(s) * f(s) * g(s)), where y_i(s) is the ith SH basis -// function, f(s) and g(s) are SH functions (sum_i(y_i(s)*c_i)). The order O -// determines the lengths of the arrays, where there should always be O^2 -// coefficients. In general the product of two SH functions of order O generates -// and SH function of order 2*O - 1, but we truncate the result. This means -// that the product commutes (f*g == g*f) but doesn't associate -// (f*(g*h) != (f*g)*h. -// -// Parameters: -// pOut -// Output SH coefficients - basis function Ylm is stored at l*l + m+l -// This is the pointer that is returned. -// pF -// Input SH coeffs for first function. -// pG -// Second set of input SH coeffs. -// -//============================================================================ - -FLOAT* WINAPI D3DXSHMultiply2( FLOAT *pOut, CONST FLOAT *pF, CONST FLOAT *pG); -FLOAT* WINAPI D3DXSHMultiply3( FLOAT *pOut, CONST FLOAT *pF, CONST FLOAT *pG); -FLOAT* WINAPI D3DXSHMultiply4( FLOAT *pOut, CONST FLOAT *pF, CONST FLOAT *pG); -FLOAT* WINAPI D3DXSHMultiply5( FLOAT *pOut, CONST FLOAT *pF, CONST FLOAT *pG); -FLOAT* WINAPI D3DXSHMultiply6( FLOAT *pOut, CONST FLOAT *pF, CONST FLOAT *pG); - - -//============================================================================ -// -// Basic Spherical Harmonic lighting routines -// -//============================================================================ - -//============================================================================ -// -// D3DXSHEvalDirectionalLight: -// -------------------- -// Evaluates a directional light and returns spectral SH data. The output -// vector is computed so that if the intensity of R/G/B is unit the resulting -// exit radiance of a point directly under the light on a diffuse object with -// an albedo of 1 would be 1.0. This will compute 3 spectral samples, pROut -// has to be specified, while pGout and pBout are optional. -// -// Parameters: -// Order -// Order of the SH evaluation, generates Order^2 coefs, degree is Order-1 -// pDir -// Direction light is coming from (assumed to be normalized.) -// RIntensity -// Red intensity of light. -// GIntensity -// Green intensity of light. -// BIntensity -// Blue intensity of light. -// pROut -// Output SH vector for Red. -// pGOut -// Output SH vector for Green (optional.) -// pBOut -// Output SH vector for Blue (optional.) -// -//============================================================================ - -HRESULT WINAPI D3DXSHEvalDirectionalLight - ( UINT Order, CONST D3DXVECTOR3 *pDir, - FLOAT RIntensity, FLOAT GIntensity, FLOAT BIntensity, - FLOAT *pROut, FLOAT *pGOut, FLOAT *pBOut ); - -//============================================================================ -// -// D3DXSHEvalSphericalLight: -// -------------------- -// Evaluates a spherical light and returns spectral SH data. There is no -// normalization of the intensity of the light like there is for directional -// lights, care has to be taken when specifiying the intensities. This will -// compute 3 spectral samples, pROut has to be specified, while pGout and -// pBout are optional. -// -// Parameters: -// Order -// Order of the SH evaluation, generates Order^2 coefs, degree is Order-1 -// pPos -// Position of light - reciever is assumed to be at the origin. -// Radius -// Radius of the spherical light source. -// RIntensity -// Red intensity of light. -// GIntensity -// Green intensity of light. -// BIntensity -// Blue intensity of light. -// pROut -// Output SH vector for Red. -// pGOut -// Output SH vector for Green (optional.) -// pBOut -// Output SH vector for Blue (optional.) -// -//============================================================================ - -HRESULT WINAPI D3DXSHEvalSphericalLight - ( UINT Order, CONST D3DXVECTOR3 *pPos, FLOAT Radius, - FLOAT RIntensity, FLOAT GIntensity, FLOAT BIntensity, - FLOAT *pROut, FLOAT *pGOut, FLOAT *pBOut ); - -//============================================================================ -// -// D3DXSHEvalConeLight: -// -------------------- -// Evaluates a light that is a cone of constant intensity and returns spectral -// SH data. The output vector is computed so that if the intensity of R/G/B is -// unit the resulting exit radiance of a point directly under the light oriented -// in the cone direction on a diffuse object with an albedo of 1 would be 1.0. -// This will compute 3 spectral samples, pROut has to be specified, while pGout -// and pBout are optional. -// -// Parameters: -// Order -// Order of the SH evaluation, generates Order^2 coefs, degree is Order-1 -// pDir -// Direction light is coming from (assumed to be normalized.) -// Radius -// Radius of cone in radians. -// RIntensity -// Red intensity of light. -// GIntensity -// Green intensity of light. -// BIntensity -// Blue intensity of light. -// pROut -// Output SH vector for Red. -// pGOut -// Output SH vector for Green (optional.) -// pBOut -// Output SH vector for Blue (optional.) -// -//============================================================================ - -HRESULT WINAPI D3DXSHEvalConeLight - ( UINT Order, CONST D3DXVECTOR3 *pDir, FLOAT Radius, - FLOAT RIntensity, FLOAT GIntensity, FLOAT BIntensity, - FLOAT *pROut, FLOAT *pGOut, FLOAT *pBOut ); - -//============================================================================ -// -// D3DXSHEvalHemisphereLight: -// -------------------- -// Evaluates a light that is a linear interpolant between two colors over the -// sphere. The interpolant is linear along the axis of the two points, not -// over the surface of the sphere (ie: if the axis was (0,0,1) it is linear in -// Z, not in the azimuthal angle.) The resulting spherical lighting function -// is normalized so that a point on a perfectly diffuse surface with no -// shadowing and a normal pointed in the direction pDir would result in exit -// radiance with a value of 1 if the top color was white and the bottom color -// was black. This is a very simple model where Top represents the intensity -// of the "sky" and Bottom represents the intensity of the "ground". -// -// Parameters: -// Order -// Order of the SH evaluation, generates Order^2 coefs, degree is Order-1 -// pDir -// Axis of the hemisphere. -// Top -// Color of the upper hemisphere. -// Bottom -// Color of the lower hemisphere. -// pROut -// Output SH vector for Red. -// pGOut -// Output SH vector for Green -// pBOut -// Output SH vector for Blue -// -//============================================================================ - -HRESULT WINAPI D3DXSHEvalHemisphereLight - ( UINT Order, CONST D3DXVECTOR3 *pDir, D3DXCOLOR Top, D3DXCOLOR Bottom, - FLOAT *pROut, FLOAT *pGOut, FLOAT *pBOut ); - -//============================================================================ -// -// Basic Spherical Harmonic projection routines -// -//============================================================================ - -//============================================================================ -// -// D3DXSHProjectCubeMap: -// -------------------- -// Projects a function represented on a cube map into spherical harmonics. -// -// Parameters: -// Order -// Order of the SH evaluation, generates Order^2 coefs, degree is Order-1 -// pCubeMap -// CubeMap that is going to be projected into spherical harmonics -// pROut -// Output SH vector for Red. -// pGOut -// Output SH vector for Green -// pBOut -// Output SH vector for Blue -// -//============================================================================ - -HRESULT WINAPI D3DXSHProjectCubeMap - ( UINT uOrder, LPDIRECT3DCUBETEXTURE9 pCubeMap, - FLOAT *pROut, FLOAT *pGOut, FLOAT *pBOut ); - - -#ifdef __cplusplus -} -#endif - - -#include "d3dx9math.inl" - -#if _MSC_VER >= 1200 -#pragma warning(pop) -#else -#pragma warning(default:4201) -#endif - -#endif // __D3DX9MATH_H__ - diff --git a/SDK/Include/d3dx9math.inl b/SDK/Include/d3dx9math.inl deleted file mode 100644 index a3652ed..0000000 --- a/SDK/Include/d3dx9math.inl +++ /dev/null @@ -1,2251 +0,0 @@ -////////////////////////////////////////////////////////////////////////////// -// -// Copyright (C) Microsoft Corporation. All Rights Reserved. -// -// File: d3dx9math.inl -// Content: D3DX math inline functions -// -////////////////////////////////////////////////////////////////////////////// - -#ifndef __D3DX9MATH_INL__ -#define __D3DX9MATH_INL__ - -//=========================================================================== -// -// Inline Class Methods -// -//=========================================================================== - -#ifdef __cplusplus - -//-------------------------- -// Float16 -//-------------------------- - -D3DXINLINE -D3DXFLOAT16::D3DXFLOAT16( FLOAT f ) -{ - D3DXFloat32To16Array(this, &f, 1); -} - -D3DXINLINE -D3DXFLOAT16::D3DXFLOAT16( CONST D3DXFLOAT16& f ) -{ - value = f.value; -} - -// casting -D3DXINLINE -D3DXFLOAT16::operator FLOAT () -{ - FLOAT f; - D3DXFloat16To32Array(&f, this, 1); - return f; -} - -// binary operators -D3DXINLINE BOOL -D3DXFLOAT16::operator == ( CONST D3DXFLOAT16& f ) const -{ - return value == f.value; -} - -D3DXINLINE BOOL -D3DXFLOAT16::operator != ( CONST D3DXFLOAT16& f ) const -{ - return value != f.value; -} - - -//-------------------------- -// 2D Vector -//-------------------------- - -D3DXINLINE -D3DXVECTOR2::D3DXVECTOR2( CONST FLOAT *pf ) -{ -#ifdef D3DX_DEBUG - if(!pf) - return; -#endif - - x = pf[0]; - y = pf[1]; -} - -D3DXINLINE -D3DXVECTOR2::D3DXVECTOR2( CONST D3DXFLOAT16 *pf ) -{ -#ifdef D3DX_DEBUG - if(!pf) - return; -#endif - - D3DXFloat16To32Array(&x, pf, 2); -} - -D3DXINLINE -D3DXVECTOR2::D3DXVECTOR2( FLOAT fx, FLOAT fy ) -{ - x = fx; - y = fy; -} - - -// casting -D3DXINLINE -D3DXVECTOR2::operator FLOAT* () -{ - return (FLOAT *) &x; -} - -D3DXINLINE -D3DXVECTOR2::operator CONST FLOAT* () const -{ - return (CONST FLOAT *) &x; -} - - -// assignment operators -D3DXINLINE D3DXVECTOR2& -D3DXVECTOR2::operator += ( CONST D3DXVECTOR2& v ) -{ - x += v.x; - y += v.y; - return *this; -} - -D3DXINLINE D3DXVECTOR2& -D3DXVECTOR2::operator -= ( CONST D3DXVECTOR2& v ) -{ - x -= v.x; - y -= v.y; - return *this; -} - -D3DXINLINE D3DXVECTOR2& -D3DXVECTOR2::operator *= ( FLOAT f ) -{ - x *= f; - y *= f; - return *this; -} - -D3DXINLINE D3DXVECTOR2& -D3DXVECTOR2::operator /= ( FLOAT f ) -{ - FLOAT fInv = 1.0f / f; - x *= fInv; - y *= fInv; - return *this; -} - - -// unary operators -D3DXINLINE D3DXVECTOR2 -D3DXVECTOR2::operator + () const -{ - return *this; -} - -D3DXINLINE D3DXVECTOR2 -D3DXVECTOR2::operator - () const -{ - return D3DXVECTOR2(-x, -y); -} - - -// binary operators -D3DXINLINE D3DXVECTOR2 -D3DXVECTOR2::operator + ( CONST D3DXVECTOR2& v ) const -{ - return D3DXVECTOR2(x + v.x, y + v.y); -} - -D3DXINLINE D3DXVECTOR2 -D3DXVECTOR2::operator - ( CONST D3DXVECTOR2& v ) const -{ - return D3DXVECTOR2(x - v.x, y - v.y); -} - -D3DXINLINE D3DXVECTOR2 -D3DXVECTOR2::operator * ( FLOAT f ) const -{ - return D3DXVECTOR2(x * f, y * f); -} - -D3DXINLINE D3DXVECTOR2 -D3DXVECTOR2::operator / ( FLOAT f ) const -{ - FLOAT fInv = 1.0f / f; - return D3DXVECTOR2(x * fInv, y * fInv); -} - -D3DXINLINE D3DXVECTOR2 -operator * ( FLOAT f, CONST D3DXVECTOR2& v ) -{ - return D3DXVECTOR2(f * v.x, f * v.y); -} - -D3DXINLINE BOOL -D3DXVECTOR2::operator == ( CONST D3DXVECTOR2& v ) const -{ - return x == v.x && y == v.y; -} - -D3DXINLINE BOOL -D3DXVECTOR2::operator != ( CONST D3DXVECTOR2& v ) const -{ - return x != v.x || y != v.y; -} - - - -//-------------------------- -// 2D Vector (16 bit) -//-------------------------- - -D3DXINLINE -D3DXVECTOR2_16F::D3DXVECTOR2_16F( CONST FLOAT *pf ) -{ -#ifdef D3DX_DEBUG - if(!pf) - return; -#endif - - D3DXFloat32To16Array(&x, pf, 2); -} - -D3DXINLINE -D3DXVECTOR2_16F::D3DXVECTOR2_16F( CONST D3DXFLOAT16 *pf ) -{ -#ifdef D3DX_DEBUG - if(!pf) - return; -#endif - - *((DWORD *) &x) = *((DWORD *) &pf[0]); -} - -D3DXINLINE -D3DXVECTOR2_16F::D3DXVECTOR2_16F( CONST D3DXFLOAT16 &fx, CONST D3DXFLOAT16 &fy ) -{ - x = fx; - y = fy; -} - - -// casting -D3DXINLINE -D3DXVECTOR2_16F::operator D3DXFLOAT16* () -{ - return (D3DXFLOAT16*) &x; -} - -D3DXINLINE -D3DXVECTOR2_16F::operator CONST D3DXFLOAT16* () const -{ - return (CONST D3DXFLOAT16*) &x; -} - - -// binary operators -D3DXINLINE BOOL -D3DXVECTOR2_16F::operator == ( CONST D3DXVECTOR2_16F &v ) const -{ - return *((DWORD *) &x) == *((DWORD *) &v.x); -} - -D3DXINLINE BOOL -D3DXVECTOR2_16F::operator != ( CONST D3DXVECTOR2_16F &v ) const -{ - return *((DWORD *) &x) != *((DWORD *) &v.x); -} - - -//-------------------------- -// 3D Vector -//-------------------------- -D3DXINLINE -D3DXVECTOR3::D3DXVECTOR3( CONST FLOAT *pf ) -{ -#ifdef D3DX_DEBUG - if(!pf) - return; -#endif - - x = pf[0]; - y = pf[1]; - z = pf[2]; -} - -D3DXINLINE -D3DXVECTOR3::D3DXVECTOR3( CONST D3DVECTOR& v ) -{ - x = v.x; - y = v.y; - z = v.z; -} - -D3DXINLINE -D3DXVECTOR3::D3DXVECTOR3( CONST D3DXFLOAT16 *pf ) -{ -#ifdef D3DX_DEBUG - if(!pf) - return; -#endif - - D3DXFloat16To32Array(&x, pf, 3); -} - -D3DXINLINE -D3DXVECTOR3::D3DXVECTOR3( FLOAT fx, FLOAT fy, FLOAT fz ) -{ - x = fx; - y = fy; - z = fz; -} - - -// casting -D3DXINLINE -D3DXVECTOR3::operator FLOAT* () -{ - return (FLOAT *) &x; -} - -D3DXINLINE -D3DXVECTOR3::operator CONST FLOAT* () const -{ - return (CONST FLOAT *) &x; -} - - -// assignment operators -D3DXINLINE D3DXVECTOR3& -D3DXVECTOR3::operator += ( CONST D3DXVECTOR3& v ) -{ - x += v.x; - y += v.y; - z += v.z; - return *this; -} - -D3DXINLINE D3DXVECTOR3& -D3DXVECTOR3::operator -= ( CONST D3DXVECTOR3& v ) -{ - x -= v.x; - y -= v.y; - z -= v.z; - return *this; -} - -D3DXINLINE D3DXVECTOR3& -D3DXVECTOR3::operator *= ( FLOAT f ) -{ - x *= f; - y *= f; - z *= f; - return *this; -} - -D3DXINLINE D3DXVECTOR3& -D3DXVECTOR3::operator /= ( FLOAT f ) -{ - FLOAT fInv = 1.0f / f; - x *= fInv; - y *= fInv; - z *= fInv; - return *this; -} - - -// unary operators -D3DXINLINE D3DXVECTOR3 -D3DXVECTOR3::operator + () const -{ - return *this; -} - -D3DXINLINE D3DXVECTOR3 -D3DXVECTOR3::operator - () const -{ - return D3DXVECTOR3(-x, -y, -z); -} - - -// binary operators -D3DXINLINE D3DXVECTOR3 -D3DXVECTOR3::operator + ( CONST D3DXVECTOR3& v ) const -{ - return D3DXVECTOR3(x + v.x, y + v.y, z + v.z); -} - -D3DXINLINE D3DXVECTOR3 -D3DXVECTOR3::operator - ( CONST D3DXVECTOR3& v ) const -{ - return D3DXVECTOR3(x - v.x, y - v.y, z - v.z); -} - -D3DXINLINE D3DXVECTOR3 -D3DXVECTOR3::operator * ( FLOAT f ) const -{ - return D3DXVECTOR3(x * f, y * f, z * f); -} - -D3DXINLINE D3DXVECTOR3 -D3DXVECTOR3::operator / ( FLOAT f ) const -{ - FLOAT fInv = 1.0f / f; - return D3DXVECTOR3(x * fInv, y * fInv, z * fInv); -} - - -D3DXINLINE D3DXVECTOR3 -operator * ( FLOAT f, CONST struct D3DXVECTOR3& v ) -{ - return D3DXVECTOR3(f * v.x, f * v.y, f * v.z); -} - - -D3DXINLINE BOOL -D3DXVECTOR3::operator == ( CONST D3DXVECTOR3& v ) const -{ - return x == v.x && y == v.y && z == v.z; -} - -D3DXINLINE BOOL -D3DXVECTOR3::operator != ( CONST D3DXVECTOR3& v ) const -{ - return x != v.x || y != v.y || z != v.z; -} - - - -//-------------------------- -// 3D Vector (16 bit) -//-------------------------- - -D3DXINLINE -D3DXVECTOR3_16F::D3DXVECTOR3_16F( CONST FLOAT *pf ) -{ -#ifdef D3DX_DEBUG - if(!pf) - return; -#endif - - D3DXFloat32To16Array(&x, pf, 3); -} - -D3DXINLINE -D3DXVECTOR3_16F::D3DXVECTOR3_16F( CONST D3DVECTOR& v ) -{ - D3DXFloat32To16Array(&x, &v.x, 1); - D3DXFloat32To16Array(&y, &v.y, 1); - D3DXFloat32To16Array(&z, &v.z, 1); -} - -D3DXINLINE -D3DXVECTOR3_16F::D3DXVECTOR3_16F( CONST D3DXFLOAT16 *pf ) -{ -#ifdef D3DX_DEBUG - if(!pf) - return; -#endif - - *((DWORD *) &x) = *((DWORD *) &pf[0]); - *((WORD *) &z) = *((WORD *) &pf[2]); -} - -D3DXINLINE -D3DXVECTOR3_16F::D3DXVECTOR3_16F( CONST D3DXFLOAT16 &fx, CONST D3DXFLOAT16 &fy, CONST D3DXFLOAT16 &fz ) -{ - x = fx; - y = fy; - z = fz; -} - - -// casting -D3DXINLINE -D3DXVECTOR3_16F::operator D3DXFLOAT16* () -{ - return (D3DXFLOAT16*) &x; -} - -D3DXINLINE -D3DXVECTOR3_16F::operator CONST D3DXFLOAT16* () const -{ - return (CONST D3DXFLOAT16*) &x; -} - - -// binary operators -D3DXINLINE BOOL -D3DXVECTOR3_16F::operator == ( CONST D3DXVECTOR3_16F &v ) const -{ - return *((DWORD *) &x) == *((DWORD *) &v.x) && - *((WORD *) &z) == *((WORD *) &v.z); -} - -D3DXINLINE BOOL -D3DXVECTOR3_16F::operator != ( CONST D3DXVECTOR3_16F &v ) const -{ - return *((DWORD *) &x) != *((DWORD *) &v.x) || - *((WORD *) &z) != *((WORD *) &v.z); -} - - -//-------------------------- -// 4D Vector -//-------------------------- -D3DXINLINE -D3DXVECTOR4::D3DXVECTOR4( CONST FLOAT *pf ) -{ -#ifdef D3DX_DEBUG - if(!pf) - return; -#endif - - x = pf[0]; - y = pf[1]; - z = pf[2]; - w = pf[3]; -} - -D3DXINLINE -D3DXVECTOR4::D3DXVECTOR4( CONST D3DXFLOAT16 *pf ) -{ -#ifdef D3DX_DEBUG - if(!pf) - return; -#endif - - D3DXFloat16To32Array(&x, pf, 4); -} - -D3DXINLINE -D3DXVECTOR4::D3DXVECTOR4( CONST D3DVECTOR& v, FLOAT f ) -{ - x = v.x; - y = v.y; - z = v.z; - w = f; -} - -D3DXINLINE -D3DXVECTOR4::D3DXVECTOR4( FLOAT fx, FLOAT fy, FLOAT fz, FLOAT fw ) -{ - x = fx; - y = fy; - z = fz; - w = fw; -} - - -// casting -D3DXINLINE -D3DXVECTOR4::operator FLOAT* () -{ - return (FLOAT *) &x; -} - -D3DXINLINE -D3DXVECTOR4::operator CONST FLOAT* () const -{ - return (CONST FLOAT *) &x; -} - - -// assignment operators -D3DXINLINE D3DXVECTOR4& -D3DXVECTOR4::operator += ( CONST D3DXVECTOR4& v ) -{ - x += v.x; - y += v.y; - z += v.z; - w += v.w; - return *this; -} - -D3DXINLINE D3DXVECTOR4& -D3DXVECTOR4::operator -= ( CONST D3DXVECTOR4& v ) -{ - x -= v.x; - y -= v.y; - z -= v.z; - w -= v.w; - return *this; -} - -D3DXINLINE D3DXVECTOR4& -D3DXVECTOR4::operator *= ( FLOAT f ) -{ - x *= f; - y *= f; - z *= f; - w *= f; - return *this; -} - -D3DXINLINE D3DXVECTOR4& -D3DXVECTOR4::operator /= ( FLOAT f ) -{ - FLOAT fInv = 1.0f / f; - x *= fInv; - y *= fInv; - z *= fInv; - w *= fInv; - return *this; -} - - -// unary operators -D3DXINLINE D3DXVECTOR4 -D3DXVECTOR4::operator + () const -{ - return *this; -} - -D3DXINLINE D3DXVECTOR4 -D3DXVECTOR4::operator - () const -{ - return D3DXVECTOR4(-x, -y, -z, -w); -} - - -// binary operators -D3DXINLINE D3DXVECTOR4 -D3DXVECTOR4::operator + ( CONST D3DXVECTOR4& v ) const -{ - return D3DXVECTOR4(x + v.x, y + v.y, z + v.z, w + v.w); -} - -D3DXINLINE D3DXVECTOR4 -D3DXVECTOR4::operator - ( CONST D3DXVECTOR4& v ) const -{ - return D3DXVECTOR4(x - v.x, y - v.y, z - v.z, w - v.w); -} - -D3DXINLINE D3DXVECTOR4 -D3DXVECTOR4::operator * ( FLOAT f ) const -{ - return D3DXVECTOR4(x * f, y * f, z * f, w * f); -} - -D3DXINLINE D3DXVECTOR4 -D3DXVECTOR4::operator / ( FLOAT f ) const -{ - FLOAT fInv = 1.0f / f; - return D3DXVECTOR4(x * fInv, y * fInv, z * fInv, w * fInv); -} - -D3DXINLINE D3DXVECTOR4 -operator * ( FLOAT f, CONST D3DXVECTOR4& v ) -{ - return D3DXVECTOR4(f * v.x, f * v.y, f * v.z, f * v.w); -} - - -D3DXINLINE BOOL -D3DXVECTOR4::operator == ( CONST D3DXVECTOR4& v ) const -{ - return x == v.x && y == v.y && z == v.z && w == v.w; -} - -D3DXINLINE BOOL -D3DXVECTOR4::operator != ( CONST D3DXVECTOR4& v ) const -{ - return x != v.x || y != v.y || z != v.z || w != v.w; -} - - - -//-------------------------- -// 4D Vector (16 bit) -//-------------------------- - -D3DXINLINE -D3DXVECTOR4_16F::D3DXVECTOR4_16F( CONST FLOAT *pf ) -{ -#ifdef D3DX_DEBUG - if(!pf) - return; -#endif - - D3DXFloat32To16Array(&x, pf, 4); -} - -D3DXINLINE -D3DXVECTOR4_16F::D3DXVECTOR4_16F( CONST D3DXFLOAT16 *pf ) -{ -#ifdef D3DX_DEBUG - if(!pf) - return; -#endif - - *((DWORD *) &x) = *((DWORD *) &pf[0]); - *((DWORD *) &z) = *((DWORD *) &pf[2]); -} - -D3DXINLINE -D3DXVECTOR4_16F::D3DXVECTOR4_16F( CONST D3DXVECTOR3_16F& v, CONST D3DXFLOAT16& f ) -{ - x = v.x; - y = v.y; - z = v.z; - w = f; -} - -D3DXINLINE -D3DXVECTOR4_16F::D3DXVECTOR4_16F( CONST D3DXFLOAT16 &fx, CONST D3DXFLOAT16 &fy, CONST D3DXFLOAT16 &fz, CONST D3DXFLOAT16 &fw ) -{ - x = fx; - y = fy; - z = fz; - w = fw; -} - - -// casting -D3DXINLINE -D3DXVECTOR4_16F::operator D3DXFLOAT16* () -{ - return (D3DXFLOAT16*) &x; -} - -D3DXINLINE -D3DXVECTOR4_16F::operator CONST D3DXFLOAT16* () const -{ - return (CONST D3DXFLOAT16*) &x; -} - - -// binary operators -D3DXINLINE BOOL -D3DXVECTOR4_16F::operator == ( CONST D3DXVECTOR4_16F &v ) const -{ - return *((DWORD *) &x) == *((DWORD *) &v.x) && - *((DWORD *) &z) == *((DWORD *) &v.z); -} - -D3DXINLINE BOOL -D3DXVECTOR4_16F::operator != ( CONST D3DXVECTOR4_16F &v ) const -{ - return *((DWORD *) &x) != *((DWORD *) &v.x) || - *((DWORD *) &z) != *((DWORD *) &v.z); -} - - -//-------------------------- -// Matrix -//-------------------------- -D3DXINLINE -D3DXMATRIX::D3DXMATRIX( CONST FLOAT* pf ) -{ -#ifdef D3DX_DEBUG - if(!pf) - return; -#endif - - memcpy(&_11, pf, sizeof(D3DXMATRIX)); -} - -D3DXINLINE -D3DXMATRIX::D3DXMATRIX( CONST D3DMATRIX& mat ) -{ - memcpy(&_11, &mat, sizeof(D3DXMATRIX)); -} - -D3DXINLINE -D3DXMATRIX::D3DXMATRIX( CONST D3DXFLOAT16* pf ) -{ -#ifdef D3DX_DEBUG - if(!pf) - return; -#endif - - D3DXFloat16To32Array(&_11, pf, 16); -} - -D3DXINLINE -D3DXMATRIX::D3DXMATRIX( FLOAT f11, FLOAT f12, FLOAT f13, FLOAT f14, - FLOAT f21, FLOAT f22, FLOAT f23, FLOAT f24, - FLOAT f31, FLOAT f32, FLOAT f33, FLOAT f34, - FLOAT f41, FLOAT f42, FLOAT f43, FLOAT f44 ) -{ - _11 = f11; _12 = f12; _13 = f13; _14 = f14; - _21 = f21; _22 = f22; _23 = f23; _24 = f24; - _31 = f31; _32 = f32; _33 = f33; _34 = f34; - _41 = f41; _42 = f42; _43 = f43; _44 = f44; -} - - - -// access grants -D3DXINLINE FLOAT& -D3DXMATRIX::operator () ( UINT iRow, UINT iCol ) -{ - return m[iRow][iCol]; -} - -D3DXINLINE FLOAT -D3DXMATRIX::operator () ( UINT iRow, UINT iCol ) const -{ - return m[iRow][iCol]; -} - - -// casting operators -D3DXINLINE -D3DXMATRIX::operator FLOAT* () -{ - return (FLOAT *) &_11; -} - -D3DXINLINE -D3DXMATRIX::operator CONST FLOAT* () const -{ - return (CONST FLOAT *) &_11; -} - - -// assignment operators -D3DXINLINE D3DXMATRIX& -D3DXMATRIX::operator *= ( CONST D3DXMATRIX& mat ) -{ - D3DXMatrixMultiply(this, this, &mat); - return *this; -} - -D3DXINLINE D3DXMATRIX& -D3DXMATRIX::operator += ( CONST D3DXMATRIX& mat ) -{ - _11 += mat._11; _12 += mat._12; _13 += mat._13; _14 += mat._14; - _21 += mat._21; _22 += mat._22; _23 += mat._23; _24 += mat._24; - _31 += mat._31; _32 += mat._32; _33 += mat._33; _34 += mat._34; - _41 += mat._41; _42 += mat._42; _43 += mat._43; _44 += mat._44; - return *this; -} - -D3DXINLINE D3DXMATRIX& -D3DXMATRIX::operator -= ( CONST D3DXMATRIX& mat ) -{ - _11 -= mat._11; _12 -= mat._12; _13 -= mat._13; _14 -= mat._14; - _21 -= mat._21; _22 -= mat._22; _23 -= mat._23; _24 -= mat._24; - _31 -= mat._31; _32 -= mat._32; _33 -= mat._33; _34 -= mat._34; - _41 -= mat._41; _42 -= mat._42; _43 -= mat._43; _44 -= mat._44; - return *this; -} - -D3DXINLINE D3DXMATRIX& -D3DXMATRIX::operator *= ( FLOAT f ) -{ - _11 *= f; _12 *= f; _13 *= f; _14 *= f; - _21 *= f; _22 *= f; _23 *= f; _24 *= f; - _31 *= f; _32 *= f; _33 *= f; _34 *= f; - _41 *= f; _42 *= f; _43 *= f; _44 *= f; - return *this; -} - -D3DXINLINE D3DXMATRIX& -D3DXMATRIX::operator /= ( FLOAT f ) -{ - FLOAT fInv = 1.0f / f; - _11 *= fInv; _12 *= fInv; _13 *= fInv; _14 *= fInv; - _21 *= fInv; _22 *= fInv; _23 *= fInv; _24 *= fInv; - _31 *= fInv; _32 *= fInv; _33 *= fInv; _34 *= fInv; - _41 *= fInv; _42 *= fInv; _43 *= fInv; _44 *= fInv; - return *this; -} - - -// unary operators -D3DXINLINE D3DXMATRIX -D3DXMATRIX::operator + () const -{ - return *this; -} - -D3DXINLINE D3DXMATRIX -D3DXMATRIX::operator - () const -{ - return D3DXMATRIX(-_11, -_12, -_13, -_14, - -_21, -_22, -_23, -_24, - -_31, -_32, -_33, -_34, - -_41, -_42, -_43, -_44); -} - - -// binary operators -D3DXINLINE D3DXMATRIX -D3DXMATRIX::operator * ( CONST D3DXMATRIX& mat ) const -{ - D3DXMATRIX matT; - D3DXMatrixMultiply(&matT, this, &mat); - return matT; -} - -D3DXINLINE D3DXMATRIX -D3DXMATRIX::operator + ( CONST D3DXMATRIX& mat ) const -{ - return D3DXMATRIX(_11 + mat._11, _12 + mat._12, _13 + mat._13, _14 + mat._14, - _21 + mat._21, _22 + mat._22, _23 + mat._23, _24 + mat._24, - _31 + mat._31, _32 + mat._32, _33 + mat._33, _34 + mat._34, - _41 + mat._41, _42 + mat._42, _43 + mat._43, _44 + mat._44); -} - -D3DXINLINE D3DXMATRIX -D3DXMATRIX::operator - ( CONST D3DXMATRIX& mat ) const -{ - return D3DXMATRIX(_11 - mat._11, _12 - mat._12, _13 - mat._13, _14 - mat._14, - _21 - mat._21, _22 - mat._22, _23 - mat._23, _24 - mat._24, - _31 - mat._31, _32 - mat._32, _33 - mat._33, _34 - mat._34, - _41 - mat._41, _42 - mat._42, _43 - mat._43, _44 - mat._44); -} - -D3DXINLINE D3DXMATRIX -D3DXMATRIX::operator * ( FLOAT f ) const -{ - return D3DXMATRIX(_11 * f, _12 * f, _13 * f, _14 * f, - _21 * f, _22 * f, _23 * f, _24 * f, - _31 * f, _32 * f, _33 * f, _34 * f, - _41 * f, _42 * f, _43 * f, _44 * f); -} - -D3DXINLINE D3DXMATRIX -D3DXMATRIX::operator / ( FLOAT f ) const -{ - FLOAT fInv = 1.0f / f; - return D3DXMATRIX(_11 * fInv, _12 * fInv, _13 * fInv, _14 * fInv, - _21 * fInv, _22 * fInv, _23 * fInv, _24 * fInv, - _31 * fInv, _32 * fInv, _33 * fInv, _34 * fInv, - _41 * fInv, _42 * fInv, _43 * fInv, _44 * fInv); -} - - -D3DXINLINE D3DXMATRIX -operator * ( FLOAT f, CONST D3DXMATRIX& mat ) -{ - return D3DXMATRIX(f * mat._11, f * mat._12, f * mat._13, f * mat._14, - f * mat._21, f * mat._22, f * mat._23, f * mat._24, - f * mat._31, f * mat._32, f * mat._33, f * mat._34, - f * mat._41, f * mat._42, f * mat._43, f * mat._44); -} - - -D3DXINLINE BOOL -D3DXMATRIX::operator == ( CONST D3DXMATRIX& mat ) const -{ - return 0 == memcmp(this, &mat, sizeof(D3DXMATRIX)); -} - -D3DXINLINE BOOL -D3DXMATRIX::operator != ( CONST D3DXMATRIX& mat ) const -{ - return 0 != memcmp(this, &mat, sizeof(D3DXMATRIX)); -} - - - -//-------------------------- -// Aligned Matrices -//-------------------------- - -D3DXINLINE -_D3DXMATRIXA16::_D3DXMATRIXA16( CONST FLOAT* f ) : - D3DXMATRIX( f ) -{ -} - -D3DXINLINE -_D3DXMATRIXA16::_D3DXMATRIXA16( CONST D3DMATRIX& m ) : - D3DXMATRIX( m ) -{ -} - -D3DXINLINE -_D3DXMATRIXA16::_D3DXMATRIXA16( CONST D3DXFLOAT16* f ) : - D3DXMATRIX( f ) -{ -} - -D3DXINLINE -_D3DXMATRIXA16::_D3DXMATRIXA16( FLOAT _11, FLOAT _12, FLOAT _13, FLOAT _14, - FLOAT _21, FLOAT _22, FLOAT _23, FLOAT _24, - FLOAT _31, FLOAT _32, FLOAT _33, FLOAT _34, - FLOAT _41, FLOAT _42, FLOAT _43, FLOAT _44 ) : - D3DXMATRIX(_11, _12, _13, _14, - _21, _22, _23, _24, - _31, _32, _33, _34, - _41, _42, _43, _44) -{ -} - -#ifndef SIZE_MAX -#define SIZE_MAX ((SIZE_T)-1) -#endif - -D3DXINLINE void* -_D3DXMATRIXA16::operator new( size_t s ) -{ - if (s > (SIZE_MAX-16)) - return NULL; - LPBYTE p = ::new BYTE[s + 16]; - if (p) - { - BYTE offset = (BYTE)(16 - ((UINT_PTR)p & 15)); - p += offset; - p[-1] = offset; - } - return p; -} - -D3DXINLINE void* -_D3DXMATRIXA16::operator new[]( size_t s ) -{ - if (s > (SIZE_MAX-16)) - return NULL; - LPBYTE p = ::new BYTE[s + 16]; - if (p) - { - BYTE offset = (BYTE)(16 - ((UINT_PTR)p & 15)); - p += offset; - p[-1] = offset; - } - return p; -} - -D3DXINLINE void -_D3DXMATRIXA16::operator delete(void* p) -{ - if(p) - { - BYTE* pb = static_cast(p); - pb -= pb[-1]; - ::delete [] pb; - } -} - -D3DXINLINE void -_D3DXMATRIXA16::operator delete[](void* p) -{ - if(p) - { - BYTE* pb = static_cast(p); - pb -= pb[-1]; - ::delete [] pb; - } -} - -D3DXINLINE _D3DXMATRIXA16& -_D3DXMATRIXA16::operator=(CONST D3DXMATRIX& rhs) -{ - memcpy(&_11, &rhs, sizeof(D3DXMATRIX)); - return *this; -} - - -//-------------------------- -// Quaternion -//-------------------------- - -D3DXINLINE -D3DXQUATERNION::D3DXQUATERNION( CONST FLOAT* pf ) -{ -#ifdef D3DX_DEBUG - if(!pf) - return; -#endif - - x = pf[0]; - y = pf[1]; - z = pf[2]; - w = pf[3]; -} - -D3DXINLINE -D3DXQUATERNION::D3DXQUATERNION( CONST D3DXFLOAT16* pf ) -{ -#ifdef D3DX_DEBUG - if(!pf) - return; -#endif - - D3DXFloat16To32Array(&x, pf, 4); -} - -D3DXINLINE -D3DXQUATERNION::D3DXQUATERNION( FLOAT fx, FLOAT fy, FLOAT fz, FLOAT fw ) -{ - x = fx; - y = fy; - z = fz; - w = fw; -} - - -// casting -D3DXINLINE -D3DXQUATERNION::operator FLOAT* () -{ - return (FLOAT *) &x; -} - -D3DXINLINE -D3DXQUATERNION::operator CONST FLOAT* () const -{ - return (CONST FLOAT *) &x; -} - - -// assignment operators -D3DXINLINE D3DXQUATERNION& -D3DXQUATERNION::operator += ( CONST D3DXQUATERNION& q ) -{ - x += q.x; - y += q.y; - z += q.z; - w += q.w; - return *this; -} - -D3DXINLINE D3DXQUATERNION& -D3DXQUATERNION::operator -= ( CONST D3DXQUATERNION& q ) -{ - x -= q.x; - y -= q.y; - z -= q.z; - w -= q.w; - return *this; -} - -D3DXINLINE D3DXQUATERNION& -D3DXQUATERNION::operator *= ( CONST D3DXQUATERNION& q ) -{ - D3DXQuaternionMultiply(this, this, &q); - return *this; -} - -D3DXINLINE D3DXQUATERNION& -D3DXQUATERNION::operator *= ( FLOAT f ) -{ - x *= f; - y *= f; - z *= f; - w *= f; - return *this; -} - -D3DXINLINE D3DXQUATERNION& -D3DXQUATERNION::operator /= ( FLOAT f ) -{ - FLOAT fInv = 1.0f / f; - x *= fInv; - y *= fInv; - z *= fInv; - w *= fInv; - return *this; -} - - -// unary operators -D3DXINLINE D3DXQUATERNION -D3DXQUATERNION::operator + () const -{ - return *this; -} - -D3DXINLINE D3DXQUATERNION -D3DXQUATERNION::operator - () const -{ - return D3DXQUATERNION(-x, -y, -z, -w); -} - - -// binary operators -D3DXINLINE D3DXQUATERNION -D3DXQUATERNION::operator + ( CONST D3DXQUATERNION& q ) const -{ - return D3DXQUATERNION(x + q.x, y + q.y, z + q.z, w + q.w); -} - -D3DXINLINE D3DXQUATERNION -D3DXQUATERNION::operator - ( CONST D3DXQUATERNION& q ) const -{ - return D3DXQUATERNION(x - q.x, y - q.y, z - q.z, w - q.w); -} - -D3DXINLINE D3DXQUATERNION -D3DXQUATERNION::operator * ( CONST D3DXQUATERNION& q ) const -{ - D3DXQUATERNION qT; - D3DXQuaternionMultiply(&qT, this, &q); - return qT; -} - -D3DXINLINE D3DXQUATERNION -D3DXQUATERNION::operator * ( FLOAT f ) const -{ - return D3DXQUATERNION(x * f, y * f, z * f, w * f); -} - -D3DXINLINE D3DXQUATERNION -D3DXQUATERNION::operator / ( FLOAT f ) const -{ - FLOAT fInv = 1.0f / f; - return D3DXQUATERNION(x * fInv, y * fInv, z * fInv, w * fInv); -} - - -D3DXINLINE D3DXQUATERNION -operator * (FLOAT f, CONST D3DXQUATERNION& q ) -{ - return D3DXQUATERNION(f * q.x, f * q.y, f * q.z, f * q.w); -} - - -D3DXINLINE BOOL -D3DXQUATERNION::operator == ( CONST D3DXQUATERNION& q ) const -{ - return x == q.x && y == q.y && z == q.z && w == q.w; -} - -D3DXINLINE BOOL -D3DXQUATERNION::operator != ( CONST D3DXQUATERNION& q ) const -{ - return x != q.x || y != q.y || z != q.z || w != q.w; -} - - - -//-------------------------- -// Plane -//-------------------------- - -D3DXINLINE -D3DXPLANE::D3DXPLANE( CONST FLOAT* pf ) -{ -#ifdef D3DX_DEBUG - if(!pf) - return; -#endif - - a = pf[0]; - b = pf[1]; - c = pf[2]; - d = pf[3]; -} - -D3DXINLINE -D3DXPLANE::D3DXPLANE( CONST D3DXFLOAT16* pf ) -{ -#ifdef D3DX_DEBUG - if(!pf) - return; -#endif - - D3DXFloat16To32Array(&a, pf, 4); -} - -D3DXINLINE -D3DXPLANE::D3DXPLANE( FLOAT fa, FLOAT fb, FLOAT fc, FLOAT fd ) -{ - a = fa; - b = fb; - c = fc; - d = fd; -} - - -// casting -D3DXINLINE -D3DXPLANE::operator FLOAT* () -{ - return (FLOAT *) &a; -} - -D3DXINLINE -D3DXPLANE::operator CONST FLOAT* () const -{ - return (CONST FLOAT *) &a; -} - - -// assignment operators -D3DXINLINE D3DXPLANE& -D3DXPLANE::operator *= ( FLOAT f ) -{ - a *= f; - b *= f; - c *= f; - d *= f; - return *this; -} - -D3DXINLINE D3DXPLANE& -D3DXPLANE::operator /= ( FLOAT f ) -{ - FLOAT fInv = 1.0f / f; - a *= fInv; - b *= fInv; - c *= fInv; - d *= fInv; - return *this; -} - - -// unary operators -D3DXINLINE D3DXPLANE -D3DXPLANE::operator + () const -{ - return *this; -} - -D3DXINLINE D3DXPLANE -D3DXPLANE::operator - () const -{ - return D3DXPLANE(-a, -b, -c, -d); -} - - -// binary operators -D3DXINLINE D3DXPLANE -D3DXPLANE::operator * ( FLOAT f ) const -{ - return D3DXPLANE(a * f, b * f, c * f, d * f); -} - -D3DXINLINE D3DXPLANE -D3DXPLANE::operator / ( FLOAT f ) const -{ - FLOAT fInv = 1.0f / f; - return D3DXPLANE(a * fInv, b * fInv, c * fInv, d * fInv); -} - -D3DXINLINE D3DXPLANE -operator * (FLOAT f, CONST D3DXPLANE& p ) -{ - return D3DXPLANE(f * p.a, f * p.b, f * p.c, f * p.d); -} - -D3DXINLINE BOOL -D3DXPLANE::operator == ( CONST D3DXPLANE& p ) const -{ - return a == p.a && b == p.b && c == p.c && d == p.d; -} - -D3DXINLINE BOOL -D3DXPLANE::operator != ( CONST D3DXPLANE& p ) const -{ - return a != p.a || b != p.b || c != p.c || d != p.d; -} - - - - -//-------------------------- -// Color -//-------------------------- - -D3DXINLINE -D3DXCOLOR::D3DXCOLOR( DWORD dw ) -{ - CONST FLOAT f = 1.0f / 255.0f; - r = f * (FLOAT) (unsigned char) (dw >> 16); - g = f * (FLOAT) (unsigned char) (dw >> 8); - b = f * (FLOAT) (unsigned char) (dw >> 0); - a = f * (FLOAT) (unsigned char) (dw >> 24); -} - -D3DXINLINE -D3DXCOLOR::D3DXCOLOR( CONST FLOAT* pf ) -{ -#ifdef D3DX_DEBUG - if(!pf) - return; -#endif - - r = pf[0]; - g = pf[1]; - b = pf[2]; - a = pf[3]; -} - -D3DXINLINE -D3DXCOLOR::D3DXCOLOR( CONST D3DXFLOAT16* pf ) -{ -#ifdef D3DX_DEBUG - if(!pf) - return; -#endif - - D3DXFloat16To32Array(&r, pf, 4); -} - -D3DXINLINE -D3DXCOLOR::D3DXCOLOR( CONST D3DCOLORVALUE& c ) -{ - r = c.r; - g = c.g; - b = c.b; - a = c.a; -} - -D3DXINLINE -D3DXCOLOR::D3DXCOLOR( FLOAT fr, FLOAT fg, FLOAT fb, FLOAT fa ) -{ - r = fr; - g = fg; - b = fb; - a = fa; -} - - -// casting -D3DXINLINE -D3DXCOLOR::operator DWORD () const -{ - DWORD dwR = r >= 1.0f ? 0xff : r <= 0.0f ? 0x00 : (DWORD) (r * 255.0f + 0.5f); - DWORD dwG = g >= 1.0f ? 0xff : g <= 0.0f ? 0x00 : (DWORD) (g * 255.0f + 0.5f); - DWORD dwB = b >= 1.0f ? 0xff : b <= 0.0f ? 0x00 : (DWORD) (b * 255.0f + 0.5f); - DWORD dwA = a >= 1.0f ? 0xff : a <= 0.0f ? 0x00 : (DWORD) (a * 255.0f + 0.5f); - - return (dwA << 24) | (dwR << 16) | (dwG << 8) | dwB; -} - - -D3DXINLINE -D3DXCOLOR::operator FLOAT * () -{ - return (FLOAT *) &r; -} - -D3DXINLINE -D3DXCOLOR::operator CONST FLOAT * () const -{ - return (CONST FLOAT *) &r; -} - - -D3DXINLINE -D3DXCOLOR::operator D3DCOLORVALUE * () -{ - return (D3DCOLORVALUE *) &r; -} - -D3DXINLINE -D3DXCOLOR::operator CONST D3DCOLORVALUE * () const -{ - return (CONST D3DCOLORVALUE *) &r; -} - - -D3DXINLINE -D3DXCOLOR::operator D3DCOLORVALUE& () -{ - return *((D3DCOLORVALUE *) &r); -} - -D3DXINLINE -D3DXCOLOR::operator CONST D3DCOLORVALUE& () const -{ - return *((CONST D3DCOLORVALUE *) &r); -} - - -// assignment operators -D3DXINLINE D3DXCOLOR& -D3DXCOLOR::operator += ( CONST D3DXCOLOR& c ) -{ - r += c.r; - g += c.g; - b += c.b; - a += c.a; - return *this; -} - -D3DXINLINE D3DXCOLOR& -D3DXCOLOR::operator -= ( CONST D3DXCOLOR& c ) -{ - r -= c.r; - g -= c.g; - b -= c.b; - a -= c.a; - return *this; -} - -D3DXINLINE D3DXCOLOR& -D3DXCOLOR::operator *= ( FLOAT f ) -{ - r *= f; - g *= f; - b *= f; - a *= f; - return *this; -} - -D3DXINLINE D3DXCOLOR& -D3DXCOLOR::operator /= ( FLOAT f ) -{ - FLOAT fInv = 1.0f / f; - r *= fInv; - g *= fInv; - b *= fInv; - a *= fInv; - return *this; -} - - -// unary operators -D3DXINLINE D3DXCOLOR -D3DXCOLOR::operator + () const -{ - return *this; -} - -D3DXINLINE D3DXCOLOR -D3DXCOLOR::operator - () const -{ - return D3DXCOLOR(-r, -g, -b, -a); -} - - -// binary operators -D3DXINLINE D3DXCOLOR -D3DXCOLOR::operator + ( CONST D3DXCOLOR& c ) const -{ - return D3DXCOLOR(r + c.r, g + c.g, b + c.b, a + c.a); -} - -D3DXINLINE D3DXCOLOR -D3DXCOLOR::operator - ( CONST D3DXCOLOR& c ) const -{ - return D3DXCOLOR(r - c.r, g - c.g, b - c.b, a - c.a); -} - -D3DXINLINE D3DXCOLOR -D3DXCOLOR::operator * ( FLOAT f ) const -{ - return D3DXCOLOR(r * f, g * f, b * f, a * f); -} - -D3DXINLINE D3DXCOLOR -D3DXCOLOR::operator / ( FLOAT f ) const -{ - FLOAT fInv = 1.0f / f; - return D3DXCOLOR(r * fInv, g * fInv, b * fInv, a * fInv); -} - - -D3DXINLINE D3DXCOLOR -operator * (FLOAT f, CONST D3DXCOLOR& c ) -{ - return D3DXCOLOR(f * c.r, f * c.g, f * c.b, f * c.a); -} - - -D3DXINLINE BOOL -D3DXCOLOR::operator == ( CONST D3DXCOLOR& c ) const -{ - return r == c.r && g == c.g && b == c.b && a == c.a; -} - -D3DXINLINE BOOL -D3DXCOLOR::operator != ( CONST D3DXCOLOR& c ) const -{ - return r != c.r || g != c.g || b != c.b || a != c.a; -} - - -#endif //__cplusplus - - - -//=========================================================================== -// -// Inline functions -// -//=========================================================================== - - -//-------------------------- -// 2D Vector -//-------------------------- - -D3DXINLINE FLOAT D3DXVec2Length - ( CONST D3DXVECTOR2 *pV ) -{ -#ifdef D3DX_DEBUG - if(!pV) - return 0.0f; -#endif - -#ifdef __cplusplus - return sqrtf(pV->x * pV->x + pV->y * pV->y); -#else - return (FLOAT) sqrt(pV->x * pV->x + pV->y * pV->y); -#endif -} - -D3DXINLINE FLOAT D3DXVec2LengthSq - ( CONST D3DXVECTOR2 *pV ) -{ -#ifdef D3DX_DEBUG - if(!pV) - return 0.0f; -#endif - - return pV->x * pV->x + pV->y * pV->y; -} - -D3DXINLINE FLOAT D3DXVec2Dot - ( CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2 ) -{ -#ifdef D3DX_DEBUG - if(!pV1 || !pV2) - return 0.0f; -#endif - - return pV1->x * pV2->x + pV1->y * pV2->y; -} - -D3DXINLINE FLOAT D3DXVec2CCW - ( CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2 ) -{ -#ifdef D3DX_DEBUG - if(!pV1 || !pV2) - return 0.0f; -#endif - - return pV1->x * pV2->y - pV1->y * pV2->x; -} - -D3DXINLINE D3DXVECTOR2* D3DXVec2Add - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2 ) -{ -#ifdef D3DX_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x + pV2->x; - pOut->y = pV1->y + pV2->y; - return pOut; -} - -D3DXINLINE D3DXVECTOR2* D3DXVec2Subtract - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2 ) -{ -#ifdef D3DX_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x - pV2->x; - pOut->y = pV1->y - pV2->y; - return pOut; -} - -D3DXINLINE D3DXVECTOR2* D3DXVec2Minimize - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2 ) -{ -#ifdef D3DX_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x < pV2->x ? pV1->x : pV2->x; - pOut->y = pV1->y < pV2->y ? pV1->y : pV2->y; - return pOut; -} - -D3DXINLINE D3DXVECTOR2* D3DXVec2Maximize - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2 ) -{ -#ifdef D3DX_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x > pV2->x ? pV1->x : pV2->x; - pOut->y = pV1->y > pV2->y ? pV1->y : pV2->y; - return pOut; -} - -D3DXINLINE D3DXVECTOR2* D3DXVec2Scale - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV, FLOAT s ) -{ -#ifdef D3DX_DEBUG - if(!pOut || !pV) - return NULL; -#endif - - pOut->x = pV->x * s; - pOut->y = pV->y * s; - return pOut; -} - -D3DXINLINE D3DXVECTOR2* D3DXVec2Lerp - ( D3DXVECTOR2 *pOut, CONST D3DXVECTOR2 *pV1, CONST D3DXVECTOR2 *pV2, - FLOAT s ) -{ -#ifdef D3DX_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x + s * (pV2->x - pV1->x); - pOut->y = pV1->y + s * (pV2->y - pV1->y); - return pOut; -} - - -//-------------------------- -// 3D Vector -//-------------------------- - -D3DXINLINE FLOAT D3DXVec3Length - ( CONST D3DXVECTOR3 *pV ) -{ -#ifdef D3DX_DEBUG - if(!pV) - return 0.0f; -#endif - -#ifdef __cplusplus - return sqrtf(pV->x * pV->x + pV->y * pV->y + pV->z * pV->z); -#else - return (FLOAT) sqrt(pV->x * pV->x + pV->y * pV->y + pV->z * pV->z); -#endif -} - -D3DXINLINE FLOAT D3DXVec3LengthSq - ( CONST D3DXVECTOR3 *pV ) -{ -#ifdef D3DX_DEBUG - if(!pV) - return 0.0f; -#endif - - return pV->x * pV->x + pV->y * pV->y + pV->z * pV->z; -} - -D3DXINLINE FLOAT D3DXVec3Dot - ( CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2 ) -{ -#ifdef D3DX_DEBUG - if(!pV1 || !pV2) - return 0.0f; -#endif - - return pV1->x * pV2->x + pV1->y * pV2->y + pV1->z * pV2->z; -} - -D3DXINLINE D3DXVECTOR3* D3DXVec3Cross - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2 ) -{ - D3DXVECTOR3 v; - -#ifdef D3DX_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - v.x = pV1->y * pV2->z - pV1->z * pV2->y; - v.y = pV1->z * pV2->x - pV1->x * pV2->z; - v.z = pV1->x * pV2->y - pV1->y * pV2->x; - - *pOut = v; - return pOut; -} - -D3DXINLINE D3DXVECTOR3* D3DXVec3Add - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2 ) -{ -#ifdef D3DX_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x + pV2->x; - pOut->y = pV1->y + pV2->y; - pOut->z = pV1->z + pV2->z; - return pOut; -} - -D3DXINLINE D3DXVECTOR3* D3DXVec3Subtract - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2 ) -{ -#ifdef D3DX_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x - pV2->x; - pOut->y = pV1->y - pV2->y; - pOut->z = pV1->z - pV2->z; - return pOut; -} - -D3DXINLINE D3DXVECTOR3* D3DXVec3Minimize - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2 ) -{ -#ifdef D3DX_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x < pV2->x ? pV1->x : pV2->x; - pOut->y = pV1->y < pV2->y ? pV1->y : pV2->y; - pOut->z = pV1->z < pV2->z ? pV1->z : pV2->z; - return pOut; -} - -D3DXINLINE D3DXVECTOR3* D3DXVec3Maximize - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2 ) -{ -#ifdef D3DX_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x > pV2->x ? pV1->x : pV2->x; - pOut->y = pV1->y > pV2->y ? pV1->y : pV2->y; - pOut->z = pV1->z > pV2->z ? pV1->z : pV2->z; - return pOut; -} - -D3DXINLINE D3DXVECTOR3* D3DXVec3Scale - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV, FLOAT s) -{ -#ifdef D3DX_DEBUG - if(!pOut || !pV) - return NULL; -#endif - - pOut->x = pV->x * s; - pOut->y = pV->y * s; - pOut->z = pV->z * s; - return pOut; -} - -D3DXINLINE D3DXVECTOR3* D3DXVec3Lerp - ( D3DXVECTOR3 *pOut, CONST D3DXVECTOR3 *pV1, CONST D3DXVECTOR3 *pV2, - FLOAT s ) -{ -#ifdef D3DX_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x + s * (pV2->x - pV1->x); - pOut->y = pV1->y + s * (pV2->y - pV1->y); - pOut->z = pV1->z + s * (pV2->z - pV1->z); - return pOut; -} - - -//-------------------------- -// 4D Vector -//-------------------------- - -D3DXINLINE FLOAT D3DXVec4Length - ( CONST D3DXVECTOR4 *pV ) -{ -#ifdef D3DX_DEBUG - if(!pV) - return 0.0f; -#endif - -#ifdef __cplusplus - return sqrtf(pV->x * pV->x + pV->y * pV->y + pV->z * pV->z + pV->w * pV->w); -#else - return (FLOAT) sqrt(pV->x * pV->x + pV->y * pV->y + pV->z * pV->z + pV->w * pV->w); -#endif -} - -D3DXINLINE FLOAT D3DXVec4LengthSq - ( CONST D3DXVECTOR4 *pV ) -{ -#ifdef D3DX_DEBUG - if(!pV) - return 0.0f; -#endif - - return pV->x * pV->x + pV->y * pV->y + pV->z * pV->z + pV->w * pV->w; -} - -D3DXINLINE FLOAT D3DXVec4Dot - ( CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pV2 ) -{ -#ifdef D3DX_DEBUG - if(!pV1 || !pV2) - return 0.0f; -#endif - - return pV1->x * pV2->x + pV1->y * pV2->y + pV1->z * pV2->z + pV1->w * pV2->w; -} - -D3DXINLINE D3DXVECTOR4* D3DXVec4Add - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pV2) -{ -#ifdef D3DX_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x + pV2->x; - pOut->y = pV1->y + pV2->y; - pOut->z = pV1->z + pV2->z; - pOut->w = pV1->w + pV2->w; - return pOut; -} - -D3DXINLINE D3DXVECTOR4* D3DXVec4Subtract - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pV2) -{ -#ifdef D3DX_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x - pV2->x; - pOut->y = pV1->y - pV2->y; - pOut->z = pV1->z - pV2->z; - pOut->w = pV1->w - pV2->w; - return pOut; -} - -D3DXINLINE D3DXVECTOR4* D3DXVec4Minimize - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pV2) -{ -#ifdef D3DX_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x < pV2->x ? pV1->x : pV2->x; - pOut->y = pV1->y < pV2->y ? pV1->y : pV2->y; - pOut->z = pV1->z < pV2->z ? pV1->z : pV2->z; - pOut->w = pV1->w < pV2->w ? pV1->w : pV2->w; - return pOut; -} - -D3DXINLINE D3DXVECTOR4* D3DXVec4Maximize - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pV2) -{ -#ifdef D3DX_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x > pV2->x ? pV1->x : pV2->x; - pOut->y = pV1->y > pV2->y ? pV1->y : pV2->y; - pOut->z = pV1->z > pV2->z ? pV1->z : pV2->z; - pOut->w = pV1->w > pV2->w ? pV1->w : pV2->w; - return pOut; -} - -D3DXINLINE D3DXVECTOR4* D3DXVec4Scale - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV, FLOAT s) -{ -#ifdef D3DX_DEBUG - if(!pOut || !pV) - return NULL; -#endif - - pOut->x = pV->x * s; - pOut->y = pV->y * s; - pOut->z = pV->z * s; - pOut->w = pV->w * s; - return pOut; -} - -D3DXINLINE D3DXVECTOR4* D3DXVec4Lerp - ( D3DXVECTOR4 *pOut, CONST D3DXVECTOR4 *pV1, CONST D3DXVECTOR4 *pV2, - FLOAT s ) -{ -#ifdef D3DX_DEBUG - if(!pOut || !pV1 || !pV2) - return NULL; -#endif - - pOut->x = pV1->x + s * (pV2->x - pV1->x); - pOut->y = pV1->y + s * (pV2->y - pV1->y); - pOut->z = pV1->z + s * (pV2->z - pV1->z); - pOut->w = pV1->w + s * (pV2->w - pV1->w); - return pOut; -} - - -//-------------------------- -// 4D Matrix -//-------------------------- - -D3DXINLINE D3DXMATRIX* D3DXMatrixIdentity - ( D3DXMATRIX *pOut ) -{ -#ifdef D3DX_DEBUG - if(!pOut) - return NULL; -#endif - - pOut->m[0][1] = pOut->m[0][2] = pOut->m[0][3] = - pOut->m[1][0] = pOut->m[1][2] = pOut->m[1][3] = - pOut->m[2][0] = pOut->m[2][1] = pOut->m[2][3] = - pOut->m[3][0] = pOut->m[3][1] = pOut->m[3][2] = 0.0f; - - pOut->m[0][0] = pOut->m[1][1] = pOut->m[2][2] = pOut->m[3][3] = 1.0f; - return pOut; -} - - -D3DXINLINE BOOL D3DXMatrixIsIdentity - ( CONST D3DXMATRIX *pM ) -{ -#ifdef D3DX_DEBUG - if(!pM) - return FALSE; -#endif - - return pM->m[0][0] == 1.0f && pM->m[0][1] == 0.0f && pM->m[0][2] == 0.0f && pM->m[0][3] == 0.0f && - pM->m[1][0] == 0.0f && pM->m[1][1] == 1.0f && pM->m[1][2] == 0.0f && pM->m[1][3] == 0.0f && - pM->m[2][0] == 0.0f && pM->m[2][1] == 0.0f && pM->m[2][2] == 1.0f && pM->m[2][3] == 0.0f && - pM->m[3][0] == 0.0f && pM->m[3][1] == 0.0f && pM->m[3][2] == 0.0f && pM->m[3][3] == 1.0f; -} - - -//-------------------------- -// Quaternion -//-------------------------- - -D3DXINLINE FLOAT D3DXQuaternionLength - ( CONST D3DXQUATERNION *pQ ) -{ -#ifdef D3DX_DEBUG - if(!pQ) - return 0.0f; -#endif - -#ifdef __cplusplus - return sqrtf(pQ->x * pQ->x + pQ->y * pQ->y + pQ->z * pQ->z + pQ->w * pQ->w); -#else - return (FLOAT) sqrt(pQ->x * pQ->x + pQ->y * pQ->y + pQ->z * pQ->z + pQ->w * pQ->w); -#endif -} - -D3DXINLINE FLOAT D3DXQuaternionLengthSq - ( CONST D3DXQUATERNION *pQ ) -{ -#ifdef D3DX_DEBUG - if(!pQ) - return 0.0f; -#endif - - return pQ->x * pQ->x + pQ->y * pQ->y + pQ->z * pQ->z + pQ->w * pQ->w; -} - -D3DXINLINE FLOAT D3DXQuaternionDot - ( CONST D3DXQUATERNION *pQ1, CONST D3DXQUATERNION *pQ2 ) -{ -#ifdef D3DX_DEBUG - if(!pQ1 || !pQ2) - return 0.0f; -#endif - - return pQ1->x * pQ2->x + pQ1->y * pQ2->y + pQ1->z * pQ2->z + pQ1->w * pQ2->w; -} - - -D3DXINLINE D3DXQUATERNION* D3DXQuaternionIdentity - ( D3DXQUATERNION *pOut ) -{ -#ifdef D3DX_DEBUG - if(!pOut) - return NULL; -#endif - - pOut->x = pOut->y = pOut->z = 0.0f; - pOut->w = 1.0f; - return pOut; -} - -D3DXINLINE BOOL D3DXQuaternionIsIdentity - ( CONST D3DXQUATERNION *pQ ) -{ -#ifdef D3DX_DEBUG - if(!pQ) - return FALSE; -#endif - - return pQ->x == 0.0f && pQ->y == 0.0f && pQ->z == 0.0f && pQ->w == 1.0f; -} - - -D3DXINLINE D3DXQUATERNION* D3DXQuaternionConjugate - ( D3DXQUATERNION *pOut, CONST D3DXQUATERNION *pQ ) -{ -#ifdef D3DX_DEBUG - if(!pOut || !pQ) - return NULL; -#endif - - pOut->x = -pQ->x; - pOut->y = -pQ->y; - pOut->z = -pQ->z; - pOut->w = pQ->w; - return pOut; -} - - -//-------------------------- -// Plane -//-------------------------- - -D3DXINLINE FLOAT D3DXPlaneDot - ( CONST D3DXPLANE *pP, CONST D3DXVECTOR4 *pV) -{ -#ifdef D3DX_DEBUG - if(!pP || !pV) - return 0.0f; -#endif - - return pP->a * pV->x + pP->b * pV->y + pP->c * pV->z + pP->d * pV->w; -} - -D3DXINLINE FLOAT D3DXPlaneDotCoord - ( CONST D3DXPLANE *pP, CONST D3DXVECTOR3 *pV) -{ -#ifdef D3DX_DEBUG - if(!pP || !pV) - return 0.0f; -#endif - - return pP->a * pV->x + pP->b * pV->y + pP->c * pV->z + pP->d; -} - -D3DXINLINE FLOAT D3DXPlaneDotNormal - ( CONST D3DXPLANE *pP, CONST D3DXVECTOR3 *pV) -{ -#ifdef D3DX_DEBUG - if(!pP || !pV) - return 0.0f; -#endif - - return pP->a * pV->x + pP->b * pV->y + pP->c * pV->z; -} - -D3DXINLINE D3DXPLANE* D3DXPlaneScale - (D3DXPLANE *pOut, CONST D3DXPLANE *pP, FLOAT s) -{ -#ifdef D3DX_DEBUG - if(!pOut || !pP) - return NULL; -#endif - - pOut->a = pP->a * s; - pOut->b = pP->b * s; - pOut->c = pP->c * s; - pOut->d = pP->d * s; - return pOut; -} - - -//-------------------------- -// Color -//-------------------------- - -D3DXINLINE D3DXCOLOR* D3DXColorNegative - (D3DXCOLOR *pOut, CONST D3DXCOLOR *pC) -{ -#ifdef D3DX_DEBUG - if(!pOut || !pC) - return NULL; -#endif - - pOut->r = 1.0f - pC->r; - pOut->g = 1.0f - pC->g; - pOut->b = 1.0f - pC->b; - pOut->a = pC->a; - return pOut; -} - -D3DXINLINE D3DXCOLOR* D3DXColorAdd - (D3DXCOLOR *pOut, CONST D3DXCOLOR *pC1, CONST D3DXCOLOR *pC2) -{ -#ifdef D3DX_DEBUG - if(!pOut || !pC1 || !pC2) - return NULL; -#endif - - pOut->r = pC1->r + pC2->r; - pOut->g = pC1->g + pC2->g; - pOut->b = pC1->b + pC2->b; - pOut->a = pC1->a + pC2->a; - return pOut; -} - -D3DXINLINE D3DXCOLOR* D3DXColorSubtract - (D3DXCOLOR *pOut, CONST D3DXCOLOR *pC1, CONST D3DXCOLOR *pC2) -{ -#ifdef D3DX_DEBUG - if(!pOut || !pC1 || !pC2) - return NULL; -#endif - - pOut->r = pC1->r - pC2->r; - pOut->g = pC1->g - pC2->g; - pOut->b = pC1->b - pC2->b; - pOut->a = pC1->a - pC2->a; - return pOut; -} - -D3DXINLINE D3DXCOLOR* D3DXColorScale - (D3DXCOLOR *pOut, CONST D3DXCOLOR *pC, FLOAT s) -{ -#ifdef D3DX_DEBUG - if(!pOut || !pC) - return NULL; -#endif - - pOut->r = pC->r * s; - pOut->g = pC->g * s; - pOut->b = pC->b * s; - pOut->a = pC->a * s; - return pOut; -} - -D3DXINLINE D3DXCOLOR* D3DXColorModulate - (D3DXCOLOR *pOut, CONST D3DXCOLOR *pC1, CONST D3DXCOLOR *pC2) -{ -#ifdef D3DX_DEBUG - if(!pOut || !pC1 || !pC2) - return NULL; -#endif - - pOut->r = pC1->r * pC2->r; - pOut->g = pC1->g * pC2->g; - pOut->b = pC1->b * pC2->b; - pOut->a = pC1->a * pC2->a; - return pOut; -} - -D3DXINLINE D3DXCOLOR* D3DXColorLerp - (D3DXCOLOR *pOut, CONST D3DXCOLOR *pC1, CONST D3DXCOLOR *pC2, FLOAT s) -{ -#ifdef D3DX_DEBUG - if(!pOut || !pC1 || !pC2) - return NULL; -#endif - - pOut->r = pC1->r + s * (pC2->r - pC1->r); - pOut->g = pC1->g + s * (pC2->g - pC1->g); - pOut->b = pC1->b + s * (pC2->b - pC1->b); - pOut->a = pC1->a + s * (pC2->a - pC1->a); - return pOut; -} - - -#endif // __D3DX9MATH_INL__ - diff --git a/SDK/Include/d3dx9mesh.h b/SDK/Include/d3dx9mesh.h deleted file mode 100644 index a009d9a..0000000 --- a/SDK/Include/d3dx9mesh.h +++ /dev/null @@ -1,3007 +0,0 @@ -////////////////////////////////////////////////////////////////////////////// -// -// Copyright (C) Microsoft Corporation. All Rights Reserved. -// -// File: d3dx9mesh.h -// Content: D3DX mesh types and functions -// -////////////////////////////////////////////////////////////////////////////// - -#include "d3dx9.h" - -#ifndef __D3DX9MESH_H__ -#define __D3DX9MESH_H__ - -// {7ED943DD-52E8-40b5-A8D8-76685C406330} -DEFINE_GUID(IID_ID3DXBaseMesh, -0x7ed943dd, 0x52e8, 0x40b5, 0xa8, 0xd8, 0x76, 0x68, 0x5c, 0x40, 0x63, 0x30); - -// {4020E5C2-1403-4929-883F-E2E849FAC195} -DEFINE_GUID(IID_ID3DXMesh, -0x4020e5c2, 0x1403, 0x4929, 0x88, 0x3f, 0xe2, 0xe8, 0x49, 0xfa, 0xc1, 0x95); - -// {8875769A-D579-4088-AAEB-534D1AD84E96} -DEFINE_GUID(IID_ID3DXPMesh, -0x8875769a, 0xd579, 0x4088, 0xaa, 0xeb, 0x53, 0x4d, 0x1a, 0xd8, 0x4e, 0x96); - -// {667EA4C7-F1CD-4386-B523-7C0290B83CC5} -DEFINE_GUID(IID_ID3DXSPMesh, -0x667ea4c7, 0xf1cd, 0x4386, 0xb5, 0x23, 0x7c, 0x2, 0x90, 0xb8, 0x3c, 0xc5); - -// {11EAA540-F9A6-4d49-AE6A-E19221F70CC4} -DEFINE_GUID(IID_ID3DXSkinInfo, -0x11eaa540, 0xf9a6, 0x4d49, 0xae, 0x6a, 0xe1, 0x92, 0x21, 0xf7, 0xc, 0xc4); - -// {3CE6CC22-DBF2-44f4-894D-F9C34A337139} -DEFINE_GUID(IID_ID3DXPatchMesh, -0x3ce6cc22, 0xdbf2, 0x44f4, 0x89, 0x4d, 0xf9, 0xc3, 0x4a, 0x33, 0x71, 0x39); - -//patch mesh can be quads or tris -typedef enum _D3DXPATCHMESHTYPE { - D3DXPATCHMESH_RECT = 0x001, - D3DXPATCHMESH_TRI = 0x002, - D3DXPATCHMESH_NPATCH = 0x003, - - D3DXPATCHMESH_FORCE_DWORD = 0x7fffffff, /* force 32-bit size enum */ -} D3DXPATCHMESHTYPE; - -// Mesh options - lower 3 bytes only, upper byte used by _D3DXMESHOPT option flags -enum _D3DXMESH { - D3DXMESH_32BIT = 0x001, // If set, then use 32 bit indices, if not set use 16 bit indices. - D3DXMESH_DONOTCLIP = 0x002, // Use D3DUSAGE_DONOTCLIP for VB & IB. - D3DXMESH_POINTS = 0x004, // Use D3DUSAGE_POINTS for VB & IB. - D3DXMESH_RTPATCHES = 0x008, // Use D3DUSAGE_RTPATCHES for VB & IB. - D3DXMESH_NPATCHES = 0x4000,// Use D3DUSAGE_NPATCHES for VB & IB. - D3DXMESH_VB_SYSTEMMEM = 0x010, // Use D3DPOOL_SYSTEMMEM for VB. Overrides D3DXMESH_MANAGEDVERTEXBUFFER - D3DXMESH_VB_MANAGED = 0x020, // Use D3DPOOL_MANAGED for VB. - D3DXMESH_VB_WRITEONLY = 0x040, // Use D3DUSAGE_WRITEONLY for VB. - D3DXMESH_VB_DYNAMIC = 0x080, // Use D3DUSAGE_DYNAMIC for VB. - D3DXMESH_VB_SOFTWAREPROCESSING = 0x8000, // Use D3DUSAGE_SOFTWAREPROCESSING for VB. - D3DXMESH_IB_SYSTEMMEM = 0x100, // Use D3DPOOL_SYSTEMMEM for IB. Overrides D3DXMESH_MANAGEDINDEXBUFFER - D3DXMESH_IB_MANAGED = 0x200, // Use D3DPOOL_MANAGED for IB. - D3DXMESH_IB_WRITEONLY = 0x400, // Use D3DUSAGE_WRITEONLY for IB. - D3DXMESH_IB_DYNAMIC = 0x800, // Use D3DUSAGE_DYNAMIC for IB. - D3DXMESH_IB_SOFTWAREPROCESSING= 0x10000, // Use D3DUSAGE_SOFTWAREPROCESSING for IB. - - D3DXMESH_VB_SHARE = 0x1000, // Valid for Clone* calls only, forces cloned mesh/pmesh to share vertex buffer - - D3DXMESH_USEHWONLY = 0x2000, // Valid for ID3DXSkinInfo::ConvertToBlendedMesh - - // Helper options - D3DXMESH_SYSTEMMEM = 0x110, // D3DXMESH_VB_SYSTEMMEM | D3DXMESH_IB_SYSTEMMEM - D3DXMESH_MANAGED = 0x220, // D3DXMESH_VB_MANAGED | D3DXMESH_IB_MANAGED - D3DXMESH_WRITEONLY = 0x440, // D3DXMESH_VB_WRITEONLY | D3DXMESH_IB_WRITEONLY - D3DXMESH_DYNAMIC = 0x880, // D3DXMESH_VB_DYNAMIC | D3DXMESH_IB_DYNAMIC - D3DXMESH_SOFTWAREPROCESSING = 0x18000, // D3DXMESH_VB_SOFTWAREPROCESSING | D3DXMESH_IB_SOFTWAREPROCESSING - -}; - -//patch mesh options -enum _D3DXPATCHMESH { - D3DXPATCHMESH_DEFAULT = 000, -}; -// option field values for specifying min value in D3DXGeneratePMesh and D3DXSimplifyMesh -enum _D3DXMESHSIMP -{ - D3DXMESHSIMP_VERTEX = 0x1, - D3DXMESHSIMP_FACE = 0x2, - -}; - -typedef enum _D3DXCLEANTYPE { - D3DXCLEAN_BACKFACING = 0x00000001, - D3DXCLEAN_BOWTIES = 0x00000002, - - // Helper options - D3DXCLEAN_SKINNING = D3DXCLEAN_BACKFACING, // Bowtie cleaning modifies geometry and breaks skinning - D3DXCLEAN_OPTIMIZATION = D3DXCLEAN_BACKFACING, - D3DXCLEAN_SIMPLIFICATION= D3DXCLEAN_BACKFACING | D3DXCLEAN_BOWTIES, -} D3DXCLEANTYPE; - -enum _MAX_FVF_DECL_SIZE -{ - MAX_FVF_DECL_SIZE = MAXD3DDECLLENGTH + 1 // +1 for END -}; - -typedef enum _D3DXTANGENT -{ - D3DXTANGENT_WRAP_U = 0x01, - D3DXTANGENT_WRAP_V = 0x02, - D3DXTANGENT_WRAP_UV = 0x03, - D3DXTANGENT_DONT_NORMALIZE_PARTIALS = 0x04, - D3DXTANGENT_DONT_ORTHOGONALIZE = 0x08, - D3DXTANGENT_ORTHOGONALIZE_FROM_V = 0x010, - D3DXTANGENT_ORTHOGONALIZE_FROM_U = 0x020, - D3DXTANGENT_WEIGHT_BY_AREA = 0x040, - D3DXTANGENT_WEIGHT_EQUAL = 0x080, - D3DXTANGENT_WIND_CW = 0x0100, - D3DXTANGENT_CALCULATE_NORMALS = 0x0200, - D3DXTANGENT_GENERATE_IN_PLACE = 0x0400, -} D3DXTANGENT; - -// D3DXIMT_WRAP_U means the texture wraps in the U direction -// D3DXIMT_WRAP_V means the texture wraps in the V direction -// D3DXIMT_WRAP_UV means the texture wraps in both directions -typedef enum _D3DXIMT -{ - D3DXIMT_WRAP_U = 0x01, - D3DXIMT_WRAP_V = 0x02, - D3DXIMT_WRAP_UV = 0x03, -} D3DXIMT; - -// These options are only valid for UVAtlasCreate and UVAtlasPartition, we may add more for UVAtlasPack if necessary -// D3DXUVATLAS_DEFAULT - Meshes with more than 25k faces go through fast, meshes with fewer than 25k faces go through quality -// D3DXUVATLAS_GEODESIC_FAST - Uses approximations to improve charting speed at the cost of added stretch or more charts. -// D3DXUVATLAS_GEODESIC_QUALITY - Provides better quality charts, but requires more time and memory than fast. -typedef enum _D3DXUVATLAS -{ - D3DXUVATLAS_DEFAULT = 0x00, - D3DXUVATLAS_GEODESIC_FAST = 0x01, - D3DXUVATLAS_GEODESIC_QUALITY = 0x02, -} D3DXUVATLAS; - -typedef struct ID3DXBaseMesh *LPD3DXBASEMESH; -typedef struct ID3DXMesh *LPD3DXMESH; -typedef struct ID3DXPMesh *LPD3DXPMESH; -typedef struct ID3DXSPMesh *LPD3DXSPMESH; -typedef struct ID3DXSkinInfo *LPD3DXSKININFO; -typedef struct ID3DXPatchMesh *LPD3DXPATCHMESH; -typedef interface ID3DXTextureGutterHelper *LPD3DXTEXTUREGUTTERHELPER; -typedef interface ID3DXPRTBuffer *LPD3DXPRTBUFFER; - - -typedef struct _D3DXATTRIBUTERANGE -{ - DWORD AttribId; - DWORD FaceStart; - DWORD FaceCount; - DWORD VertexStart; - DWORD VertexCount; -} D3DXATTRIBUTERANGE; - -typedef D3DXATTRIBUTERANGE* LPD3DXATTRIBUTERANGE; - -typedef struct _D3DXMATERIAL -{ - D3DMATERIAL9 MatD3D; - LPSTR pTextureFilename; -} D3DXMATERIAL; -typedef D3DXMATERIAL *LPD3DXMATERIAL; - -typedef enum _D3DXEFFECTDEFAULTTYPE -{ - D3DXEDT_STRING = 0x1, // pValue points to a null terminated ASCII string - D3DXEDT_FLOATS = 0x2, // pValue points to an array of floats - number of floats is NumBytes / sizeof(float) - D3DXEDT_DWORD = 0x3, // pValue points to a DWORD - - D3DXEDT_FORCEDWORD = 0x7fffffff -} D3DXEFFECTDEFAULTTYPE; - -typedef struct _D3DXEFFECTDEFAULT -{ - LPSTR pParamName; - D3DXEFFECTDEFAULTTYPE Type; // type of the data pointed to by pValue - DWORD NumBytes; // size in bytes of the data pointed to by pValue - LPVOID pValue; // data for the default of the effect -} D3DXEFFECTDEFAULT, *LPD3DXEFFECTDEFAULT; - -typedef struct _D3DXEFFECTINSTANCE -{ - LPSTR pEffectFilename; - DWORD NumDefaults; - LPD3DXEFFECTDEFAULT pDefaults; -} D3DXEFFECTINSTANCE, *LPD3DXEFFECTINSTANCE; - -typedef struct _D3DXATTRIBUTEWEIGHTS -{ - FLOAT Position; - FLOAT Boundary; - FLOAT Normal; - FLOAT Diffuse; - FLOAT Specular; - FLOAT Texcoord[8]; - FLOAT Tangent; - FLOAT Binormal; -} D3DXATTRIBUTEWEIGHTS, *LPD3DXATTRIBUTEWEIGHTS; - -enum _D3DXWELDEPSILONSFLAGS -{ - D3DXWELDEPSILONS_WELDALL = 0x1, // weld all vertices marked by adjacency as being overlapping - - D3DXWELDEPSILONS_WELDPARTIALMATCHES = 0x2, // if a given vertex component is within epsilon, modify partial matched - // vertices so that both components identical AND if all components "equal" - // remove one of the vertices - D3DXWELDEPSILONS_DONOTREMOVEVERTICES = 0x4, // instructs weld to only allow modifications to vertices and not removal - // ONLY valid if D3DXWELDEPSILONS_WELDPARTIALMATCHES is set - // useful to modify vertices to be equal, but not allow vertices to be removed - - D3DXWELDEPSILONS_DONOTSPLIT = 0x8, // instructs weld to specify the D3DXMESHOPT_DONOTSPLIT flag when doing an Optimize(ATTR_SORT) - // if this flag is not set, all vertices that are in separate attribute groups - // will remain split and not welded. Setting this flag can slow down software vertex processing - -}; - -typedef struct _D3DXWELDEPSILONS -{ - FLOAT Position; // NOTE: This does NOT replace the epsilon in GenerateAdjacency - // in general, it should be the same value or greater than the one passed to GeneratedAdjacency - FLOAT BlendWeights; - FLOAT Normal; - FLOAT PSize; - FLOAT Specular; - FLOAT Diffuse; - FLOAT Texcoord[8]; - FLOAT Tangent; - FLOAT Binormal; - FLOAT TessFactor; -} D3DXWELDEPSILONS; - -typedef D3DXWELDEPSILONS* LPD3DXWELDEPSILONS; - - -#undef INTERFACE -#define INTERFACE ID3DXBaseMesh - -DECLARE_INTERFACE_(ID3DXBaseMesh, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // ID3DXBaseMesh - STDMETHOD(DrawSubset)(THIS_ DWORD AttribId) PURE; - STDMETHOD_(DWORD, GetNumFaces)(THIS) PURE; - STDMETHOD_(DWORD, GetNumVertices)(THIS) PURE; - STDMETHOD_(DWORD, GetFVF)(THIS) PURE; - STDMETHOD(GetDeclaration)(THIS_ D3DVERTEXELEMENT9 Declaration[MAX_FVF_DECL_SIZE]) PURE; - STDMETHOD_(DWORD, GetNumBytesPerVertex)(THIS) PURE; - STDMETHOD_(DWORD, GetOptions)(THIS) PURE; - STDMETHOD(GetDevice)(THIS_ LPDIRECT3DDEVICE9* ppDevice) PURE; - STDMETHOD(CloneMeshFVF)(THIS_ DWORD Options, - DWORD FVF, LPDIRECT3DDEVICE9 pD3DDevice, LPD3DXMESH* ppCloneMesh) PURE; - STDMETHOD(CloneMesh)(THIS_ DWORD Options, - CONST D3DVERTEXELEMENT9 *pDeclaration, LPDIRECT3DDEVICE9 pD3DDevice, LPD3DXMESH* ppCloneMesh) PURE; - STDMETHOD(GetVertexBuffer)(THIS_ LPDIRECT3DVERTEXBUFFER9* ppVB) PURE; - STDMETHOD(GetIndexBuffer)(THIS_ LPDIRECT3DINDEXBUFFER9* ppIB) PURE; - STDMETHOD(LockVertexBuffer)(THIS_ DWORD Flags, LPVOID *ppData) PURE; - STDMETHOD(UnlockVertexBuffer)(THIS) PURE; - STDMETHOD(LockIndexBuffer)(THIS_ DWORD Flags, LPVOID *ppData) PURE; - STDMETHOD(UnlockIndexBuffer)(THIS) PURE; - STDMETHOD(GetAttributeTable)( - THIS_ D3DXATTRIBUTERANGE *pAttribTable, DWORD* pAttribTableSize) PURE; - - STDMETHOD(ConvertPointRepsToAdjacency)(THIS_ CONST DWORD* pPRep, DWORD* pAdjacency) PURE; - STDMETHOD(ConvertAdjacencyToPointReps)(THIS_ CONST DWORD* pAdjacency, DWORD* pPRep) PURE; - STDMETHOD(GenerateAdjacency)(THIS_ FLOAT Epsilon, DWORD* pAdjacency) PURE; - - STDMETHOD(UpdateSemantics)(THIS_ D3DVERTEXELEMENT9 Declaration[MAX_FVF_DECL_SIZE]) PURE; -}; - - -#undef INTERFACE -#define INTERFACE ID3DXMesh - -DECLARE_INTERFACE_(ID3DXMesh, ID3DXBaseMesh) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // ID3DXBaseMesh - STDMETHOD(DrawSubset)(THIS_ DWORD AttribId) PURE; - STDMETHOD_(DWORD, GetNumFaces)(THIS) PURE; - STDMETHOD_(DWORD, GetNumVertices)(THIS) PURE; - STDMETHOD_(DWORD, GetFVF)(THIS) PURE; - STDMETHOD(GetDeclaration)(THIS_ D3DVERTEXELEMENT9 Declaration[MAX_FVF_DECL_SIZE]) PURE; - STDMETHOD_(DWORD, GetNumBytesPerVertex)(THIS) PURE; - STDMETHOD_(DWORD, GetOptions)(THIS) PURE; - STDMETHOD(GetDevice)(THIS_ LPDIRECT3DDEVICE9* ppDevice) PURE; - STDMETHOD(CloneMeshFVF)(THIS_ DWORD Options, - DWORD FVF, LPDIRECT3DDEVICE9 pD3DDevice, LPD3DXMESH* ppCloneMesh) PURE; - STDMETHOD(CloneMesh)(THIS_ DWORD Options, - CONST D3DVERTEXELEMENT9 *pDeclaration, LPDIRECT3DDEVICE9 pD3DDevice, LPD3DXMESH* ppCloneMesh) PURE; - STDMETHOD(GetVertexBuffer)(THIS_ LPDIRECT3DVERTEXBUFFER9* ppVB) PURE; - STDMETHOD(GetIndexBuffer)(THIS_ LPDIRECT3DINDEXBUFFER9* ppIB) PURE; - STDMETHOD(LockVertexBuffer)(THIS_ DWORD Flags, LPVOID *ppData) PURE; - STDMETHOD(UnlockVertexBuffer)(THIS) PURE; - STDMETHOD(LockIndexBuffer)(THIS_ DWORD Flags, LPVOID *ppData) PURE; - STDMETHOD(UnlockIndexBuffer)(THIS) PURE; - STDMETHOD(GetAttributeTable)( - THIS_ D3DXATTRIBUTERANGE *pAttribTable, DWORD* pAttribTableSize) PURE; - - STDMETHOD(ConvertPointRepsToAdjacency)(THIS_ CONST DWORD* pPRep, DWORD* pAdjacency) PURE; - STDMETHOD(ConvertAdjacencyToPointReps)(THIS_ CONST DWORD* pAdjacency, DWORD* pPRep) PURE; - STDMETHOD(GenerateAdjacency)(THIS_ FLOAT Epsilon, DWORD* pAdjacency) PURE; - - STDMETHOD(UpdateSemantics)(THIS_ D3DVERTEXELEMENT9 Declaration[MAX_FVF_DECL_SIZE]) PURE; - - // ID3DXMesh - STDMETHOD(LockAttributeBuffer)(THIS_ DWORD Flags, DWORD** ppData) PURE; - STDMETHOD(UnlockAttributeBuffer)(THIS) PURE; - STDMETHOD(Optimize)(THIS_ DWORD Flags, CONST DWORD* pAdjacencyIn, DWORD* pAdjacencyOut, - DWORD* pFaceRemap, LPD3DXBUFFER *ppVertexRemap, - LPD3DXMESH* ppOptMesh) PURE; - STDMETHOD(OptimizeInplace)(THIS_ DWORD Flags, CONST DWORD* pAdjacencyIn, DWORD* pAdjacencyOut, - DWORD* pFaceRemap, LPD3DXBUFFER *ppVertexRemap) PURE; - STDMETHOD(SetAttributeTable)(THIS_ CONST D3DXATTRIBUTERANGE *pAttribTable, DWORD cAttribTableSize) PURE; -}; - - -#undef INTERFACE -#define INTERFACE ID3DXPMesh - -DECLARE_INTERFACE_(ID3DXPMesh, ID3DXBaseMesh) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // ID3DXBaseMesh - STDMETHOD(DrawSubset)(THIS_ DWORD AttribId) PURE; - STDMETHOD_(DWORD, GetNumFaces)(THIS) PURE; - STDMETHOD_(DWORD, GetNumVertices)(THIS) PURE; - STDMETHOD_(DWORD, GetFVF)(THIS) PURE; - STDMETHOD(GetDeclaration)(THIS_ D3DVERTEXELEMENT9 Declaration[MAX_FVF_DECL_SIZE]) PURE; - STDMETHOD_(DWORD, GetNumBytesPerVertex)(THIS) PURE; - STDMETHOD_(DWORD, GetOptions)(THIS) PURE; - STDMETHOD(GetDevice)(THIS_ LPDIRECT3DDEVICE9* ppDevice) PURE; - STDMETHOD(CloneMeshFVF)(THIS_ DWORD Options, - DWORD FVF, LPDIRECT3DDEVICE9 pD3DDevice, LPD3DXMESH* ppCloneMesh) PURE; - STDMETHOD(CloneMesh)(THIS_ DWORD Options, - CONST D3DVERTEXELEMENT9 *pDeclaration, LPDIRECT3DDEVICE9 pD3DDevice, LPD3DXMESH* ppCloneMesh) PURE; - STDMETHOD(GetVertexBuffer)(THIS_ LPDIRECT3DVERTEXBUFFER9* ppVB) PURE; - STDMETHOD(GetIndexBuffer)(THIS_ LPDIRECT3DINDEXBUFFER9* ppIB) PURE; - STDMETHOD(LockVertexBuffer)(THIS_ DWORD Flags, LPVOID *ppData) PURE; - STDMETHOD(UnlockVertexBuffer)(THIS) PURE; - STDMETHOD(LockIndexBuffer)(THIS_ DWORD Flags, LPVOID *ppData) PURE; - STDMETHOD(UnlockIndexBuffer)(THIS) PURE; - STDMETHOD(GetAttributeTable)( - THIS_ D3DXATTRIBUTERANGE *pAttribTable, DWORD* pAttribTableSize) PURE; - - STDMETHOD(ConvertPointRepsToAdjacency)(THIS_ CONST DWORD* pPRep, DWORD* pAdjacency) PURE; - STDMETHOD(ConvertAdjacencyToPointReps)(THIS_ CONST DWORD* pAdjacency, DWORD* pPRep) PURE; - STDMETHOD(GenerateAdjacency)(THIS_ FLOAT Epsilon, DWORD* pAdjacency) PURE; - - STDMETHOD(UpdateSemantics)(THIS_ D3DVERTEXELEMENT9 Declaration[MAX_FVF_DECL_SIZE]) PURE; - - // ID3DXPMesh - STDMETHOD(ClonePMeshFVF)(THIS_ DWORD Options, - DWORD FVF, LPDIRECT3DDEVICE9 pD3DDevice, LPD3DXPMESH* ppCloneMesh) PURE; - STDMETHOD(ClonePMesh)(THIS_ DWORD Options, - CONST D3DVERTEXELEMENT9 *pDeclaration, LPDIRECT3DDEVICE9 pD3DDevice, LPD3DXPMESH* ppCloneMesh) PURE; - STDMETHOD(SetNumFaces)(THIS_ DWORD Faces) PURE; - STDMETHOD(SetNumVertices)(THIS_ DWORD Vertices) PURE; - STDMETHOD_(DWORD, GetMaxFaces)(THIS) PURE; - STDMETHOD_(DWORD, GetMinFaces)(THIS) PURE; - STDMETHOD_(DWORD, GetMaxVertices)(THIS) PURE; - STDMETHOD_(DWORD, GetMinVertices)(THIS) PURE; - STDMETHOD(Save)(THIS_ IStream *pStream, CONST D3DXMATERIAL* pMaterials, CONST D3DXEFFECTINSTANCE* pEffectInstances, DWORD NumMaterials) PURE; - - STDMETHOD(Optimize)(THIS_ DWORD Flags, DWORD* pAdjacencyOut, - DWORD* pFaceRemap, LPD3DXBUFFER *ppVertexRemap, - LPD3DXMESH* ppOptMesh) PURE; - - STDMETHOD(OptimizeBaseLOD)(THIS_ DWORD Flags, DWORD* pFaceRemap) PURE; - STDMETHOD(TrimByFaces)(THIS_ DWORD NewFacesMin, DWORD NewFacesMax, DWORD *rgiFaceRemap, DWORD *rgiVertRemap) PURE; - STDMETHOD(TrimByVertices)(THIS_ DWORD NewVerticesMin, DWORD NewVerticesMax, DWORD *rgiFaceRemap, DWORD *rgiVertRemap) PURE; - - STDMETHOD(GetAdjacency)(THIS_ DWORD* pAdjacency) PURE; - - // Used to generate the immediate "ancestor" for each vertex when it is removed by a vsplit. Allows generation of geomorphs - // Vertex buffer must be equal to or greater than the maximum number of vertices in the pmesh - STDMETHOD(GenerateVertexHistory)(THIS_ DWORD* pVertexHistory) PURE; -}; - - -#undef INTERFACE -#define INTERFACE ID3DXSPMesh - -DECLARE_INTERFACE_(ID3DXSPMesh, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // ID3DXSPMesh - STDMETHOD_(DWORD, GetNumFaces)(THIS) PURE; - STDMETHOD_(DWORD, GetNumVertices)(THIS) PURE; - STDMETHOD_(DWORD, GetFVF)(THIS) PURE; - STDMETHOD(GetDeclaration)(THIS_ D3DVERTEXELEMENT9 Declaration[MAX_FVF_DECL_SIZE]) PURE; - STDMETHOD_(DWORD, GetOptions)(THIS) PURE; - STDMETHOD(GetDevice)(THIS_ LPDIRECT3DDEVICE9* ppDevice) PURE; - STDMETHOD(CloneMeshFVF)(THIS_ DWORD Options, - DWORD FVF, LPDIRECT3DDEVICE9 pD3DDevice, DWORD *pAdjacencyOut, DWORD *pVertexRemapOut, LPD3DXMESH* ppCloneMesh) PURE; - STDMETHOD(CloneMesh)(THIS_ DWORD Options, - CONST D3DVERTEXELEMENT9 *pDeclaration, LPDIRECT3DDEVICE9 pD3DDevice, DWORD *pAdjacencyOut, DWORD *pVertexRemapOut, LPD3DXMESH* ppCloneMesh) PURE; - STDMETHOD(ClonePMeshFVF)(THIS_ DWORD Options, - DWORD FVF, LPDIRECT3DDEVICE9 pD3DDevice, DWORD *pVertexRemapOut, FLOAT *pErrorsByFace, LPD3DXPMESH* ppCloneMesh) PURE; - STDMETHOD(ClonePMesh)(THIS_ DWORD Options, - CONST D3DVERTEXELEMENT9 *pDeclaration, LPDIRECT3DDEVICE9 pD3DDevice, DWORD *pVertexRemapOut, FLOAT *pErrorsbyFace, LPD3DXPMESH* ppCloneMesh) PURE; - STDMETHOD(ReduceFaces)(THIS_ DWORD Faces) PURE; - STDMETHOD(ReduceVertices)(THIS_ DWORD Vertices) PURE; - STDMETHOD_(DWORD, GetMaxFaces)(THIS) PURE; - STDMETHOD_(DWORD, GetMaxVertices)(THIS) PURE; - STDMETHOD(GetVertexAttributeWeights)(THIS_ LPD3DXATTRIBUTEWEIGHTS pVertexAttributeWeights) PURE; - STDMETHOD(GetVertexWeights)(THIS_ FLOAT *pVertexWeights) PURE; -}; - -#define UNUSED16 (0xffff) -#define UNUSED32 (0xffffffff) - -// ID3DXMesh::Optimize options - upper byte only, lower 3 bytes used from _D3DXMESH option flags -enum _D3DXMESHOPT { - D3DXMESHOPT_COMPACT = 0x01000000, - D3DXMESHOPT_ATTRSORT = 0x02000000, - D3DXMESHOPT_VERTEXCACHE = 0x04000000, - D3DXMESHOPT_STRIPREORDER = 0x08000000, - D3DXMESHOPT_IGNOREVERTS = 0x10000000, // optimize faces only, don't touch vertices - D3DXMESHOPT_DONOTSPLIT = 0x20000000, // do not split vertices shared between attribute groups when attribute sorting - D3DXMESHOPT_DEVICEINDEPENDENT = 0x00400000, // Only affects VCache. uses a static known good cache size for all cards - - // D3DXMESHOPT_SHAREVB has been removed, please use D3DXMESH_VB_SHARE instead - -}; - -// Subset of the mesh that has the same attribute and bone combination. -// This subset can be rendered in a single draw call -typedef struct _D3DXBONECOMBINATION -{ - DWORD AttribId; - DWORD FaceStart; - DWORD FaceCount; - DWORD VertexStart; - DWORD VertexCount; - DWORD* BoneId; -} D3DXBONECOMBINATION, *LPD3DXBONECOMBINATION; - -// The following types of patch combinations are supported: -// Patch type Basis Degree -// Rect Bezier 2,3,5 -// Rect B-Spline 2,3,5 -// Rect Catmull-Rom 3 -// Tri Bezier 2,3,5 -// N-Patch N/A 3 - -typedef struct _D3DXPATCHINFO -{ - D3DXPATCHMESHTYPE PatchType; - D3DDEGREETYPE Degree; - D3DBASISTYPE Basis; -} D3DXPATCHINFO, *LPD3DXPATCHINFO; - -#undef INTERFACE -#define INTERFACE ID3DXPatchMesh - -DECLARE_INTERFACE_(ID3DXPatchMesh, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // ID3DXPatchMesh - - // Return creation parameters - STDMETHOD_(DWORD, GetNumPatches)(THIS) PURE; - STDMETHOD_(DWORD, GetNumVertices)(THIS) PURE; - STDMETHOD(GetDeclaration)(THIS_ D3DVERTEXELEMENT9 Declaration[MAX_FVF_DECL_SIZE]) PURE; - STDMETHOD_(DWORD, GetControlVerticesPerPatch)(THIS) PURE; - STDMETHOD_(DWORD, GetOptions)(THIS) PURE; - STDMETHOD(GetDevice)(THIS_ LPDIRECT3DDEVICE9 *ppDevice) PURE; - STDMETHOD(GetPatchInfo)(THIS_ LPD3DXPATCHINFO PatchInfo) PURE; - - // Control mesh access - STDMETHOD(GetVertexBuffer)(THIS_ LPDIRECT3DVERTEXBUFFER9* ppVB) PURE; - STDMETHOD(GetIndexBuffer)(THIS_ LPDIRECT3DINDEXBUFFER9* ppIB) PURE; - STDMETHOD(LockVertexBuffer)(THIS_ DWORD flags, LPVOID *ppData) PURE; - STDMETHOD(UnlockVertexBuffer)(THIS) PURE; - STDMETHOD(LockIndexBuffer)(THIS_ DWORD flags, LPVOID *ppData) PURE; - STDMETHOD(UnlockIndexBuffer)(THIS) PURE; - STDMETHOD(LockAttributeBuffer)(THIS_ DWORD flags, DWORD** ppData) PURE; - STDMETHOD(UnlockAttributeBuffer)(THIS) PURE; - - // This function returns the size of the tessellated mesh given a tessellation level. - // This assumes uniform tessellation. For adaptive tessellation the Adaptive parameter must - // be set to TRUE and TessellationLevel should be the max tessellation. - // This will result in the max mesh size necessary for adaptive tessellation. - STDMETHOD(GetTessSize)(THIS_ FLOAT fTessLevel,DWORD Adaptive, DWORD *NumTriangles,DWORD *NumVertices) PURE; - - //GenerateAdjacency determines which patches are adjacent with provided tolerance - //this information is used internally to optimize tessellation - STDMETHOD(GenerateAdjacency)(THIS_ FLOAT Tolerance) PURE; - - //CloneMesh Creates a new patchmesh with the specified decl, and converts the vertex buffer - //to the new decl. Entries in the new decl which are new are set to 0. If the current mesh - //has adjacency, the new mesh will also have adjacency - STDMETHOD(CloneMesh)(THIS_ DWORD Options, CONST D3DVERTEXELEMENT9 *pDecl, LPD3DXPATCHMESH *pMesh) PURE; - - // Optimizes the patchmesh for efficient tessellation. This function is designed - // to perform one time optimization for patch meshes that need to be tessellated - // repeatedly by calling the Tessellate() method. The optimization performed is - // independent of the actual tessellation level used. - // Currently Flags is unused. - // If vertices are changed, Optimize must be called again - STDMETHOD(Optimize)(THIS_ DWORD flags) PURE; - - //gets and sets displacement parameters - //displacement maps can only be 2D textures MIP-MAPPING is ignored for non adapative tessellation - STDMETHOD(SetDisplaceParam)(THIS_ LPDIRECT3DBASETEXTURE9 Texture, - D3DTEXTUREFILTERTYPE MinFilter, - D3DTEXTUREFILTERTYPE MagFilter, - D3DTEXTUREFILTERTYPE MipFilter, - D3DTEXTUREADDRESS Wrap, - DWORD dwLODBias) PURE; - - STDMETHOD(GetDisplaceParam)(THIS_ LPDIRECT3DBASETEXTURE9 *Texture, - D3DTEXTUREFILTERTYPE *MinFilter, - D3DTEXTUREFILTERTYPE *MagFilter, - D3DTEXTUREFILTERTYPE *MipFilter, - D3DTEXTUREADDRESS *Wrap, - DWORD *dwLODBias) PURE; - - // Performs the uniform tessellation based on the tessellation level. - // This function will perform more efficiently if the patch mesh has been optimized using the Optimize() call. - STDMETHOD(Tessellate)(THIS_ FLOAT fTessLevel,LPD3DXMESH pMesh) PURE; - - // Performs adaptive tessellation based on the Z based adaptive tessellation criterion. - // pTrans specifies a 4D vector that is dotted with the vertices to get the per vertex - // adaptive tessellation amount. Each edge is tessellated to the average of the criterion - // at the 2 vertices it connects. - // MaxTessLevel specifies the upper limit for adaptive tesselation. - // This function will perform more efficiently if the patch mesh has been optimized using the Optimize() call. - STDMETHOD(TessellateAdaptive)(THIS_ - CONST D3DXVECTOR4 *pTrans, - DWORD dwMaxTessLevel, - DWORD dwMinTessLevel, - LPD3DXMESH pMesh) PURE; - -}; - -#undef INTERFACE -#define INTERFACE ID3DXSkinInfo - -DECLARE_INTERFACE_(ID3DXSkinInfo, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // Specify the which vertices do each bones influence and by how much - STDMETHOD(SetBoneInfluence)(THIS_ DWORD bone, DWORD numInfluences, CONST DWORD* vertices, CONST FLOAT* weights) PURE; - STDMETHOD(SetBoneVertexInfluence)(THIS_ DWORD boneNum, DWORD influenceNum, float weight) PURE; - STDMETHOD_(DWORD, GetNumBoneInfluences)(THIS_ DWORD bone) PURE; - STDMETHOD(GetBoneInfluence)(THIS_ DWORD bone, DWORD* vertices, FLOAT* weights) PURE; - STDMETHOD(GetBoneVertexInfluence)(THIS_ DWORD boneNum, DWORD influenceNum, float *pWeight, DWORD *pVertexNum) PURE; - STDMETHOD(GetMaxVertexInfluences)(THIS_ DWORD* maxVertexInfluences) PURE; - STDMETHOD_(DWORD, GetNumBones)(THIS) PURE; - STDMETHOD(FindBoneVertexInfluenceIndex)(THIS_ DWORD boneNum, DWORD vertexNum, DWORD *pInfluenceIndex) PURE; - - // This gets the max face influences based on a triangle mesh with the specified index buffer - STDMETHOD(GetMaxFaceInfluences)(THIS_ LPDIRECT3DINDEXBUFFER9 pIB, DWORD NumFaces, DWORD* maxFaceInfluences) PURE; - - // Set min bone influence. Bone influences that are smaller than this are ignored - STDMETHOD(SetMinBoneInfluence)(THIS_ FLOAT MinInfl) PURE; - // Get min bone influence. - STDMETHOD_(FLOAT, GetMinBoneInfluence)(THIS) PURE; - - // Bone names are returned by D3DXLoadSkinMeshFromXof. They are not used by any other method of this object - STDMETHOD(SetBoneName)(THIS_ DWORD Bone, LPCSTR pName) PURE; // pName is copied to an internal string buffer - STDMETHOD_(LPCSTR, GetBoneName)(THIS_ DWORD Bone) PURE; // A pointer to an internal string buffer is returned. Do not free this. - - // Bone offset matrices are returned by D3DXLoadSkinMeshFromXof. They are not used by any other method of this object - STDMETHOD(SetBoneOffsetMatrix)(THIS_ DWORD Bone, CONST D3DXMATRIX *pBoneTransform) PURE; // pBoneTransform is copied to an internal buffer - STDMETHOD_(LPD3DXMATRIX, GetBoneOffsetMatrix)(THIS_ DWORD Bone) PURE; // A pointer to an internal matrix is returned. Do not free this. - - // Clone a skin info object - STDMETHOD(Clone)(THIS_ LPD3DXSKININFO* ppSkinInfo) PURE; - - // Update bone influence information to match vertices after they are reordered. This should be called - // if the target vertex buffer has been reordered externally. - STDMETHOD(Remap)(THIS_ DWORD NumVertices, DWORD* pVertexRemap) PURE; - - // These methods enable the modification of the vertex layout of the vertices that will be skinned - STDMETHOD(SetFVF)(THIS_ DWORD FVF) PURE; - STDMETHOD(SetDeclaration)(THIS_ CONST D3DVERTEXELEMENT9 *pDeclaration) PURE; - STDMETHOD_(DWORD, GetFVF)(THIS) PURE; - STDMETHOD(GetDeclaration)(THIS_ D3DVERTEXELEMENT9 Declaration[MAX_FVF_DECL_SIZE]) PURE; - - // Apply SW skinning based on current pose matrices to the target vertices. - STDMETHOD(UpdateSkinnedMesh)(THIS_ - CONST D3DXMATRIX* pBoneTransforms, - CONST D3DXMATRIX* pBoneInvTransposeTransforms, - LPCVOID pVerticesSrc, - PVOID pVerticesDst) PURE; - - // Takes a mesh and returns a new mesh with per vertex blend weights and a bone combination - // table that describes which bones affect which subsets of the mesh - STDMETHOD(ConvertToBlendedMesh)(THIS_ - LPD3DXMESH pMesh, - DWORD Options, - CONST DWORD *pAdjacencyIn, - LPDWORD pAdjacencyOut, - DWORD* pFaceRemap, - LPD3DXBUFFER *ppVertexRemap, - DWORD* pMaxFaceInfl, - DWORD* pNumBoneCombinations, - LPD3DXBUFFER* ppBoneCombinationTable, - LPD3DXMESH* ppMesh) PURE; - - // Takes a mesh and returns a new mesh with per vertex blend weights and indices - // and a bone combination table that describes which bones palettes affect which subsets of the mesh - STDMETHOD(ConvertToIndexedBlendedMesh)(THIS_ - LPD3DXMESH pMesh, - DWORD Options, - DWORD paletteSize, - CONST DWORD *pAdjacencyIn, - LPDWORD pAdjacencyOut, - DWORD* pFaceRemap, - LPD3DXBUFFER *ppVertexRemap, - DWORD* pMaxVertexInfl, - DWORD* pNumBoneCombinations, - LPD3DXBUFFER* ppBoneCombinationTable, - LPD3DXMESH* ppMesh) PURE; -}; - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - - -HRESULT WINAPI - D3DXCreateMesh( - DWORD NumFaces, - DWORD NumVertices, - DWORD Options, - CONST D3DVERTEXELEMENT9 *pDeclaration, - LPDIRECT3DDEVICE9 pD3DDevice, - LPD3DXMESH* ppMesh); - -HRESULT WINAPI - D3DXCreateMeshFVF( - DWORD NumFaces, - DWORD NumVertices, - DWORD Options, - DWORD FVF, - LPDIRECT3DDEVICE9 pD3DDevice, - LPD3DXMESH* ppMesh); - -HRESULT WINAPI - D3DXCreateSPMesh( - LPD3DXMESH pMesh, - CONST DWORD* pAdjacency, - CONST D3DXATTRIBUTEWEIGHTS *pVertexAttributeWeights, - CONST FLOAT *pVertexWeights, - LPD3DXSPMESH* ppSMesh); - -// clean a mesh up for simplification, try to make manifold -HRESULT WINAPI - D3DXCleanMesh( - D3DXCLEANTYPE CleanType, - LPD3DXMESH pMeshIn, - CONST DWORD* pAdjacencyIn, - LPD3DXMESH* ppMeshOut, - DWORD* pAdjacencyOut, - LPD3DXBUFFER* ppErrorsAndWarnings); - -HRESULT WINAPI - D3DXValidMesh( - LPD3DXMESH pMeshIn, - CONST DWORD* pAdjacency, - LPD3DXBUFFER* ppErrorsAndWarnings); - -HRESULT WINAPI - D3DXGeneratePMesh( - LPD3DXMESH pMesh, - CONST DWORD* pAdjacency, - CONST D3DXATTRIBUTEWEIGHTS *pVertexAttributeWeights, - CONST FLOAT *pVertexWeights, - DWORD MinValue, - DWORD Options, - LPD3DXPMESH* ppPMesh); - -HRESULT WINAPI - D3DXSimplifyMesh( - LPD3DXMESH pMesh, - CONST DWORD* pAdjacency, - CONST D3DXATTRIBUTEWEIGHTS *pVertexAttributeWeights, - CONST FLOAT *pVertexWeights, - DWORD MinValue, - DWORD Options, - LPD3DXMESH* ppMesh); - -HRESULT WINAPI - D3DXComputeBoundingSphere( - CONST D3DXVECTOR3 *pFirstPosition, // pointer to first position - DWORD NumVertices, - DWORD dwStride, // count in bytes to subsequent position vectors - D3DXVECTOR3 *pCenter, - FLOAT *pRadius); - -HRESULT WINAPI - D3DXComputeBoundingBox( - CONST D3DXVECTOR3 *pFirstPosition, // pointer to first position - DWORD NumVertices, - DWORD dwStride, // count in bytes to subsequent position vectors - D3DXVECTOR3 *pMin, - D3DXVECTOR3 *pMax); - -HRESULT WINAPI - D3DXComputeNormals( - LPD3DXBASEMESH pMesh, - CONST DWORD *pAdjacency); - -HRESULT WINAPI - D3DXCreateBuffer( - DWORD NumBytes, - LPD3DXBUFFER *ppBuffer); - - -HRESULT WINAPI - D3DXLoadMeshFromXA( - LPCSTR pFilename, - DWORD Options, - LPDIRECT3DDEVICE9 pD3DDevice, - LPD3DXBUFFER *ppAdjacency, - LPD3DXBUFFER *ppMaterials, - LPD3DXBUFFER *ppEffectInstances, - DWORD *pNumMaterials, - LPD3DXMESH *ppMesh); - -HRESULT WINAPI - D3DXLoadMeshFromXW( - LPCWSTR pFilename, - DWORD Options, - LPDIRECT3DDEVICE9 pD3DDevice, - LPD3DXBUFFER *ppAdjacency, - LPD3DXBUFFER *ppMaterials, - LPD3DXBUFFER *ppEffectInstances, - DWORD *pNumMaterials, - LPD3DXMESH *ppMesh); - -#ifdef UNICODE -#define D3DXLoadMeshFromX D3DXLoadMeshFromXW -#else -#define D3DXLoadMeshFromX D3DXLoadMeshFromXA -#endif - -HRESULT WINAPI - D3DXLoadMeshFromXInMemory( - LPCVOID Memory, - DWORD SizeOfMemory, - DWORD Options, - LPDIRECT3DDEVICE9 pD3DDevice, - LPD3DXBUFFER *ppAdjacency, - LPD3DXBUFFER *ppMaterials, - LPD3DXBUFFER *ppEffectInstances, - DWORD *pNumMaterials, - LPD3DXMESH *ppMesh); - -HRESULT WINAPI - D3DXLoadMeshFromXResource( - HMODULE Module, - LPCSTR Name, - LPCSTR Type, - DWORD Options, - LPDIRECT3DDEVICE9 pD3DDevice, - LPD3DXBUFFER *ppAdjacency, - LPD3DXBUFFER *ppMaterials, - LPD3DXBUFFER *ppEffectInstances, - DWORD *pNumMaterials, - LPD3DXMESH *ppMesh); - -HRESULT WINAPI - D3DXSaveMeshToXA( - LPCSTR pFilename, - LPD3DXMESH pMesh, - CONST DWORD* pAdjacency, - CONST D3DXMATERIAL* pMaterials, - CONST D3DXEFFECTINSTANCE* pEffectInstances, - DWORD NumMaterials, - DWORD Format - ); - -HRESULT WINAPI - D3DXSaveMeshToXW( - LPCWSTR pFilename, - LPD3DXMESH pMesh, - CONST DWORD* pAdjacency, - CONST D3DXMATERIAL* pMaterials, - CONST D3DXEFFECTINSTANCE* pEffectInstances, - DWORD NumMaterials, - DWORD Format - ); - -#ifdef UNICODE -#define D3DXSaveMeshToX D3DXSaveMeshToXW -#else -#define D3DXSaveMeshToX D3DXSaveMeshToXA -#endif - - -HRESULT WINAPI - D3DXCreatePMeshFromStream( - IStream *pStream, - DWORD Options, - LPDIRECT3DDEVICE9 pD3DDevice, - LPD3DXBUFFER *ppMaterials, - LPD3DXBUFFER *ppEffectInstances, - DWORD* pNumMaterials, - LPD3DXPMESH *ppPMesh); - -// Creates a skin info object based on the number of vertices, number of bones, and a declaration describing the vertex layout of the target vertices -// The bone names and initial bone transforms are not filled in the skin info object by this method. -HRESULT WINAPI - D3DXCreateSkinInfo( - DWORD NumVertices, - CONST D3DVERTEXELEMENT9 *pDeclaration, - DWORD NumBones, - LPD3DXSKININFO* ppSkinInfo); - -// Creates a skin info object based on the number of vertices, number of bones, and a FVF describing the vertex layout of the target vertices -// The bone names and initial bone transforms are not filled in the skin info object by this method. -HRESULT WINAPI - D3DXCreateSkinInfoFVF( - DWORD NumVertices, - DWORD FVF, - DWORD NumBones, - LPD3DXSKININFO* ppSkinInfo); - -#ifdef __cplusplus -} - -extern "C" { -#endif //__cplusplus - -HRESULT WINAPI - D3DXLoadMeshFromXof( - LPD3DXFILEDATA pxofMesh, - DWORD Options, - LPDIRECT3DDEVICE9 pD3DDevice, - LPD3DXBUFFER *ppAdjacency, - LPD3DXBUFFER *ppMaterials, - LPD3DXBUFFER *ppEffectInstances, - DWORD *pNumMaterials, - LPD3DXMESH *ppMesh); - -// This similar to D3DXLoadMeshFromXof, except also returns skinning info if present in the file -// If skinning info is not present, ppSkinInfo will be NULL -HRESULT WINAPI - D3DXLoadSkinMeshFromXof( - LPD3DXFILEDATA pxofMesh, - DWORD Options, - LPDIRECT3DDEVICE9 pD3DDevice, - LPD3DXBUFFER* ppAdjacency, - LPD3DXBUFFER* ppMaterials, - LPD3DXBUFFER *ppEffectInstances, - DWORD *pMatOut, - LPD3DXSKININFO* ppSkinInfo, - LPD3DXMESH* ppMesh); - - -// The inverse of D3DXConvertTo{Indexed}BlendedMesh() functions. It figures out the skinning info from -// the mesh and the bone combination table and populates a skin info object with that data. The bone -// names and initial bone transforms are not filled in the skin info object by this method. This works -// with either a non-indexed or indexed blended mesh. It examines the FVF or declarator of the mesh to -// determine what type it is. -HRESULT WINAPI - D3DXCreateSkinInfoFromBlendedMesh( - LPD3DXBASEMESH pMesh, - DWORD NumBones, - CONST D3DXBONECOMBINATION *pBoneCombinationTable, - LPD3DXSKININFO* ppSkinInfo); - -HRESULT WINAPI - D3DXTessellateNPatches( - LPD3DXMESH pMeshIn, - CONST DWORD* pAdjacencyIn, - FLOAT NumSegs, - BOOL QuadraticInterpNormals, // if false use linear intrep for normals, if true use quadratic - LPD3DXMESH *ppMeshOut, - LPD3DXBUFFER *ppAdjacencyOut); - - -//generates implied outputdecl from input decl -//the decl generated from this should be used to generate the output decl for -//the tessellator subroutines. - -HRESULT WINAPI - D3DXGenerateOutputDecl( - D3DVERTEXELEMENT9 *pOutput, - CONST D3DVERTEXELEMENT9 *pInput); - -//loads patches from an XFileData -//since an X file can have up to 6 different patch meshes in it, -//returns them in an array - pNumPatches will contain the number of -//meshes in the actual file. -HRESULT WINAPI - D3DXLoadPatchMeshFromXof( - LPD3DXFILEDATA pXofObjMesh, - DWORD Options, - LPDIRECT3DDEVICE9 pD3DDevice, - LPD3DXBUFFER *ppMaterials, - LPD3DXBUFFER *ppEffectInstances, - PDWORD pNumMaterials, - LPD3DXPATCHMESH *ppMesh); - -//computes the size a single rect patch. -HRESULT WINAPI - D3DXRectPatchSize( - CONST FLOAT *pfNumSegs, //segments for each edge (4) - DWORD *pdwTriangles, //output number of triangles - DWORD *pdwVertices); //output number of vertices - -//computes the size of a single triangle patch -HRESULT WINAPI - D3DXTriPatchSize( - CONST FLOAT *pfNumSegs, //segments for each edge (3) - DWORD *pdwTriangles, //output number of triangles - DWORD *pdwVertices); //output number of vertices - - -//tessellates a patch into a created mesh -//similar to D3D RT patch -HRESULT WINAPI - D3DXTessellateRectPatch( - LPDIRECT3DVERTEXBUFFER9 pVB, - CONST FLOAT *pNumSegs, - CONST D3DVERTEXELEMENT9 *pdwInDecl, - CONST D3DRECTPATCH_INFO *pRectPatchInfo, - LPD3DXMESH pMesh); - - -HRESULT WINAPI - D3DXTessellateTriPatch( - LPDIRECT3DVERTEXBUFFER9 pVB, - CONST FLOAT *pNumSegs, - CONST D3DVERTEXELEMENT9 *pInDecl, - CONST D3DTRIPATCH_INFO *pTriPatchInfo, - LPD3DXMESH pMesh); - - - -//creates an NPatch PatchMesh from a D3DXMESH -HRESULT WINAPI - D3DXCreateNPatchMesh( - LPD3DXMESH pMeshSysMem, - LPD3DXPATCHMESH *pPatchMesh); - - -//creates a patch mesh -HRESULT WINAPI - D3DXCreatePatchMesh( - CONST D3DXPATCHINFO *pInfo, //patch type - DWORD dwNumPatches, //number of patches - DWORD dwNumVertices, //number of control vertices - DWORD dwOptions, //options - CONST D3DVERTEXELEMENT9 *pDecl, //format of control vertices - LPDIRECT3DDEVICE9 pD3DDevice, - LPD3DXPATCHMESH *pPatchMesh); - - -//returns the number of degenerates in a patch mesh - -//text output put in string. -HRESULT WINAPI - D3DXValidPatchMesh(LPD3DXPATCHMESH pMesh, - DWORD *dwcDegenerateVertices, - DWORD *dwcDegeneratePatches, - LPD3DXBUFFER *ppErrorsAndWarnings); - -UINT WINAPI - D3DXGetFVFVertexSize(DWORD FVF); - -UINT WINAPI - D3DXGetDeclVertexSize(CONST D3DVERTEXELEMENT9 *pDecl,DWORD Stream); - -UINT WINAPI - D3DXGetDeclLength(CONST D3DVERTEXELEMENT9 *pDecl); - -HRESULT WINAPI - D3DXDeclaratorFromFVF( - DWORD FVF, - D3DVERTEXELEMENT9 pDeclarator[MAX_FVF_DECL_SIZE]); - -HRESULT WINAPI - D3DXFVFFromDeclarator( - CONST D3DVERTEXELEMENT9 *pDeclarator, - DWORD *pFVF); - -HRESULT WINAPI - D3DXWeldVertices( - LPD3DXMESH pMesh, - DWORD Flags, - CONST D3DXWELDEPSILONS *pEpsilons, - CONST DWORD *pAdjacencyIn, - DWORD *pAdjacencyOut, - DWORD *pFaceRemap, - LPD3DXBUFFER *ppVertexRemap); - -typedef struct _D3DXINTERSECTINFO -{ - DWORD FaceIndex; // index of face intersected - FLOAT U; // Barycentric Hit Coordinates - FLOAT V; // Barycentric Hit Coordinates - FLOAT Dist; // Ray-Intersection Parameter Distance -} D3DXINTERSECTINFO, *LPD3DXINTERSECTINFO; - - -HRESULT WINAPI - D3DXIntersect( - LPD3DXBASEMESH pMesh, - CONST D3DXVECTOR3 *pRayPos, - CONST D3DXVECTOR3 *pRayDir, - BOOL *pHit, // True if any faces were intersected - DWORD *pFaceIndex, // index of closest face intersected - FLOAT *pU, // Barycentric Hit Coordinates - FLOAT *pV, // Barycentric Hit Coordinates - FLOAT *pDist, // Ray-Intersection Parameter Distance - LPD3DXBUFFER *ppAllHits, // Array of D3DXINTERSECTINFOs for all hits (not just closest) - DWORD *pCountOfHits); // Number of entries in AllHits array - -HRESULT WINAPI - D3DXIntersectSubset( - LPD3DXBASEMESH pMesh, - DWORD AttribId, - CONST D3DXVECTOR3 *pRayPos, - CONST D3DXVECTOR3 *pRayDir, - BOOL *pHit, // True if any faces were intersected - DWORD *pFaceIndex, // index of closest face intersected - FLOAT *pU, // Barycentric Hit Coordinates - FLOAT *pV, // Barycentric Hit Coordinates - FLOAT *pDist, // Ray-Intersection Parameter Distance - LPD3DXBUFFER *ppAllHits, // Array of D3DXINTERSECTINFOs for all hits (not just closest) - DWORD *pCountOfHits); // Number of entries in AllHits array - - -HRESULT WINAPI D3DXSplitMesh - ( - LPD3DXMESH pMeshIn, - CONST DWORD *pAdjacencyIn, - CONST DWORD MaxSize, - CONST DWORD Options, - DWORD *pMeshesOut, - LPD3DXBUFFER *ppMeshArrayOut, - LPD3DXBUFFER *ppAdjacencyArrayOut, - LPD3DXBUFFER *ppFaceRemapArrayOut, - LPD3DXBUFFER *ppVertRemapArrayOut - ); - -BOOL WINAPI D3DXIntersectTri -( - CONST D3DXVECTOR3 *p0, // Triangle vertex 0 position - CONST D3DXVECTOR3 *p1, // Triangle vertex 1 position - CONST D3DXVECTOR3 *p2, // Triangle vertex 2 position - CONST D3DXVECTOR3 *pRayPos, // Ray origin - CONST D3DXVECTOR3 *pRayDir, // Ray direction - FLOAT *pU, // Barycentric Hit Coordinates - FLOAT *pV, // Barycentric Hit Coordinates - FLOAT *pDist); // Ray-Intersection Parameter Distance - -BOOL WINAPI - D3DXSphereBoundProbe( - CONST D3DXVECTOR3 *pCenter, - FLOAT Radius, - CONST D3DXVECTOR3 *pRayPosition, - CONST D3DXVECTOR3 *pRayDirection); - -BOOL WINAPI - D3DXBoxBoundProbe( - CONST D3DXVECTOR3 *pMin, - CONST D3DXVECTOR3 *pMax, - CONST D3DXVECTOR3 *pRayPosition, - CONST D3DXVECTOR3 *pRayDirection); - - -HRESULT WINAPI D3DXComputeTangentFrame(ID3DXMesh *pMesh, - DWORD dwOptions); - -HRESULT WINAPI D3DXComputeTangentFrameEx(ID3DXMesh *pMesh, - DWORD dwTextureInSemantic, - DWORD dwTextureInIndex, - DWORD dwUPartialOutSemantic, - DWORD dwUPartialOutIndex, - DWORD dwVPartialOutSemantic, - DWORD dwVPartialOutIndex, - DWORD dwNormalOutSemantic, - DWORD dwNormalOutIndex, - DWORD dwOptions, - CONST DWORD *pdwAdjacency, - FLOAT fPartialEdgeThreshold, - FLOAT fSingularPointThreshold, - FLOAT fNormalEdgeThreshold, - ID3DXMesh **ppMeshOut, - ID3DXBuffer **ppVertexMapping); - - -//D3DXComputeTangent -// -//Computes the Tangent vectors for the TexStage texture coordinates -//and places the results in the TANGENT[TangentIndex] specified in the meshes' DECL -//puts the binorm in BINORM[BinormIndex] also specified in the decl. -// -//If neither the binorm or the tangnet are in the meshes declaration, -//the function will fail. -// -//If a tangent or Binorm field is in the Decl, but the user does not -//wish D3DXComputeTangent to replace them, then D3DX_DEFAULT specified -//in the TangentIndex or BinormIndex will cause it to ignore the specified -//semantic. -// -//Wrap should be specified if the texture coordinates wrap. - -HRESULT WINAPI D3DXComputeTangent(LPD3DXMESH Mesh, - DWORD TexStage, - DWORD TangentIndex, - DWORD BinormIndex, - DWORD Wrap, - CONST DWORD *pAdjacency); - -//============================================================================ -// -// UVAtlas apis -// -//============================================================================ -typedef HRESULT (WINAPI *LPD3DXUVATLASCB)(FLOAT fPercentDone, LPVOID lpUserContext); - -// This function creates atlases for meshes. There are two modes of operation, -// either based on the number of charts, or the maximum allowed stretch. If the -// maximum allowed stretch is 0, then each triangle will likely be in its own -// chart. - -// -// The parameters are as follows: -// pMesh - Input mesh to calculate an atlas for. This must have a position -// channel and at least a 2-d texture channel. -// uMaxChartNumber - The maximum number of charts required for the atlas. -// If this is 0, it will be parameterized based solely on -// stretch. -// fMaxStretch - The maximum amount of stretch, if 0, no stretching is allowed, -// if 1, then any amount of stretching is allowed. -// uWidth - The width of the texture the atlas will be used on. -// uHeight - The height of the texture the atlas will be used on. -// fGutter - The minimum distance, in texels between two charts on the atlas. -// this gets scaled by the width, so if fGutter is 2.5, and it is -// used on a 512x512 texture, then the minimum distance will be -// 2.5 / 512 in u-v space. -// dwTextureIndex - Specifies which texture coordinate to write to in the -// output mesh (which is cloned from the input mesh). Useful -// if your vertex has multiple texture coordinates. -// pdwAdjacency - a pointer to an array with 3 DWORDs per face, indicating -// which triangles are adjacent to each other. -// pdwFalseEdgeAdjacency - a pointer to an array with 3 DWORDS per face, indicating -// at each face, whether an edge is a false edge or not (using -// the same ordering as the adjacency data structure). If this -// is NULL, then it is assumed that there are no false edges. If -// not NULL, then a non-false edge is indicated by -1 and a false -// edge is indicated by any other value (it is not required, but -// it may be useful for the caller to use the original adjacency -// value). This allows you to parameterize a mesh of quads, and -// the edges down the middle of each quad will not be cut when -// parameterizing the mesh. -// pfIMTArray - a pointer to an array with 3 FLOATs per face, describing the -// integrated metric tensor for that face. This lets you control -// the way this triangle may be stretched in the atlas. The IMT -// passed in will be 3 floats (a,b,c) and specify a symmetric -// matrix (a b) that, given a vector (s,t), specifies the -// (b c) -// distance between a vector v1 and a vector v2 = v1 + (s,t) as -// sqrt((s, t) * M * (s, t)^T). -// In other words, this lets one specify the magnitude of the -// stretch in an arbitrary direction in u-v space. For example -// if a = b = c = 1, then this scales the vector (1,1) by 2, and -// the vector (1,-1) by 0. Note that this is multiplying the edge -// length by the square of the matrix, so if you want the face to -// stretch to twice its -// size with no shearing, the IMT value should be (2, 0, 2), which -// is just the identity matrix times 2. -// Note that this assumes you have an orientation for the triangle -// in some 2-D space. For D3DXUVAtlas, this space is created by -// letting S be the direction from the first to the second -// vertex, and T be the cross product between the normal and S. -// -// pStatusCallback - Since the atlas creation process can be very CPU intensive, -// this allows the programmer to specify a function to be called -// periodically, similarly to how it is done in the PRT simulation -// engine. -// fCallbackFrequency - This lets you specify how often the callback will be -// called. A decent default should be 0.0001f. -// pUserContext - a void pointer to be passed back to the callback function -// dwOptions - A combination of flags in the D3DXUVATLAS enum -// ppMeshOut - A pointer to a location to store a pointer for the newly created -// mesh. -// ppFacePartitioning - A pointer to a location to store a pointer for an array, -// one DWORD per face, giving the final partitioning -// created by the atlasing algorithm. -// ppVertexRemapArray - A pointer to a location to store a pointer for an array, -// one DWORD per vertex, giving the vertex it was copied -// from, if any vertices needed to be split. -// pfMaxStretchOut - A location to store the maximum stretch resulting from the -// atlasing algorithm. -// puNumChartsOut - A location to store the number of charts created, or if the -// maximum number of charts was too low, this gives the minimum -// number of charts needed to create an atlas. - -HRESULT WINAPI D3DXUVAtlasCreate(LPD3DXMESH pMesh, - UINT uMaxChartNumber, - FLOAT fMaxStretch, - UINT uWidth, - UINT uHeight, - FLOAT fGutter, - DWORD dwTextureIndex, - CONST DWORD *pdwAdjacency, - CONST DWORD *pdwFalseEdgeAdjacency, - CONST FLOAT *pfIMTArray, - LPD3DXUVATLASCB pStatusCallback, - FLOAT fCallbackFrequency, - LPVOID pUserContext, - DWORD dwOptions, - LPD3DXMESH *ppMeshOut, - LPD3DXBUFFER *ppFacePartitioning, - LPD3DXBUFFER *ppVertexRemapArray, - FLOAT *pfMaxStretchOut, - UINT *puNumChartsOut); - -// This has the same exact arguments as Create, except that it does not perform the -// final packing step. This method allows one to get a partitioning out, and possibly -// modify it before sending it to be repacked. Note that if you change the -// partitioning, you'll also need to calculate new texture coordinates for any faces -// that have switched charts. -// -// The partition result adjacency output parameter is meant to be passed to the -// UVAtlasPack function, this adjacency cuts edges that are between adjacent -// charts, and also can include cuts inside of a chart in order to make it -// equivalent to a disc. For example: -// -// _______ -// | ___ | -// | |_| | -// |_____| -// -// In order to make this equivalent to a disc, we would need to add a cut, and it -// Would end up looking like: -// _______ -// | ___ | -// | |_|_| -// |_____| -// -// The resulting partition adjacency parameter cannot be NULL, because it is -// required for the packing step. - - - -HRESULT WINAPI D3DXUVAtlasPartition(LPD3DXMESH pMesh, - UINT uMaxChartNumber, - FLOAT fMaxStretch, - DWORD dwTextureIndex, - CONST DWORD *pdwAdjacency, - CONST DWORD *pdwFalseEdgeAdjacency, - CONST FLOAT *pfIMTArray, - LPD3DXUVATLASCB pStatusCallback, - FLOAT fCallbackFrequency, - LPVOID pUserContext, - DWORD dwOptions, - LPD3DXMESH *ppMeshOut, - LPD3DXBUFFER *ppFacePartitioning, - LPD3DXBUFFER *ppVertexRemapArray, - LPD3DXBUFFER *ppPartitionResultAdjacency, - FLOAT *pfMaxStretchOut, - UINT *puNumChartsOut); - -// This takes the face partitioning result from Partition and packs it into an -// atlas of the given size. pdwPartitionResultAdjacency should be derived from -// the adjacency returned from the partition step. This value cannot be NULL -// because Pack needs to know where charts were cut in the partition step in -// order to find the edges of each chart. -// The options parameter is currently reserved. -HRESULT WINAPI D3DXUVAtlasPack(ID3DXMesh *pMesh, - UINT uWidth, - UINT uHeight, - FLOAT fGutter, - DWORD dwTextureIndex, - CONST DWORD *pdwPartitionResultAdjacency, - LPD3DXUVATLASCB pStatusCallback, - FLOAT fCallbackFrequency, - LPVOID pUserContext, - DWORD dwOptions, - LPD3DXBUFFER pFacePartitioning); - - -//============================================================================ -// -// IMT Calculation apis -// -// These functions all compute the Integrated Metric Tensor for use in the -// UVAtlas API. They all calculate the IMT with respect to the canonical -// triangle, where the coordinate system is set up so that the u axis goes -// from vertex 0 to 1 and the v axis is N x u. So, for example, the second -// vertex's canonical uv coordinates are (d,0) where d is the distance between -// vertices 0 and 1. This way the IMT does not depend on the parameterization -// of the mesh, and if the signal over the surface doesn't change, then -// the IMT doesn't need to be recalculated. -//============================================================================ - -// This callback is used by D3DXComputeIMTFromSignal. -// -// uv - The texture coordinate for the vertex. -// uPrimitiveID - Face ID of the triangle on which to compute the signal. -// uSignalDimension - The number of floats to store in pfSignalOut. -// pUserData - The pUserData pointer passed in to ComputeIMTFromSignal. -// pfSignalOut - A pointer to where to store the signal data. -typedef HRESULT (WINAPI* LPD3DXIMTSIGNALCALLBACK) - (CONST D3DXVECTOR2 *uv, - UINT uPrimitiveID, - UINT uSignalDimension, - VOID *pUserData, - FLOAT *pfSignalOut); - -// This function is used to calculate the IMT from per vertex data. It sets -// up a linear system over the triangle, solves for the jacobian J, then -// constructs the IMT from that (J^TJ). -// This function allows you to calculate the IMT based off of any value in a -// mesh (color, normal, etc) by specifying the correct stride of the array. -// The IMT computed will cause areas of the mesh that have similar values to -// take up less space in the texture. -// -// pMesh - The mesh to calculate the IMT for. -// pVertexSignal - A float array of size uSignalStride * v, where v is the -// number of vertices in the mesh. -// uSignalDimension - How many floats per vertex to use in calculating the IMT. -// uSignalStride - The number of bytes per vertex in the array. This must be -// a multiple of sizeof(float) -// ppIMTData - Where to store the buffer holding the IMT data - -HRESULT WINAPI D3DXComputeIMTFromPerVertexSignal ( - LPD3DXMESH pMesh, - CONST FLOAT *pfVertexSignal, // uSignalDimension floats per vertex - UINT uSignalDimension, - UINT uSignalStride, // stride of signal in bytes - DWORD dwOptions, // reserved for future use - LPD3DXUVATLASCB pStatusCallback, - LPVOID pUserContext, - LPD3DXBUFFER *ppIMTData); - -// This function is used to calculate the IMT from data that varies over the -// surface of the mesh (generally at a higher frequency than vertex data). -// This function requires the mesh to already be parameterized (so it already -// has texture coordinates). It allows the user to define a signal arbitrarily -// over the surface of the mesh. -// -// pMesh - The mesh to calculate the IMT for. -// dwTextureIndex - This describes which set of texture coordinates in the -// mesh to use. -// uSignalDimension - How many components there are in the signal. -// fMaxUVDistance - The subdivision will continue until the distance between -// all vertices is at most fMaxUVDistance. -// dwOptions - reserved for future use -// pSignalCallback - The callback to use to get the signal. -// pUserData - A pointer that will be passed in to the callback. -// ppIMTData - Where to store the buffer holding the IMT data -HRESULT WINAPI D3DXComputeIMTFromSignal( - LPD3DXMESH pMesh, - DWORD dwTextureIndex, - UINT uSignalDimension, - FLOAT fMaxUVDistance, - DWORD dwOptions, // reserved for future use - LPD3DXIMTSIGNALCALLBACK pSignalCallback, - VOID *pUserData, - LPD3DXUVATLASCB pStatusCallback, - LPVOID pUserContext, - LPD3DXBUFFER *ppIMTData); - -// This function is used to calculate the IMT from texture data. Given a texture -// that maps over the surface of the mesh, the algorithm computes the IMT for -// each face. This will cause large areas that are very similar to take up less -// room when parameterized with UVAtlas. The texture is assumed to be -// interpolated over the mesh bilinearly. -// -// pMesh - The mesh to calculate the IMT for. -// pTexture - The texture to load data from. -// dwTextureIndex - This describes which set of texture coordinates in the -// mesh to use. -// dwOptions - Combination of one or more D3DXIMT flags. -// ppIMTData - Where to store the buffer holding the IMT data -HRESULT WINAPI D3DXComputeIMTFromTexture ( - LPD3DXMESH pMesh, - LPDIRECT3DTEXTURE9 pTexture, - DWORD dwTextureIndex, - DWORD dwOptions, - LPD3DXUVATLASCB pStatusCallback, - LPVOID pUserContext, - LPD3DXBUFFER *ppIMTData); - -// This function is very similar to ComputeIMTFromTexture, but it uses a -// float array to pass in the data, and it can calculate higher dimensional -// values than 4. -// -// pMesh - The mesh to calculate the IMT for. -// dwTextureIndex - This describes which set of texture coordinates in the -// mesh to use. -// pfFloatArray - a pointer to a float array of size -// uWidth*uHeight*uComponents -// uWidth - The width of the texture -// uHeight - The height of the texture -// uSignalDimension - The number of floats per texel in the signal -// uComponents - The number of floats in each texel -// dwOptions - Combination of one or more D3DXIMT flags -// ppIMTData - Where to store the buffer holding the IMT data -HRESULT WINAPI D3DXComputeIMTFromPerTexelSignal( - LPD3DXMESH pMesh, - DWORD dwTextureIndex, - FLOAT *pfTexelSignal, - UINT uWidth, - UINT uHeight, - UINT uSignalDimension, - UINT uComponents, - DWORD dwOptions, - LPD3DXUVATLASCB pStatusCallback, - LPVOID pUserContext, - LPD3DXBUFFER *ppIMTData); - -HRESULT WINAPI - D3DXConvertMeshSubsetToSingleStrip( - LPD3DXBASEMESH MeshIn, - DWORD AttribId, - DWORD IBOptions, - LPDIRECT3DINDEXBUFFER9 *ppIndexBuffer, - DWORD *pNumIndices); - -HRESULT WINAPI - D3DXConvertMeshSubsetToStrips( - LPD3DXBASEMESH MeshIn, - DWORD AttribId, - DWORD IBOptions, - LPDIRECT3DINDEXBUFFER9 *ppIndexBuffer, - DWORD *pNumIndices, - LPD3DXBUFFER *ppStripLengths, - DWORD *pNumStrips); - - -//============================================================================ -// -// D3DXOptimizeFaces: -// -------------------- -// Generate a face remapping for a triangle list that more effectively utilizes -// vertex caches. This optimization is identical to the one provided -// by ID3DXMesh::Optimize with the hardware independent option enabled. -// -// Parameters: -// pbIndices -// Triangle list indices to use for generating a vertex ordering -// NumFaces -// Number of faces in the triangle list -// NumVertices -// Number of vertices referenced by the triangle list -// b32BitIndices -// TRUE if indices are 32 bit, FALSE if indices are 16 bit -// pFaceRemap -// Destination buffer to store face ordering -// The number stored for a given element is where in the new ordering -// the face will have come from. See ID3DXMesh::Optimize for more info. -// -//============================================================================ -HRESULT WINAPI - D3DXOptimizeFaces( - LPCVOID pbIndices, - UINT cFaces, - UINT cVertices, - BOOL b32BitIndices, - DWORD* pFaceRemap); - -//============================================================================ -// -// D3DXOptimizeVertices: -// -------------------- -// Generate a vertex remapping to optimize for in order use of vertices for -// a given set of indices. This is commonly used after applying the face -// remap generated by D3DXOptimizeFaces -// -// Parameters: -// pbIndices -// Triangle list indices to use for generating a vertex ordering -// NumFaces -// Number of faces in the triangle list -// NumVertices -// Number of vertices referenced by the triangle list -// b32BitIndices -// TRUE if indices are 32 bit, FALSE if indices are 16 bit -// pVertexRemap -// Destination buffer to store vertex ordering -// The number stored for a given element is where in the new ordering -// the vertex will have come from. See ID3DXMesh::Optimize for more info. -// -//============================================================================ -HRESULT WINAPI - D3DXOptimizeVertices( - LPCVOID pbIndices, - UINT cFaces, - UINT cVertices, - BOOL b32BitIndices, - DWORD* pVertexRemap); - -#ifdef __cplusplus -} -#endif //__cplusplus - - -//=========================================================================== -// -// Data structures for Spherical Harmonic Precomputation -// -// -//============================================================================ - -typedef enum _D3DXSHCOMPRESSQUALITYTYPE { - D3DXSHCQUAL_FASTLOWQUALITY = 1, - D3DXSHCQUAL_SLOWHIGHQUALITY = 2, - D3DXSHCQUAL_FORCE_DWORD = 0x7fffffff -} D3DXSHCOMPRESSQUALITYTYPE; - -typedef enum _D3DXSHGPUSIMOPT { - D3DXSHGPUSIMOPT_SHADOWRES256 = 1, - D3DXSHGPUSIMOPT_SHADOWRES512 = 0, - D3DXSHGPUSIMOPT_SHADOWRES1024 = 2, - D3DXSHGPUSIMOPT_SHADOWRES2048 = 3, - - D3DXSHGPUSIMOPT_HIGHQUALITY = 4, - - D3DXSHGPUSIMOPT_FORCE_DWORD = 0x7fffffff -} D3DXSHGPUSIMOPT; - -// for all properties that are colors the luminance is computed -// if the simulator is run with a single channel using the following -// formula: R * 0.2125 + G * 0.7154 + B * 0.0721 - -typedef struct _D3DXSHMATERIAL { - D3DCOLORVALUE Diffuse; // Diffuse albedo of the surface. (Ignored if object is a Mirror) - BOOL bMirror; // Must be set to FALSE. bMirror == TRUE not currently supported - BOOL bSubSurf; // true if the object does subsurface scattering - can't do this and be a mirror - - // subsurface scattering parameters - FLOAT RelativeIndexOfRefraction; - D3DCOLORVALUE Absorption; - D3DCOLORVALUE ReducedScattering; - -} D3DXSHMATERIAL; - -// allocated in D3DXSHPRTCompSplitMeshSC -// vertices are duplicated into multiple super clusters but -// only have a valid status in one super cluster (fill in the rest) - -typedef struct _D3DXSHPRTSPLITMESHVERTDATA { - UINT uVertRemap; // vertex in original mesh this corresponds to - UINT uSubCluster; // cluster index relative to super cluster - UCHAR ucVertStatus; // 1 if vertex has valid data, 0 if it is "fill" -} D3DXSHPRTSPLITMESHVERTDATA; - -// used in D3DXSHPRTCompSplitMeshSC -// information for each super cluster that maps into face/vert arrays - -typedef struct _D3DXSHPRTSPLITMESHCLUSTERDATA { - UINT uVertStart; // initial index into remapped vertex array - UINT uVertLength; // number of vertices in this super cluster - - UINT uFaceStart; // initial index into face array - UINT uFaceLength; // number of faces in this super cluster - - UINT uClusterStart; // initial index into cluster array - UINT uClusterLength; // number of clusters in this super cluster -} D3DXSHPRTSPLITMESHCLUSTERDATA; - -// call back function for simulator -// return S_OK to keep running the simulator - anything else represents -// failure and the simulator will abort. - -typedef HRESULT (WINAPI *LPD3DXSHPRTSIMCB)(float fPercentDone, LPVOID lpUserContext); - -// interfaces for PRT buffers/simulator - -// GUIDs -// {F1827E47-00A8-49cd-908C-9D11955F8728} -DEFINE_GUID(IID_ID3DXPRTBuffer, -0xf1827e47, 0xa8, 0x49cd, 0x90, 0x8c, 0x9d, 0x11, 0x95, 0x5f, 0x87, 0x28); - -// {A758D465-FE8D-45ad-9CF0-D01E56266A07} -DEFINE_GUID(IID_ID3DXPRTCompBuffer, -0xa758d465, 0xfe8d, 0x45ad, 0x9c, 0xf0, 0xd0, 0x1e, 0x56, 0x26, 0x6a, 0x7); - -// {838F01EC-9729-4527-AADB-DF70ADE7FEA9} -DEFINE_GUID(IID_ID3DXTextureGutterHelper, -0x838f01ec, 0x9729, 0x4527, 0xaa, 0xdb, 0xdf, 0x70, 0xad, 0xe7, 0xfe, 0xa9); - -// {683A4278-CD5F-4d24-90AD-C4E1B6855D53} -DEFINE_GUID(IID_ID3DXPRTEngine, -0x683a4278, 0xcd5f, 0x4d24, 0x90, 0xad, 0xc4, 0xe1, 0xb6, 0x85, 0x5d, 0x53); - -// interface defenitions - -typedef interface ID3DXTextureGutterHelper ID3DXTextureGutterHelper; -typedef interface ID3DXPRTBuffer ID3DXPRTBuffer; - -#undef INTERFACE -#define INTERFACE ID3DXPRTBuffer - -// Buffer interface - contains "NumSamples" samples -// each sample in memory is stored as NumCoeffs scalars per channel (1 or 3) -// Same interface is used for both Vertex and Pixel PRT buffers - -DECLARE_INTERFACE_(ID3DXPRTBuffer, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // ID3DXPRTBuffer - STDMETHOD_(UINT, GetNumSamples)(THIS) PURE; - STDMETHOD_(UINT, GetNumCoeffs)(THIS) PURE; - STDMETHOD_(UINT, GetNumChannels)(THIS) PURE; - - STDMETHOD_(BOOL, IsTexture)(THIS) PURE; - STDMETHOD_(UINT, GetWidth)(THIS) PURE; - STDMETHOD_(UINT, GetHeight)(THIS) PURE; - - // changes the number of samples allocated in the buffer - STDMETHOD(Resize)(THIS_ UINT NewSize) PURE; - - // ppData will point to the memory location where sample Start begins - // pointer is valid for at least NumSamples samples - STDMETHOD(LockBuffer)(THIS_ UINT Start, UINT NumSamples, FLOAT **ppData) PURE; - STDMETHOD(UnlockBuffer)(THIS) PURE; - - // every scalar in buffer is multiplied by Scale - STDMETHOD(ScaleBuffer)(THIS_ FLOAT Scale) PURE; - - // every scalar contains the sum of this and pBuffers values - // pBuffer must have the same storage class/dimensions - STDMETHOD(AddBuffer)(THIS_ LPD3DXPRTBUFFER pBuffer) PURE; - - // GutterHelper (described below) will fill in the gutter - // regions of a texture by interpolating "internal" values - STDMETHOD(AttachGH)(THIS_ LPD3DXTEXTUREGUTTERHELPER) PURE; - STDMETHOD(ReleaseGH)(THIS) PURE; - - // Evaluates attached gutter helper on the contents of this buffer - STDMETHOD(EvalGH)(THIS) PURE; - - // extracts a given channel into texture pTexture - // NumCoefficients starting from StartCoefficient are copied - STDMETHOD(ExtractTexture)(THIS_ UINT Channel, UINT StartCoefficient, - UINT NumCoefficients, LPDIRECT3DTEXTURE9 pTexture) PURE; - - // extracts NumCoefficients coefficients into mesh - only applicable on single channel - // buffers, otherwise just lockbuffer and copy data. With SHPRT data NumCoefficients - // should be Order^2 - STDMETHOD(ExtractToMesh)(THIS_ UINT NumCoefficients, D3DDECLUSAGE Usage, UINT UsageIndexStart, - LPD3DXMESH pScene) PURE; - -}; - -typedef interface ID3DXPRTCompBuffer ID3DXPRTCompBuffer; -typedef interface ID3DXPRTCompBuffer *LPD3DXPRTCOMPBUFFER; - -#undef INTERFACE -#define INTERFACE ID3DXPRTCompBuffer - -// compressed buffers stored a compressed version of a PRTBuffer - -DECLARE_INTERFACE_(ID3DXPRTCompBuffer, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // ID3DPRTCompBuffer - - // NumCoeffs and NumChannels are properties of input buffer - STDMETHOD_(UINT, GetNumSamples)(THIS) PURE; - STDMETHOD_(UINT, GetNumCoeffs)(THIS) PURE; - STDMETHOD_(UINT, GetNumChannels)(THIS) PURE; - - STDMETHOD_(BOOL, IsTexture)(THIS) PURE; - STDMETHOD_(UINT, GetWidth)(THIS) PURE; - STDMETHOD_(UINT, GetHeight)(THIS) PURE; - - // number of clusters, and PCA vectors per-cluster - STDMETHOD_(UINT, GetNumClusters)(THIS) PURE; - STDMETHOD_(UINT, GetNumPCA)(THIS) PURE; - - // normalizes PCA weights so that they are between [-1,1] - // basis vectors are modified to reflect this - STDMETHOD(NormalizeData)(THIS) PURE; - - // copies basis vectors for cluster "Cluster" into pClusterBasis - // (NumPCA+1)*NumCoeffs*NumChannels floats - STDMETHOD(ExtractBasis)(THIS_ UINT Cluster, FLOAT *pClusterBasis) PURE; - - // UINT per sample - which cluster it belongs to - STDMETHOD(ExtractClusterIDs)(THIS_ UINT *pClusterIDs) PURE; - - // copies NumExtract PCA projection coefficients starting at StartPCA - // into pPCACoefficients - NumSamples*NumExtract floats copied - STDMETHOD(ExtractPCA)(THIS_ UINT StartPCA, UINT NumExtract, FLOAT *pPCACoefficients) PURE; - - // copies NumPCA projection coefficients starting at StartPCA - // into pTexture - should be able to cope with signed formats - STDMETHOD(ExtractTexture)(THIS_ UINT StartPCA, UINT NumpPCA, - LPDIRECT3DTEXTURE9 pTexture) PURE; - - // copies NumPCA projection coefficients into mesh pScene - // Usage is D3DDECLUSAGE where coefficients are to be stored - // UsageIndexStart is starting index - STDMETHOD(ExtractToMesh)(THIS_ UINT NumPCA, D3DDECLUSAGE Usage, UINT UsageIndexStart, - LPD3DXMESH pScene) PURE; -}; - - -#undef INTERFACE -#define INTERFACE ID3DXTextureGutterHelper - -// ID3DXTextureGutterHelper will build and manage -// "gutter" regions in a texture - this will allow for -// bi-linear interpolation to not have artifacts when rendering -// It generates a map (in texture space) where each texel -// is in one of 3 states: -// 0 Invalid - not used at all -// 1 Inside triangle -// 2 Gutter texel -// 4 represents a gutter texel that will be computed during PRT -// For each Inside/Gutter texel it stores the face it -// belongs to and barycentric coordinates for the 1st two -// vertices of that face. Gutter vertices are assigned to -// the closest edge in texture space. -// -// When used with PRT this requires a unique parameterization -// of the model - every texel must correspond to a single point -// on the surface of the model and vice versa - -DECLARE_INTERFACE_(ID3DXTextureGutterHelper, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // ID3DXTextureGutterHelper - - // dimensions of texture this is bound too - STDMETHOD_(UINT, GetWidth)(THIS) PURE; - STDMETHOD_(UINT, GetHeight)(THIS) PURE; - - - // Applying gutters recomputes all of the gutter texels of class "2" - // based on texels of class "1" or "4" - - // Applies gutters to a raw float buffer - each texel is NumCoeffs floats - // Width and Height must match GutterHelper - STDMETHOD(ApplyGuttersFloat)(THIS_ FLOAT *pDataIn, UINT NumCoeffs, UINT Width, UINT Height); - - // Applies gutters to pTexture - // Dimensions must match GutterHelper - STDMETHOD(ApplyGuttersTex)(THIS_ LPDIRECT3DTEXTURE9 pTexture); - - // Applies gutters to a D3DXPRTBuffer - // Dimensions must match GutterHelper - STDMETHOD(ApplyGuttersPRT)(THIS_ LPD3DXPRTBUFFER pBuffer); - - // Resamples a texture from a mesh onto this gutterhelpers - // parameterization. It is assumed that the UV coordinates - // for this gutter helper are in TEXTURE 0 (usage/usage index) - // and the texture coordinates should all be within [0,1] for - // both sets. - // - // pTextureIn - texture represented using parameterization in pMeshIn - // pMeshIn - Mesh with texture coordinates that represent pTextureIn - // pTextureOut texture coordinates are assumed to be in - // TEXTURE 0 - // Usage - field in DECL for pMeshIn that stores texture coordinates - // for pTextureIn - // UsageIndex - which index for Usage above for pTextureIn - // pTextureOut- Resampled texture - // - // Usage would generally be D3DDECLUSAGE_TEXCOORD and UsageIndex other than zero - STDMETHOD(ResampleTex)(THIS_ LPDIRECT3DTEXTURE9 pTextureIn, - LPD3DXMESH pMeshIn, - D3DDECLUSAGE Usage, UINT UsageIndex, - LPDIRECT3DTEXTURE9 pTextureOut); - - // the routines below provide access to the data structures - // used by the Apply functions - - // face map is a UINT per texel that represents the - // face of the mesh that texel belongs too - - // only valid if same texel is valid in pGutterData - // pFaceData must be allocated by the user - STDMETHOD(GetFaceMap)(THIS_ UINT *pFaceData) PURE; - - // BaryMap is a D3DXVECTOR2 per texel - // the 1st two barycentric coordinates for the corresponding - // face (3rd weight is always 1-sum of first two) - // only valid if same texel is valid in pGutterData - // pBaryData must be allocated by the user - STDMETHOD(GetBaryMap)(THIS_ D3DXVECTOR2 *pBaryData) PURE; - - // TexelMap is a D3DXVECTOR2 per texel that - // stores the location in pixel coordinates where the - // corresponding texel is mapped - // pTexelData must be allocated by the user - STDMETHOD(GetTexelMap)(THIS_ D3DXVECTOR2 *pTexelData) PURE; - - // GutterMap is a BYTE per texel - // 0/1/2 for Invalid/Internal/Gutter texels - // 4 represents a gutter texel that will be computed - // during PRT - // pGutterData must be allocated by the user - STDMETHOD(GetGutterMap)(THIS_ BYTE *pGutterData) PURE; - - // face map is a UINT per texel that represents the - // face of the mesh that texel belongs too - - // only valid if same texel is valid in pGutterData - STDMETHOD(SetFaceMap)(THIS_ UINT *pFaceData) PURE; - - // BaryMap is a D3DXVECTOR2 per texel - // the 1st two barycentric coordinates for the corresponding - // face (3rd weight is always 1-sum of first two) - // only valid if same texel is valid in pGutterData - STDMETHOD(SetBaryMap)(THIS_ D3DXVECTOR2 *pBaryData) PURE; - - // TexelMap is a D3DXVECTOR2 per texel that - // stores the location in pixel coordinates where the - // corresponding texel is mapped - STDMETHOD(SetTexelMap)(THIS_ D3DXVECTOR2 *pTexelData) PURE; - - // GutterMap is a BYTE per texel - // 0/1/2 for Invalid/Internal/Gutter texels - // 4 represents a gutter texel that will be computed - // during PRT - STDMETHOD(SetGutterMap)(THIS_ BYTE *pGutterData) PURE; -}; - - -typedef interface ID3DXPRTEngine ID3DXPRTEngine; -typedef interface ID3DXPRTEngine *LPD3DXPRTENGINE; - -#undef INTERFACE -#define INTERFACE ID3DXPRTEngine - -// ID3DXPRTEngine is used to compute a PRT simulation -// Use the following steps to compute PRT for SH -// (1) create an interface (which includes a scene) -// (2) call SetSamplingInfo -// (3) [optional] Set MeshMaterials/albedo's (required if doing bounces) -// (4) call ComputeDirectLightingSH -// (5) [optional] call ComputeBounce -// repeat step 5 for as many bounces as wanted. -// if you want to model subsurface scattering you -// need to call ComputeSS after direct lighting and -// each bounce. -// If you want to bake the albedo into the PRT signal, you -// must call MutliplyAlbedo, otherwise the user has to multiply -// the albedo themselves. Not multiplying the albedo allows you -// to model albedo variation at a finer scale then illumination, and -// can result in better compression results. -// Luminance values are computed from RGB values using the following -// formula: R * 0.2125 + G * 0.7154 + B * 0.0721 - -DECLARE_INTERFACE_(ID3DXPRTEngine, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // ID3DXPRTEngine - - // This sets a material per attribute in the scene mesh and it is - // the only way to specify subsurface scattering parameters. if - // bSetAlbedo is FALSE, NumChannels must match the current - // configuration of the PRTEngine. If you intend to change - // NumChannels (through some other SetAlbedo function) it must - // happen before SetMeshMaterials is called. - // - // NumChannels 1 implies "grayscale" materials, set this to 3 to enable - // color bleeding effects - // bSetAlbedo sets albedo from material if TRUE - which clobbers per texel/vertex - // albedo that might have been set before. FALSE won't clobber. - // fLengthScale is used for subsurface scattering - scene is mapped into a 1mm unit cube - // and scaled by this amount - STDMETHOD(SetMeshMaterials)(THIS_ CONST D3DXSHMATERIAL **ppMaterials, UINT NumMeshes, - UINT NumChannels, BOOL bSetAlbedo, FLOAT fLengthScale) PURE; - - // setting albedo per-vertex or per-texel over rides the albedos stored per mesh - // but it does not over ride any other settings - - // sets an albedo to be used per vertex - the albedo is represented as a float - // pDataIn input pointer (pointint to albedo of 1st sample) - // NumChannels 1 implies "grayscale" materials, set this to 3 to enable - // color bleeding effects - // Stride - stride in bytes to get to next samples albedo - STDMETHOD(SetPerVertexAlbedo)(THIS_ CONST VOID *pDataIn, UINT NumChannels, UINT Stride) PURE; - - // represents the albedo per-texel instead of per-vertex (even if per-vertex PRT is used) - // pAlbedoTexture - texture that stores the albedo (dimension arbitrary) - // NumChannels 1 implies "grayscale" materials, set this to 3 to enable - // color bleeding effects - // pGH - optional gutter helper, otherwise one is constructed in computation routines and - // destroyed (if not attached to buffers) - STDMETHOD(SetPerTexelAlbedo)(THIS_ LPDIRECT3DTEXTURE9 pAlbedoTexture, - UINT NumChannels, - LPD3DXTEXTUREGUTTERHELPER pGH) PURE; - - // gets the per-vertex albedo - STDMETHOD(GetVertexAlbedo)(THIS_ D3DXCOLOR *pVertColors, UINT NumVerts) PURE; - - // If pixel PRT is being computed normals default to ones that are interpolated - // from the vertex normals. This specifies a texture that stores an object - // space normal map instead (must use a texture format that can represent signed values) - // pNormalTexture - normal map, must be same dimensions as PRTBuffers, signed - STDMETHOD(SetPerTexelNormal)(THIS_ LPDIRECT3DTEXTURE9 pNormalTexture) PURE; - - // Copies per-vertex albedo from mesh - // pMesh - mesh that represents the scene. It must have the same - // properties as the mesh used to create the PRTEngine - // Usage - D3DDECLUSAGE to extract albedos from - // NumChannels 1 implies "grayscale" materials, set this to 3 to enable - // color bleeding effects - STDMETHOD(ExtractPerVertexAlbedo)(THIS_ LPD3DXMESH pMesh, - D3DDECLUSAGE Usage, - UINT NumChannels) PURE; - - // Resamples the input buffer into the output buffer - // can be used to move between per-vertex and per-texel buffers. This can also be used - // to convert single channel buffers to 3-channel buffers and vice-versa. - STDMETHOD(ResampleBuffer)(THIS_ LPD3DXPRTBUFFER pBufferIn, LPD3DXPRTBUFFER pBufferOut) PURE; - - // Returns the scene mesh - including modifications from adaptive spatial sampling - // The returned mesh only has positions, normals and texture coordinates (if defined) - // pD3DDevice - d3d device that will be used to allocate the mesh - // pFaceRemap - each face has a pointer back to the face on the original mesh that it comes from - // if the face hasn't been subdivided this will be an identity mapping - // pVertRemap - each vertex contains 3 vertices that this is a linear combination of - // pVertWeights - weights for each of above indices (sum to 1.0f) - // ppMesh - mesh that will be allocated and filled - STDMETHOD(GetAdaptedMesh)(THIS_ LPDIRECT3DDEVICE9 pD3DDevice,UINT *pFaceRemap, UINT *pVertRemap, FLOAT *pfVertWeights, LPD3DXMESH *ppMesh) PURE; - - // Number of vertices currently allocated (includes new vertices from adaptive sampling) - STDMETHOD_(UINT, GetNumVerts)(THIS) PURE; - // Number of faces currently allocated (includes new faces) - STDMETHOD_(UINT, GetNumFaces)(THIS) PURE; - - // Sets the Minimum/Maximum intersection distances, this can be used to control - // maximum distance that objects can shadow/reflect light, and help with "bad" - // art that might have near features that you don't want to shadow. This does not - // apply for GPU simulations. - // fMin - minimum intersection distance, must be positive and less than fMax - // fMax - maximum intersection distance, if 0.0f use the previous value, otherwise - // must be strictly greater than fMin - STDMETHOD(SetMinMaxIntersection)(THIS_ FLOAT fMin, FLOAT fMax) PURE; - - // This will subdivide faces on a mesh so that adaptively simulations can - // use a more conservative threshold (it won't miss features.) - // MinEdgeLength - minimum edge length that will be generated, if 0.0f a - // reasonable default will be used - // MaxSubdiv - maximum level of subdivision, if 0 is specified a default - // value will be used (5) - STDMETHOD(RobustMeshRefine)(THIS_ FLOAT MinEdgeLength, UINT MaxSubdiv) PURE; - - // This sets to sampling information used by the simulator. Adaptive sampling - // parameters are currently ignored. - // NumRays - number of rays to shoot per sample - // UseSphere - if TRUE uses spherical samples, otherwise samples over - // the hemisphere. Should only be used with GPU and Vol computations - // UseCosine - if TRUE uses a cosine weighting - not used for Vol computations - // or if only the visiblity function is desired - // Adaptive - if TRUE adaptive sampling (angular) is used - // AdaptiveThresh - threshold used to terminate adaptive angular sampling - // ignored if adaptive sampling is not set - STDMETHOD(SetSamplingInfo)(THIS_ UINT NumRays, - BOOL UseSphere, - BOOL UseCosine, - BOOL Adaptive, - FLOAT AdaptiveThresh) PURE; - - // Methods that compute the direct lighting contribution for objects - // always represente light using spherical harmonics (SH) - // the albedo is not multiplied by the signal - it just integrates - // incoming light. If NumChannels is not 1 the vector is replicated - // - // SHOrder - order of SH to use - // pDataOut - PRT buffer that is generated. Can be single channel - STDMETHOD(ComputeDirectLightingSH)(THIS_ UINT SHOrder, - LPD3DXPRTBUFFER pDataOut) PURE; - - // Adaptive variant of above function. This will refine the mesh - // generating new vertices/faces to approximate the PRT signal - // more faithfully. - // SHOrder - order of SH to use - // AdaptiveThresh - threshold for adaptive subdivision (in PRT vector error) - // if value is less then 1e-6f, 1e-6f is specified - // MinEdgeLength - minimum edge length that will be generated - // if value is too small a fairly conservative model dependent value - // is used - // MaxSubdiv - maximum subdivision level, if 0 is specified it - // will default to 4 - // pDataOut - PRT buffer that is generated. Can be single channel. - STDMETHOD(ComputeDirectLightingSHAdaptive)(THIS_ UINT SHOrder, - FLOAT AdaptiveThresh, - FLOAT MinEdgeLength, - UINT MaxSubdiv, - LPD3DXPRTBUFFER pDataOut) PURE; - - // Function that computes the direct lighting contribution for objects - // light is always represented using spherical harmonics (SH) - // This is done on the GPU and is much faster then using the CPU. - // The albedo is not multiplied by the signal - it just integrates - // incoming light. If NumChannels is not 1 the vector is replicated. - // ZBias/ZAngleBias are akin to parameters used with shadow zbuffers. - // A reasonable default for both values is 0.005, but the user should - // experiment (ZAngleBias can be zero, ZBias should not be.) - // Callbacks should not use the Direct3D9Device the simulator is using. - // SetSamplingInfo must be called with TRUE for UseSphere and - // FALSE for UseCosine before this method is called. - // - // pD3DDevice - device used to run GPU simulator - must support PS2.0 - // and FP render targets - // Flags - parameters for the GPU simulator, combination of one or more - // D3DXSHGPUSIMOPT flags. Only one SHADOWRES setting should be set and - // the defaults is 512 - // SHOrder - order of SH to use - // ZBias - bias in normal direction (for depth test) - // ZAngleBias - scaled by one minus cosine of angle with light (offset in depth) - // pDataOut - PRT buffer that is filled in. Can be single channel - STDMETHOD(ComputeDirectLightingSHGPU)(THIS_ LPDIRECT3DDEVICE9 pD3DDevice, - UINT Flags, - UINT SHOrder, - FLOAT ZBias, - FLOAT ZAngleBias, - LPD3DXPRTBUFFER pDataOut) PURE; - - - // Functions that computes subsurface scattering (using material properties) - // Albedo is not multiplied by result. This only works for per-vertex data - // use ResampleBuffer to move per-vertex data into a texture and back. - // - // pDataIn - input data (previous bounce) - // pDataOut - result of subsurface scattering simulation - // pDataTotal - [optional] results can be summed into this buffer - STDMETHOD(ComputeSS)(THIS_ LPD3DXPRTBUFFER pDataIn, - LPD3DXPRTBUFFER pDataOut, LPD3DXPRTBUFFER pDataTotal) PURE; - - // Adaptive version of ComputeSS. - // - // pDataIn - input data (previous bounce) - // AdaptiveThresh - threshold for adaptive subdivision (in PRT vector error) - // if value is less then 1e-6f, 1e-6f is specified - // MinEdgeLength - minimum edge length that will be generated - // if value is too small a fairly conservative model dependent value - // is used - // MaxSubdiv - maximum subdivision level, if 0 is specified it - // will default to 4 - // pDataOut - result of subsurface scattering simulation - // pDataTotal - [optional] results can be summed into this buffer - STDMETHOD(ComputeSSAdaptive)(THIS_ LPD3DXPRTBUFFER pDataIn, - FLOAT AdaptiveThresh, - FLOAT MinEdgeLength, - UINT MaxSubdiv, - LPD3DXPRTBUFFER pDataOut, LPD3DXPRTBUFFER pDataTotal) PURE; - - // computes a single bounce of inter-reflected light - // works for SH based PRT or generic lighting - // Albedo is not multiplied by result - // - // pDataIn - previous bounces data - // pDataOut - PRT buffer that is generated - // pDataTotal - [optional] can be used to keep a running sum - STDMETHOD(ComputeBounce)(THIS_ LPD3DXPRTBUFFER pDataIn, - LPD3DXPRTBUFFER pDataOut, - LPD3DXPRTBUFFER pDataTotal) PURE; - - // Adaptive version of above function. - // - // pDataIn - previous bounces data, can be single channel - // AdaptiveThresh - threshold for adaptive subdivision (in PRT vector error) - // if value is less then 1e-6f, 1e-6f is specified - // MinEdgeLength - minimum edge length that will be generated - // if value is too small a fairly conservative model dependent value - // is used - // MaxSubdiv - maximum subdivision level, if 0 is specified it - // will default to 4 - // pDataOut - PRT buffer that is generated - // pDataTotal - [optional] can be used to keep a running sum - STDMETHOD(ComputeBounceAdaptive)(THIS_ LPD3DXPRTBUFFER pDataIn, - FLOAT AdaptiveThresh, - FLOAT MinEdgeLength, - UINT MaxSubdiv, - LPD3DXPRTBUFFER pDataOut, - LPD3DXPRTBUFFER pDataTotal) PURE; - - // Computes projection of distant SH radiance into a local SH radiance - // function. This models how direct lighting is attenuated by the - // scene and is a form of "neighborhood transfer." The result is - // a linear operator (matrix) at every sample point, if you multiply - // this matrix by the distant SH lighting coefficients you get an - // approximation of the local incident radiance function from - // direct lighting. These resulting lighting coefficients can - // than be projected into another basis or used with any rendering - // technique that uses spherical harmonics as input. - // SetSamplingInfo must be called with TRUE for UseSphere and - // FALSE for UseCosine before this method is called. - // Generates SHOrderIn*SHOrderIn*SHOrderOut*SHOrderOut scalars - // per channel at each sample location. - // - // SHOrderIn - Order of the SH representation of distant lighting - // SHOrderOut - Order of the SH representation of local lighting - // NumVolSamples - Number of sample locations - // pSampleLocs - position of sample locations - // pDataOut - PRT Buffer that will store output results - STDMETHOD(ComputeVolumeSamplesDirectSH)(THIS_ UINT SHOrderIn, - UINT SHOrderOut, - UINT NumVolSamples, - CONST D3DXVECTOR3 *pSampleLocs, - LPD3DXPRTBUFFER pDataOut) PURE; - - // At each sample location computes a linear operator (matrix) that maps - // the representation of source radiance (NumCoeffs in pSurfDataIn) - // into a local incident radiance function approximated with spherical - // harmonics. For example if a light map data is specified in pSurfDataIn - // the result is an SH representation of the flow of light at each sample - // point. If PRT data for an outdoor scene is used, each sample point - // contains a matrix that models how distant lighting bounces of the objects - // in the scene and arrives at the given sample point. Combined with - // ComputeVolumeSamplesDirectSH this gives the complete representation for - // how light arrives at each sample point parameterized by distant lighting. - // SetSamplingInfo must be called with TRUE for UseSphere and - // FALSE for UseCosine before this method is called. - // Generates pSurfDataIn->NumCoeffs()*SHOrder*SHOrder scalars - // per channel at each sample location. - // - // pSurfDataIn - previous bounce data - // SHOrder - order of SH to generate projection with - // NumVolSamples - Number of sample locations - // pSampleLocs - position of sample locations - // pDataOut - PRT Buffer that will store output results - STDMETHOD(ComputeVolumeSamples)(THIS_ LPD3DXPRTBUFFER pSurfDataIn, - UINT SHOrder, - UINT NumVolSamples, - CONST D3DXVECTOR3 *pSampleLocs, - LPD3DXPRTBUFFER pDataOut) PURE; - - // Computes direct lighting (SH) for a point not on the mesh - // with a given normal - cannot use texture buffers. - // - // SHOrder - order of SH to use - // NumSamples - number of sample locations - // pSampleLocs - position for each sample - // pSampleNorms - normal for each sample - // pDataOut - PRT Buffer that will store output results - STDMETHOD(ComputeSurfSamplesDirectSH)(THIS_ UINT SHOrder, - UINT NumSamples, - CONST D3DXVECTOR3 *pSampleLocs, - CONST D3DXVECTOR3 *pSampleNorms, - LPD3DXPRTBUFFER pDataOut) PURE; - - - // given the solution for PRT or light maps, computes transfer vector at arbitrary - // position/normal pairs in space - // - // pSurfDataIn - input data - // NumSamples - number of sample locations - // pSampleLocs - position for each sample - // pSampleNorms - normal for each sample - // pDataOut - PRT Buffer that will store output results - // pDataTotal - optional buffer to sum results into - can be NULL - STDMETHOD(ComputeSurfSamplesBounce)(THIS_ LPD3DXPRTBUFFER pSurfDataIn, - UINT NumSamples, - CONST D3DXVECTOR3 *pSampleLocs, - CONST D3DXVECTOR3 *pSampleNorms, - LPD3DXPRTBUFFER pDataOut, - LPD3DXPRTBUFFER pDataTotal) PURE; - - // Frees temporary data structures that can be created for subsurface scattering - // this data is freed when the PRTComputeEngine is freed and is lazily created - STDMETHOD(FreeSSData)(THIS) PURE; - - // Frees temporary data structures that can be created for bounce simulations - // this data is freed when the PRTComputeEngine is freed and is lazily created - STDMETHOD(FreeBounceData)(THIS) PURE; - - // This computes the Local Deformable PRT (LDPRT) coefficients relative to the - // per sample normals that minimize error in a least squares sense with respect - // to the input PRT data set. These coefficients can be used with skinned/transformed - // normals to model global effects with dynamic objects. Shading normals can - // optionally be solved for - these normals (along with the LDPRT coefficients) can - // more accurately represent the PRT signal. The coefficients are for zonal - // harmonics oriented in the normal/shading normal direction. - // - // pDataIn - SH PRT dataset that is input - // SHOrder - Order of SH to compute conv coefficients for - // pNormOut - Optional array of vectors (passed in) that will be filled with - // "shading normals", LDPRT coefficients are optimized for - // these normals. This array must be the same size as the number of - // samples in pDataIn - // pDataOut - Output buffer (SHOrder zonal harmonic coefficients per channel per sample) - STDMETHOD(ComputeLDPRTCoeffs)(THIS_ LPD3DXPRTBUFFER pDataIn, - UINT SHOrder, - D3DXVECTOR3 *pNormOut, - LPD3DXPRTBUFFER pDataOut) PURE; - - // scales all the samples associated with a given sub mesh - // can be useful when using subsurface scattering - // fScale - value to scale each vector in submesh by - STDMETHOD(ScaleMeshChunk)(THIS_ UINT uMeshChunk, FLOAT fScale, LPD3DXPRTBUFFER pDataOut) PURE; - - // mutliplies each PRT vector by the albedo - can be used if you want to have the albedo - // burned into the dataset, often better not to do this. If this is not done the user - // must mutliply the albedo themselves when rendering - just multiply the albedo times - // the result of the PRT dot product. - // If pDataOut is a texture simulation result and there is an albedo texture it - // must be represented at the same resolution as the simulation buffer. You can use - // LoadSurfaceFromSurface and set a new albedo texture if this is an issue - but must - // be careful about how the gutters are handled. - // - // pDataOut - dataset that will get albedo pushed into it - STDMETHOD(MultiplyAlbedo)(THIS_ LPD3DXPRTBUFFER pDataOut) PURE; - - // Sets a pointer to an optional call back function that reports back to the - // user percentage done and gives them the option of quitting - // pCB - pointer to call back function, return S_OK for the simulation - // to continue - // Frequency - 1/Frequency is roughly the number of times the call back - // will be invoked - // lpUserContext - will be passed back to the users call back - STDMETHOD(SetCallBack)(THIS_ LPD3DXSHPRTSIMCB pCB, FLOAT Frequency, LPVOID lpUserContext) PURE; - - // Returns TRUE if the ray intersects the mesh, FALSE if it does not. This function - // takes into account settings from SetMinMaxIntersection. If the closest intersection - // is not needed this function is more efficient compared to the ClosestRayIntersection - // method. - // pRayPos - origin of ray - // pRayDir - normalized ray direction (normalization required for SetMinMax to be meaningful) - - STDMETHOD_(BOOL, ShadowRayIntersects)(THIS_ CONST D3DXVECTOR3 *pRayPos, CONST D3DXVECTOR3 *pRayDir) PURE; - - // Returns TRUE if the ray intersects the mesh, FALSE if it does not. If there is an - // intersection the closest face that was intersected and its first two barycentric coordinates - // are returned. This function takes into account settings from SetMinMaxIntersection. - // This is a slower function compared to ShadowRayIntersects and should only be used where - // needed. The third vertices barycentric coordinates will be 1 - pU - pV. - // pRayPos - origin of ray - // pRayDir - normalized ray direction (normalization required for SetMinMax to be meaningful) - // pFaceIndex - Closest face that intersects. This index is based on stacking the pBlockerMesh - // faces before the faces from pMesh - // pU - Barycentric coordinate for vertex 0 - // pV - Barycentric coordinate for vertex 1 - // pDist - Distance along ray where the intersection occured - - STDMETHOD_(BOOL, ClosestRayIntersects)(THIS_ CONST D3DXVECTOR3 *pRayPos, CONST D3DXVECTOR3 *pRayDir, - DWORD *pFaceIndex, FLOAT *pU, FLOAT *pV, FLOAT *pDist) PURE; -}; - - -// API functions for creating interfaces - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - -//============================================================================ -// -// D3DXCreatePRTBuffer: -// -------------------- -// Generates a PRT Buffer that can be compressed or filled by a simulator -// This function should be used to create per-vertex or volume buffers. -// When buffers are created all values are initialized to zero. -// -// Parameters: -// NumSamples -// Number of sample locations represented -// NumCoeffs -// Number of coefficients per sample location (order^2 for SH) -// NumChannels -// Number of color channels to represent (1 or 3) -// ppBuffer -// Buffer that will be allocated -// -//============================================================================ - -HRESULT WINAPI - D3DXCreatePRTBuffer( - UINT NumSamples, - UINT NumCoeffs, - UINT NumChannels, - LPD3DXPRTBUFFER* ppBuffer); - -//============================================================================ -// -// D3DXCreatePRTBufferTex: -// -------------------- -// Generates a PRT Buffer that can be compressed or filled by a simulator -// This function should be used to create per-pixel buffers. -// When buffers are created all values are initialized to zero. -// -// Parameters: -// Width -// Width of texture -// Height -// Height of texture -// NumCoeffs -// Number of coefficients per sample location (order^2 for SH) -// NumChannels -// Number of color channels to represent (1 or 3) -// ppBuffer -// Buffer that will be allocated -// -//============================================================================ - -HRESULT WINAPI - D3DXCreatePRTBufferTex( - UINT Width, - UINT Height, - UINT NumCoeffs, - UINT NumChannels, - LPD3DXPRTBUFFER* ppBuffer); - -//============================================================================ -// -// D3DXLoadPRTBufferFromFile: -// -------------------- -// Loads a PRT buffer that has been saved to disk. -// -// Parameters: -// pFilename -// Name of the file to load -// ppBuffer -// Buffer that will be allocated -// -//============================================================================ - -HRESULT WINAPI - D3DXLoadPRTBufferFromFileA( - LPCSTR pFilename, - LPD3DXPRTBUFFER* ppBuffer); - -HRESULT WINAPI - D3DXLoadPRTBufferFromFileW( - LPCWSTR pFilename, - LPD3DXPRTBUFFER* ppBuffer); - -#ifdef UNICODE -#define D3DXLoadPRTBufferFromFile D3DXLoadPRTBufferFromFileW -#else -#define D3DXLoadPRTBufferFromFile D3DXLoadPRTBufferFromFileA -#endif - - -//============================================================================ -// -// D3DXSavePRTBufferToFile: -// -------------------- -// Saves a PRTBuffer to disk. -// -// Parameters: -// pFilename -// Name of the file to save -// pBuffer -// Buffer that will be saved -// -//============================================================================ - -HRESULT WINAPI - D3DXSavePRTBufferToFileA( - LPCSTR pFileName, - LPD3DXPRTBUFFER pBuffer); - -HRESULT WINAPI - D3DXSavePRTBufferToFileW( - LPCWSTR pFileName, - LPD3DXPRTBUFFER pBuffer); - -#ifdef UNICODE -#define D3DXSavePRTBufferToFile D3DXSavePRTBufferToFileW -#else -#define D3DXSavePRTBufferToFile D3DXSavePRTBufferToFileA -#endif - - -//============================================================================ -// -// D3DXLoadPRTCompBufferFromFile: -// -------------------- -// Loads a PRTComp buffer that has been saved to disk. -// -// Parameters: -// pFilename -// Name of the file to load -// ppBuffer -// Buffer that will be allocated -// -//============================================================================ - -HRESULT WINAPI - D3DXLoadPRTCompBufferFromFileA( - LPCSTR pFilename, - LPD3DXPRTCOMPBUFFER* ppBuffer); - -HRESULT WINAPI - D3DXLoadPRTCompBufferFromFileW( - LPCWSTR pFilename, - LPD3DXPRTCOMPBUFFER* ppBuffer); - -#ifdef UNICODE -#define D3DXLoadPRTCompBufferFromFile D3DXLoadPRTCompBufferFromFileW -#else -#define D3DXLoadPRTCompBufferFromFile D3DXLoadPRTCompBufferFromFileA -#endif - -//============================================================================ -// -// D3DXSavePRTCompBufferToFile: -// -------------------- -// Saves a PRTCompBuffer to disk. -// -// Parameters: -// pFilename -// Name of the file to save -// pBuffer -// Buffer that will be saved -// -//============================================================================ - -HRESULT WINAPI - D3DXSavePRTCompBufferToFileA( - LPCSTR pFileName, - LPD3DXPRTCOMPBUFFER pBuffer); - -HRESULT WINAPI - D3DXSavePRTCompBufferToFileW( - LPCWSTR pFileName, - LPD3DXPRTCOMPBUFFER pBuffer); - -#ifdef UNICODE -#define D3DXSavePRTCompBufferToFile D3DXSavePRTCompBufferToFileW -#else -#define D3DXSavePRTCompBufferToFile D3DXSavePRTCompBufferToFileA -#endif - -//============================================================================ -// -// D3DXCreatePRTCompBuffer: -// -------------------- -// Compresses a PRT buffer (vertex or texel) -// -// Parameters: -// D3DXSHCOMPRESSQUALITYTYPE -// Quality of compression - low is faster (computes PCA per voronoi cluster) -// high is slower but better quality (clusters based on distance to affine subspace) -// NumClusters -// Number of clusters to compute -// NumPCA -// Number of basis vectors to compute -// pCB -// Optional Callback function -// lpUserContext -// Optional user context -// pBufferIn -// Buffer that will be compressed -// ppBufferOut -// Compressed buffer that will be created -// -//============================================================================ - - -HRESULT WINAPI - D3DXCreatePRTCompBuffer( - D3DXSHCOMPRESSQUALITYTYPE Quality, - UINT NumClusters, - UINT NumPCA, - LPD3DXSHPRTSIMCB pCB, - LPVOID lpUserContext, - LPD3DXPRTBUFFER pBufferIn, - LPD3DXPRTCOMPBUFFER *ppBufferOut - ); - -//============================================================================ -// -// D3DXCreateTextureGutterHelper: -// -------------------- -// Generates a "GutterHelper" for a given set of meshes and texture -// resolution -// -// Parameters: -// Width -// Width of texture -// Height -// Height of texture -// pMesh -// Mesh that represents the scene -// GutterSize -// Number of texels to over rasterize in texture space -// this should be at least 1.0 -// ppBuffer -// GutterHelper that will be created -// -//============================================================================ - - -HRESULT WINAPI - D3DXCreateTextureGutterHelper( - UINT Width, - UINT Height, - LPD3DXMESH pMesh, - FLOAT GutterSize, - LPD3DXTEXTUREGUTTERHELPER* ppBuffer); - - -//============================================================================ -// -// D3DXCreatePRTEngine: -// -------------------- -// Computes a PRTEngine which can efficiently generate PRT simulations -// of a scene -// -// Parameters: -// pMesh -// Mesh that represents the scene - must have an AttributeTable -// where vertices are in a unique attribute. -// pAdjacency -// Optional adjacency information -// ExtractUVs -// Set this to true if textures are going to be used for albedos -// or to store PRT vectors -// pBlockerMesh -// Optional mesh that just blocks the scene -// ppEngine -// PRTEngine that will be created -// -//============================================================================ - - -HRESULT WINAPI - D3DXCreatePRTEngine( - LPD3DXMESH pMesh, - DWORD *pAdjacency, - BOOL ExtractUVs, - LPD3DXMESH pBlockerMesh, - LPD3DXPRTENGINE* ppEngine); - -//============================================================================ -// -// D3DXConcatenateMeshes: -// -------------------- -// Concatenates a group of meshes into one common mesh. This can optionaly transform -// each sub mesh or its texture coordinates. If no DECL is given it will -// generate a union of all of the DECL's of the sub meshes, promoting channels -// and types if neccesary. It will create an AttributeTable if possible, one can -// call OptimizeMesh with attribute sort and compacting enabled to ensure this. -// -// Parameters: -// ppMeshes -// Array of pointers to meshes that can store PRT vectors -// NumMeshes -// Number of meshes -// Options -// Passed through to D3DXCreateMesh -// pGeomXForms -// [optional] Each sub mesh is transformed by the corresponding -// matrix if this array is supplied -// pTextureXForms -// [optional] UV coordinates for each sub mesh are transformed -// by corresponding matrix if supplied -// pDecl -// [optional] Only information in this DECL is used when merging -// data -// pD3DDevice -// D3D device that is used to create the new mesh -// ppMeshOut -// Mesh that will be created -// -//============================================================================ - - -HRESULT WINAPI - D3DXConcatenateMeshes( - LPD3DXMESH *ppMeshes, - UINT NumMeshes, - DWORD Options, - CONST D3DXMATRIX *pGeomXForms, - CONST D3DXMATRIX *pTextureXForms, - CONST D3DVERTEXELEMENT9 *pDecl, - LPDIRECT3DDEVICE9 pD3DDevice, - LPD3DXMESH *ppMeshOut); - -//============================================================================ -// -// D3DXSHPRTCompSuperCluster: -// -------------------------- -// Used with compressed results of D3DXSHPRTSimulation. -// Generates "super clusters" - groups of clusters that can be drawn in -// the same draw call. A greedy algorithm that minimizes overdraw is used -// to group the clusters. -// -// Parameters: -// pClusterIDs -// NumVerts cluster ID's (extracted from a compressed buffer) -// pScene -// Mesh that represents composite scene passed to the simulator -// MaxNumClusters -// Maximum number of clusters allocated per super cluster -// NumClusters -// Number of clusters computed in the simulator -// pSuperClusterIDs -// Array of length NumClusters, contains index of super cluster -// that corresponding cluster was assigned to -// pNumSuperClusters -// Returns the number of super clusters allocated -// -//============================================================================ - -HRESULT WINAPI - D3DXSHPRTCompSuperCluster( - UINT *pClusterIDs, - LPD3DXMESH pScene, - UINT MaxNumClusters, - UINT NumClusters, - UINT *pSuperClusterIDs, - UINT *pNumSuperClusters); - -//============================================================================ -// -// D3DXSHPRTCompSplitMeshSC: -// ------------------------- -// Used with compressed results of the vertex version of the PRT simulator. -// After D3DXSHRTCompSuperCluster has been called this function can be used -// to split the mesh into a group of faces/vertices per super cluster. -// Each super cluster contains all of the faces that contain any vertex -// classified in one of its clusters. All of the vertices connected to this -// set of faces are also included with the returned array ppVertStatus -// indicating whether or not the vertex belongs to the supercluster. -// -// Parameters: -// pClusterIDs -// NumVerts cluster ID's (extracted from a compressed buffer) -// NumVertices -// Number of vertices in original mesh -// NumClusters -// Number of clusters (input parameter to compression) -// pSuperClusterIDs -// Array of size NumClusters that will contain super cluster ID's (from -// D3DXSHCompSuerCluster) -// NumSuperClusters -// Number of superclusters allocated in D3DXSHCompSuerCluster -// pInputIB -// Raw index buffer for mesh - format depends on bInputIBIs32Bit -// InputIBIs32Bit -// Indicates whether the input index buffer is 32-bit (otherwise 16-bit -// is assumed) -// NumFaces -// Number of faces in the original mesh (pInputIB is 3 times this length) -// ppIBData -// LPD3DXBUFFER holds raw index buffer that will contain the resulting split faces. -// Format determined by bIBIs32Bit. Allocated by function -// pIBDataLength -// Length of ppIBData, assigned in function -// OutputIBIs32Bit -// Indicates whether the output index buffer is to be 32-bit (otherwise -// 16-bit is assumed) -// ppFaceRemap -// LPD3DXBUFFER mapping of each face in ppIBData to original faces. Length is -// *pIBDataLength/3. Optional paramter, allocated in function -// ppVertData -// LPD3DXBUFFER contains new vertex data structure. Size of pVertDataLength -// pVertDataLength -// Number of new vertices in split mesh. Assigned in function -// pSCClusterList -// Array of length NumClusters which pSCData indexes into (Cluster* fields) -// for each SC, contains clusters sorted by super cluster -// pSCData -// Structure per super cluster - contains indices into ppIBData, -// pSCClusterList and ppVertData -// -//============================================================================ - -HRESULT WINAPI - D3DXSHPRTCompSplitMeshSC( - UINT *pClusterIDs, - UINT NumVertices, - UINT NumClusters, - UINT *pSuperClusterIDs, - UINT NumSuperClusters, - LPVOID pInputIB, - BOOL InputIBIs32Bit, - UINT NumFaces, - LPD3DXBUFFER *ppIBData, - UINT *pIBDataLength, - BOOL OutputIBIs32Bit, - LPD3DXBUFFER *ppFaceRemap, - LPD3DXBUFFER *ppVertData, - UINT *pVertDataLength, - UINT *pSCClusterList, - D3DXSHPRTSPLITMESHCLUSTERDATA *pSCData); - - -#ifdef __cplusplus -} -#endif //__cplusplus - -////////////////////////////////////////////////////////////////////////////// -// -// Definitions of .X file templates used by mesh load/save functions -// that are not RM standard -// -////////////////////////////////////////////////////////////////////////////// - -// {3CF169CE-FF7C-44ab-93C0-F78F62D172E2} -DEFINE_GUID(DXFILEOBJ_XSkinMeshHeader, -0x3cf169ce, 0xff7c, 0x44ab, 0x93, 0xc0, 0xf7, 0x8f, 0x62, 0xd1, 0x72, 0xe2); - -// {B8D65549-D7C9-4995-89CF-53A9A8B031E3} -DEFINE_GUID(DXFILEOBJ_VertexDuplicationIndices, -0xb8d65549, 0xd7c9, 0x4995, 0x89, 0xcf, 0x53, 0xa9, 0xa8, 0xb0, 0x31, 0xe3); - -// {A64C844A-E282-4756-8B80-250CDE04398C} -DEFINE_GUID(DXFILEOBJ_FaceAdjacency, -0xa64c844a, 0xe282, 0x4756, 0x8b, 0x80, 0x25, 0xc, 0xde, 0x4, 0x39, 0x8c); - -// {6F0D123B-BAD2-4167-A0D0-80224F25FABB} -DEFINE_GUID(DXFILEOBJ_SkinWeights, -0x6f0d123b, 0xbad2, 0x4167, 0xa0, 0xd0, 0x80, 0x22, 0x4f, 0x25, 0xfa, 0xbb); - -// {A3EB5D44-FC22-429d-9AFB-3221CB9719A6} -DEFINE_GUID(DXFILEOBJ_Patch, -0xa3eb5d44, 0xfc22, 0x429d, 0x9a, 0xfb, 0x32, 0x21, 0xcb, 0x97, 0x19, 0xa6); - -// {D02C95CC-EDBA-4305-9B5D-1820D7704BBF} -DEFINE_GUID(DXFILEOBJ_PatchMesh, -0xd02c95cc, 0xedba, 0x4305, 0x9b, 0x5d, 0x18, 0x20, 0xd7, 0x70, 0x4b, 0xbf); - -// {B9EC94E1-B9A6-4251-BA18-94893F02C0EA} -DEFINE_GUID(DXFILEOBJ_PatchMesh9, -0xb9ec94e1, 0xb9a6, 0x4251, 0xba, 0x18, 0x94, 0x89, 0x3f, 0x2, 0xc0, 0xea); - -// {B6C3E656-EC8B-4b92-9B62-681659522947} -DEFINE_GUID(DXFILEOBJ_PMInfo, -0xb6c3e656, 0xec8b, 0x4b92, 0x9b, 0x62, 0x68, 0x16, 0x59, 0x52, 0x29, 0x47); - -// {917E0427-C61E-4a14-9C64-AFE65F9E9844} -DEFINE_GUID(DXFILEOBJ_PMAttributeRange, -0x917e0427, 0xc61e, 0x4a14, 0x9c, 0x64, 0xaf, 0xe6, 0x5f, 0x9e, 0x98, 0x44); - -// {574CCC14-F0B3-4333-822D-93E8A8A08E4C} -DEFINE_GUID(DXFILEOBJ_PMVSplitRecord, -0x574ccc14, 0xf0b3, 0x4333, 0x82, 0x2d, 0x93, 0xe8, 0xa8, 0xa0, 0x8e, 0x4c); - -// {B6E70A0E-8EF9-4e83-94AD-ECC8B0C04897} -DEFINE_GUID(DXFILEOBJ_FVFData, -0xb6e70a0e, 0x8ef9, 0x4e83, 0x94, 0xad, 0xec, 0xc8, 0xb0, 0xc0, 0x48, 0x97); - -// {F752461C-1E23-48f6-B9F8-8350850F336F} -DEFINE_GUID(DXFILEOBJ_VertexElement, -0xf752461c, 0x1e23, 0x48f6, 0xb9, 0xf8, 0x83, 0x50, 0x85, 0xf, 0x33, 0x6f); - -// {BF22E553-292C-4781-9FEA-62BD554BDD93} -DEFINE_GUID(DXFILEOBJ_DeclData, -0xbf22e553, 0x292c, 0x4781, 0x9f, 0xea, 0x62, 0xbd, 0x55, 0x4b, 0xdd, 0x93); - -// {F1CFE2B3-0DE3-4e28-AFA1-155A750A282D} -DEFINE_GUID(DXFILEOBJ_EffectFloats, -0xf1cfe2b3, 0xde3, 0x4e28, 0xaf, 0xa1, 0x15, 0x5a, 0x75, 0xa, 0x28, 0x2d); - -// {D55B097E-BDB6-4c52-B03D-6051C89D0E42} -DEFINE_GUID(DXFILEOBJ_EffectString, -0xd55b097e, 0xbdb6, 0x4c52, 0xb0, 0x3d, 0x60, 0x51, 0xc8, 0x9d, 0xe, 0x42); - -// {622C0ED0-956E-4da9-908A-2AF94F3CE716} -DEFINE_GUID(DXFILEOBJ_EffectDWord, -0x622c0ed0, 0x956e, 0x4da9, 0x90, 0x8a, 0x2a, 0xf9, 0x4f, 0x3c, 0xe7, 0x16); - -// {3014B9A0-62F5-478c-9B86-E4AC9F4E418B} -DEFINE_GUID(DXFILEOBJ_EffectParamFloats, -0x3014b9a0, 0x62f5, 0x478c, 0x9b, 0x86, 0xe4, 0xac, 0x9f, 0x4e, 0x41, 0x8b); - -// {1DBC4C88-94C1-46ee-9076-2C28818C9481} -DEFINE_GUID(DXFILEOBJ_EffectParamString, -0x1dbc4c88, 0x94c1, 0x46ee, 0x90, 0x76, 0x2c, 0x28, 0x81, 0x8c, 0x94, 0x81); - -// {E13963BC-AE51-4c5d-B00F-CFA3A9D97CE5} -DEFINE_GUID(DXFILEOBJ_EffectParamDWord, -0xe13963bc, 0xae51, 0x4c5d, 0xb0, 0xf, 0xcf, 0xa3, 0xa9, 0xd9, 0x7c, 0xe5); - -// {E331F7E4-0559-4cc2-8E99-1CEC1657928F} -DEFINE_GUID(DXFILEOBJ_EffectInstance, -0xe331f7e4, 0x559, 0x4cc2, 0x8e, 0x99, 0x1c, 0xec, 0x16, 0x57, 0x92, 0x8f); - -// {9E415A43-7BA6-4a73-8743-B73D47E88476} -DEFINE_GUID(DXFILEOBJ_AnimTicksPerSecond, -0x9e415a43, 0x7ba6, 0x4a73, 0x87, 0x43, 0xb7, 0x3d, 0x47, 0xe8, 0x84, 0x76); - -// {7F9B00B3-F125-4890-876E-1CFFBF697C4D} -DEFINE_GUID(DXFILEOBJ_CompressedAnimationSet, -0x7f9b00b3, 0xf125, 0x4890, 0x87, 0x6e, 0x1c, 0x42, 0xbf, 0x69, 0x7c, 0x4d); - -#pragma pack(push, 1) -typedef struct _XFILECOMPRESSEDANIMATIONSET -{ - DWORD CompressedBlockSize; - FLOAT TicksPerSec; - DWORD PlaybackType; - DWORD BufferLength; -} XFILECOMPRESSEDANIMATIONSET; -#pragma pack(pop) - -#define XSKINEXP_TEMPLATES \ - "xof 0303txt 0032\ - template XSkinMeshHeader \ - { \ - <3CF169CE-FF7C-44ab-93C0-F78F62D172E2> \ - WORD nMaxSkinWeightsPerVertex; \ - WORD nMaxSkinWeightsPerFace; \ - WORD nBones; \ - } \ - template VertexDuplicationIndices \ - { \ - \ - DWORD nIndices; \ - DWORD nOriginalVertices; \ - array DWORD indices[nIndices]; \ - } \ - template FaceAdjacency \ - { \ - \ - DWORD nIndices; \ - array DWORD indices[nIndices]; \ - } \ - template SkinWeights \ - { \ - <6F0D123B-BAD2-4167-A0D0-80224F25FABB> \ - STRING transformNodeName; \ - DWORD nWeights; \ - array DWORD vertexIndices[nWeights]; \ - array float weights[nWeights]; \ - Matrix4x4 matrixOffset; \ - } \ - template Patch \ - { \ - \ - DWORD nControlIndices; \ - array DWORD controlIndices[nControlIndices]; \ - } \ - template PatchMesh \ - { \ - \ - DWORD nVertices; \ - array Vector vertices[nVertices]; \ - DWORD nPatches; \ - array Patch patches[nPatches]; \ - [ ... ] \ - } \ - template PatchMesh9 \ - { \ - \ - DWORD Type; \ - DWORD Degree; \ - DWORD Basis; \ - DWORD nVertices; \ - array Vector vertices[nVertices]; \ - DWORD nPatches; \ - array Patch patches[nPatches]; \ - [ ... ] \ - } " \ - "template EffectFloats \ - { \ - \ - DWORD nFloats; \ - array float Floats[nFloats]; \ - } \ - template EffectString \ - { \ - \ - STRING Value; \ - } \ - template EffectDWord \ - { \ - <622C0ED0-956E-4da9-908A-2AF94F3CE716> \ - DWORD Value; \ - } " \ - "template EffectParamFloats \ - { \ - <3014B9A0-62F5-478c-9B86-E4AC9F4E418B> \ - STRING ParamName; \ - DWORD nFloats; \ - array float Floats[nFloats]; \ - } " \ - "template EffectParamString \ - { \ - <1DBC4C88-94C1-46ee-9076-2C28818C9481> \ - STRING ParamName; \ - STRING Value; \ - } \ - template EffectParamDWord \ - { \ - \ - STRING ParamName; \ - DWORD Value; \ - } \ - template EffectInstance \ - { \ - \ - STRING EffectFilename; \ - [ ... ] \ - } " \ - "template AnimTicksPerSecond \ - { \ - <9E415A43-7BA6-4a73-8743-B73D47E88476> \ - DWORD AnimTicksPerSecond; \ - } \ - template CompressedAnimationSet \ - { \ - <7F9B00B3-F125-4890-876E-1C42BF697C4D> \ - DWORD CompressedBlockSize; \ - FLOAT TicksPerSec; \ - DWORD PlaybackType; \ - DWORD BufferLength; \ - array DWORD CompressedData[BufferLength]; \ - } " - -#define XEXTENSIONS_TEMPLATES \ - "xof 0303txt 0032\ - template FVFData \ - { \ - \ - DWORD dwFVF; \ - DWORD nDWords; \ - array DWORD data[nDWords]; \ - } \ - template VertexElement \ - { \ - \ - DWORD Type; \ - DWORD Method; \ - DWORD Usage; \ - DWORD UsageIndex; \ - } \ - template DeclData \ - { \ - \ - DWORD nElements; \ - array VertexElement Elements[nElements]; \ - DWORD nDWords; \ - array DWORD data[nDWords]; \ - } \ - template PMAttributeRange \ - { \ - <917E0427-C61E-4a14-9C64-AFE65F9E9844> \ - DWORD iFaceOffset; \ - DWORD nFacesMin; \ - DWORD nFacesMax; \ - DWORD iVertexOffset; \ - DWORD nVerticesMin; \ - DWORD nVerticesMax; \ - } \ - template PMVSplitRecord \ - { \ - <574CCC14-F0B3-4333-822D-93E8A8A08E4C> \ - DWORD iFaceCLW; \ - DWORD iVlrOffset; \ - DWORD iCode; \ - } \ - template PMInfo \ - { \ - \ - DWORD nAttributes; \ - array PMAttributeRange attributeRanges[nAttributes]; \ - DWORD nMaxValence; \ - DWORD nMinLogicalVertices; \ - DWORD nMaxLogicalVertices; \ - DWORD nVSplits; \ - array PMVSplitRecord splitRecords[nVSplits]; \ - DWORD nAttributeMispredicts; \ - array DWORD attributeMispredicts[nAttributeMispredicts]; \ - } " - -#endif //__D3DX9MESH_H__ - - diff --git a/SDK/Include/d3dx9shader.h b/SDK/Include/d3dx9shader.h deleted file mode 100644 index 5ed3f01..0000000 --- a/SDK/Include/d3dx9shader.h +++ /dev/null @@ -1,1010 +0,0 @@ -////////////////////////////////////////////////////////////////////////////// -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// -// File: d3dx9shader.h -// Content: D3DX Shader APIs -// -////////////////////////////////////////////////////////////////////////////// - -#include "d3dx9.h" - -#ifndef __D3DX9SHADER_H__ -#define __D3DX9SHADER_H__ - - -//--------------------------------------------------------------------------- -// D3DXTX_VERSION: -// -------------- -// Version token used to create a procedural texture filler in effects -// Used by D3DXFill[]TX functions -//--------------------------------------------------------------------------- -#define D3DXTX_VERSION(_Major,_Minor) (('T' << 24) | ('X' << 16) | ((_Major) << 8) | (_Minor)) - - - -//---------------------------------------------------------------------------- -// D3DXSHADER flags: -// ----------------- -// D3DXSHADER_DEBUG -// Insert debug file/line/type/symbol information. -// -// D3DXSHADER_SKIPVALIDATION -// Do not validate the generated code against known capabilities and -// constraints. This option is only recommended when compiling shaders -// you KNOW will work. (ie. have compiled before without this option.) -// Shaders are always validated by D3D before they are set to the device. -// -// D3DXSHADER_SKIPOPTIMIZATION -// Instructs the compiler to skip optimization steps during code generation. -// Unless you are trying to isolate a problem in your code using this option -// is not recommended. -// -// D3DXSHADER_PACKMATRIX_ROWMAJOR -// Unless explicitly specified, matrices will be packed in row-major order -// on input and output from the shader. -// -// D3DXSHADER_PACKMATRIX_COLUMNMAJOR -// Unless explicitly specified, matrices will be packed in column-major -// order on input and output from the shader. This is generally more -// efficient, since it allows vector-matrix multiplication to be performed -// using a series of dot-products. -// -// D3DXSHADER_PARTIALPRECISION -// Force all computations in resulting shader to occur at partial precision. -// This may result in faster evaluation of shaders on some hardware. -// -// D3DXSHADER_FORCE_VS_SOFTWARE_NOOPT -// Force compiler to compile against the next highest available software -// target for vertex shaders. This flag also turns optimizations off, -// and debugging on. -// -// D3DXSHADER_FORCE_PS_SOFTWARE_NOOPT -// Force compiler to compile against the next highest available software -// target for pixel shaders. This flag also turns optimizations off, -// and debugging on. -// -// D3DXSHADER_NO_PRESHADER -// Disables Preshaders. Using this flag will cause the compiler to not -// pull out static expression for evaluation on the host cpu -// -// D3DXSHADER_AVOID_FLOW_CONTROL -// Hint compiler to avoid flow-control constructs where possible. -// -// D3DXSHADER_PREFER_FLOW_CONTROL -// Hint compiler to prefer flow-control constructs where possible. -// -//---------------------------------------------------------------------------- - -#define D3DXSHADER_DEBUG (1 << 0) -#define D3DXSHADER_SKIPVALIDATION (1 << 1) -#define D3DXSHADER_SKIPOPTIMIZATION (1 << 2) -#define D3DXSHADER_PACKMATRIX_ROWMAJOR (1 << 3) -#define D3DXSHADER_PACKMATRIX_COLUMNMAJOR (1 << 4) -#define D3DXSHADER_PARTIALPRECISION (1 << 5) -#define D3DXSHADER_FORCE_VS_SOFTWARE_NOOPT (1 << 6) -#define D3DXSHADER_FORCE_PS_SOFTWARE_NOOPT (1 << 7) -#define D3DXSHADER_NO_PRESHADER (1 << 8) -#define D3DXSHADER_AVOID_FLOW_CONTROL (1 << 9) -#define D3DXSHADER_PREFER_FLOW_CONTROL (1 << 10) -#define D3DXSHADER_ENABLE_BACKWARDS_COMPATIBILITY (1 << 12) -#define D3DXSHADER_IEEE_STRICTNESS (1 << 13) -#define D3DXSHADER_USE_LEGACY_D3DX9_31_DLL (1 << 16) - - -// optimization level flags -#define D3DXSHADER_OPTIMIZATION_LEVEL0 (1 << 14) -#define D3DXSHADER_OPTIMIZATION_LEVEL1 0 -#define D3DXSHADER_OPTIMIZATION_LEVEL2 ((1 << 14) | (1 << 15)) -#define D3DXSHADER_OPTIMIZATION_LEVEL3 (1 << 15) - - - -//---------------------------------------------------------------------------- -// D3DXCONSTTABLE flags: -// ------------------- - -#define D3DXCONSTTABLE_LARGEADDRESSAWARE (1 << 17) - - - -//---------------------------------------------------------------------------- -// D3DXHANDLE: -// ----------- -// Handle values used to efficiently reference shader and effect parameters. -// Strings can be used as handles. However, handles are not always strings. -//---------------------------------------------------------------------------- - -#ifndef D3DXFX_LARGEADDRESS_HANDLE -typedef LPCSTR D3DXHANDLE; -#else -typedef UINT_PTR D3DXHANDLE; -#endif -typedef D3DXHANDLE *LPD3DXHANDLE; - - -//---------------------------------------------------------------------------- -// D3DXMACRO: -// ---------- -// Preprocessor macro definition. The application pass in a NULL-terminated -// array of this structure to various D3DX APIs. This enables the application -// to #define tokens at runtime, before the file is parsed. -//---------------------------------------------------------------------------- - -typedef struct _D3DXMACRO -{ - LPCSTR Name; - LPCSTR Definition; - -} D3DXMACRO, *LPD3DXMACRO; - - -//---------------------------------------------------------------------------- -// D3DXSEMANTIC: -//---------------------------------------------------------------------------- - -typedef struct _D3DXSEMANTIC -{ - UINT Usage; - UINT UsageIndex; - -} D3DXSEMANTIC, *LPD3DXSEMANTIC; - - - -//---------------------------------------------------------------------------- -// D3DXREGISTER_SET: -//---------------------------------------------------------------------------- - -typedef enum _D3DXREGISTER_SET -{ - D3DXRS_BOOL, - D3DXRS_INT4, - D3DXRS_FLOAT4, - D3DXRS_SAMPLER, - - // force 32-bit size enum - D3DXRS_FORCE_DWORD = 0x7fffffff - -} D3DXREGISTER_SET, *LPD3DXREGISTER_SET; - - -//---------------------------------------------------------------------------- -// D3DXPARAMETER_CLASS: -//---------------------------------------------------------------------------- - -typedef enum _D3DXPARAMETER_CLASS -{ - D3DXPC_SCALAR, - D3DXPC_VECTOR, - D3DXPC_MATRIX_ROWS, - D3DXPC_MATRIX_COLUMNS, - D3DXPC_OBJECT, - D3DXPC_STRUCT, - - // force 32-bit size enum - D3DXPC_FORCE_DWORD = 0x7fffffff - -} D3DXPARAMETER_CLASS, *LPD3DXPARAMETER_CLASS; - - -//---------------------------------------------------------------------------- -// D3DXPARAMETER_TYPE: -//---------------------------------------------------------------------------- - -typedef enum _D3DXPARAMETER_TYPE -{ - D3DXPT_VOID, - D3DXPT_BOOL, - D3DXPT_INT, - D3DXPT_FLOAT, - D3DXPT_STRING, - D3DXPT_TEXTURE, - D3DXPT_TEXTURE1D, - D3DXPT_TEXTURE2D, - D3DXPT_TEXTURE3D, - D3DXPT_TEXTURECUBE, - D3DXPT_SAMPLER, - D3DXPT_SAMPLER1D, - D3DXPT_SAMPLER2D, - D3DXPT_SAMPLER3D, - D3DXPT_SAMPLERCUBE, - D3DXPT_PIXELSHADER, - D3DXPT_VERTEXSHADER, - D3DXPT_PIXELFRAGMENT, - D3DXPT_VERTEXFRAGMENT, - D3DXPT_UNSUPPORTED, - - // force 32-bit size enum - D3DXPT_FORCE_DWORD = 0x7fffffff - -} D3DXPARAMETER_TYPE, *LPD3DXPARAMETER_TYPE; - - -//---------------------------------------------------------------------------- -// D3DXCONSTANTTABLE_DESC: -//---------------------------------------------------------------------------- - -typedef struct _D3DXCONSTANTTABLE_DESC -{ - LPCSTR Creator; // Creator string - DWORD Version; // Shader version - UINT Constants; // Number of constants - -} D3DXCONSTANTTABLE_DESC, *LPD3DXCONSTANTTABLE_DESC; - - -//---------------------------------------------------------------------------- -// D3DXCONSTANT_DESC: -//---------------------------------------------------------------------------- - -typedef struct _D3DXCONSTANT_DESC -{ - LPCSTR Name; // Constant name - - D3DXREGISTER_SET RegisterSet; // Register set - UINT RegisterIndex; // Register index - UINT RegisterCount; // Number of registers occupied - - D3DXPARAMETER_CLASS Class; // Class - D3DXPARAMETER_TYPE Type; // Component type - - UINT Rows; // Number of rows - UINT Columns; // Number of columns - UINT Elements; // Number of array elements - UINT StructMembers; // Number of structure member sub-parameters - - UINT Bytes; // Data size, in bytes - LPCVOID DefaultValue; // Pointer to default value - -} D3DXCONSTANT_DESC, *LPD3DXCONSTANT_DESC; - - - -//---------------------------------------------------------------------------- -// ID3DXConstantTable: -//---------------------------------------------------------------------------- - -typedef interface ID3DXConstantTable ID3DXConstantTable; -typedef interface ID3DXConstantTable *LPD3DXCONSTANTTABLE; - -// {AB3C758F-093E-4356-B762-4DB18F1B3A01} -DEFINE_GUID(IID_ID3DXConstantTable, -0xab3c758f, 0x93e, 0x4356, 0xb7, 0x62, 0x4d, 0xb1, 0x8f, 0x1b, 0x3a, 0x1); - - -#undef INTERFACE -#define INTERFACE ID3DXConstantTable - -DECLARE_INTERFACE_(ID3DXConstantTable, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // Buffer - STDMETHOD_(LPVOID, GetBufferPointer)(THIS) PURE; - STDMETHOD_(DWORD, GetBufferSize)(THIS) PURE; - - // Descs - STDMETHOD(GetDesc)(THIS_ D3DXCONSTANTTABLE_DESC *pDesc) PURE; - STDMETHOD(GetConstantDesc)(THIS_ D3DXHANDLE hConstant, D3DXCONSTANT_DESC *pConstantDesc, UINT *pCount) PURE; - STDMETHOD_(UINT, GetSamplerIndex)(THIS_ D3DXHANDLE hConstant) PURE; - - // Handle operations - STDMETHOD_(D3DXHANDLE, GetConstant)(THIS_ D3DXHANDLE hConstant, UINT Index) PURE; - STDMETHOD_(D3DXHANDLE, GetConstantByName)(THIS_ D3DXHANDLE hConstant, LPCSTR pName) PURE; - STDMETHOD_(D3DXHANDLE, GetConstantElement)(THIS_ D3DXHANDLE hConstant, UINT Index) PURE; - - // Set Constants - STDMETHOD(SetDefaults)(THIS_ LPDIRECT3DDEVICE9 pDevice) PURE; - STDMETHOD(SetValue)(THIS_ LPDIRECT3DDEVICE9 pDevice, D3DXHANDLE hConstant, LPCVOID pData, UINT Bytes) PURE; - STDMETHOD(SetBool)(THIS_ LPDIRECT3DDEVICE9 pDevice, D3DXHANDLE hConstant, BOOL b) PURE; - STDMETHOD(SetBoolArray)(THIS_ LPDIRECT3DDEVICE9 pDevice, D3DXHANDLE hConstant, CONST BOOL* pb, UINT Count) PURE; - STDMETHOD(SetInt)(THIS_ LPDIRECT3DDEVICE9 pDevice, D3DXHANDLE hConstant, INT n) PURE; - STDMETHOD(SetIntArray)(THIS_ LPDIRECT3DDEVICE9 pDevice, D3DXHANDLE hConstant, CONST INT* pn, UINT Count) PURE; - STDMETHOD(SetFloat)(THIS_ LPDIRECT3DDEVICE9 pDevice, D3DXHANDLE hConstant, FLOAT f) PURE; - STDMETHOD(SetFloatArray)(THIS_ LPDIRECT3DDEVICE9 pDevice, D3DXHANDLE hConstant, CONST FLOAT* pf, UINT Count) PURE; - STDMETHOD(SetVector)(THIS_ LPDIRECT3DDEVICE9 pDevice, D3DXHANDLE hConstant, CONST D3DXVECTOR4* pVector) PURE; - STDMETHOD(SetVectorArray)(THIS_ LPDIRECT3DDEVICE9 pDevice, D3DXHANDLE hConstant, CONST D3DXVECTOR4* pVector, UINT Count) PURE; - STDMETHOD(SetMatrix)(THIS_ LPDIRECT3DDEVICE9 pDevice, D3DXHANDLE hConstant, CONST D3DXMATRIX* pMatrix) PURE; - STDMETHOD(SetMatrixArray)(THIS_ LPDIRECT3DDEVICE9 pDevice, D3DXHANDLE hConstant, CONST D3DXMATRIX* pMatrix, UINT Count) PURE; - STDMETHOD(SetMatrixPointerArray)(THIS_ LPDIRECT3DDEVICE9 pDevice, D3DXHANDLE hConstant, CONST D3DXMATRIX** ppMatrix, UINT Count) PURE; - STDMETHOD(SetMatrixTranspose)(THIS_ LPDIRECT3DDEVICE9 pDevice, D3DXHANDLE hConstant, CONST D3DXMATRIX* pMatrix) PURE; - STDMETHOD(SetMatrixTransposeArray)(THIS_ LPDIRECT3DDEVICE9 pDevice, D3DXHANDLE hConstant, CONST D3DXMATRIX* pMatrix, UINT Count) PURE; - STDMETHOD(SetMatrixTransposePointerArray)(THIS_ LPDIRECT3DDEVICE9 pDevice, D3DXHANDLE hConstant, CONST D3DXMATRIX** ppMatrix, UINT Count) PURE; -}; - - -//---------------------------------------------------------------------------- -// ID3DXTextureShader: -//---------------------------------------------------------------------------- - -typedef interface ID3DXTextureShader ID3DXTextureShader; -typedef interface ID3DXTextureShader *LPD3DXTEXTURESHADER; - -// {3E3D67F8-AA7A-405d-A857-BA01D4758426} -DEFINE_GUID(IID_ID3DXTextureShader, -0x3e3d67f8, 0xaa7a, 0x405d, 0xa8, 0x57, 0xba, 0x1, 0xd4, 0x75, 0x84, 0x26); - -#undef INTERFACE -#define INTERFACE ID3DXTextureShader - -DECLARE_INTERFACE_(ID3DXTextureShader, IUnknown) -{ - // IUnknown - STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE; - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - // Gets - STDMETHOD(GetFunction)(THIS_ LPD3DXBUFFER *ppFunction) PURE; - STDMETHOD(GetConstantBuffer)(THIS_ LPD3DXBUFFER *ppConstantBuffer) PURE; - - // Descs - STDMETHOD(GetDesc)(THIS_ D3DXCONSTANTTABLE_DESC *pDesc) PURE; - STDMETHOD(GetConstantDesc)(THIS_ D3DXHANDLE hConstant, D3DXCONSTANT_DESC *pConstantDesc, UINT *pCount) PURE; - - // Handle operations - STDMETHOD_(D3DXHANDLE, GetConstant)(THIS_ D3DXHANDLE hConstant, UINT Index) PURE; - STDMETHOD_(D3DXHANDLE, GetConstantByName)(THIS_ D3DXHANDLE hConstant, LPCSTR pName) PURE; - STDMETHOD_(D3DXHANDLE, GetConstantElement)(THIS_ D3DXHANDLE hConstant, UINT Index) PURE; - - // Set Constants - STDMETHOD(SetDefaults)(THIS) PURE; - STDMETHOD(SetValue)(THIS_ D3DXHANDLE hConstant, LPCVOID pData, UINT Bytes) PURE; - STDMETHOD(SetBool)(THIS_ D3DXHANDLE hConstant, BOOL b) PURE; - STDMETHOD(SetBoolArray)(THIS_ D3DXHANDLE hConstant, CONST BOOL* pb, UINT Count) PURE; - STDMETHOD(SetInt)(THIS_ D3DXHANDLE hConstant, INT n) PURE; - STDMETHOD(SetIntArray)(THIS_ D3DXHANDLE hConstant, CONST INT* pn, UINT Count) PURE; - STDMETHOD(SetFloat)(THIS_ D3DXHANDLE hConstant, FLOAT f) PURE; - STDMETHOD(SetFloatArray)(THIS_ D3DXHANDLE hConstant, CONST FLOAT* pf, UINT Count) PURE; - STDMETHOD(SetVector)(THIS_ D3DXHANDLE hConstant, CONST D3DXVECTOR4* pVector) PURE; - STDMETHOD(SetVectorArray)(THIS_ D3DXHANDLE hConstant, CONST D3DXVECTOR4* pVector, UINT Count) PURE; - STDMETHOD(SetMatrix)(THIS_ D3DXHANDLE hConstant, CONST D3DXMATRIX* pMatrix) PURE; - STDMETHOD(SetMatrixArray)(THIS_ D3DXHANDLE hConstant, CONST D3DXMATRIX* pMatrix, UINT Count) PURE; - STDMETHOD(SetMatrixPointerArray)(THIS_ D3DXHANDLE hConstant, CONST D3DXMATRIX** ppMatrix, UINT Count) PURE; - STDMETHOD(SetMatrixTranspose)(THIS_ D3DXHANDLE hConstant, CONST D3DXMATRIX* pMatrix) PURE; - STDMETHOD(SetMatrixTransposeArray)(THIS_ D3DXHANDLE hConstant, CONST D3DXMATRIX* pMatrix, UINT Count) PURE; - STDMETHOD(SetMatrixTransposePointerArray)(THIS_ D3DXHANDLE hConstant, CONST D3DXMATRIX** ppMatrix, UINT Count) PURE; -}; - - -//---------------------------------------------------------------------------- -// D3DXINCLUDE_TYPE: -//---------------------------------------------------------------------------- - -typedef enum _D3DXINCLUDE_TYPE -{ - D3DXINC_LOCAL, - D3DXINC_SYSTEM, - - // force 32-bit size enum - D3DXINC_FORCE_DWORD = 0x7fffffff - -} D3DXINCLUDE_TYPE, *LPD3DXINCLUDE_TYPE; - - -//---------------------------------------------------------------------------- -// ID3DXInclude: -// ------------- -// This interface is intended to be implemented by the application, and can -// be used by various D3DX APIs. This enables application-specific handling -// of #include directives in source files. -// -// Open() -// Opens an include file. If successful, it should fill in ppData and -// pBytes. The data pointer returned must remain valid until Close is -// subsequently called. The name of the file is encoded in UTF-8 format. -// Close() -// Closes an include file. If Open was successful, Close is guaranteed -// to be called before the API using this interface returns. -//---------------------------------------------------------------------------- - -typedef interface ID3DXInclude ID3DXInclude; -typedef interface ID3DXInclude *LPD3DXINCLUDE; - -#undef INTERFACE -#define INTERFACE ID3DXInclude - -DECLARE_INTERFACE(ID3DXInclude) -{ - STDMETHOD(Open)(THIS_ D3DXINCLUDE_TYPE IncludeType, LPCSTR pFileName, LPCVOID pParentData, LPCVOID *ppData, UINT *pBytes) PURE; - STDMETHOD(Close)(THIS_ LPCVOID pData) PURE; -}; - - -////////////////////////////////////////////////////////////////////////////// -// APIs ////////////////////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - - -//---------------------------------------------------------------------------- -// D3DXAssembleShader: -// ------------------- -// Assembles a shader. -// -// Parameters: -// pSrcFile -// Source file name -// hSrcModule -// Module handle. if NULL, current module will be used -// pSrcResource -// Resource name in module -// pSrcData -// Pointer to source code -// SrcDataLen -// Size of source code, in bytes -// pDefines -// Optional NULL-terminated array of preprocessor macro definitions. -// pInclude -// Optional interface pointer to use for handling #include directives. -// If this parameter is NULL, #includes will be honored when assembling -// from file, and will error when assembling from resource or memory. -// Flags -// See D3DXSHADER_xxx flags -// ppShader -// Returns a buffer containing the created shader. This buffer contains -// the assembled shader code, as well as any embedded debug info. -// ppErrorMsgs -// Returns a buffer containing a listing of errors and warnings that were -// encountered during assembly. If you are running in a debugger, -// these are the same messages you will see in your debug output. -//---------------------------------------------------------------------------- - - -HRESULT WINAPI - D3DXAssembleShaderFromFileA( - LPCSTR pSrcFile, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - DWORD Flags, - LPD3DXBUFFER* ppShader, - LPD3DXBUFFER* ppErrorMsgs); - -HRESULT WINAPI - D3DXAssembleShaderFromFileW( - LPCWSTR pSrcFile, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - DWORD Flags, - LPD3DXBUFFER* ppShader, - LPD3DXBUFFER* ppErrorMsgs); - -#ifdef UNICODE -#define D3DXAssembleShaderFromFile D3DXAssembleShaderFromFileW -#else -#define D3DXAssembleShaderFromFile D3DXAssembleShaderFromFileA -#endif - - -HRESULT WINAPI - D3DXAssembleShaderFromResourceA( - HMODULE hSrcModule, - LPCSTR pSrcResource, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - DWORD Flags, - LPD3DXBUFFER* ppShader, - LPD3DXBUFFER* ppErrorMsgs); - -HRESULT WINAPI - D3DXAssembleShaderFromResourceW( - HMODULE hSrcModule, - LPCWSTR pSrcResource, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - DWORD Flags, - LPD3DXBUFFER* ppShader, - LPD3DXBUFFER* ppErrorMsgs); - -#ifdef UNICODE -#define D3DXAssembleShaderFromResource D3DXAssembleShaderFromResourceW -#else -#define D3DXAssembleShaderFromResource D3DXAssembleShaderFromResourceA -#endif - - -HRESULT WINAPI - D3DXAssembleShader( - LPCSTR pSrcData, - UINT SrcDataLen, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - DWORD Flags, - LPD3DXBUFFER* ppShader, - LPD3DXBUFFER* ppErrorMsgs); - - - -//---------------------------------------------------------------------------- -// D3DXCompileShader: -// ------------------ -// Compiles a shader. -// -// Parameters: -// pSrcFile -// Source file name. -// hSrcModule -// Module handle. if NULL, current module will be used. -// pSrcResource -// Resource name in module. -// pSrcData -// Pointer to source code. -// SrcDataLen -// Size of source code, in bytes. -// pDefines -// Optional NULL-terminated array of preprocessor macro definitions. -// pInclude -// Optional interface pointer to use for handling #include directives. -// If this parameter is NULL, #includes will be honored when compiling -// from file, and will error when compiling from resource or memory. -// pFunctionName -// Name of the entrypoint function where execution should begin. -// pProfile -// Instruction set to be used when generating code. Currently supported -// profiles are "vs_1_1", "vs_2_0", "vs_2_a", "vs_2_sw", "ps_1_1", -// "ps_1_2", "ps_1_3", "ps_1_4", "ps_2_0", "ps_2_a", "ps_2_sw", "tx_1_0" -// Flags -// See D3DXSHADER_xxx flags. -// ppShader -// Returns a buffer containing the created shader. This buffer contains -// the compiled shader code, as well as any embedded debug and symbol -// table info. (See D3DXGetShaderConstantTable) -// ppErrorMsgs -// Returns a buffer containing a listing of errors and warnings that were -// encountered during the compile. If you are running in a debugger, -// these are the same messages you will see in your debug output. -// ppConstantTable -// Returns a ID3DXConstantTable object which can be used to set -// shader constants to the device. Alternatively, an application can -// parse the D3DXSHADER_CONSTANTTABLE block embedded as a comment within -// the shader. -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXCompileShaderFromFileA( - LPCSTR pSrcFile, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - LPCSTR pFunctionName, - LPCSTR pProfile, - DWORD Flags, - LPD3DXBUFFER* ppShader, - LPD3DXBUFFER* ppErrorMsgs, - LPD3DXCONSTANTTABLE* ppConstantTable); - -HRESULT WINAPI - D3DXCompileShaderFromFileW( - LPCWSTR pSrcFile, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - LPCSTR pFunctionName, - LPCSTR pProfile, - DWORD Flags, - LPD3DXBUFFER* ppShader, - LPD3DXBUFFER* ppErrorMsgs, - LPD3DXCONSTANTTABLE* ppConstantTable); - -#ifdef UNICODE -#define D3DXCompileShaderFromFile D3DXCompileShaderFromFileW -#else -#define D3DXCompileShaderFromFile D3DXCompileShaderFromFileA -#endif - - -HRESULT WINAPI - D3DXCompileShaderFromResourceA( - HMODULE hSrcModule, - LPCSTR pSrcResource, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - LPCSTR pFunctionName, - LPCSTR pProfile, - DWORD Flags, - LPD3DXBUFFER* ppShader, - LPD3DXBUFFER* ppErrorMsgs, - LPD3DXCONSTANTTABLE* ppConstantTable); - -HRESULT WINAPI - D3DXCompileShaderFromResourceW( - HMODULE hSrcModule, - LPCWSTR pSrcResource, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - LPCSTR pFunctionName, - LPCSTR pProfile, - DWORD Flags, - LPD3DXBUFFER* ppShader, - LPD3DXBUFFER* ppErrorMsgs, - LPD3DXCONSTANTTABLE* ppConstantTable); - -#ifdef UNICODE -#define D3DXCompileShaderFromResource D3DXCompileShaderFromResourceW -#else -#define D3DXCompileShaderFromResource D3DXCompileShaderFromResourceA -#endif - - -HRESULT WINAPI - D3DXCompileShader( - LPCSTR pSrcData, - UINT SrcDataLen, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - LPCSTR pFunctionName, - LPCSTR pProfile, - DWORD Flags, - LPD3DXBUFFER* ppShader, - LPD3DXBUFFER* ppErrorMsgs, - LPD3DXCONSTANTTABLE* ppConstantTable); - - -//---------------------------------------------------------------------------- -// D3DXDisassembleShader: -// ---------------------- -// Takes a binary shader, and returns a buffer containing text assembly. -// -// Parameters: -// pShader -// Pointer to the shader byte code. -// ShaderSizeInBytes -// Size of the shader byte code in bytes. -// EnableColorCode -// Emit HTML tags for color coding the output? -// pComments -// Pointer to a comment string to include at the top of the shader. -// ppDisassembly -// Returns a buffer containing the disassembled shader. -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXDisassembleShader( - CONST DWORD* pShader, - BOOL EnableColorCode, - LPCSTR pComments, - LPD3DXBUFFER* ppDisassembly); - - -//---------------------------------------------------------------------------- -// D3DXGetPixelShaderProfile/D3DXGetVertexShaderProfile: -// ----------------------------------------------------- -// Returns the name of the HLSL profile best suited to a given device. -// -// Parameters: -// pDevice -// Pointer to the device in question -//---------------------------------------------------------------------------- - -LPCSTR WINAPI - D3DXGetPixelShaderProfile( - LPDIRECT3DDEVICE9 pDevice); - -LPCSTR WINAPI - D3DXGetVertexShaderProfile( - LPDIRECT3DDEVICE9 pDevice); - - -//---------------------------------------------------------------------------- -// D3DXFindShaderComment: -// ---------------------- -// Searches through a shader for a particular comment, denoted by a FourCC in -// the first DWORD of the comment. If the comment is not found, and no other -// error has occurred, S_FALSE is returned. -// -// Parameters: -// pFunction -// Pointer to the function DWORD stream -// FourCC -// FourCC used to identify the desired comment block. -// ppData -// Returns a pointer to the comment data (not including comment token -// and FourCC). Can be NULL. -// pSizeInBytes -// Returns the size of the comment data in bytes. Can be NULL. -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXFindShaderComment( - CONST DWORD* pFunction, - DWORD FourCC, - LPCVOID* ppData, - UINT* pSizeInBytes); - - -//---------------------------------------------------------------------------- -// D3DXGetShaderSize: -// ------------------ -// Returns the size of the shader byte-code, in bytes. -// -// Parameters: -// pFunction -// Pointer to the function DWORD stream -//---------------------------------------------------------------------------- - -UINT WINAPI - D3DXGetShaderSize( - CONST DWORD* pFunction); - - -//---------------------------------------------------------------------------- -// D3DXGetShaderVersion: -// ----------------------- -// Returns the shader version of a given shader. Returns zero if the shader -// function is NULL. -// -// Parameters: -// pFunction -// Pointer to the function DWORD stream -//---------------------------------------------------------------------------- - -DWORD WINAPI - D3DXGetShaderVersion( - CONST DWORD* pFunction); - -//---------------------------------------------------------------------------- -// D3DXGetShaderSemantics: -// ----------------------- -// Gets semantics for all input elements referenced inside a given shader. -// -// Parameters: -// pFunction -// Pointer to the function DWORD stream -// pSemantics -// Pointer to an array of D3DXSEMANTIC structures. The function will -// fill this array with the semantics for each input element referenced -// inside the shader. This array is assumed to contain at least -// MAXD3DDECLLENGTH elements. -// pCount -// Returns the number of elements referenced by the shader -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXGetShaderInputSemantics( - CONST DWORD* pFunction, - D3DXSEMANTIC* pSemantics, - UINT* pCount); - -HRESULT WINAPI - D3DXGetShaderOutputSemantics( - CONST DWORD* pFunction, - D3DXSEMANTIC* pSemantics, - UINT* pCount); - - -//---------------------------------------------------------------------------- -// D3DXGetShaderSamplers: -// ---------------------- -// Gets semantics for all input elements referenced inside a given shader. -// -// pFunction -// Pointer to the function DWORD stream -// pSamplers -// Pointer to an array of LPCSTRs. The function will fill this array -// with pointers to the sampler names contained within pFunction, for -// each sampler referenced inside the shader. This array is assumed to -// contain at least 16 elements. -// pCount -// Returns the number of samplers referenced by the shader -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXGetShaderSamplers( - CONST DWORD* pFunction, - LPCSTR* pSamplers, - UINT* pCount); - - -//---------------------------------------------------------------------------- -// D3DXGetShaderConstantTable: -// --------------------------- -// Gets shader constant table embedded inside shader. A constant table is -// generated by D3DXAssembleShader and D3DXCompileShader, and is embedded in -// the body of the shader. -// -// Parameters: -// pFunction -// Pointer to the function DWORD stream -// Flags -// See D3DXCONSTTABLE_xxx -// ppConstantTable -// Returns a ID3DXConstantTable object which can be used to set -// shader constants to the device. Alternatively, an application can -// parse the D3DXSHADER_CONSTANTTABLE block embedded as a comment within -// the shader. -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXGetShaderConstantTable( - CONST DWORD* pFunction, - LPD3DXCONSTANTTABLE* ppConstantTable); - -HRESULT WINAPI - D3DXGetShaderConstantTableEx( - CONST DWORD* pFunction, - DWORD Flags, - LPD3DXCONSTANTTABLE* ppConstantTable); - - - -//---------------------------------------------------------------------------- -// D3DXCreateTextureShader: -// ------------------------ -// Creates a texture shader object, given the compiled shader. -// -// Parameters -// pFunction -// Pointer to the function DWORD stream -// ppTextureShader -// Returns a ID3DXTextureShader object which can be used to procedurally -// fill the contents of a texture using the D3DXFillTextureTX functions. -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXCreateTextureShader( - CONST DWORD* pFunction, - LPD3DXTEXTURESHADER* ppTextureShader); - - -//---------------------------------------------------------------------------- -// D3DXPreprocessShader: -// --------------------- -// Runs the preprocessor on the specified shader or effect, but does -// not actually compile it. This is useful for evaluating the #includes -// and #defines in a shader and then emitting a reformatted token stream -// for debugging purposes or for generating a self-contained shader. -// -// Parameters: -// pSrcFile -// Source file name -// hSrcModule -// Module handle. if NULL, current module will be used -// pSrcResource -// Resource name in module -// pSrcData -// Pointer to source code -// SrcDataLen -// Size of source code, in bytes -// pDefines -// Optional NULL-terminated array of preprocessor macro definitions. -// pInclude -// Optional interface pointer to use for handling #include directives. -// If this parameter is NULL, #includes will be honored when assembling -// from file, and will error when assembling from resource or memory. -// ppShaderText -// Returns a buffer containing a single large string that represents -// the resulting formatted token stream -// ppErrorMsgs -// Returns a buffer containing a listing of errors and warnings that were -// encountered during assembly. If you are running in a debugger, -// these are the same messages you will see in your debug output. -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXPreprocessShaderFromFileA( - LPCSTR pSrcFile, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - LPD3DXBUFFER* ppShaderText, - LPD3DXBUFFER* ppErrorMsgs); - -HRESULT WINAPI - D3DXPreprocessShaderFromFileW( - LPCWSTR pSrcFile, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - LPD3DXBUFFER* ppShaderText, - LPD3DXBUFFER* ppErrorMsgs); - -#ifdef UNICODE -#define D3DXPreprocessShaderFromFile D3DXPreprocessShaderFromFileW -#else -#define D3DXPreprocessShaderFromFile D3DXPreprocessShaderFromFileA -#endif - -HRESULT WINAPI - D3DXPreprocessShaderFromResourceA( - HMODULE hSrcModule, - LPCSTR pSrcResource, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - LPD3DXBUFFER* ppShaderText, - LPD3DXBUFFER* ppErrorMsgs); - -HRESULT WINAPI - D3DXPreprocessShaderFromResourceW( - HMODULE hSrcModule, - LPCWSTR pSrcResource, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - LPD3DXBUFFER* ppShaderText, - LPD3DXBUFFER* ppErrorMsgs); - -#ifdef UNICODE -#define D3DXPreprocessShaderFromResource D3DXPreprocessShaderFromResourceW -#else -#define D3DXPreprocessShaderFromResource D3DXPreprocessShaderFromResourceA -#endif - -HRESULT WINAPI - D3DXPreprocessShader( - LPCSTR pSrcData, - UINT SrcDataSize, - CONST D3DXMACRO* pDefines, - LPD3DXINCLUDE pInclude, - LPD3DXBUFFER* ppShaderText, - LPD3DXBUFFER* ppErrorMsgs); - - -#ifdef __cplusplus -} -#endif //__cplusplus - - -////////////////////////////////////////////////////////////////////////////// -// Shader comment block layouts ////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -//---------------------------------------------------------------------------- -// D3DXSHADER_CONSTANTTABLE: -// ------------------------- -// Shader constant information; included as an CTAB comment block inside -// shaders. All offsets are BYTE offsets from start of CONSTANTTABLE struct. -// Entries in the table are sorted by Name in ascending order. -//---------------------------------------------------------------------------- - -typedef struct _D3DXSHADER_CONSTANTTABLE -{ - DWORD Size; // sizeof(D3DXSHADER_CONSTANTTABLE) - DWORD Creator; // LPCSTR offset - DWORD Version; // shader version - DWORD Constants; // number of constants - DWORD ConstantInfo; // D3DXSHADER_CONSTANTINFO[Constants] offset - DWORD Flags; // flags shader was compiled with - DWORD Target; // LPCSTR offset - -} D3DXSHADER_CONSTANTTABLE, *LPD3DXSHADER_CONSTANTTABLE; - - -typedef struct _D3DXSHADER_CONSTANTINFO -{ - DWORD Name; // LPCSTR offset - WORD RegisterSet; // D3DXREGISTER_SET - WORD RegisterIndex; // register number - WORD RegisterCount; // number of registers - WORD Reserved; // reserved - DWORD TypeInfo; // D3DXSHADER_TYPEINFO offset - DWORD DefaultValue; // offset of default value - -} D3DXSHADER_CONSTANTINFO, *LPD3DXSHADER_CONSTANTINFO; - - -typedef struct _D3DXSHADER_TYPEINFO -{ - WORD Class; // D3DXPARAMETER_CLASS - WORD Type; // D3DXPARAMETER_TYPE - WORD Rows; // number of rows (matrices) - WORD Columns; // number of columns (vectors and matrices) - WORD Elements; // array dimension - WORD StructMembers; // number of struct members - DWORD StructMemberInfo; // D3DXSHADER_STRUCTMEMBERINFO[Members] offset - -} D3DXSHADER_TYPEINFO, *LPD3DXSHADER_TYPEINFO; - - -typedef struct _D3DXSHADER_STRUCTMEMBERINFO -{ - DWORD Name; // LPCSTR offset - DWORD TypeInfo; // D3DXSHADER_TYPEINFO offset - -} D3DXSHADER_STRUCTMEMBERINFO, *LPD3DXSHADER_STRUCTMEMBERINFO; - - - -#endif //__D3DX9SHADER_H__ - diff --git a/SDK/Include/d3dx9shape.h b/SDK/Include/d3dx9shape.h deleted file mode 100644 index 4c23091..0000000 --- a/SDK/Include/d3dx9shape.h +++ /dev/null @@ -1,221 +0,0 @@ -/////////////////////////////////////////////////////////////////////////// -// -// Copyright (C) Microsoft Corporation. All Rights Reserved. -// -// File: d3dx9shapes.h -// Content: D3DX simple shapes -// -/////////////////////////////////////////////////////////////////////////// - -#include "d3dx9.h" - -#ifndef __D3DX9SHAPES_H__ -#define __D3DX9SHAPES_H__ - -/////////////////////////////////////////////////////////////////////////// -// Functions: -/////////////////////////////////////////////////////////////////////////// - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - - -//------------------------------------------------------------------------- -// D3DXCreatePolygon: -// ------------------ -// Creates a mesh containing an n-sided polygon. The polygon is centered -// at the origin. -// -// Parameters: -// -// pDevice The D3D device with which the mesh is going to be used. -// Length Length of each side. -// Sides Number of sides the polygon has. (Must be >= 3) -// ppMesh The mesh object which will be created -// ppAdjacency Returns a buffer containing adjacency info. Can be NULL. -//------------------------------------------------------------------------- -HRESULT WINAPI - D3DXCreatePolygon( - LPDIRECT3DDEVICE9 pDevice, - FLOAT Length, - UINT Sides, - LPD3DXMESH* ppMesh, - LPD3DXBUFFER* ppAdjacency); - - -//------------------------------------------------------------------------- -// D3DXCreateBox: -// -------------- -// Creates a mesh containing an axis-aligned box. The box is centered at -// the origin. -// -// Parameters: -// -// pDevice The D3D device with which the mesh is going to be used. -// Width Width of box (along X-axis) -// Height Height of box (along Y-axis) -// Depth Depth of box (along Z-axis) -// ppMesh The mesh object which will be created -// ppAdjacency Returns a buffer containing adjacency info. Can be NULL. -//------------------------------------------------------------------------- -HRESULT WINAPI - D3DXCreateBox( - LPDIRECT3DDEVICE9 pDevice, - FLOAT Width, - FLOAT Height, - FLOAT Depth, - LPD3DXMESH* ppMesh, - LPD3DXBUFFER* ppAdjacency); - - -//------------------------------------------------------------------------- -// D3DXCreateCylinder: -// ------------------- -// Creates a mesh containing a cylinder. The generated cylinder is -// centered at the origin, and its axis is aligned with the Z-axis. -// -// Parameters: -// -// pDevice The D3D device with which the mesh is going to be used. -// Radius1 Radius at -Z end (should be >= 0.0f) -// Radius2 Radius at +Z end (should be >= 0.0f) -// Length Length of cylinder (along Z-axis) -// Slices Number of slices about the main axis -// Stacks Number of stacks along the main axis -// ppMesh The mesh object which will be created -// ppAdjacency Returns a buffer containing adjacency info. Can be NULL. -//------------------------------------------------------------------------- -HRESULT WINAPI - D3DXCreateCylinder( - LPDIRECT3DDEVICE9 pDevice, - FLOAT Radius1, - FLOAT Radius2, - FLOAT Length, - UINT Slices, - UINT Stacks, - LPD3DXMESH* ppMesh, - LPD3DXBUFFER* ppAdjacency); - - -//------------------------------------------------------------------------- -// D3DXCreateSphere: -// ----------------- -// Creates a mesh containing a sphere. The sphere is centered at the -// origin. -// -// Parameters: -// -// pDevice The D3D device with which the mesh is going to be used. -// Radius Radius of the sphere (should be >= 0.0f) -// Slices Number of slices about the main axis -// Stacks Number of stacks along the main axis -// ppMesh The mesh object which will be created -// ppAdjacency Returns a buffer containing adjacency info. Can be NULL. -//------------------------------------------------------------------------- -HRESULT WINAPI - D3DXCreateSphere( - LPDIRECT3DDEVICE9 pDevice, - FLOAT Radius, - UINT Slices, - UINT Stacks, - LPD3DXMESH* ppMesh, - LPD3DXBUFFER* ppAdjacency); - - -//------------------------------------------------------------------------- -// D3DXCreateTorus: -// ---------------- -// Creates a mesh containing a torus. The generated torus is centered at -// the origin, and its axis is aligned with the Z-axis. -// -// Parameters: -// -// pDevice The D3D device with which the mesh is going to be used. -// InnerRadius Inner radius of the torus (should be >= 0.0f) -// OuterRadius Outer radius of the torue (should be >= 0.0f) -// Sides Number of sides in a cross-section (must be >= 3) -// Rings Number of rings making up the torus (must be >= 3) -// ppMesh The mesh object which will be created -// ppAdjacency Returns a buffer containing adjacency info. Can be NULL. -//------------------------------------------------------------------------- -HRESULT WINAPI - D3DXCreateTorus( - LPDIRECT3DDEVICE9 pDevice, - FLOAT InnerRadius, - FLOAT OuterRadius, - UINT Sides, - UINT Rings, - LPD3DXMESH* ppMesh, - LPD3DXBUFFER* ppAdjacency); - - -//------------------------------------------------------------------------- -// D3DXCreateTeapot: -// ----------------- -// Creates a mesh containing a teapot. -// -// Parameters: -// -// pDevice The D3D device with which the mesh is going to be used. -// ppMesh The mesh object which will be created -// ppAdjacency Returns a buffer containing adjacency info. Can be NULL. -//------------------------------------------------------------------------- -HRESULT WINAPI - D3DXCreateTeapot( - LPDIRECT3DDEVICE9 pDevice, - LPD3DXMESH* ppMesh, - LPD3DXBUFFER* ppAdjacency); - - -//------------------------------------------------------------------------- -// D3DXCreateText: -// --------------- -// Creates a mesh containing the specified text using the font associated -// with the device context. -// -// Parameters: -// -// pDevice The D3D device with which the mesh is going to be used. -// hDC Device context, with desired font selected -// pText Text to generate -// Deviation Maximum chordal deviation from true font outlines -// Extrusion Amount to extrude text in -Z direction -// ppMesh The mesh object which will be created -// pGlyphMetrics Address of buffer to receive glyph metric data (or NULL) -//------------------------------------------------------------------------- -HRESULT WINAPI - D3DXCreateTextA( - LPDIRECT3DDEVICE9 pDevice, - HDC hDC, - LPCSTR pText, - FLOAT Deviation, - FLOAT Extrusion, - LPD3DXMESH* ppMesh, - LPD3DXBUFFER* ppAdjacency, - LPGLYPHMETRICSFLOAT pGlyphMetrics); - -HRESULT WINAPI - D3DXCreateTextW( - LPDIRECT3DDEVICE9 pDevice, - HDC hDC, - LPCWSTR pText, - FLOAT Deviation, - FLOAT Extrusion, - LPD3DXMESH* ppMesh, - LPD3DXBUFFER* ppAdjacency, - LPGLYPHMETRICSFLOAT pGlyphMetrics); - -#ifdef UNICODE -#define D3DXCreateText D3DXCreateTextW -#else -#define D3DXCreateText D3DXCreateTextA -#endif - - -#ifdef __cplusplus -} -#endif //__cplusplus - -#endif //__D3DX9SHAPES_H__ - diff --git a/SDK/Include/d3dx9tex.h b/SDK/Include/d3dx9tex.h deleted file mode 100644 index c4b6510..0000000 --- a/SDK/Include/d3dx9tex.h +++ /dev/null @@ -1,1735 +0,0 @@ -////////////////////////////////////////////////////////////////////////////// -// -// Copyright (C) Microsoft Corporation. All Rights Reserved. -// -// File: d3dx9tex.h -// Content: D3DX texturing APIs -// -////////////////////////////////////////////////////////////////////////////// - -#include "d3dx9.h" - -#ifndef __D3DX9TEX_H__ -#define __D3DX9TEX_H__ - - -//---------------------------------------------------------------------------- -// D3DX_FILTER flags: -// ------------------ -// -// A valid filter must contain one of these values: -// -// D3DX_FILTER_NONE -// No scaling or filtering will take place. Pixels outside the bounds -// of the source image are assumed to be transparent black. -// D3DX_FILTER_POINT -// Each destination pixel is computed by sampling the nearest pixel -// from the source image. -// D3DX_FILTER_LINEAR -// Each destination pixel is computed by linearly interpolating between -// the nearest pixels in the source image. This filter works best -// when the scale on each axis is less than 2. -// D3DX_FILTER_TRIANGLE -// Every pixel in the source image contributes equally to the -// destination image. This is the slowest of all the filters. -// D3DX_FILTER_BOX -// Each pixel is computed by averaging a 2x2(x2) box pixels from -// the source image. Only works when the dimensions of the -// destination are half those of the source. (as with mip maps) -// -// And can be OR'd with any of these optional flags: -// -// D3DX_FILTER_MIRROR_U -// Indicates that pixels off the edge of the texture on the U-axis -// should be mirrored, not wraped. -// D3DX_FILTER_MIRROR_V -// Indicates that pixels off the edge of the texture on the V-axis -// should be mirrored, not wraped. -// D3DX_FILTER_MIRROR_W -// Indicates that pixels off the edge of the texture on the W-axis -// should be mirrored, not wraped. -// D3DX_FILTER_MIRROR -// Same as specifying D3DX_FILTER_MIRROR_U | D3DX_FILTER_MIRROR_V | -// D3DX_FILTER_MIRROR_V -// D3DX_FILTER_DITHER -// Dithers the resulting image using a 4x4 order dither pattern. -// D3DX_FILTER_SRGB_IN -// Denotes that the input data is in sRGB (gamma 2.2) colorspace. -// D3DX_FILTER_SRGB_OUT -// Denotes that the output data is in sRGB (gamma 2.2) colorspace. -// D3DX_FILTER_SRGB -// Same as specifying D3DX_FILTER_SRGB_IN | D3DX_FILTER_SRGB_OUT -// -//---------------------------------------------------------------------------- - -#define D3DX_FILTER_NONE (1 << 0) -#define D3DX_FILTER_POINT (2 << 0) -#define D3DX_FILTER_LINEAR (3 << 0) -#define D3DX_FILTER_TRIANGLE (4 << 0) -#define D3DX_FILTER_BOX (5 << 0) - -#define D3DX_FILTER_MIRROR_U (1 << 16) -#define D3DX_FILTER_MIRROR_V (2 << 16) -#define D3DX_FILTER_MIRROR_W (4 << 16) -#define D3DX_FILTER_MIRROR (7 << 16) - -#define D3DX_FILTER_DITHER (1 << 19) -#define D3DX_FILTER_DITHER_DIFFUSION (2 << 19) - -#define D3DX_FILTER_SRGB_IN (1 << 21) -#define D3DX_FILTER_SRGB_OUT (2 << 21) -#define D3DX_FILTER_SRGB (3 << 21) - - -//----------------------------------------------------------------------------- -// D3DX_SKIP_DDS_MIP_LEVELS is used to skip mip levels when loading a DDS file: -//----------------------------------------------------------------------------- - -#define D3DX_SKIP_DDS_MIP_LEVELS_MASK 0x1F -#define D3DX_SKIP_DDS_MIP_LEVELS_SHIFT 26 -#define D3DX_SKIP_DDS_MIP_LEVELS(levels, filter) ((((levels) & D3DX_SKIP_DDS_MIP_LEVELS_MASK) << D3DX_SKIP_DDS_MIP_LEVELS_SHIFT) | ((filter) == D3DX_DEFAULT ? D3DX_FILTER_BOX : (filter))) - - - - -//---------------------------------------------------------------------------- -// D3DX_NORMALMAP flags: -// --------------------- -// These flags are used to control how D3DXComputeNormalMap generates normal -// maps. Any number of these flags may be OR'd together in any combination. -// -// D3DX_NORMALMAP_MIRROR_U -// Indicates that pixels off the edge of the texture on the U-axis -// should be mirrored, not wraped. -// D3DX_NORMALMAP_MIRROR_V -// Indicates that pixels off the edge of the texture on the V-axis -// should be mirrored, not wraped. -// D3DX_NORMALMAP_MIRROR -// Same as specifying D3DX_NORMALMAP_MIRROR_U | D3DX_NORMALMAP_MIRROR_V -// D3DX_NORMALMAP_INVERTSIGN -// Inverts the direction of each normal -// D3DX_NORMALMAP_COMPUTE_OCCLUSION -// Compute the per pixel Occlusion term and encodes it into the alpha. -// An Alpha of 1 means that the pixel is not obscured in anyway, and -// an alpha of 0 would mean that the pixel is completly obscured. -// -//---------------------------------------------------------------------------- - -//---------------------------------------------------------------------------- - -#define D3DX_NORMALMAP_MIRROR_U (1 << 16) -#define D3DX_NORMALMAP_MIRROR_V (2 << 16) -#define D3DX_NORMALMAP_MIRROR (3 << 16) -#define D3DX_NORMALMAP_INVERTSIGN (8 << 16) -#define D3DX_NORMALMAP_COMPUTE_OCCLUSION (16 << 16) - - - - -//---------------------------------------------------------------------------- -// D3DX_CHANNEL flags: -// ------------------- -// These flags are used by functions which operate on or more channels -// in a texture. -// -// D3DX_CHANNEL_RED -// Indicates the red channel should be used -// D3DX_CHANNEL_BLUE -// Indicates the blue channel should be used -// D3DX_CHANNEL_GREEN -// Indicates the green channel should be used -// D3DX_CHANNEL_ALPHA -// Indicates the alpha channel should be used -// D3DX_CHANNEL_LUMINANCE -// Indicates the luminaces of the red green and blue channels should be -// used. -// -//---------------------------------------------------------------------------- - -#define D3DX_CHANNEL_RED (1 << 0) -#define D3DX_CHANNEL_BLUE (1 << 1) -#define D3DX_CHANNEL_GREEN (1 << 2) -#define D3DX_CHANNEL_ALPHA (1 << 3) -#define D3DX_CHANNEL_LUMINANCE (1 << 4) - - - - -//---------------------------------------------------------------------------- -// D3DXIMAGE_FILEFORMAT: -// --------------------- -// This enum is used to describe supported image file formats. -// -//---------------------------------------------------------------------------- - -typedef enum _D3DXIMAGE_FILEFORMAT -{ - D3DXIFF_BMP = 0, - D3DXIFF_JPG = 1, - D3DXIFF_TGA = 2, - D3DXIFF_PNG = 3, - D3DXIFF_DDS = 4, - D3DXIFF_PPM = 5, - D3DXIFF_DIB = 6, - D3DXIFF_HDR = 7, //high dynamic range formats - D3DXIFF_PFM = 8, // - D3DXIFF_FORCE_DWORD = 0x7fffffff - -} D3DXIMAGE_FILEFORMAT; - - -//---------------------------------------------------------------------------- -// LPD3DXFILL2D and LPD3DXFILL3D: -// ------------------------------ -// Function types used by the texture fill functions. -// -// Parameters: -// pOut -// Pointer to a vector which the function uses to return its result. -// X,Y,Z,W will be mapped to R,G,B,A respectivly. -// pTexCoord -// Pointer to a vector containing the coordinates of the texel currently -// being evaluated. Textures and VolumeTexture texcoord components -// range from 0 to 1. CubeTexture texcoord component range from -1 to 1. -// pTexelSize -// Pointer to a vector containing the dimensions of the current texel. -// pData -// Pointer to user data. -// -//---------------------------------------------------------------------------- - -typedef VOID (WINAPI *LPD3DXFILL2D)(D3DXVECTOR4 *pOut, - CONST D3DXVECTOR2 *pTexCoord, CONST D3DXVECTOR2 *pTexelSize, LPVOID pData); - -typedef VOID (WINAPI *LPD3DXFILL3D)(D3DXVECTOR4 *pOut, - CONST D3DXVECTOR3 *pTexCoord, CONST D3DXVECTOR3 *pTexelSize, LPVOID pData); - - - -//---------------------------------------------------------------------------- -// D3DXIMAGE_INFO: -// --------------- -// This structure is used to return a rough description of what the -// the original contents of an image file looked like. -// -// Width -// Width of original image in pixels -// Height -// Height of original image in pixels -// Depth -// Depth of original image in pixels -// MipLevels -// Number of mip levels in original image -// Format -// D3D format which most closely describes the data in original image -// ResourceType -// D3DRESOURCETYPE representing the type of texture stored in the file. -// D3DRTYPE_TEXTURE, D3DRTYPE_VOLUMETEXTURE, or D3DRTYPE_CUBETEXTURE. -// ImageFileFormat -// D3DXIMAGE_FILEFORMAT representing the format of the image file. -// -//---------------------------------------------------------------------------- - -typedef struct _D3DXIMAGE_INFO -{ - UINT Width; - UINT Height; - UINT Depth; - UINT MipLevels; - D3DFORMAT Format; - D3DRESOURCETYPE ResourceType; - D3DXIMAGE_FILEFORMAT ImageFileFormat; - -} D3DXIMAGE_INFO; - - - - - -#ifdef __cplusplus -extern "C" { -#endif //__cplusplus - - - -////////////////////////////////////////////////////////////////////////////// -// Image File APIs /////////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// -; -//---------------------------------------------------------------------------- -// GetImageInfoFromFile/Resource: -// ------------------------------ -// Fills in a D3DXIMAGE_INFO struct with information about an image file. -// -// Parameters: -// pSrcFile -// File name of the source image. -// pSrcModule -// Module where resource is located, or NULL for module associated -// with image the os used to create the current process. -// pSrcResource -// Resource name -// pSrcData -// Pointer to file in memory. -// SrcDataSize -// Size in bytes of file in memory. -// pSrcInfo -// Pointer to a D3DXIMAGE_INFO structure to be filled in with the -// description of the data in the source image file. -// -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXGetImageInfoFromFileA( - LPCSTR pSrcFile, - D3DXIMAGE_INFO* pSrcInfo); - -HRESULT WINAPI - D3DXGetImageInfoFromFileW( - LPCWSTR pSrcFile, - D3DXIMAGE_INFO* pSrcInfo); - -#ifdef UNICODE -#define D3DXGetImageInfoFromFile D3DXGetImageInfoFromFileW -#else -#define D3DXGetImageInfoFromFile D3DXGetImageInfoFromFileA -#endif - - -HRESULT WINAPI - D3DXGetImageInfoFromResourceA( - HMODULE hSrcModule, - LPCSTR pSrcResource, - D3DXIMAGE_INFO* pSrcInfo); - -HRESULT WINAPI - D3DXGetImageInfoFromResourceW( - HMODULE hSrcModule, - LPCWSTR pSrcResource, - D3DXIMAGE_INFO* pSrcInfo); - -#ifdef UNICODE -#define D3DXGetImageInfoFromResource D3DXGetImageInfoFromResourceW -#else -#define D3DXGetImageInfoFromResource D3DXGetImageInfoFromResourceA -#endif - - -HRESULT WINAPI - D3DXGetImageInfoFromFileInMemory( - LPCVOID pSrcData, - UINT SrcDataSize, - D3DXIMAGE_INFO* pSrcInfo); - - - - -////////////////////////////////////////////////////////////////////////////// -// Load/Save Surface APIs //////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -//---------------------------------------------------------------------------- -// D3DXLoadSurfaceFromFile/Resource: -// --------------------------------- -// Load surface from a file or resource -// -// Parameters: -// pDestSurface -// Destination surface, which will receive the image. -// pDestPalette -// Destination palette of 256 colors, or NULL -// pDestRect -// Destination rectangle, or NULL for entire surface -// pSrcFile -// File name of the source image. -// pSrcModule -// Module where resource is located, or NULL for module associated -// with image the os used to create the current process. -// pSrcResource -// Resource name -// pSrcData -// Pointer to file in memory. -// SrcDataSize -// Size in bytes of file in memory. -// pSrcRect -// Source rectangle, or NULL for entire image -// Filter -// D3DX_FILTER flags controlling how the image is filtered. -// Or D3DX_DEFAULT for D3DX_FILTER_TRIANGLE. -// ColorKey -// Color to replace with transparent black, or 0 to disable colorkey. -// This is always a 32-bit ARGB color, independent of the source image -// format. Alpha is significant, and should usually be set to FF for -// opaque colorkeys. (ex. Opaque black == 0xff000000) -// pSrcInfo -// Pointer to a D3DXIMAGE_INFO structure to be filled in with the -// description of the data in the source image file, or NULL. -// -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXLoadSurfaceFromFileA( - LPDIRECT3DSURFACE9 pDestSurface, - CONST PALETTEENTRY* pDestPalette, - CONST RECT* pDestRect, - LPCSTR pSrcFile, - CONST RECT* pSrcRect, - DWORD Filter, - D3DCOLOR ColorKey, - D3DXIMAGE_INFO* pSrcInfo); - -HRESULT WINAPI - D3DXLoadSurfaceFromFileW( - LPDIRECT3DSURFACE9 pDestSurface, - CONST PALETTEENTRY* pDestPalette, - CONST RECT* pDestRect, - LPCWSTR pSrcFile, - CONST RECT* pSrcRect, - DWORD Filter, - D3DCOLOR ColorKey, - D3DXIMAGE_INFO* pSrcInfo); - -#ifdef UNICODE -#define D3DXLoadSurfaceFromFile D3DXLoadSurfaceFromFileW -#else -#define D3DXLoadSurfaceFromFile D3DXLoadSurfaceFromFileA -#endif - - - -HRESULT WINAPI - D3DXLoadSurfaceFromResourceA( - LPDIRECT3DSURFACE9 pDestSurface, - CONST PALETTEENTRY* pDestPalette, - CONST RECT* pDestRect, - HMODULE hSrcModule, - LPCSTR pSrcResource, - CONST RECT* pSrcRect, - DWORD Filter, - D3DCOLOR ColorKey, - D3DXIMAGE_INFO* pSrcInfo); - -HRESULT WINAPI - D3DXLoadSurfaceFromResourceW( - LPDIRECT3DSURFACE9 pDestSurface, - CONST PALETTEENTRY* pDestPalette, - CONST RECT* pDestRect, - HMODULE hSrcModule, - LPCWSTR pSrcResource, - CONST RECT* pSrcRect, - DWORD Filter, - D3DCOLOR ColorKey, - D3DXIMAGE_INFO* pSrcInfo); - - -#ifdef UNICODE -#define D3DXLoadSurfaceFromResource D3DXLoadSurfaceFromResourceW -#else -#define D3DXLoadSurfaceFromResource D3DXLoadSurfaceFromResourceA -#endif - - - -HRESULT WINAPI - D3DXLoadSurfaceFromFileInMemory( - LPDIRECT3DSURFACE9 pDestSurface, - CONST PALETTEENTRY* pDestPalette, - CONST RECT* pDestRect, - LPCVOID pSrcData, - UINT SrcDataSize, - CONST RECT* pSrcRect, - DWORD Filter, - D3DCOLOR ColorKey, - D3DXIMAGE_INFO* pSrcInfo); - - - -//---------------------------------------------------------------------------- -// D3DXLoadSurfaceFromSurface: -// --------------------------- -// Load surface from another surface (with color conversion) -// -// Parameters: -// pDestSurface -// Destination surface, which will receive the image. -// pDestPalette -// Destination palette of 256 colors, or NULL -// pDestRect -// Destination rectangle, or NULL for entire surface -// pSrcSurface -// Source surface -// pSrcPalette -// Source palette of 256 colors, or NULL -// pSrcRect -// Source rectangle, or NULL for entire surface -// Filter -// D3DX_FILTER flags controlling how the image is filtered. -// Or D3DX_DEFAULT for D3DX_FILTER_TRIANGLE. -// ColorKey -// Color to replace with transparent black, or 0 to disable colorkey. -// This is always a 32-bit ARGB color, independent of the source image -// format. Alpha is significant, and should usually be set to FF for -// opaque colorkeys. (ex. Opaque black == 0xff000000) -// -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXLoadSurfaceFromSurface( - LPDIRECT3DSURFACE9 pDestSurface, - CONST PALETTEENTRY* pDestPalette, - CONST RECT* pDestRect, - LPDIRECT3DSURFACE9 pSrcSurface, - CONST PALETTEENTRY* pSrcPalette, - CONST RECT* pSrcRect, - DWORD Filter, - D3DCOLOR ColorKey); - - -//---------------------------------------------------------------------------- -// D3DXLoadSurfaceFromMemory: -// -------------------------- -// Load surface from memory. -// -// Parameters: -// pDestSurface -// Destination surface, which will receive the image. -// pDestPalette -// Destination palette of 256 colors, or NULL -// pDestRect -// Destination rectangle, or NULL for entire surface -// pSrcMemory -// Pointer to the top-left corner of the source image in memory -// SrcFormat -// Pixel format of the source image. -// SrcPitch -// Pitch of source image, in bytes. For DXT formats, this number -// should represent the width of one row of cells, in bytes. -// pSrcPalette -// Source palette of 256 colors, or NULL -// pSrcRect -// Source rectangle. -// Filter -// D3DX_FILTER flags controlling how the image is filtered. -// Or D3DX_DEFAULT for D3DX_FILTER_TRIANGLE. -// ColorKey -// Color to replace with transparent black, or 0 to disable colorkey. -// This is always a 32-bit ARGB color, independent of the source image -// format. Alpha is significant, and should usually be set to FF for -// opaque colorkeys. (ex. Opaque black == 0xff000000) -// -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXLoadSurfaceFromMemory( - LPDIRECT3DSURFACE9 pDestSurface, - CONST PALETTEENTRY* pDestPalette, - CONST RECT* pDestRect, - LPCVOID pSrcMemory, - D3DFORMAT SrcFormat, - UINT SrcPitch, - CONST PALETTEENTRY* pSrcPalette, - CONST RECT* pSrcRect, - DWORD Filter, - D3DCOLOR ColorKey); - - -//---------------------------------------------------------------------------- -// D3DXSaveSurfaceToFile: -// ---------------------- -// Save a surface to a image file. -// -// Parameters: -// pDestFile -// File name of the destination file -// DestFormat -// D3DXIMAGE_FILEFORMAT specifying file format to use when saving. -// pSrcSurface -// Source surface, containing the image to be saved -// pSrcPalette -// Source palette of 256 colors, or NULL -// pSrcRect -// Source rectangle, or NULL for the entire image -// -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXSaveSurfaceToFileA( - LPCSTR pDestFile, - D3DXIMAGE_FILEFORMAT DestFormat, - LPDIRECT3DSURFACE9 pSrcSurface, - CONST PALETTEENTRY* pSrcPalette, - CONST RECT* pSrcRect); - -HRESULT WINAPI - D3DXSaveSurfaceToFileW( - LPCWSTR pDestFile, - D3DXIMAGE_FILEFORMAT DestFormat, - LPDIRECT3DSURFACE9 pSrcSurface, - CONST PALETTEENTRY* pSrcPalette, - CONST RECT* pSrcRect); - -#ifdef UNICODE -#define D3DXSaveSurfaceToFile D3DXSaveSurfaceToFileW -#else -#define D3DXSaveSurfaceToFile D3DXSaveSurfaceToFileA -#endif - -//---------------------------------------------------------------------------- -// D3DXSaveSurfaceToFileInMemory: -// ---------------------- -// Save a surface to a image file. -// -// Parameters: -// ppDestBuf -// address of pointer to d3dxbuffer for returning data bits -// DestFormat -// D3DXIMAGE_FILEFORMAT specifying file format to use when saving. -// pSrcSurface -// Source surface, containing the image to be saved -// pSrcPalette -// Source palette of 256 colors, or NULL -// pSrcRect -// Source rectangle, or NULL for the entire image -// -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXSaveSurfaceToFileInMemory( - LPD3DXBUFFER* ppDestBuf, - D3DXIMAGE_FILEFORMAT DestFormat, - LPDIRECT3DSURFACE9 pSrcSurface, - CONST PALETTEENTRY* pSrcPalette, - CONST RECT* pSrcRect); - - -////////////////////////////////////////////////////////////////////////////// -// Load/Save Volume APIs ///////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -//---------------------------------------------------------------------------- -// D3DXLoadVolumeFromFile/Resource: -// -------------------------------- -// Load volume from a file or resource -// -// Parameters: -// pDestVolume -// Destination volume, which will receive the image. -// pDestPalette -// Destination palette of 256 colors, or NULL -// pDestBox -// Destination box, or NULL for entire volume -// pSrcFile -// File name of the source image. -// pSrcModule -// Module where resource is located, or NULL for module associated -// with image the os used to create the current process. -// pSrcResource -// Resource name -// pSrcData -// Pointer to file in memory. -// SrcDataSize -// Size in bytes of file in memory. -// pSrcBox -// Source box, or NULL for entire image -// Filter -// D3DX_FILTER flags controlling how the image is filtered. -// Or D3DX_DEFAULT for D3DX_FILTER_TRIANGLE. -// ColorKey -// Color to replace with transparent black, or 0 to disable colorkey. -// This is always a 32-bit ARGB color, independent of the source image -// format. Alpha is significant, and should usually be set to FF for -// opaque colorkeys. (ex. Opaque black == 0xff000000) -// pSrcInfo -// Pointer to a D3DXIMAGE_INFO structure to be filled in with the -// description of the data in the source image file, or NULL. -// -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXLoadVolumeFromFileA( - LPDIRECT3DVOLUME9 pDestVolume, - CONST PALETTEENTRY* pDestPalette, - CONST D3DBOX* pDestBox, - LPCSTR pSrcFile, - CONST D3DBOX* pSrcBox, - DWORD Filter, - D3DCOLOR ColorKey, - D3DXIMAGE_INFO* pSrcInfo); - -HRESULT WINAPI - D3DXLoadVolumeFromFileW( - LPDIRECT3DVOLUME9 pDestVolume, - CONST PALETTEENTRY* pDestPalette, - CONST D3DBOX* pDestBox, - LPCWSTR pSrcFile, - CONST D3DBOX* pSrcBox, - DWORD Filter, - D3DCOLOR ColorKey, - D3DXIMAGE_INFO* pSrcInfo); - -#ifdef UNICODE -#define D3DXLoadVolumeFromFile D3DXLoadVolumeFromFileW -#else -#define D3DXLoadVolumeFromFile D3DXLoadVolumeFromFileA -#endif - - -HRESULT WINAPI - D3DXLoadVolumeFromResourceA( - LPDIRECT3DVOLUME9 pDestVolume, - CONST PALETTEENTRY* pDestPalette, - CONST D3DBOX* pDestBox, - HMODULE hSrcModule, - LPCSTR pSrcResource, - CONST D3DBOX* pSrcBox, - DWORD Filter, - D3DCOLOR ColorKey, - D3DXIMAGE_INFO* pSrcInfo); - -HRESULT WINAPI - D3DXLoadVolumeFromResourceW( - LPDIRECT3DVOLUME9 pDestVolume, - CONST PALETTEENTRY* pDestPalette, - CONST D3DBOX* pDestBox, - HMODULE hSrcModule, - LPCWSTR pSrcResource, - CONST D3DBOX* pSrcBox, - DWORD Filter, - D3DCOLOR ColorKey, - D3DXIMAGE_INFO* pSrcInfo); - -#ifdef UNICODE -#define D3DXLoadVolumeFromResource D3DXLoadVolumeFromResourceW -#else -#define D3DXLoadVolumeFromResource D3DXLoadVolumeFromResourceA -#endif - - - -HRESULT WINAPI - D3DXLoadVolumeFromFileInMemory( - LPDIRECT3DVOLUME9 pDestVolume, - CONST PALETTEENTRY* pDestPalette, - CONST D3DBOX* pDestBox, - LPCVOID pSrcData, - UINT SrcDataSize, - CONST D3DBOX* pSrcBox, - DWORD Filter, - D3DCOLOR ColorKey, - D3DXIMAGE_INFO* pSrcInfo); - - - -//---------------------------------------------------------------------------- -// D3DXLoadVolumeFromVolume: -// ------------------------- -// Load volume from another volume (with color conversion) -// -// Parameters: -// pDestVolume -// Destination volume, which will receive the image. -// pDestPalette -// Destination palette of 256 colors, or NULL -// pDestBox -// Destination box, or NULL for entire volume -// pSrcVolume -// Source volume -// pSrcPalette -// Source palette of 256 colors, or NULL -// pSrcBox -// Source box, or NULL for entire volume -// Filter -// D3DX_FILTER flags controlling how the image is filtered. -// Or D3DX_DEFAULT for D3DX_FILTER_TRIANGLE. -// ColorKey -// Color to replace with transparent black, or 0 to disable colorkey. -// This is always a 32-bit ARGB color, independent of the source image -// format. Alpha is significant, and should usually be set to FF for -// opaque colorkeys. (ex. Opaque black == 0xff000000) -// -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXLoadVolumeFromVolume( - LPDIRECT3DVOLUME9 pDestVolume, - CONST PALETTEENTRY* pDestPalette, - CONST D3DBOX* pDestBox, - LPDIRECT3DVOLUME9 pSrcVolume, - CONST PALETTEENTRY* pSrcPalette, - CONST D3DBOX* pSrcBox, - DWORD Filter, - D3DCOLOR ColorKey); - - - -//---------------------------------------------------------------------------- -// D3DXLoadVolumeFromMemory: -// ------------------------- -// Load volume from memory. -// -// Parameters: -// pDestVolume -// Destination volume, which will receive the image. -// pDestPalette -// Destination palette of 256 colors, or NULL -// pDestBox -// Destination box, or NULL for entire volume -// pSrcMemory -// Pointer to the top-left corner of the source volume in memory -// SrcFormat -// Pixel format of the source volume. -// SrcRowPitch -// Pitch of source image, in bytes. For DXT formats, this number -// should represent the size of one row of cells, in bytes. -// SrcSlicePitch -// Pitch of source image, in bytes. For DXT formats, this number -// should represent the size of one slice of cells, in bytes. -// pSrcPalette -// Source palette of 256 colors, or NULL -// pSrcBox -// Source box. -// Filter -// D3DX_FILTER flags controlling how the image is filtered. -// Or D3DX_DEFAULT for D3DX_FILTER_TRIANGLE. -// ColorKey -// Color to replace with transparent black, or 0 to disable colorkey. -// This is always a 32-bit ARGB color, independent of the source image -// format. Alpha is significant, and should usually be set to FF for -// opaque colorkeys. (ex. Opaque black == 0xff000000) -// -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXLoadVolumeFromMemory( - LPDIRECT3DVOLUME9 pDestVolume, - CONST PALETTEENTRY* pDestPalette, - CONST D3DBOX* pDestBox, - LPCVOID pSrcMemory, - D3DFORMAT SrcFormat, - UINT SrcRowPitch, - UINT SrcSlicePitch, - CONST PALETTEENTRY* pSrcPalette, - CONST D3DBOX* pSrcBox, - DWORD Filter, - D3DCOLOR ColorKey); - - - -//---------------------------------------------------------------------------- -// D3DXSaveVolumeToFile: -// --------------------- -// Save a volume to a image file. -// -// Parameters: -// pDestFile -// File name of the destination file -// DestFormat -// D3DXIMAGE_FILEFORMAT specifying file format to use when saving. -// pSrcVolume -// Source volume, containing the image to be saved -// pSrcPalette -// Source palette of 256 colors, or NULL -// pSrcBox -// Source box, or NULL for the entire volume -// -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXSaveVolumeToFileA( - LPCSTR pDestFile, - D3DXIMAGE_FILEFORMAT DestFormat, - LPDIRECT3DVOLUME9 pSrcVolume, - CONST PALETTEENTRY* pSrcPalette, - CONST D3DBOX* pSrcBox); - -HRESULT WINAPI - D3DXSaveVolumeToFileW( - LPCWSTR pDestFile, - D3DXIMAGE_FILEFORMAT DestFormat, - LPDIRECT3DVOLUME9 pSrcVolume, - CONST PALETTEENTRY* pSrcPalette, - CONST D3DBOX* pSrcBox); - -#ifdef UNICODE -#define D3DXSaveVolumeToFile D3DXSaveVolumeToFileW -#else -#define D3DXSaveVolumeToFile D3DXSaveVolumeToFileA -#endif - - -//---------------------------------------------------------------------------- -// D3DXSaveVolumeToFileInMemory: -// --------------------- -// Save a volume to a image file. -// -// Parameters: -// pDestFile -// File name of the destination file -// DestFormat -// D3DXIMAGE_FILEFORMAT specifying file format to use when saving. -// pSrcVolume -// Source volume, containing the image to be saved -// pSrcPalette -// Source palette of 256 colors, or NULL -// pSrcBox -// Source box, or NULL for the entire volume -// -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXSaveVolumeToFileInMemory( - LPD3DXBUFFER* ppDestBuf, - D3DXIMAGE_FILEFORMAT DestFormat, - LPDIRECT3DVOLUME9 pSrcVolume, - CONST PALETTEENTRY* pSrcPalette, - CONST D3DBOX* pSrcBox); - -////////////////////////////////////////////////////////////////////////////// -// Create/Save Texture APIs ////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -//---------------------------------------------------------------------------- -// D3DXCheckTextureRequirements: -// ----------------------------- -// Checks texture creation parameters. If parameters are invalid, this -// function returns corrected parameters. -// -// Parameters: -// -// pDevice -// The D3D device to be used -// pWidth, pHeight, pDepth, pSize -// Desired size in pixels, or NULL. Returns corrected size. -// pNumMipLevels -// Number of desired mipmap levels, or NULL. Returns corrected number. -// Usage -// Texture usage flags -// pFormat -// Desired pixel format, or NULL. Returns corrected format. -// Pool -// Memory pool to be used to create texture -// -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXCheckTextureRequirements( - LPDIRECT3DDEVICE9 pDevice, - UINT* pWidth, - UINT* pHeight, - UINT* pNumMipLevels, - DWORD Usage, - D3DFORMAT* pFormat, - D3DPOOL Pool); - -HRESULT WINAPI - D3DXCheckCubeTextureRequirements( - LPDIRECT3DDEVICE9 pDevice, - UINT* pSize, - UINT* pNumMipLevels, - DWORD Usage, - D3DFORMAT* pFormat, - D3DPOOL Pool); - -HRESULT WINAPI - D3DXCheckVolumeTextureRequirements( - LPDIRECT3DDEVICE9 pDevice, - UINT* pWidth, - UINT* pHeight, - UINT* pDepth, - UINT* pNumMipLevels, - DWORD Usage, - D3DFORMAT* pFormat, - D3DPOOL Pool); - - -//---------------------------------------------------------------------------- -// D3DXCreateTexture: -// ------------------ -// Create an empty texture -// -// Parameters: -// -// pDevice -// The D3D device with which the texture is going to be used. -// Width, Height, Depth, Size -// size in pixels. these must be non-zero -// MipLevels -// number of mip levels desired. if zero or D3DX_DEFAULT, a complete -// mipmap chain will be created. -// Usage -// Texture usage flags -// Format -// Pixel format. -// Pool -// Memory pool to be used to create texture -// ppTexture, ppCubeTexture, ppVolumeTexture -// The texture object that will be created -// -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXCreateTexture( - LPDIRECT3DDEVICE9 pDevice, - UINT Width, - UINT Height, - UINT MipLevels, - DWORD Usage, - D3DFORMAT Format, - D3DPOOL Pool, - LPDIRECT3DTEXTURE9* ppTexture); - -HRESULT WINAPI - D3DXCreateCubeTexture( - LPDIRECT3DDEVICE9 pDevice, - UINT Size, - UINT MipLevels, - DWORD Usage, - D3DFORMAT Format, - D3DPOOL Pool, - LPDIRECT3DCUBETEXTURE9* ppCubeTexture); - -HRESULT WINAPI - D3DXCreateVolumeTexture( - LPDIRECT3DDEVICE9 pDevice, - UINT Width, - UINT Height, - UINT Depth, - UINT MipLevels, - DWORD Usage, - D3DFORMAT Format, - D3DPOOL Pool, - LPDIRECT3DVOLUMETEXTURE9* ppVolumeTexture); - - - -//---------------------------------------------------------------------------- -// D3DXCreateTextureFromFile/Resource: -// ----------------------------------- -// Create a texture object from a file or resource. -// -// Parameters: -// -// pDevice -// The D3D device with which the texture is going to be used. -// pSrcFile -// File name. -// hSrcModule -// Module handle. if NULL, current module will be used. -// pSrcResource -// Resource name in module -// pvSrcData -// Pointer to file in memory. -// SrcDataSize -// Size in bytes of file in memory. -// Width, Height, Depth, Size -// Size in pixels. If zero or D3DX_DEFAULT, the size will be taken from -// the file and rounded up to a power of two. If D3DX_DEFAULT_NONPOW2, -// and the device supports NONPOW2 textures, the size will not be rounded. -// If D3DX_FROM_FILE, the size will be taken exactly as it is in the file, -// and the call will fail if this violates device capabilities. -// MipLevels -// Number of mip levels. If zero or D3DX_DEFAULT, a complete mipmap -// chain will be created. If D3DX_FROM_FILE, the size will be taken -// exactly as it is in the file, and the call will fail if this violates -// device capabilities. -// Usage -// Texture usage flags -// Format -// Desired pixel format. If D3DFMT_UNKNOWN, the format will be -// taken from the file. If D3DFMT_FROM_FILE, the format will be taken -// exactly as it is in the file, and the call will fail if the device does -// not support the given format. -// Pool -// Memory pool to be used to create texture -// Filter -// D3DX_FILTER flags controlling how the image is filtered. -// Or D3DX_DEFAULT for D3DX_FILTER_TRIANGLE. -// MipFilter -// D3DX_FILTER flags controlling how each miplevel is filtered. -// Or D3DX_DEFAULT for D3DX_FILTER_BOX. -// Use the D3DX_SKIP_DDS_MIP_LEVELS macro to specify both a filter and the -// number of mip levels to skip when loading DDS files. -// ColorKey -// Color to replace with transparent black, or 0 to disable colorkey. -// This is always a 32-bit ARGB color, independent of the source image -// format. Alpha is significant, and should usually be set to FF for -// opaque colorkeys. (ex. Opaque black == 0xff000000) -// pSrcInfo -// Pointer to a D3DXIMAGE_INFO structure to be filled in with the -// description of the data in the source image file, or NULL. -// pPalette -// 256 color palette to be filled in, or NULL -// ppTexture, ppCubeTexture, ppVolumeTexture -// The texture object that will be created -// -//---------------------------------------------------------------------------- - -// FromFile - -HRESULT WINAPI - D3DXCreateTextureFromFileA( - LPDIRECT3DDEVICE9 pDevice, - LPCSTR pSrcFile, - LPDIRECT3DTEXTURE9* ppTexture); - -HRESULT WINAPI - D3DXCreateTextureFromFileW( - LPDIRECT3DDEVICE9 pDevice, - LPCWSTR pSrcFile, - LPDIRECT3DTEXTURE9* ppTexture); - -#ifdef UNICODE -#define D3DXCreateTextureFromFile D3DXCreateTextureFromFileW -#else -#define D3DXCreateTextureFromFile D3DXCreateTextureFromFileA -#endif - - -HRESULT WINAPI - D3DXCreateCubeTextureFromFileA( - LPDIRECT3DDEVICE9 pDevice, - LPCSTR pSrcFile, - LPDIRECT3DCUBETEXTURE9* ppCubeTexture); - -HRESULT WINAPI - D3DXCreateCubeTextureFromFileW( - LPDIRECT3DDEVICE9 pDevice, - LPCWSTR pSrcFile, - LPDIRECT3DCUBETEXTURE9* ppCubeTexture); - -#ifdef UNICODE -#define D3DXCreateCubeTextureFromFile D3DXCreateCubeTextureFromFileW -#else -#define D3DXCreateCubeTextureFromFile D3DXCreateCubeTextureFromFileA -#endif - - -HRESULT WINAPI - D3DXCreateVolumeTextureFromFileA( - LPDIRECT3DDEVICE9 pDevice, - LPCSTR pSrcFile, - LPDIRECT3DVOLUMETEXTURE9* ppVolumeTexture); - -HRESULT WINAPI - D3DXCreateVolumeTextureFromFileW( - LPDIRECT3DDEVICE9 pDevice, - LPCWSTR pSrcFile, - LPDIRECT3DVOLUMETEXTURE9* ppVolumeTexture); - -#ifdef UNICODE -#define D3DXCreateVolumeTextureFromFile D3DXCreateVolumeTextureFromFileW -#else -#define D3DXCreateVolumeTextureFromFile D3DXCreateVolumeTextureFromFileA -#endif - - -// FromResource - -HRESULT WINAPI - D3DXCreateTextureFromResourceA( - LPDIRECT3DDEVICE9 pDevice, - HMODULE hSrcModule, - LPCSTR pSrcResource, - LPDIRECT3DTEXTURE9* ppTexture); - -HRESULT WINAPI - D3DXCreateTextureFromResourceW( - LPDIRECT3DDEVICE9 pDevice, - HMODULE hSrcModule, - LPCWSTR pSrcResource, - LPDIRECT3DTEXTURE9* ppTexture); - -#ifdef UNICODE -#define D3DXCreateTextureFromResource D3DXCreateTextureFromResourceW -#else -#define D3DXCreateTextureFromResource D3DXCreateTextureFromResourceA -#endif - - -HRESULT WINAPI - D3DXCreateCubeTextureFromResourceA( - LPDIRECT3DDEVICE9 pDevice, - HMODULE hSrcModule, - LPCSTR pSrcResource, - LPDIRECT3DCUBETEXTURE9* ppCubeTexture); - -HRESULT WINAPI - D3DXCreateCubeTextureFromResourceW( - LPDIRECT3DDEVICE9 pDevice, - HMODULE hSrcModule, - LPCWSTR pSrcResource, - LPDIRECT3DCUBETEXTURE9* ppCubeTexture); - -#ifdef UNICODE -#define D3DXCreateCubeTextureFromResource D3DXCreateCubeTextureFromResourceW -#else -#define D3DXCreateCubeTextureFromResource D3DXCreateCubeTextureFromResourceA -#endif - - -HRESULT WINAPI - D3DXCreateVolumeTextureFromResourceA( - LPDIRECT3DDEVICE9 pDevice, - HMODULE hSrcModule, - LPCSTR pSrcResource, - LPDIRECT3DVOLUMETEXTURE9* ppVolumeTexture); - -HRESULT WINAPI - D3DXCreateVolumeTextureFromResourceW( - LPDIRECT3DDEVICE9 pDevice, - HMODULE hSrcModule, - LPCWSTR pSrcResource, - LPDIRECT3DVOLUMETEXTURE9* ppVolumeTexture); - -#ifdef UNICODE -#define D3DXCreateVolumeTextureFromResource D3DXCreateVolumeTextureFromResourceW -#else -#define D3DXCreateVolumeTextureFromResource D3DXCreateVolumeTextureFromResourceA -#endif - - -// FromFileEx - -HRESULT WINAPI - D3DXCreateTextureFromFileExA( - LPDIRECT3DDEVICE9 pDevice, - LPCSTR pSrcFile, - UINT Width, - UINT Height, - UINT MipLevels, - DWORD Usage, - D3DFORMAT Format, - D3DPOOL Pool, - DWORD Filter, - DWORD MipFilter, - D3DCOLOR ColorKey, - D3DXIMAGE_INFO* pSrcInfo, - PALETTEENTRY* pPalette, - LPDIRECT3DTEXTURE9* ppTexture); - -HRESULT WINAPI - D3DXCreateTextureFromFileExW( - LPDIRECT3DDEVICE9 pDevice, - LPCWSTR pSrcFile, - UINT Width, - UINT Height, - UINT MipLevels, - DWORD Usage, - D3DFORMAT Format, - D3DPOOL Pool, - DWORD Filter, - DWORD MipFilter, - D3DCOLOR ColorKey, - D3DXIMAGE_INFO* pSrcInfo, - PALETTEENTRY* pPalette, - LPDIRECT3DTEXTURE9* ppTexture); - -#ifdef UNICODE -#define D3DXCreateTextureFromFileEx D3DXCreateTextureFromFileExW -#else -#define D3DXCreateTextureFromFileEx D3DXCreateTextureFromFileExA -#endif - - -HRESULT WINAPI - D3DXCreateCubeTextureFromFileExA( - LPDIRECT3DDEVICE9 pDevice, - LPCSTR pSrcFile, - UINT Size, - UINT MipLevels, - DWORD Usage, - D3DFORMAT Format, - D3DPOOL Pool, - DWORD Filter, - DWORD MipFilter, - D3DCOLOR ColorKey, - D3DXIMAGE_INFO* pSrcInfo, - PALETTEENTRY* pPalette, - LPDIRECT3DCUBETEXTURE9* ppCubeTexture); - -HRESULT WINAPI - D3DXCreateCubeTextureFromFileExW( - LPDIRECT3DDEVICE9 pDevice, - LPCWSTR pSrcFile, - UINT Size, - UINT MipLevels, - DWORD Usage, - D3DFORMAT Format, - D3DPOOL Pool, - DWORD Filter, - DWORD MipFilter, - D3DCOLOR ColorKey, - D3DXIMAGE_INFO* pSrcInfo, - PALETTEENTRY* pPalette, - LPDIRECT3DCUBETEXTURE9* ppCubeTexture); - -#ifdef UNICODE -#define D3DXCreateCubeTextureFromFileEx D3DXCreateCubeTextureFromFileExW -#else -#define D3DXCreateCubeTextureFromFileEx D3DXCreateCubeTextureFromFileExA -#endif - - -HRESULT WINAPI - D3DXCreateVolumeTextureFromFileExA( - LPDIRECT3DDEVICE9 pDevice, - LPCSTR pSrcFile, - UINT Width, - UINT Height, - UINT Depth, - UINT MipLevels, - DWORD Usage, - D3DFORMAT Format, - D3DPOOL Pool, - DWORD Filter, - DWORD MipFilter, - D3DCOLOR ColorKey, - D3DXIMAGE_INFO* pSrcInfo, - PALETTEENTRY* pPalette, - LPDIRECT3DVOLUMETEXTURE9* ppVolumeTexture); - -HRESULT WINAPI - D3DXCreateVolumeTextureFromFileExW( - LPDIRECT3DDEVICE9 pDevice, - LPCWSTR pSrcFile, - UINT Width, - UINT Height, - UINT Depth, - UINT MipLevels, - DWORD Usage, - D3DFORMAT Format, - D3DPOOL Pool, - DWORD Filter, - DWORD MipFilter, - D3DCOLOR ColorKey, - D3DXIMAGE_INFO* pSrcInfo, - PALETTEENTRY* pPalette, - LPDIRECT3DVOLUMETEXTURE9* ppVolumeTexture); - -#ifdef UNICODE -#define D3DXCreateVolumeTextureFromFileEx D3DXCreateVolumeTextureFromFileExW -#else -#define D3DXCreateVolumeTextureFromFileEx D3DXCreateVolumeTextureFromFileExA -#endif - - -// FromResourceEx - -HRESULT WINAPI - D3DXCreateTextureFromResourceExA( - LPDIRECT3DDEVICE9 pDevice, - HMODULE hSrcModule, - LPCSTR pSrcResource, - UINT Width, - UINT Height, - UINT MipLevels, - DWORD Usage, - D3DFORMAT Format, - D3DPOOL Pool, - DWORD Filter, - DWORD MipFilter, - D3DCOLOR ColorKey, - D3DXIMAGE_INFO* pSrcInfo, - PALETTEENTRY* pPalette, - LPDIRECT3DTEXTURE9* ppTexture); - -HRESULT WINAPI - D3DXCreateTextureFromResourceExW( - LPDIRECT3DDEVICE9 pDevice, - HMODULE hSrcModule, - LPCWSTR pSrcResource, - UINT Width, - UINT Height, - UINT MipLevels, - DWORD Usage, - D3DFORMAT Format, - D3DPOOL Pool, - DWORD Filter, - DWORD MipFilter, - D3DCOLOR ColorKey, - D3DXIMAGE_INFO* pSrcInfo, - PALETTEENTRY* pPalette, - LPDIRECT3DTEXTURE9* ppTexture); - -#ifdef UNICODE -#define D3DXCreateTextureFromResourceEx D3DXCreateTextureFromResourceExW -#else -#define D3DXCreateTextureFromResourceEx D3DXCreateTextureFromResourceExA -#endif - - -HRESULT WINAPI - D3DXCreateCubeTextureFromResourceExA( - LPDIRECT3DDEVICE9 pDevice, - HMODULE hSrcModule, - LPCSTR pSrcResource, - UINT Size, - UINT MipLevels, - DWORD Usage, - D3DFORMAT Format, - D3DPOOL Pool, - DWORD Filter, - DWORD MipFilter, - D3DCOLOR ColorKey, - D3DXIMAGE_INFO* pSrcInfo, - PALETTEENTRY* pPalette, - LPDIRECT3DCUBETEXTURE9* ppCubeTexture); - -HRESULT WINAPI - D3DXCreateCubeTextureFromResourceExW( - LPDIRECT3DDEVICE9 pDevice, - HMODULE hSrcModule, - LPCWSTR pSrcResource, - UINT Size, - UINT MipLevels, - DWORD Usage, - D3DFORMAT Format, - D3DPOOL Pool, - DWORD Filter, - DWORD MipFilter, - D3DCOLOR ColorKey, - D3DXIMAGE_INFO* pSrcInfo, - PALETTEENTRY* pPalette, - LPDIRECT3DCUBETEXTURE9* ppCubeTexture); - -#ifdef UNICODE -#define D3DXCreateCubeTextureFromResourceEx D3DXCreateCubeTextureFromResourceExW -#else -#define D3DXCreateCubeTextureFromResourceEx D3DXCreateCubeTextureFromResourceExA -#endif - - -HRESULT WINAPI - D3DXCreateVolumeTextureFromResourceExA( - LPDIRECT3DDEVICE9 pDevice, - HMODULE hSrcModule, - LPCSTR pSrcResource, - UINT Width, - UINT Height, - UINT Depth, - UINT MipLevels, - DWORD Usage, - D3DFORMAT Format, - D3DPOOL Pool, - DWORD Filter, - DWORD MipFilter, - D3DCOLOR ColorKey, - D3DXIMAGE_INFO* pSrcInfo, - PALETTEENTRY* pPalette, - LPDIRECT3DVOLUMETEXTURE9* ppVolumeTexture); - -HRESULT WINAPI - D3DXCreateVolumeTextureFromResourceExW( - LPDIRECT3DDEVICE9 pDevice, - HMODULE hSrcModule, - LPCWSTR pSrcResource, - UINT Width, - UINT Height, - UINT Depth, - UINT MipLevels, - DWORD Usage, - D3DFORMAT Format, - D3DPOOL Pool, - DWORD Filter, - DWORD MipFilter, - D3DCOLOR ColorKey, - D3DXIMAGE_INFO* pSrcInfo, - PALETTEENTRY* pPalette, - LPDIRECT3DVOLUMETEXTURE9* ppVolumeTexture); - -#ifdef UNICODE -#define D3DXCreateVolumeTextureFromResourceEx D3DXCreateVolumeTextureFromResourceExW -#else -#define D3DXCreateVolumeTextureFromResourceEx D3DXCreateVolumeTextureFromResourceExA -#endif - - -// FromFileInMemory - -HRESULT WINAPI - D3DXCreateTextureFromFileInMemory( - LPDIRECT3DDEVICE9 pDevice, - LPCVOID pSrcData, - UINT SrcDataSize, - LPDIRECT3DTEXTURE9* ppTexture); - -HRESULT WINAPI - D3DXCreateCubeTextureFromFileInMemory( - LPDIRECT3DDEVICE9 pDevice, - LPCVOID pSrcData, - UINT SrcDataSize, - LPDIRECT3DCUBETEXTURE9* ppCubeTexture); - -HRESULT WINAPI - D3DXCreateVolumeTextureFromFileInMemory( - LPDIRECT3DDEVICE9 pDevice, - LPCVOID pSrcData, - UINT SrcDataSize, - LPDIRECT3DVOLUMETEXTURE9* ppVolumeTexture); - - -// FromFileInMemoryEx - -HRESULT WINAPI - D3DXCreateTextureFromFileInMemoryEx( - LPDIRECT3DDEVICE9 pDevice, - LPCVOID pSrcData, - UINT SrcDataSize, - UINT Width, - UINT Height, - UINT MipLevels, - DWORD Usage, - D3DFORMAT Format, - D3DPOOL Pool, - DWORD Filter, - DWORD MipFilter, - D3DCOLOR ColorKey, - D3DXIMAGE_INFO* pSrcInfo, - PALETTEENTRY* pPalette, - LPDIRECT3DTEXTURE9* ppTexture); - -HRESULT WINAPI - D3DXCreateCubeTextureFromFileInMemoryEx( - LPDIRECT3DDEVICE9 pDevice, - LPCVOID pSrcData, - UINT SrcDataSize, - UINT Size, - UINT MipLevels, - DWORD Usage, - D3DFORMAT Format, - D3DPOOL Pool, - DWORD Filter, - DWORD MipFilter, - D3DCOLOR ColorKey, - D3DXIMAGE_INFO* pSrcInfo, - PALETTEENTRY* pPalette, - LPDIRECT3DCUBETEXTURE9* ppCubeTexture); - -HRESULT WINAPI - D3DXCreateVolumeTextureFromFileInMemoryEx( - LPDIRECT3DDEVICE9 pDevice, - LPCVOID pSrcData, - UINT SrcDataSize, - UINT Width, - UINT Height, - UINT Depth, - UINT MipLevels, - DWORD Usage, - D3DFORMAT Format, - D3DPOOL Pool, - DWORD Filter, - DWORD MipFilter, - D3DCOLOR ColorKey, - D3DXIMAGE_INFO* pSrcInfo, - PALETTEENTRY* pPalette, - LPDIRECT3DVOLUMETEXTURE9* ppVolumeTexture); - - - -//---------------------------------------------------------------------------- -// D3DXSaveTextureToFile: -// ---------------------- -// Save a texture to a file. -// -// Parameters: -// pDestFile -// File name of the destination file -// DestFormat -// D3DXIMAGE_FILEFORMAT specifying file format to use when saving. -// pSrcTexture -// Source texture, containing the image to be saved -// pSrcPalette -// Source palette of 256 colors, or NULL -// -//---------------------------------------------------------------------------- - - -HRESULT WINAPI - D3DXSaveTextureToFileA( - LPCSTR pDestFile, - D3DXIMAGE_FILEFORMAT DestFormat, - LPDIRECT3DBASETEXTURE9 pSrcTexture, - CONST PALETTEENTRY* pSrcPalette); - -HRESULT WINAPI - D3DXSaveTextureToFileW( - LPCWSTR pDestFile, - D3DXIMAGE_FILEFORMAT DestFormat, - LPDIRECT3DBASETEXTURE9 pSrcTexture, - CONST PALETTEENTRY* pSrcPalette); - -#ifdef UNICODE -#define D3DXSaveTextureToFile D3DXSaveTextureToFileW -#else -#define D3DXSaveTextureToFile D3DXSaveTextureToFileA -#endif - - -//---------------------------------------------------------------------------- -// D3DXSaveTextureToFileInMemory: -// ---------------------- -// Save a texture to a file. -// -// Parameters: -// ppDestBuf -// address of a d3dxbuffer pointer to return the image data -// DestFormat -// D3DXIMAGE_FILEFORMAT specifying file format to use when saving. -// pSrcTexture -// Source texture, containing the image to be saved -// pSrcPalette -// Source palette of 256 colors, or NULL -// -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXSaveTextureToFileInMemory( - LPD3DXBUFFER* ppDestBuf, - D3DXIMAGE_FILEFORMAT DestFormat, - LPDIRECT3DBASETEXTURE9 pSrcTexture, - CONST PALETTEENTRY* pSrcPalette); - - - - -////////////////////////////////////////////////////////////////////////////// -// Misc Texture APIs ///////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -//---------------------------------------------------------------------------- -// D3DXFilterTexture: -// ------------------ -// Filters mipmaps levels of a texture. -// -// Parameters: -// pBaseTexture -// The texture object to be filtered -// pPalette -// 256 color palette to be used, or NULL for non-palettized formats -// SrcLevel -// The level whose image is used to generate the subsequent levels. -// Filter -// D3DX_FILTER flags controlling how each miplevel is filtered. -// Or D3DX_DEFAULT for D3DX_FILTER_BOX, -// -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXFilterTexture( - LPDIRECT3DBASETEXTURE9 pBaseTexture, - CONST PALETTEENTRY* pPalette, - UINT SrcLevel, - DWORD Filter); - -#define D3DXFilterCubeTexture D3DXFilterTexture -#define D3DXFilterVolumeTexture D3DXFilterTexture - - - -//---------------------------------------------------------------------------- -// D3DXFillTexture: -// ---------------- -// Uses a user provided function to fill each texel of each mip level of a -// given texture. -// -// Paramters: -// pTexture, pCubeTexture, pVolumeTexture -// Pointer to the texture to be filled. -// pFunction -// Pointer to user provided evalutor function which will be used to -// compute the value of each texel. -// pData -// Pointer to an arbitrary block of user defined data. This pointer -// will be passed to the function provided in pFunction -//----------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXFillTexture( - LPDIRECT3DTEXTURE9 pTexture, - LPD3DXFILL2D pFunction, - LPVOID pData); - -HRESULT WINAPI - D3DXFillCubeTexture( - LPDIRECT3DCUBETEXTURE9 pCubeTexture, - LPD3DXFILL3D pFunction, - LPVOID pData); - -HRESULT WINAPI - D3DXFillVolumeTexture( - LPDIRECT3DVOLUMETEXTURE9 pVolumeTexture, - LPD3DXFILL3D pFunction, - LPVOID pData); - -//--------------------------------------------------------------------------- -// D3DXFillTextureTX: -// ------------------ -// Uses a TX Shader target to function to fill each texel of each mip level -// of a given texture. The TX Shader target should be a compiled function -// taking 2 paramters and returning a float4 color. -// -// Paramters: -// pTexture, pCubeTexture, pVolumeTexture -// Pointer to the texture to be filled. -// pTextureShader -// Pointer to the texture shader to be used to fill in the texture -//---------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXFillTextureTX( - LPDIRECT3DTEXTURE9 pTexture, - LPD3DXTEXTURESHADER pTextureShader); - - -HRESULT WINAPI - D3DXFillCubeTextureTX( - LPDIRECT3DCUBETEXTURE9 pCubeTexture, - LPD3DXTEXTURESHADER pTextureShader); - - -HRESULT WINAPI - D3DXFillVolumeTextureTX( - LPDIRECT3DVOLUMETEXTURE9 pVolumeTexture, - LPD3DXTEXTURESHADER pTextureShader); - - - -//---------------------------------------------------------------------------- -// D3DXComputeNormalMap: -// --------------------- -// Converts a height map into a normal map. The (x,y,z) components of each -// normal are mapped to the (r,g,b) channels of the output texture. -// -// Parameters -// pTexture -// Pointer to the destination texture -// pSrcTexture -// Pointer to the source heightmap texture -// pSrcPalette -// Source palette of 256 colors, or NULL -// Flags -// D3DX_NORMALMAP flags -// Channel -// D3DX_CHANNEL specifying source of height information -// Amplitude -// The constant value which the height information is multiplied by. -//--------------------------------------------------------------------------- - -HRESULT WINAPI - D3DXComputeNormalMap( - LPDIRECT3DTEXTURE9 pTexture, - LPDIRECT3DTEXTURE9 pSrcTexture, - CONST PALETTEENTRY* pSrcPalette, - DWORD Flags, - DWORD Channel, - FLOAT Amplitude); - - - - -#ifdef __cplusplus -} -#endif //__cplusplus - -#endif //__D3DX9TEX_H__ - diff --git a/SDK/Include/d3dx9xof.h b/SDK/Include/d3dx9xof.h deleted file mode 100644 index c513f0f..0000000 --- a/SDK/Include/d3dx9xof.h +++ /dev/null @@ -1,299 +0,0 @@ -/////////////////////////////////////////////////////////////////////////// -// -// Copyright (C) Microsoft Corporation. All Rights Reserved. -// -// File: d3dx9xof.h -// Content: D3DX .X File types and functions -// -/////////////////////////////////////////////////////////////////////////// - -#include "d3dx9.h" - -#if !defined( __D3DX9XOF_H__ ) -#define __D3DX9XOF_H__ - -#if defined( __cplusplus ) -extern "C" { -#endif // defined( __cplusplus ) - -//---------------------------------------------------------------------------- -// D3DXF_FILEFORMAT -// This flag is used to specify what file type to use when saving to disk. -// _BINARY, and _TEXT are mutually exclusive, while -// _COMPRESSED is an optional setting that works with all file types. -//---------------------------------------------------------------------------- -typedef DWORD D3DXF_FILEFORMAT; - -#define D3DXF_FILEFORMAT_BINARY 0 -#define D3DXF_FILEFORMAT_TEXT 1 -#define D3DXF_FILEFORMAT_COMPRESSED 2 - -//---------------------------------------------------------------------------- -// D3DXF_FILESAVEOPTIONS -// This flag is used to specify where to save the file to. Each flag is -// mutually exclusive, indicates the data location of the file, and also -// chooses which additional data will specify the location. -// _TOFILE is paired with a filename (LPCSTR) -// _TOWFILE is paired with a filename (LPWSTR) -//---------------------------------------------------------------------------- -typedef DWORD D3DXF_FILESAVEOPTIONS; - -#define D3DXF_FILESAVE_TOFILE 0x00L -#define D3DXF_FILESAVE_TOWFILE 0x01L - -//---------------------------------------------------------------------------- -// D3DXF_FILELOADOPTIONS -// This flag is used to specify where to load the file from. Each flag is -// mutually exclusive, indicates the data location of the file, and also -// chooses which additional data will specify the location. -// _FROMFILE is paired with a filename (LPCSTR) -// _FROMWFILE is paired with a filename (LPWSTR) -// _FROMRESOURCE is paired with a (D3DXF_FILELOADRESOUCE*) description. -// _FROMMEMORY is paired with a (D3DXF_FILELOADMEMORY*) description. -//---------------------------------------------------------------------------- -typedef DWORD D3DXF_FILELOADOPTIONS; - -#define D3DXF_FILELOAD_FROMFILE 0x00L -#define D3DXF_FILELOAD_FROMWFILE 0x01L -#define D3DXF_FILELOAD_FROMRESOURCE 0x02L -#define D3DXF_FILELOAD_FROMMEMORY 0x03L - -//---------------------------------------------------------------------------- -// D3DXF_FILELOADRESOURCE: -//---------------------------------------------------------------------------- - -typedef struct _D3DXF_FILELOADRESOURCE -{ - HMODULE hModule; // Desc - LPCSTR lpName; // Desc - LPCSTR lpType; // Desc -} D3DXF_FILELOADRESOURCE; - -//---------------------------------------------------------------------------- -// D3DXF_FILELOADMEMORY: -//---------------------------------------------------------------------------- - -typedef struct _D3DXF_FILELOADMEMORY -{ - LPCVOID lpMemory; // Desc - SIZE_T dSize; // Desc -} D3DXF_FILELOADMEMORY; - -#if defined( _WIN32 ) && !defined( _NO_COM ) - -// {cef08cf9-7b4f-4429-9624-2a690a933201} -DEFINE_GUID( IID_ID3DXFile, -0xcef08cf9, 0x7b4f, 0x4429, 0x96, 0x24, 0x2a, 0x69, 0x0a, 0x93, 0x32, 0x01 ); - -// {cef08cfa-7b4f-4429-9624-2a690a933201} -DEFINE_GUID( IID_ID3DXFileSaveObject, -0xcef08cfa, 0x7b4f, 0x4429, 0x96, 0x24, 0x2a, 0x69, 0x0a, 0x93, 0x32, 0x01 ); - -// {cef08cfb-7b4f-4429-9624-2a690a933201} -DEFINE_GUID( IID_ID3DXFileSaveData, -0xcef08cfb, 0x7b4f, 0x4429, 0x96, 0x24, 0x2a, 0x69, 0x0a, 0x93, 0x32, 0x01 ); - -// {cef08cfc-7b4f-4429-9624-2a690a933201} -DEFINE_GUID( IID_ID3DXFileEnumObject, -0xcef08cfc, 0x7b4f, 0x4429, 0x96, 0x24, 0x2a, 0x69, 0x0a, 0x93, 0x32, 0x01 ); - -// {cef08cfd-7b4f-4429-9624-2a690a933201} -DEFINE_GUID( IID_ID3DXFileData, -0xcef08cfd, 0x7b4f, 0x4429, 0x96, 0x24, 0x2a, 0x69, 0x0a, 0x93, 0x32, 0x01 ); - -#endif // defined( _WIN32 ) && !defined( _NO_COM ) - -#if defined( __cplusplus ) -#if !defined( DECLSPEC_UUID ) -#if _MSC_VER >= 1100 -#define DECLSPEC_UUID( x ) __declspec( uuid( x ) ) -#else // !( _MSC_VER >= 1100 ) -#define DECLSPEC_UUID( x ) -#endif // !( _MSC_VER >= 1100 ) -#endif // !defined( DECLSPEC_UUID ) - -interface DECLSPEC_UUID( "cef08cf9-7b4f-4429-9624-2a690a933201" ) - ID3DXFile; -interface DECLSPEC_UUID( "cef08cfa-7b4f-4429-9624-2a690a933201" ) - ID3DXFileSaveObject; -interface DECLSPEC_UUID( "cef08cfb-7b4f-4429-9624-2a690a933201" ) - ID3DXFileSaveData; -interface DECLSPEC_UUID( "cef08cfc-7b4f-4429-9624-2a690a933201" ) - ID3DXFileEnumObject; -interface DECLSPEC_UUID( "cef08cfd-7b4f-4429-9624-2a690a933201" ) - ID3DXFileData; - -#if defined( _COM_SMARTPTR_TYPEDEF ) -_COM_SMARTPTR_TYPEDEF( ID3DXFile, - __uuidof( ID3DXFile ) ); -_COM_SMARTPTR_TYPEDEF( ID3DXFileSaveObject, - __uuidof( ID3DXFileSaveObject ) ); -_COM_SMARTPTR_TYPEDEF( ID3DXFileSaveData, - __uuidof( ID3DXFileSaveData ) ); -_COM_SMARTPTR_TYPEDEF( ID3DXFileEnumObject, - __uuidof( ID3DXFileEnumObject ) ); -_COM_SMARTPTR_TYPEDEF( ID3DXFileData, - __uuidof( ID3DXFileData ) ); -#endif // defined( _COM_SMARTPTR_TYPEDEF ) -#endif // defined( __cplusplus ) - -typedef interface ID3DXFile ID3DXFile; -typedef interface ID3DXFileSaveObject ID3DXFileSaveObject; -typedef interface ID3DXFileSaveData ID3DXFileSaveData; -typedef interface ID3DXFileEnumObject ID3DXFileEnumObject; -typedef interface ID3DXFileData ID3DXFileData; - -////////////////////////////////////////////////////////////////////////////// -// ID3DXFile ///////////////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -#undef INTERFACE -#define INTERFACE ID3DXFile - -DECLARE_INTERFACE_( ID3DXFile, IUnknown ) -{ - STDMETHOD( QueryInterface )( THIS_ REFIID, LPVOID* ) PURE; - STDMETHOD_( ULONG, AddRef )( THIS ) PURE; - STDMETHOD_( ULONG, Release )( THIS ) PURE; - - STDMETHOD( CreateEnumObject )( THIS_ LPCVOID, D3DXF_FILELOADOPTIONS, - ID3DXFileEnumObject** ) PURE; - STDMETHOD( CreateSaveObject )( THIS_ LPCVOID, D3DXF_FILESAVEOPTIONS, - D3DXF_FILEFORMAT, ID3DXFileSaveObject** ) PURE; - STDMETHOD( RegisterTemplates )( THIS_ LPCVOID, SIZE_T ) PURE; - STDMETHOD( RegisterEnumTemplates )( THIS_ ID3DXFileEnumObject* ) PURE; -}; - -////////////////////////////////////////////////////////////////////////////// -// ID3DXFileSaveObject /////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -#undef INTERFACE -#define INTERFACE ID3DXFileSaveObject - -DECLARE_INTERFACE_( ID3DXFileSaveObject, IUnknown ) -{ - STDMETHOD( QueryInterface )( THIS_ REFIID, LPVOID* ) PURE; - STDMETHOD_( ULONG, AddRef )( THIS ) PURE; - STDMETHOD_( ULONG, Release )( THIS ) PURE; - - STDMETHOD( GetFile )( THIS_ ID3DXFile** ) PURE; - STDMETHOD( AddDataObject )( THIS_ REFGUID, LPCSTR, CONST GUID*, - SIZE_T, LPCVOID, ID3DXFileSaveData** ) PURE; - STDMETHOD( Save )( THIS ) PURE; -}; - -////////////////////////////////////////////////////////////////////////////// -// ID3DXFileSaveData ///////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -#undef INTERFACE -#define INTERFACE ID3DXFileSaveData - -DECLARE_INTERFACE_( ID3DXFileSaveData, IUnknown ) -{ - STDMETHOD( QueryInterface )( THIS_ REFIID, LPVOID* ) PURE; - STDMETHOD_( ULONG, AddRef )( THIS ) PURE; - STDMETHOD_( ULONG, Release )( THIS ) PURE; - - STDMETHOD( GetSave )( THIS_ ID3DXFileSaveObject** ) PURE; - STDMETHOD( GetName )( THIS_ LPSTR, SIZE_T* ) PURE; - STDMETHOD( GetId )( THIS_ LPGUID ) PURE; - STDMETHOD( GetType )( THIS_ GUID* ) PURE; - STDMETHOD( AddDataObject )( THIS_ REFGUID, LPCSTR, CONST GUID*, - SIZE_T, LPCVOID, ID3DXFileSaveData** ) PURE; - STDMETHOD( AddDataReference )( THIS_ LPCSTR, CONST GUID* ) PURE; -}; - -////////////////////////////////////////////////////////////////////////////// -// ID3DXFileEnumObject /////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -#undef INTERFACE -#define INTERFACE ID3DXFileEnumObject - -DECLARE_INTERFACE_( ID3DXFileEnumObject, IUnknown ) -{ - STDMETHOD( QueryInterface )( THIS_ REFIID, LPVOID* ) PURE; - STDMETHOD_( ULONG, AddRef )( THIS ) PURE; - STDMETHOD_( ULONG, Release )( THIS ) PURE; - - STDMETHOD( GetFile )( THIS_ ID3DXFile** ) PURE; - STDMETHOD( GetChildren )( THIS_ SIZE_T* ) PURE; - STDMETHOD( GetChild )( THIS_ SIZE_T, ID3DXFileData** ) PURE; - STDMETHOD( GetDataObjectById )( THIS_ REFGUID, ID3DXFileData** ) PURE; - STDMETHOD( GetDataObjectByName )( THIS_ LPCSTR, ID3DXFileData** ) PURE; -}; - -////////////////////////////////////////////////////////////////////////////// -// ID3DXFileData ///////////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// - -#undef INTERFACE -#define INTERFACE ID3DXFileData - -DECLARE_INTERFACE_( ID3DXFileData, IUnknown ) -{ - STDMETHOD( QueryInterface )( THIS_ REFIID, LPVOID* ) PURE; - STDMETHOD_( ULONG, AddRef )( THIS ) PURE; - STDMETHOD_( ULONG, Release )( THIS ) PURE; - - STDMETHOD( GetEnum )( THIS_ ID3DXFileEnumObject** ) PURE; - STDMETHOD( GetName )( THIS_ LPSTR, SIZE_T* ) PURE; - STDMETHOD( GetId )( THIS_ LPGUID ) PURE; - STDMETHOD( Lock )( THIS_ SIZE_T*, LPCVOID* ) PURE; - STDMETHOD( Unlock )( THIS ) PURE; - STDMETHOD( GetType )( THIS_ GUID* ) PURE; - STDMETHOD_( BOOL, IsReference )( THIS ) PURE; - STDMETHOD( GetChildren )( THIS_ SIZE_T* ) PURE; - STDMETHOD( GetChild )( THIS_ SIZE_T, ID3DXFileData** ) PURE; -}; - -STDAPI D3DXFileCreate( ID3DXFile** lplpDirectXFile ); - -/* - * DirectX File errors. - */ - -#define _FACD3DXF 0x876 - -#define D3DXFERR_BADOBJECT MAKE_HRESULT( 1, _FACD3DXF, 900 ) -#define D3DXFERR_BADVALUE MAKE_HRESULT( 1, _FACD3DXF, 901 ) -#define D3DXFERR_BADTYPE MAKE_HRESULT( 1, _FACD3DXF, 902 ) -#define D3DXFERR_NOTFOUND MAKE_HRESULT( 1, _FACD3DXF, 903 ) -#define D3DXFERR_NOTDONEYET MAKE_HRESULT( 1, _FACD3DXF, 904 ) -#define D3DXFERR_FILENOTFOUND MAKE_HRESULT( 1, _FACD3DXF, 905 ) -#define D3DXFERR_RESOURCENOTFOUND MAKE_HRESULT( 1, _FACD3DXF, 906 ) -#define D3DXFERR_BADRESOURCE MAKE_HRESULT( 1, _FACD3DXF, 907 ) -#define D3DXFERR_BADFILETYPE MAKE_HRESULT( 1, _FACD3DXF, 908 ) -#define D3DXFERR_BADFILEVERSION MAKE_HRESULT( 1, _FACD3DXF, 909 ) -#define D3DXFERR_BADFILEFLOATSIZE MAKE_HRESULT( 1, _FACD3DXF, 910 ) -#define D3DXFERR_BADFILE MAKE_HRESULT( 1, _FACD3DXF, 911 ) -#define D3DXFERR_PARSEERROR MAKE_HRESULT( 1, _FACD3DXF, 912 ) -#define D3DXFERR_BADARRAYSIZE MAKE_HRESULT( 1, _FACD3DXF, 913 ) -#define D3DXFERR_BADDATAREFERENCE MAKE_HRESULT( 1, _FACD3DXF, 914 ) -#define D3DXFERR_NOMOREOBJECTS MAKE_HRESULT( 1, _FACD3DXF, 915 ) -#define D3DXFERR_NOMOREDATA MAKE_HRESULT( 1, _FACD3DXF, 916 ) -#define D3DXFERR_BADCACHEFILE MAKE_HRESULT( 1, _FACD3DXF, 917 ) - -/* - * DirectX File object types. - */ - -#ifndef WIN_TYPES -#define WIN_TYPES(itype, ptype) typedef interface itype *LP##ptype, **LPLP##ptype -#endif - -WIN_TYPES(ID3DXFile, D3DXFILE); -WIN_TYPES(ID3DXFileEnumObject, D3DXFILEENUMOBJECT); -WIN_TYPES(ID3DXFileSaveObject, D3DXFILESAVEOBJECT); -WIN_TYPES(ID3DXFileData, D3DXFILEDATA); -WIN_TYPES(ID3DXFileSaveData, D3DXFILESAVEDATA); - -#if defined( __cplusplus ) -} // extern "C" -#endif // defined( __cplusplus ) - -#endif // !defined( __D3DX9XOF_H__ ) - - diff --git a/SDK/Include/detours.cpp b/SDK/Include/detours.cpp deleted file mode 100644 index 3c3e691..0000000 --- a/SDK/Include/detours.cpp +++ /dev/null @@ -1,94 +0,0 @@ -// ----------------------------------------------------------------------------- -// Matthew L (Azorbix) -// detours.cpp/h -// -// Created for Game-Deception -// -// Credits: -// Dom1n1k -// LanceVorgin -// P47R!CK -// -// Changes by Hans211: -// - use mlde32 instead of ade32 -// - store length of hook in 1st byte of allocated room -// - use push xxxx ret as hook instead of jmp -// - length of detour is optional -// ----------------------------------------------------------------------------- -#define WIN32_LEAN_AND_MEAN -#include -#include -#include "detours.h" - - -int DetourASMlen(BYTE *src, int minlen) // find out asm instruction length -{ - int i,len; - - for (len=0; len=6) len=minlen; - if (len==0) return 0; - - org=jmp = (BYTE*)malloc(len+5+1); // room for nobytes + jmplen + size byte - jmp[0]=len; // save length in first byte - jmp++; - -VirtualProtect(src,len,PAGE_READWRITE,&dwback); - - if(src[0] == 0xE9) - { - jmp = (BYTE*)malloc(10); - jumpto = (*(DWORD*)(src+1))+((DWORD)src)+5; - newjump = (jumpto-(DWORD)(jmp+5)); - jmp[0] = 0xE9; - *(DWORD*)(jmp+1) = newjump; - jmp += 5; - jmp[0] = 0xE9; - *(DWORD*)(jmp+1) = (DWORD)(src-jmp); - } - else - { - jmp = (BYTE*)malloc(5+len); - memcpy(jmp,src,len); - jmp += len; - jmp[0] = 0xE9; - *(DWORD*)(jmp+1) = (DWORD)(src+len-jmp)-5; - } - src[0] = 0xE9; - *(DWORD*)(src+1) = (DWORD)(dst - src) - 5; - - for(int i = 5; i < len; i++) - src[i] = 0x90; - VirtualProtect(src,len,dwback,&dwback); - return (jmp-len); -} - -// restore == return value of DetourCreate -void DetourRemove(BYTE *src, BYTE *restore, int len) -{ - DWORD dwBack; - - len=*(BYTE *)(restore-1); // ignore len parameter, only for backward competability - - VirtualProtect(src, len, PAGE_EXECUTE_READWRITE, &dwBack); - memcpy(src, restore, len); - restore[0] = 0xE9; - - *(DWORD*)(restore+1) = (DWORD)(src - restore) - 5; - VirtualProtect(src, len, dwBack, &dwBack); -} diff --git a/SDK/Include/detours.h b/SDK/Include/detours.h deleted file mode 100644 index c155157..0000000 --- a/SDK/Include/detours.h +++ /dev/null @@ -1,10 +0,0 @@ -#ifndef _DETOURS_H -#define _DETOURS_H - -extern "C" int __cdecl mlde32(void *codeptr); - -int DetourLen(BYTE *src, int minlen); -void *DetourCreate(BYTE *src, const BYTE *dst, const int minlen=0); -void DetourRemove(BYTE *src, BYTE *restore, const int len=0); - -#endif \ No newline at end of file diff --git a/SDK/Include/dinput.h b/SDK/Include/dinput.h deleted file mode 100644 index 5aac256..0000000 --- a/SDK/Include/dinput.h +++ /dev/null @@ -1,4417 +0,0 @@ -/**************************************************************************** - * - * Copyright (C) 1996-2000 Microsoft Corporation. All Rights Reserved. - * - * File: dinput.h - * Content: DirectInput include file - * - ****************************************************************************/ - -#ifndef __DINPUT_INCLUDED__ -#define __DINPUT_INCLUDED__ - -#ifndef DIJ_RINGZERO - -#ifdef _WIN32 -#define COM_NO_WINDOWS_H -#include -#endif - -#endif /* DIJ_RINGZERO */ - -#ifdef __cplusplus -extern "C" { -#endif - - - - - -/* - * To build applications for older versions of DirectInput - * - * #define DIRECTINPUT_VERSION [ 0x0300 | 0x0500 | 0x0700 ] - * - * before #include . By default, #include - * will produce a DirectX 8-compatible header file. - * - */ - -#define DIRECTINPUT_HEADER_VERSION 0x0800 -#ifndef DIRECTINPUT_VERSION -#define DIRECTINPUT_VERSION DIRECTINPUT_HEADER_VERSION -#pragma message(__FILE__ ": DIRECTINPUT_VERSION undefined. Defaulting to version 0x0800") -#endif - -#ifndef DIJ_RINGZERO - -/**************************************************************************** - * - * Class IDs - * - ****************************************************************************/ - -DEFINE_GUID(CLSID_DirectInput, 0x25E609E0,0xB259,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); -DEFINE_GUID(CLSID_DirectInputDevice, 0x25E609E1,0xB259,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); - -DEFINE_GUID(CLSID_DirectInput8, 0x25E609E4,0xB259,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); -DEFINE_GUID(CLSID_DirectInputDevice8,0x25E609E5,0xB259,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); - -/**************************************************************************** - * - * Interfaces - * - ****************************************************************************/ - -DEFINE_GUID(IID_IDirectInputA, 0x89521360,0xAA8A,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); -DEFINE_GUID(IID_IDirectInputW, 0x89521361,0xAA8A,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); -DEFINE_GUID(IID_IDirectInput2A, 0x5944E662,0xAA8A,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); -DEFINE_GUID(IID_IDirectInput2W, 0x5944E663,0xAA8A,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); -DEFINE_GUID(IID_IDirectInput7A, 0x9A4CB684,0x236D,0x11D3,0x8E,0x9D,0x00,0xC0,0x4F,0x68,0x44,0xAE); -DEFINE_GUID(IID_IDirectInput7W, 0x9A4CB685,0x236D,0x11D3,0x8E,0x9D,0x00,0xC0,0x4F,0x68,0x44,0xAE); -DEFINE_GUID(IID_IDirectInput8A, 0xBF798030,0x483A,0x4DA2,0xAA,0x99,0x5D,0x64,0xED,0x36,0x97,0x00); -DEFINE_GUID(IID_IDirectInput8W, 0xBF798031,0x483A,0x4DA2,0xAA,0x99,0x5D,0x64,0xED,0x36,0x97,0x00); -DEFINE_GUID(IID_IDirectInputDeviceA, 0x5944E680,0xC92E,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); -DEFINE_GUID(IID_IDirectInputDeviceW, 0x5944E681,0xC92E,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); -DEFINE_GUID(IID_IDirectInputDevice2A,0x5944E682,0xC92E,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); -DEFINE_GUID(IID_IDirectInputDevice2W,0x5944E683,0xC92E,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); -DEFINE_GUID(IID_IDirectInputDevice7A,0x57D7C6BC,0x2356,0x11D3,0x8E,0x9D,0x00,0xC0,0x4F,0x68,0x44,0xAE); -DEFINE_GUID(IID_IDirectInputDevice7W,0x57D7C6BD,0x2356,0x11D3,0x8E,0x9D,0x00,0xC0,0x4F,0x68,0x44,0xAE); -DEFINE_GUID(IID_IDirectInputDevice8A,0x54D41080,0xDC15,0x4833,0xA4,0x1B,0x74,0x8F,0x73,0xA3,0x81,0x79); -DEFINE_GUID(IID_IDirectInputDevice8W,0x54D41081,0xDC15,0x4833,0xA4,0x1B,0x74,0x8F,0x73,0xA3,0x81,0x79); -DEFINE_GUID(IID_IDirectInputEffect, 0xE7E1F7C0,0x88D2,0x11D0,0x9A,0xD0,0x00,0xA0,0xC9,0xA0,0x6E,0x35); - -/**************************************************************************** - * - * Predefined object types - * - ****************************************************************************/ - -DEFINE_GUID(GUID_XAxis, 0xA36D02E0,0xC9F3,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); -DEFINE_GUID(GUID_YAxis, 0xA36D02E1,0xC9F3,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); -DEFINE_GUID(GUID_ZAxis, 0xA36D02E2,0xC9F3,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); -DEFINE_GUID(GUID_RxAxis, 0xA36D02F4,0xC9F3,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); -DEFINE_GUID(GUID_RyAxis, 0xA36D02F5,0xC9F3,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); -DEFINE_GUID(GUID_RzAxis, 0xA36D02E3,0xC9F3,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); -DEFINE_GUID(GUID_Slider, 0xA36D02E4,0xC9F3,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); - -DEFINE_GUID(GUID_Button, 0xA36D02F0,0xC9F3,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); -DEFINE_GUID(GUID_Key, 0x55728220,0xD33C,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); - -DEFINE_GUID(GUID_POV, 0xA36D02F2,0xC9F3,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); - -DEFINE_GUID(GUID_Unknown, 0xA36D02F3,0xC9F3,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); - -/**************************************************************************** - * - * Predefined product GUIDs - * - ****************************************************************************/ - -DEFINE_GUID(GUID_SysMouse, 0x6F1D2B60,0xD5A0,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); -DEFINE_GUID(GUID_SysKeyboard,0x6F1D2B61,0xD5A0,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); -DEFINE_GUID(GUID_Joystick ,0x6F1D2B70,0xD5A0,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); -DEFINE_GUID(GUID_SysMouseEm, 0x6F1D2B80,0xD5A0,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); -DEFINE_GUID(GUID_SysMouseEm2,0x6F1D2B81,0xD5A0,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); -DEFINE_GUID(GUID_SysKeyboardEm, 0x6F1D2B82,0xD5A0,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); -DEFINE_GUID(GUID_SysKeyboardEm2,0x6F1D2B83,0xD5A0,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); - -/**************************************************************************** - * - * Predefined force feedback effects - * - ****************************************************************************/ - -DEFINE_GUID(GUID_ConstantForce, 0x13541C20,0x8E33,0x11D0,0x9A,0xD0,0x00,0xA0,0xC9,0xA0,0x6E,0x35); -DEFINE_GUID(GUID_RampForce, 0x13541C21,0x8E33,0x11D0,0x9A,0xD0,0x00,0xA0,0xC9,0xA0,0x6E,0x35); -DEFINE_GUID(GUID_Square, 0x13541C22,0x8E33,0x11D0,0x9A,0xD0,0x00,0xA0,0xC9,0xA0,0x6E,0x35); -DEFINE_GUID(GUID_Sine, 0x13541C23,0x8E33,0x11D0,0x9A,0xD0,0x00,0xA0,0xC9,0xA0,0x6E,0x35); -DEFINE_GUID(GUID_Triangle, 0x13541C24,0x8E33,0x11D0,0x9A,0xD0,0x00,0xA0,0xC9,0xA0,0x6E,0x35); -DEFINE_GUID(GUID_SawtoothUp, 0x13541C25,0x8E33,0x11D0,0x9A,0xD0,0x00,0xA0,0xC9,0xA0,0x6E,0x35); -DEFINE_GUID(GUID_SawtoothDown, 0x13541C26,0x8E33,0x11D0,0x9A,0xD0,0x00,0xA0,0xC9,0xA0,0x6E,0x35); -DEFINE_GUID(GUID_Spring, 0x13541C27,0x8E33,0x11D0,0x9A,0xD0,0x00,0xA0,0xC9,0xA0,0x6E,0x35); -DEFINE_GUID(GUID_Damper, 0x13541C28,0x8E33,0x11D0,0x9A,0xD0,0x00,0xA0,0xC9,0xA0,0x6E,0x35); -DEFINE_GUID(GUID_Inertia, 0x13541C29,0x8E33,0x11D0,0x9A,0xD0,0x00,0xA0,0xC9,0xA0,0x6E,0x35); -DEFINE_GUID(GUID_Friction, 0x13541C2A,0x8E33,0x11D0,0x9A,0xD0,0x00,0xA0,0xC9,0xA0,0x6E,0x35); -DEFINE_GUID(GUID_CustomForce, 0x13541C2B,0x8E33,0x11D0,0x9A,0xD0,0x00,0xA0,0xC9,0xA0,0x6E,0x35); - -#endif /* DIJ_RINGZERO */ - -/**************************************************************************** - * - * Interfaces and Structures... - * - ****************************************************************************/ - -#if(DIRECTINPUT_VERSION >= 0x0500) - -/**************************************************************************** - * - * IDirectInputEffect - * - ****************************************************************************/ - -#define DIEFT_ALL 0x00000000 - -#define DIEFT_CONSTANTFORCE 0x00000001 -#define DIEFT_RAMPFORCE 0x00000002 -#define DIEFT_PERIODIC 0x00000003 -#define DIEFT_CONDITION 0x00000004 -#define DIEFT_CUSTOMFORCE 0x00000005 -#define DIEFT_HARDWARE 0x000000FF -#define DIEFT_FFATTACK 0x00000200 -#define DIEFT_FFFADE 0x00000400 -#define DIEFT_SATURATION 0x00000800 -#define DIEFT_POSNEGCOEFFICIENTS 0x00001000 -#define DIEFT_POSNEGSATURATION 0x00002000 -#define DIEFT_DEADBAND 0x00004000 -#define DIEFT_STARTDELAY 0x00008000 -#define DIEFT_GETTYPE(n) LOBYTE(n) - -#define DI_DEGREES 100 -#define DI_FFNOMINALMAX 10000 -#define DI_SECONDS 1000000 - -typedef struct DICONSTANTFORCE { - LONG lMagnitude; -} DICONSTANTFORCE, *LPDICONSTANTFORCE; -typedef const DICONSTANTFORCE *LPCDICONSTANTFORCE; - -typedef struct DIRAMPFORCE { - LONG lStart; - LONG lEnd; -} DIRAMPFORCE, *LPDIRAMPFORCE; -typedef const DIRAMPFORCE *LPCDIRAMPFORCE; - -typedef struct DIPERIODIC { - DWORD dwMagnitude; - LONG lOffset; - DWORD dwPhase; - DWORD dwPeriod; -} DIPERIODIC, *LPDIPERIODIC; -typedef const DIPERIODIC *LPCDIPERIODIC; - -typedef struct DICONDITION { - LONG lOffset; - LONG lPositiveCoefficient; - LONG lNegativeCoefficient; - DWORD dwPositiveSaturation; - DWORD dwNegativeSaturation; - LONG lDeadBand; -} DICONDITION, *LPDICONDITION; -typedef const DICONDITION *LPCDICONDITION; - -typedef struct DICUSTOMFORCE { - DWORD cChannels; - DWORD dwSamplePeriod; - DWORD cSamples; - LPLONG rglForceData; -} DICUSTOMFORCE, *LPDICUSTOMFORCE; -typedef const DICUSTOMFORCE *LPCDICUSTOMFORCE; - - -typedef struct DIENVELOPE { - DWORD dwSize; /* sizeof(DIENVELOPE) */ - DWORD dwAttackLevel; - DWORD dwAttackTime; /* Microseconds */ - DWORD dwFadeLevel; - DWORD dwFadeTime; /* Microseconds */ -} DIENVELOPE, *LPDIENVELOPE; -typedef const DIENVELOPE *LPCDIENVELOPE; - - -/* This structure is defined for DirectX 5.0 compatibility */ -typedef struct DIEFFECT_DX5 { - DWORD dwSize; /* sizeof(DIEFFECT_DX5) */ - DWORD dwFlags; /* DIEFF_* */ - DWORD dwDuration; /* Microseconds */ - DWORD dwSamplePeriod; /* Microseconds */ - DWORD dwGain; - DWORD dwTriggerButton; /* or DIEB_NOTRIGGER */ - DWORD dwTriggerRepeatInterval; /* Microseconds */ - DWORD cAxes; /* Number of axes */ - LPDWORD rgdwAxes; /* Array of axes */ - LPLONG rglDirection; /* Array of directions */ - LPDIENVELOPE lpEnvelope; /* Optional */ - DWORD cbTypeSpecificParams; /* Size of params */ - LPVOID lpvTypeSpecificParams; /* Pointer to params */ -} DIEFFECT_DX5, *LPDIEFFECT_DX5; -typedef const DIEFFECT_DX5 *LPCDIEFFECT_DX5; - -typedef struct DIEFFECT { - DWORD dwSize; /* sizeof(DIEFFECT) */ - DWORD dwFlags; /* DIEFF_* */ - DWORD dwDuration; /* Microseconds */ - DWORD dwSamplePeriod; /* Microseconds */ - DWORD dwGain; - DWORD dwTriggerButton; /* or DIEB_NOTRIGGER */ - DWORD dwTriggerRepeatInterval; /* Microseconds */ - DWORD cAxes; /* Number of axes */ - LPDWORD rgdwAxes; /* Array of axes */ - LPLONG rglDirection; /* Array of directions */ - LPDIENVELOPE lpEnvelope; /* Optional */ - DWORD cbTypeSpecificParams; /* Size of params */ - LPVOID lpvTypeSpecificParams; /* Pointer to params */ -#if(DIRECTINPUT_VERSION >= 0x0600) - DWORD dwStartDelay; /* Microseconds */ -#endif /* DIRECTINPUT_VERSION >= 0x0600 */ -} DIEFFECT, *LPDIEFFECT; -typedef DIEFFECT DIEFFECT_DX6; -typedef LPDIEFFECT LPDIEFFECT_DX6; -typedef const DIEFFECT *LPCDIEFFECT; - - -#if(DIRECTINPUT_VERSION >= 0x0700) -#ifndef DIJ_RINGZERO -typedef struct DIFILEEFFECT{ - DWORD dwSize; - GUID GuidEffect; - LPCDIEFFECT lpDiEffect; - CHAR szFriendlyName[MAX_PATH]; -}DIFILEEFFECT, *LPDIFILEEFFECT; -typedef const DIFILEEFFECT *LPCDIFILEEFFECT; -typedef BOOL (FAR PASCAL * LPDIENUMEFFECTSINFILECALLBACK)(LPCDIFILEEFFECT , LPVOID); -#endif /* DIJ_RINGZERO */ -#endif /* DIRECTINPUT_VERSION >= 0x0700 */ - -#define DIEFF_OBJECTIDS 0x00000001 -#define DIEFF_OBJECTOFFSETS 0x00000002 -#define DIEFF_CARTESIAN 0x00000010 -#define DIEFF_POLAR 0x00000020 -#define DIEFF_SPHERICAL 0x00000040 - -#define DIEP_DURATION 0x00000001 -#define DIEP_SAMPLEPERIOD 0x00000002 -#define DIEP_GAIN 0x00000004 -#define DIEP_TRIGGERBUTTON 0x00000008 -#define DIEP_TRIGGERREPEATINTERVAL 0x00000010 -#define DIEP_AXES 0x00000020 -#define DIEP_DIRECTION 0x00000040 -#define DIEP_ENVELOPE 0x00000080 -#define DIEP_TYPESPECIFICPARAMS 0x00000100 -#if(DIRECTINPUT_VERSION >= 0x0600) -#define DIEP_STARTDELAY 0x00000200 -#define DIEP_ALLPARAMS_DX5 0x000001FF -#define DIEP_ALLPARAMS 0x000003FF -#else /* DIRECTINPUT_VERSION < 0x0600 */ -#define DIEP_ALLPARAMS 0x000001FF -#endif /* DIRECTINPUT_VERSION < 0x0600 */ -#define DIEP_START 0x20000000 -#define DIEP_NORESTART 0x40000000 -#define DIEP_NODOWNLOAD 0x80000000 -#define DIEB_NOTRIGGER 0xFFFFFFFF - -#define DIES_SOLO 0x00000001 -#define DIES_NODOWNLOAD 0x80000000 - -#define DIEGES_PLAYING 0x00000001 -#define DIEGES_EMULATED 0x00000002 - -typedef struct DIEFFESCAPE { - DWORD dwSize; - DWORD dwCommand; - LPVOID lpvInBuffer; - DWORD cbInBuffer; - LPVOID lpvOutBuffer; - DWORD cbOutBuffer; -} DIEFFESCAPE, *LPDIEFFESCAPE; - -#ifndef DIJ_RINGZERO - -#undef INTERFACE -#define INTERFACE IDirectInputEffect - -DECLARE_INTERFACE_(IDirectInputEffect, IUnknown) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID * ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirectInputEffect methods ***/ - STDMETHOD(Initialize)(THIS_ HINSTANCE,DWORD,REFGUID) PURE; - STDMETHOD(GetEffectGuid)(THIS_ LPGUID) PURE; - STDMETHOD(GetParameters)(THIS_ LPDIEFFECT,DWORD) PURE; - STDMETHOD(SetParameters)(THIS_ LPCDIEFFECT,DWORD) PURE; - STDMETHOD(Start)(THIS_ DWORD,DWORD) PURE; - STDMETHOD(Stop)(THIS) PURE; - STDMETHOD(GetEffectStatus)(THIS_ LPDWORD) PURE; - STDMETHOD(Download)(THIS) PURE; - STDMETHOD(Unload)(THIS) PURE; - STDMETHOD(Escape)(THIS_ LPDIEFFESCAPE) PURE; -}; - -typedef struct IDirectInputEffect *LPDIRECTINPUTEFFECT; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectInputEffect_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirectInputEffect_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirectInputEffect_Release(p) (p)->lpVtbl->Release(p) -#define IDirectInputEffect_Initialize(p,a,b,c) (p)->lpVtbl->Initialize(p,a,b,c) -#define IDirectInputEffect_GetEffectGuid(p,a) (p)->lpVtbl->GetEffectGuid(p,a) -#define IDirectInputEffect_GetParameters(p,a,b) (p)->lpVtbl->GetParameters(p,a,b) -#define IDirectInputEffect_SetParameters(p,a,b) (p)->lpVtbl->SetParameters(p,a,b) -#define IDirectInputEffect_Start(p,a,b) (p)->lpVtbl->Start(p,a,b) -#define IDirectInputEffect_Stop(p) (p)->lpVtbl->Stop(p) -#define IDirectInputEffect_GetEffectStatus(p,a) (p)->lpVtbl->GetEffectStatus(p,a) -#define IDirectInputEffect_Download(p) (p)->lpVtbl->Download(p) -#define IDirectInputEffect_Unload(p) (p)->lpVtbl->Unload(p) -#define IDirectInputEffect_Escape(p,a) (p)->lpVtbl->Escape(p,a) -#else -#define IDirectInputEffect_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirectInputEffect_AddRef(p) (p)->AddRef() -#define IDirectInputEffect_Release(p) (p)->Release() -#define IDirectInputEffect_Initialize(p,a,b,c) (p)->Initialize(a,b,c) -#define IDirectInputEffect_GetEffectGuid(p,a) (p)->GetEffectGuid(a) -#define IDirectInputEffect_GetParameters(p,a,b) (p)->GetParameters(a,b) -#define IDirectInputEffect_SetParameters(p,a,b) (p)->SetParameters(a,b) -#define IDirectInputEffect_Start(p,a,b) (p)->Start(a,b) -#define IDirectInputEffect_Stop(p) (p)->Stop() -#define IDirectInputEffect_GetEffectStatus(p,a) (p)->GetEffectStatus(a) -#define IDirectInputEffect_Download(p) (p)->Download() -#define IDirectInputEffect_Unload(p) (p)->Unload() -#define IDirectInputEffect_Escape(p,a) (p)->Escape(a) -#endif - -#endif /* DIJ_RINGZERO */ - -#endif /* DIRECTINPUT_VERSION >= 0x0500 */ - -/**************************************************************************** - * - * IDirectInputDevice - * - ****************************************************************************/ - -#if DIRECTINPUT_VERSION <= 0x700 -#define DIDEVTYPE_DEVICE 1 -#define DIDEVTYPE_MOUSE 2 -#define DIDEVTYPE_KEYBOARD 3 -#define DIDEVTYPE_JOYSTICK 4 - -#else -#define DI8DEVCLASS_ALL 0 -#define DI8DEVCLASS_DEVICE 1 -#define DI8DEVCLASS_POINTER 2 -#define DI8DEVCLASS_KEYBOARD 3 -#define DI8DEVCLASS_GAMECTRL 4 - -#define DI8DEVTYPE_DEVICE 0x11 -#define DI8DEVTYPE_MOUSE 0x12 -#define DI8DEVTYPE_KEYBOARD 0x13 -#define DI8DEVTYPE_JOYSTICK 0x14 -#define DI8DEVTYPE_GAMEPAD 0x15 -#define DI8DEVTYPE_DRIVING 0x16 -#define DI8DEVTYPE_FLIGHT 0x17 -#define DI8DEVTYPE_1STPERSON 0x18 -#define DI8DEVTYPE_DEVICECTRL 0x19 -#define DI8DEVTYPE_SCREENPOINTER 0x1A -#define DI8DEVTYPE_REMOTE 0x1B -#define DI8DEVTYPE_SUPPLEMENTAL 0x1C -#endif /* DIRECTINPUT_VERSION <= 0x700 */ - -#define DIDEVTYPE_HID 0x00010000 - -#if DIRECTINPUT_VERSION <= 0x700 -#define DIDEVTYPEMOUSE_UNKNOWN 1 -#define DIDEVTYPEMOUSE_TRADITIONAL 2 -#define DIDEVTYPEMOUSE_FINGERSTICK 3 -#define DIDEVTYPEMOUSE_TOUCHPAD 4 -#define DIDEVTYPEMOUSE_TRACKBALL 5 - -#define DIDEVTYPEKEYBOARD_UNKNOWN 0 -#define DIDEVTYPEKEYBOARD_PCXT 1 -#define DIDEVTYPEKEYBOARD_OLIVETTI 2 -#define DIDEVTYPEKEYBOARD_PCAT 3 -#define DIDEVTYPEKEYBOARD_PCENH 4 -#define DIDEVTYPEKEYBOARD_NOKIA1050 5 -#define DIDEVTYPEKEYBOARD_NOKIA9140 6 -#define DIDEVTYPEKEYBOARD_NEC98 7 -#define DIDEVTYPEKEYBOARD_NEC98LAPTOP 8 -#define DIDEVTYPEKEYBOARD_NEC98106 9 -#define DIDEVTYPEKEYBOARD_JAPAN106 10 -#define DIDEVTYPEKEYBOARD_JAPANAX 11 -#define DIDEVTYPEKEYBOARD_J3100 12 - -#define DIDEVTYPEJOYSTICK_UNKNOWN 1 -#define DIDEVTYPEJOYSTICK_TRADITIONAL 2 -#define DIDEVTYPEJOYSTICK_FLIGHTSTICK 3 -#define DIDEVTYPEJOYSTICK_GAMEPAD 4 -#define DIDEVTYPEJOYSTICK_RUDDER 5 -#define DIDEVTYPEJOYSTICK_WHEEL 6 -#define DIDEVTYPEJOYSTICK_HEADTRACKER 7 - -#else -#define DI8DEVTYPEMOUSE_UNKNOWN 1 -#define DI8DEVTYPEMOUSE_TRADITIONAL 2 -#define DI8DEVTYPEMOUSE_FINGERSTICK 3 -#define DI8DEVTYPEMOUSE_TOUCHPAD 4 -#define DI8DEVTYPEMOUSE_TRACKBALL 5 -#define DI8DEVTYPEMOUSE_ABSOLUTE 6 - -#define DI8DEVTYPEKEYBOARD_UNKNOWN 0 -#define DI8DEVTYPEKEYBOARD_PCXT 1 -#define DI8DEVTYPEKEYBOARD_OLIVETTI 2 -#define DI8DEVTYPEKEYBOARD_PCAT 3 -#define DI8DEVTYPEKEYBOARD_PCENH 4 -#define DI8DEVTYPEKEYBOARD_NOKIA1050 5 -#define DI8DEVTYPEKEYBOARD_NOKIA9140 6 -#define DI8DEVTYPEKEYBOARD_NEC98 7 -#define DI8DEVTYPEKEYBOARD_NEC98LAPTOP 8 -#define DI8DEVTYPEKEYBOARD_NEC98106 9 -#define DI8DEVTYPEKEYBOARD_JAPAN106 10 -#define DI8DEVTYPEKEYBOARD_JAPANAX 11 -#define DI8DEVTYPEKEYBOARD_J3100 12 - -#define DI8DEVTYPE_LIMITEDGAMESUBTYPE 1 - -#define DI8DEVTYPEJOYSTICK_LIMITED DI8DEVTYPE_LIMITEDGAMESUBTYPE -#define DI8DEVTYPEJOYSTICK_STANDARD 2 - -#define DI8DEVTYPEGAMEPAD_LIMITED DI8DEVTYPE_LIMITEDGAMESUBTYPE -#define DI8DEVTYPEGAMEPAD_STANDARD 2 -#define DI8DEVTYPEGAMEPAD_TILT 3 - -#define DI8DEVTYPEDRIVING_LIMITED DI8DEVTYPE_LIMITEDGAMESUBTYPE -#define DI8DEVTYPEDRIVING_COMBINEDPEDALS 2 -#define DI8DEVTYPEDRIVING_DUALPEDALS 3 -#define DI8DEVTYPEDRIVING_THREEPEDALS 4 -#define DI8DEVTYPEDRIVING_HANDHELD 5 - -#define DI8DEVTYPEFLIGHT_LIMITED DI8DEVTYPE_LIMITEDGAMESUBTYPE -#define DI8DEVTYPEFLIGHT_STICK 2 -#define DI8DEVTYPEFLIGHT_YOKE 3 -#define DI8DEVTYPEFLIGHT_RC 4 - -#define DI8DEVTYPE1STPERSON_LIMITED DI8DEVTYPE_LIMITEDGAMESUBTYPE -#define DI8DEVTYPE1STPERSON_UNKNOWN 2 -#define DI8DEVTYPE1STPERSON_SIXDOF 3 -#define DI8DEVTYPE1STPERSON_SHOOTER 4 - -#define DI8DEVTYPESCREENPTR_UNKNOWN 2 -#define DI8DEVTYPESCREENPTR_LIGHTGUN 3 -#define DI8DEVTYPESCREENPTR_LIGHTPEN 4 -#define DI8DEVTYPESCREENPTR_TOUCH 5 - -#define DI8DEVTYPEREMOTE_UNKNOWN 2 - -#define DI8DEVTYPEDEVICECTRL_UNKNOWN 2 -#define DI8DEVTYPEDEVICECTRL_COMMSSELECTION 3 -#define DI8DEVTYPEDEVICECTRL_COMMSSELECTION_HARDWIRED 4 - -#define DI8DEVTYPESUPPLEMENTAL_UNKNOWN 2 -#define DI8DEVTYPESUPPLEMENTAL_2NDHANDCONTROLLER 3 -#define DI8DEVTYPESUPPLEMENTAL_HEADTRACKER 4 -#define DI8DEVTYPESUPPLEMENTAL_HANDTRACKER 5 -#define DI8DEVTYPESUPPLEMENTAL_SHIFTSTICKGATE 6 -#define DI8DEVTYPESUPPLEMENTAL_SHIFTER 7 -#define DI8DEVTYPESUPPLEMENTAL_THROTTLE 8 -#define DI8DEVTYPESUPPLEMENTAL_SPLITTHROTTLE 9 -#define DI8DEVTYPESUPPLEMENTAL_COMBINEDPEDALS 10 -#define DI8DEVTYPESUPPLEMENTAL_DUALPEDALS 11 -#define DI8DEVTYPESUPPLEMENTAL_THREEPEDALS 12 -#define DI8DEVTYPESUPPLEMENTAL_RUDDERPEDALS 13 -#endif /* DIRECTINPUT_VERSION <= 0x700 */ - -#define GET_DIDEVICE_TYPE(dwDevType) LOBYTE(dwDevType) -#define GET_DIDEVICE_SUBTYPE(dwDevType) HIBYTE(dwDevType) - -#if(DIRECTINPUT_VERSION >= 0x0500) -/* This structure is defined for DirectX 3.0 compatibility */ -typedef struct DIDEVCAPS_DX3 { - DWORD dwSize; - DWORD dwFlags; - DWORD dwDevType; - DWORD dwAxes; - DWORD dwButtons; - DWORD dwPOVs; -} DIDEVCAPS_DX3, *LPDIDEVCAPS_DX3; -#endif /* DIRECTINPUT_VERSION >= 0x0500 */ - -typedef struct DIDEVCAPS { - DWORD dwSize; - DWORD dwFlags; - DWORD dwDevType; - DWORD dwAxes; - DWORD dwButtons; - DWORD dwPOVs; -#if(DIRECTINPUT_VERSION >= 0x0500) - DWORD dwFFSamplePeriod; - DWORD dwFFMinTimeResolution; - DWORD dwFirmwareRevision; - DWORD dwHardwareRevision; - DWORD dwFFDriverVersion; -#endif /* DIRECTINPUT_VERSION >= 0x0500 */ -} DIDEVCAPS, *LPDIDEVCAPS; - -#define DIDC_ATTACHED 0x00000001 -#define DIDC_POLLEDDEVICE 0x00000002 -#define DIDC_EMULATED 0x00000004 -#define DIDC_POLLEDDATAFORMAT 0x00000008 -#if(DIRECTINPUT_VERSION >= 0x0500) -#define DIDC_FORCEFEEDBACK 0x00000100 -#define DIDC_FFATTACK 0x00000200 -#define DIDC_FFFADE 0x00000400 -#define DIDC_SATURATION 0x00000800 -#define DIDC_POSNEGCOEFFICIENTS 0x00001000 -#define DIDC_POSNEGSATURATION 0x00002000 -#define DIDC_DEADBAND 0x00004000 -#endif /* DIRECTINPUT_VERSION >= 0x0500 */ -#define DIDC_STARTDELAY 0x00008000 -#if(DIRECTINPUT_VERSION >= 0x050a) -#define DIDC_ALIAS 0x00010000 -#define DIDC_PHANTOM 0x00020000 -#endif /* DIRECTINPUT_VERSION >= 0x050a */ -#if(DIRECTINPUT_VERSION >= 0x0800) -#define DIDC_HIDDEN 0x00040000 -#endif /* DIRECTINPUT_VERSION >= 0x0800 */ - -#define DIDFT_ALL 0x00000000 - -#define DIDFT_RELAXIS 0x00000001 -#define DIDFT_ABSAXIS 0x00000002 -#define DIDFT_AXIS 0x00000003 - -#define DIDFT_PSHBUTTON 0x00000004 -#define DIDFT_TGLBUTTON 0x00000008 -#define DIDFT_BUTTON 0x0000000C - -#define DIDFT_POV 0x00000010 -#define DIDFT_COLLECTION 0x00000040 -#define DIDFT_NODATA 0x00000080 - -#define DIDFT_ANYINSTANCE 0x00FFFF00 -#define DIDFT_INSTANCEMASK DIDFT_ANYINSTANCE -#define DIDFT_MAKEINSTANCE(n) ((WORD)(n) << 8) -#define DIDFT_GETTYPE(n) LOBYTE(n) -#define DIDFT_GETINSTANCE(n) LOWORD((n) >> 8) -#define DIDFT_FFACTUATOR 0x01000000 -#define DIDFT_FFEFFECTTRIGGER 0x02000000 -#if(DIRECTINPUT_VERSION >= 0x050a) -#define DIDFT_OUTPUT 0x10000000 -#define DIDFT_VENDORDEFINED 0x04000000 -#define DIDFT_ALIAS 0x08000000 -#endif /* DIRECTINPUT_VERSION >= 0x050a */ -#ifndef DIDFT_OPTIONAL -#define DIDFT_OPTIONAL 0x80000000 -#endif - -#define DIDFT_ENUMCOLLECTION(n) ((WORD)(n) << 8) -#define DIDFT_NOCOLLECTION 0x00FFFF00 - -#ifndef DIJ_RINGZERO - -typedef struct _DIOBJECTDATAFORMAT { - const GUID *pguid; - DWORD dwOfs; - DWORD dwType; - DWORD dwFlags; -} DIOBJECTDATAFORMAT, *LPDIOBJECTDATAFORMAT; -typedef const DIOBJECTDATAFORMAT *LPCDIOBJECTDATAFORMAT; - -typedef struct _DIDATAFORMAT { - DWORD dwSize; - DWORD dwObjSize; - DWORD dwFlags; - DWORD dwDataSize; - DWORD dwNumObjs; - LPDIOBJECTDATAFORMAT rgodf; -} DIDATAFORMAT, *LPDIDATAFORMAT; -typedef const DIDATAFORMAT *LPCDIDATAFORMAT; - -#define DIDF_ABSAXIS 0x00000001 -#define DIDF_RELAXIS 0x00000002 - -#ifdef __cplusplus -extern "C" { -#endif -extern const DIDATAFORMAT c_dfDIMouse; - -#if(DIRECTINPUT_VERSION >= 0x0700) -extern const DIDATAFORMAT c_dfDIMouse2; -#endif /* DIRECTINPUT_VERSION >= 0x0700 */ - -extern const DIDATAFORMAT c_dfDIKeyboard; - -#if(DIRECTINPUT_VERSION >= 0x0500) -extern const DIDATAFORMAT c_dfDIJoystick; -extern const DIDATAFORMAT c_dfDIJoystick2; -#endif /* DIRECTINPUT_VERSION >= 0x0500 */ - -#ifdef __cplusplus -}; -#endif - - -#if DIRECTINPUT_VERSION > 0x0700 - -typedef struct _DIACTIONA { - UINT_PTR uAppData; - DWORD dwSemantic; - OPTIONAL DWORD dwFlags; - OPTIONAL union { - LPCSTR lptszActionName; - UINT uResIdString; - }; - OPTIONAL GUID guidInstance; - OPTIONAL DWORD dwObjID; - OPTIONAL DWORD dwHow; -} DIACTIONA, *LPDIACTIONA ; -typedef struct _DIACTIONW { - UINT_PTR uAppData; - DWORD dwSemantic; - OPTIONAL DWORD dwFlags; - OPTIONAL union { - LPCWSTR lptszActionName; - UINT uResIdString; - }; - OPTIONAL GUID guidInstance; - OPTIONAL DWORD dwObjID; - OPTIONAL DWORD dwHow; -} DIACTIONW, *LPDIACTIONW ; -#ifdef UNICODE -typedef DIACTIONW DIACTION; -typedef LPDIACTIONW LPDIACTION; -#else -typedef DIACTIONA DIACTION; -typedef LPDIACTIONA LPDIACTION; -#endif // UNICODE - -typedef const DIACTIONA *LPCDIACTIONA; -typedef const DIACTIONW *LPCDIACTIONW; -#ifdef UNICODE -typedef DIACTIONW DIACTION; -typedef LPCDIACTIONW LPCDIACTION; -#else -typedef DIACTIONA DIACTION; -typedef LPCDIACTIONA LPCDIACTION; -#endif // UNICODE -typedef const DIACTION *LPCDIACTION; - - -#define DIA_FORCEFEEDBACK 0x00000001 -#define DIA_APPMAPPED 0x00000002 -#define DIA_APPNOMAP 0x00000004 -#define DIA_NORANGE 0x00000008 -#define DIA_APPFIXED 0x00000010 - -#define DIAH_UNMAPPED 0x00000000 -#define DIAH_USERCONFIG 0x00000001 -#define DIAH_APPREQUESTED 0x00000002 -#define DIAH_HWAPP 0x00000004 -#define DIAH_HWDEFAULT 0x00000008 -#define DIAH_DEFAULT 0x00000020 -#define DIAH_ERROR 0x80000000 - -typedef struct _DIACTIONFORMATA { - DWORD dwSize; - DWORD dwActionSize; - DWORD dwDataSize; - DWORD dwNumActions; - LPDIACTIONA rgoAction; - GUID guidActionMap; - DWORD dwGenre; - DWORD dwBufferSize; - OPTIONAL LONG lAxisMin; - OPTIONAL LONG lAxisMax; - OPTIONAL HINSTANCE hInstString; - FILETIME ftTimeStamp; - DWORD dwCRC; - CHAR tszActionMap[MAX_PATH]; -} DIACTIONFORMATA, *LPDIACTIONFORMATA; -typedef struct _DIACTIONFORMATW { - DWORD dwSize; - DWORD dwActionSize; - DWORD dwDataSize; - DWORD dwNumActions; - LPDIACTIONW rgoAction; - GUID guidActionMap; - DWORD dwGenre; - DWORD dwBufferSize; - OPTIONAL LONG lAxisMin; - OPTIONAL LONG lAxisMax; - OPTIONAL HINSTANCE hInstString; - FILETIME ftTimeStamp; - DWORD dwCRC; - WCHAR tszActionMap[MAX_PATH]; -} DIACTIONFORMATW, *LPDIACTIONFORMATW; -#ifdef UNICODE -typedef DIACTIONFORMATW DIACTIONFORMAT; -typedef LPDIACTIONFORMATW LPDIACTIONFORMAT; -#else -typedef DIACTIONFORMATA DIACTIONFORMAT; -typedef LPDIACTIONFORMATA LPDIACTIONFORMAT; -#endif // UNICODE -typedef const DIACTIONFORMATA *LPCDIACTIONFORMATA; -typedef const DIACTIONFORMATW *LPCDIACTIONFORMATW; -#ifdef UNICODE -typedef DIACTIONFORMATW DIACTIONFORMAT; -typedef LPCDIACTIONFORMATW LPCDIACTIONFORMAT; -#else -typedef DIACTIONFORMATA DIACTIONFORMAT; -typedef LPCDIACTIONFORMATA LPCDIACTIONFORMAT; -#endif // UNICODE -typedef const DIACTIONFORMAT *LPCDIACTIONFORMAT; - -#define DIAFTS_NEWDEVICELOW 0xFFFFFFFF -#define DIAFTS_NEWDEVICEHIGH 0xFFFFFFFF -#define DIAFTS_UNUSEDDEVICELOW 0x00000000 -#define DIAFTS_UNUSEDDEVICEHIGH 0x00000000 - -#define DIDBAM_DEFAULT 0x00000000 -#define DIDBAM_PRESERVE 0x00000001 -#define DIDBAM_INITIALIZE 0x00000002 -#define DIDBAM_HWDEFAULTS 0x00000004 - -#define DIDSAM_DEFAULT 0x00000000 -#define DIDSAM_NOUSER 0x00000001 -#define DIDSAM_FORCESAVE 0x00000002 - -#define DICD_DEFAULT 0x00000000 -#define DICD_EDIT 0x00000001 - -/* - * The following definition is normally defined in d3dtypes.h - */ -#ifndef D3DCOLOR_DEFINED -typedef DWORD D3DCOLOR; -#define D3DCOLOR_DEFINED -#endif - -typedef struct _DICOLORSET{ - DWORD dwSize; - D3DCOLOR cTextFore; - D3DCOLOR cTextHighlight; - D3DCOLOR cCalloutLine; - D3DCOLOR cCalloutHighlight; - D3DCOLOR cBorder; - D3DCOLOR cControlFill; - D3DCOLOR cHighlightFill; - D3DCOLOR cAreaFill; -} DICOLORSET, *LPDICOLORSET; -typedef const DICOLORSET *LPCDICOLORSET; - - -typedef struct _DICONFIGUREDEVICESPARAMSA{ - DWORD dwSize; - DWORD dwcUsers; - LPSTR lptszUserNames; - DWORD dwcFormats; - LPDIACTIONFORMATA lprgFormats; - HWND hwnd; - DICOLORSET dics; - IUnknown FAR * lpUnkDDSTarget; -} DICONFIGUREDEVICESPARAMSA, *LPDICONFIGUREDEVICESPARAMSA; -typedef struct _DICONFIGUREDEVICESPARAMSW{ - DWORD dwSize; - DWORD dwcUsers; - LPWSTR lptszUserNames; - DWORD dwcFormats; - LPDIACTIONFORMATW lprgFormats; - HWND hwnd; - DICOLORSET dics; - IUnknown FAR * lpUnkDDSTarget; -} DICONFIGUREDEVICESPARAMSW, *LPDICONFIGUREDEVICESPARAMSW; -#ifdef UNICODE -typedef DICONFIGUREDEVICESPARAMSW DICONFIGUREDEVICESPARAMS; -typedef LPDICONFIGUREDEVICESPARAMSW LPDICONFIGUREDEVICESPARAMS; -#else -typedef DICONFIGUREDEVICESPARAMSA DICONFIGUREDEVICESPARAMS; -typedef LPDICONFIGUREDEVICESPARAMSA LPDICONFIGUREDEVICESPARAMS; -#endif // UNICODE -typedef const DICONFIGUREDEVICESPARAMSA *LPCDICONFIGUREDEVICESPARAMSA; -typedef const DICONFIGUREDEVICESPARAMSW *LPCDICONFIGUREDEVICESPARAMSW; -#ifdef UNICODE -typedef DICONFIGUREDEVICESPARAMSW DICONFIGUREDEVICESPARAMS; -typedef LPCDICONFIGUREDEVICESPARAMSW LPCDICONFIGUREDEVICESPARAMS; -#else -typedef DICONFIGUREDEVICESPARAMSA DICONFIGUREDEVICESPARAMS; -typedef LPCDICONFIGUREDEVICESPARAMSA LPCDICONFIGUREDEVICESPARAMS; -#endif // UNICODE -typedef const DICONFIGUREDEVICESPARAMS *LPCDICONFIGUREDEVICESPARAMS; - - -#define DIDIFT_CONFIGURATION 0x00000001 -#define DIDIFT_OVERLAY 0x00000002 - -#define DIDAL_CENTERED 0x00000000 -#define DIDAL_LEFTALIGNED 0x00000001 -#define DIDAL_RIGHTALIGNED 0x00000002 -#define DIDAL_MIDDLE 0x00000000 -#define DIDAL_TOPALIGNED 0x00000004 -#define DIDAL_BOTTOMALIGNED 0x00000008 - -typedef struct _DIDEVICEIMAGEINFOA { - CHAR tszImagePath[MAX_PATH]; - DWORD dwFlags; - // These are valid if DIDIFT_OVERLAY is present in dwFlags. - DWORD dwViewID; - RECT rcOverlay; - DWORD dwObjID; - DWORD dwcValidPts; - POINT rgptCalloutLine[5]; - RECT rcCalloutRect; - DWORD dwTextAlign; -} DIDEVICEIMAGEINFOA, *LPDIDEVICEIMAGEINFOA; -typedef struct _DIDEVICEIMAGEINFOW { - WCHAR tszImagePath[MAX_PATH]; - DWORD dwFlags; - // These are valid if DIDIFT_OVERLAY is present in dwFlags. - DWORD dwViewID; - RECT rcOverlay; - DWORD dwObjID; - DWORD dwcValidPts; - POINT rgptCalloutLine[5]; - RECT rcCalloutRect; - DWORD dwTextAlign; -} DIDEVICEIMAGEINFOW, *LPDIDEVICEIMAGEINFOW; -#ifdef UNICODE -typedef DIDEVICEIMAGEINFOW DIDEVICEIMAGEINFO; -typedef LPDIDEVICEIMAGEINFOW LPDIDEVICEIMAGEINFO; -#else -typedef DIDEVICEIMAGEINFOA DIDEVICEIMAGEINFO; -typedef LPDIDEVICEIMAGEINFOA LPDIDEVICEIMAGEINFO; -#endif // UNICODE -typedef const DIDEVICEIMAGEINFOA *LPCDIDEVICEIMAGEINFOA; -typedef const DIDEVICEIMAGEINFOW *LPCDIDEVICEIMAGEINFOW; -#ifdef UNICODE -typedef DIDEVICEIMAGEINFOW DIDEVICEIMAGEINFO; -typedef LPCDIDEVICEIMAGEINFOW LPCDIDEVICEIMAGEINFO; -#else -typedef DIDEVICEIMAGEINFOA DIDEVICEIMAGEINFO; -typedef LPCDIDEVICEIMAGEINFOA LPCDIDEVICEIMAGEINFO; -#endif // UNICODE -typedef const DIDEVICEIMAGEINFO *LPCDIDEVICEIMAGEINFO; - -typedef struct _DIDEVICEIMAGEINFOHEADERA { - DWORD dwSize; - DWORD dwSizeImageInfo; - DWORD dwcViews; - DWORD dwcButtons; - DWORD dwcAxes; - DWORD dwcPOVs; - DWORD dwBufferSize; - DWORD dwBufferUsed; - LPDIDEVICEIMAGEINFOA lprgImageInfoArray; -} DIDEVICEIMAGEINFOHEADERA, *LPDIDEVICEIMAGEINFOHEADERA; -typedef struct _DIDEVICEIMAGEINFOHEADERW { - DWORD dwSize; - DWORD dwSizeImageInfo; - DWORD dwcViews; - DWORD dwcButtons; - DWORD dwcAxes; - DWORD dwcPOVs; - DWORD dwBufferSize; - DWORD dwBufferUsed; - LPDIDEVICEIMAGEINFOW lprgImageInfoArray; -} DIDEVICEIMAGEINFOHEADERW, *LPDIDEVICEIMAGEINFOHEADERW; -#ifdef UNICODE -typedef DIDEVICEIMAGEINFOHEADERW DIDEVICEIMAGEINFOHEADER; -typedef LPDIDEVICEIMAGEINFOHEADERW LPDIDEVICEIMAGEINFOHEADER; -#else -typedef DIDEVICEIMAGEINFOHEADERA DIDEVICEIMAGEINFOHEADER; -typedef LPDIDEVICEIMAGEINFOHEADERA LPDIDEVICEIMAGEINFOHEADER; -#endif // UNICODE -typedef const DIDEVICEIMAGEINFOHEADERA *LPCDIDEVICEIMAGEINFOHEADERA; -typedef const DIDEVICEIMAGEINFOHEADERW *LPCDIDEVICEIMAGEINFOHEADERW; -#ifdef UNICODE -typedef DIDEVICEIMAGEINFOHEADERW DIDEVICEIMAGEINFOHEADER; -typedef LPCDIDEVICEIMAGEINFOHEADERW LPCDIDEVICEIMAGEINFOHEADER; -#else -typedef DIDEVICEIMAGEINFOHEADERA DIDEVICEIMAGEINFOHEADER; -typedef LPCDIDEVICEIMAGEINFOHEADERA LPCDIDEVICEIMAGEINFOHEADER; -#endif // UNICODE -typedef const DIDEVICEIMAGEINFOHEADER *LPCDIDEVICEIMAGEINFOHEADER; - -#endif /* DIRECTINPUT_VERSION > 0x0700 */ - -#if(DIRECTINPUT_VERSION >= 0x0500) -/* These structures are defined for DirectX 3.0 compatibility */ - -typedef struct DIDEVICEOBJECTINSTANCE_DX3A { - DWORD dwSize; - GUID guidType; - DWORD dwOfs; - DWORD dwType; - DWORD dwFlags; - CHAR tszName[MAX_PATH]; -} DIDEVICEOBJECTINSTANCE_DX3A, *LPDIDEVICEOBJECTINSTANCE_DX3A; -typedef struct DIDEVICEOBJECTINSTANCE_DX3W { - DWORD dwSize; - GUID guidType; - DWORD dwOfs; - DWORD dwType; - DWORD dwFlags; - WCHAR tszName[MAX_PATH]; -} DIDEVICEOBJECTINSTANCE_DX3W, *LPDIDEVICEOBJECTINSTANCE_DX3W; -#ifdef UNICODE -typedef DIDEVICEOBJECTINSTANCE_DX3W DIDEVICEOBJECTINSTANCE_DX3; -typedef LPDIDEVICEOBJECTINSTANCE_DX3W LPDIDEVICEOBJECTINSTANCE_DX3; -#else -typedef DIDEVICEOBJECTINSTANCE_DX3A DIDEVICEOBJECTINSTANCE_DX3; -typedef LPDIDEVICEOBJECTINSTANCE_DX3A LPDIDEVICEOBJECTINSTANCE_DX3; -#endif // UNICODE -typedef const DIDEVICEOBJECTINSTANCE_DX3A *LPCDIDEVICEOBJECTINSTANCE_DX3A; -typedef const DIDEVICEOBJECTINSTANCE_DX3W *LPCDIDEVICEOBJECTINSTANCE_DX3W; -typedef const DIDEVICEOBJECTINSTANCE_DX3 *LPCDIDEVICEOBJECTINSTANCE_DX3; -#endif /* DIRECTINPUT_VERSION >= 0x0500 */ - -typedef struct DIDEVICEOBJECTINSTANCEA { - DWORD dwSize; - GUID guidType; - DWORD dwOfs; - DWORD dwType; - DWORD dwFlags; - CHAR tszName[MAX_PATH]; -#if(DIRECTINPUT_VERSION >= 0x0500) - DWORD dwFFMaxForce; - DWORD dwFFForceResolution; - WORD wCollectionNumber; - WORD wDesignatorIndex; - WORD wUsagePage; - WORD wUsage; - DWORD dwDimension; - WORD wExponent; - WORD wReportId; -#endif /* DIRECTINPUT_VERSION >= 0x0500 */ -} DIDEVICEOBJECTINSTANCEA, *LPDIDEVICEOBJECTINSTANCEA; -typedef struct DIDEVICEOBJECTINSTANCEW { - DWORD dwSize; - GUID guidType; - DWORD dwOfs; - DWORD dwType; - DWORD dwFlags; - WCHAR tszName[MAX_PATH]; -#if(DIRECTINPUT_VERSION >= 0x0500) - DWORD dwFFMaxForce; - DWORD dwFFForceResolution; - WORD wCollectionNumber; - WORD wDesignatorIndex; - WORD wUsagePage; - WORD wUsage; - DWORD dwDimension; - WORD wExponent; - WORD wReportId; -#endif /* DIRECTINPUT_VERSION >= 0x0500 */ -} DIDEVICEOBJECTINSTANCEW, *LPDIDEVICEOBJECTINSTANCEW; -#ifdef UNICODE -typedef DIDEVICEOBJECTINSTANCEW DIDEVICEOBJECTINSTANCE; -typedef LPDIDEVICEOBJECTINSTANCEW LPDIDEVICEOBJECTINSTANCE; -#else -typedef DIDEVICEOBJECTINSTANCEA DIDEVICEOBJECTINSTANCE; -typedef LPDIDEVICEOBJECTINSTANCEA LPDIDEVICEOBJECTINSTANCE; -#endif // UNICODE -typedef const DIDEVICEOBJECTINSTANCEA *LPCDIDEVICEOBJECTINSTANCEA; -typedef const DIDEVICEOBJECTINSTANCEW *LPCDIDEVICEOBJECTINSTANCEW; -typedef const DIDEVICEOBJECTINSTANCE *LPCDIDEVICEOBJECTINSTANCE; - -typedef BOOL (FAR PASCAL * LPDIENUMDEVICEOBJECTSCALLBACKA)(LPCDIDEVICEOBJECTINSTANCEA, LPVOID); -typedef BOOL (FAR PASCAL * LPDIENUMDEVICEOBJECTSCALLBACKW)(LPCDIDEVICEOBJECTINSTANCEW, LPVOID); -#ifdef UNICODE -#define LPDIENUMDEVICEOBJECTSCALLBACK LPDIENUMDEVICEOBJECTSCALLBACKW -#else -#define LPDIENUMDEVICEOBJECTSCALLBACK LPDIENUMDEVICEOBJECTSCALLBACKA -#endif // !UNICODE - -#if(DIRECTINPUT_VERSION >= 0x0500) -#define DIDOI_FFACTUATOR 0x00000001 -#define DIDOI_FFEFFECTTRIGGER 0x00000002 -#define DIDOI_POLLED 0x00008000 -#define DIDOI_ASPECTPOSITION 0x00000100 -#define DIDOI_ASPECTVELOCITY 0x00000200 -#define DIDOI_ASPECTACCEL 0x00000300 -#define DIDOI_ASPECTFORCE 0x00000400 -#define DIDOI_ASPECTMASK 0x00000F00 -#endif /* DIRECTINPUT_VERSION >= 0x0500 */ -#if(DIRECTINPUT_VERSION >= 0x050a) -#define DIDOI_GUIDISUSAGE 0x00010000 -#endif /* DIRECTINPUT_VERSION >= 0x050a */ - -typedef struct DIPROPHEADER { - DWORD dwSize; - DWORD dwHeaderSize; - DWORD dwObj; - DWORD dwHow; -} DIPROPHEADER, *LPDIPROPHEADER; -typedef const DIPROPHEADER *LPCDIPROPHEADER; - -#define DIPH_DEVICE 0 -#define DIPH_BYOFFSET 1 -#define DIPH_BYID 2 -#if(DIRECTINPUT_VERSION >= 0x050a) -#define DIPH_BYUSAGE 3 -#endif /* DIRECTINPUT_VERSION >= 0x050a */ - -#if(DIRECTINPUT_VERSION >= 0x050a) -#define DIMAKEUSAGEDWORD(UsagePage, Usage) \ - (DWORD)MAKELONG(Usage, UsagePage) -#endif /* DIRECTINPUT_VERSION >= 0x050a */ - -typedef struct DIPROPDWORD { - DIPROPHEADER diph; - DWORD dwData; -} DIPROPDWORD, *LPDIPROPDWORD; -typedef const DIPROPDWORD *LPCDIPROPDWORD; - -#if(DIRECTINPUT_VERSION >= 0x0800) -typedef struct DIPROPPOINTER { - DIPROPHEADER diph; - UINT_PTR uData; -} DIPROPPOINTER, *LPDIPROPPOINTER; -typedef const DIPROPPOINTER *LPCDIPROPPOINTER; -#endif /* DIRECTINPUT_VERSION >= 0x0800 */ - -typedef struct DIPROPRANGE { - DIPROPHEADER diph; - LONG lMin; - LONG lMax; -} DIPROPRANGE, *LPDIPROPRANGE; -typedef const DIPROPRANGE *LPCDIPROPRANGE; - -#define DIPROPRANGE_NOMIN ((LONG)0x80000000) -#define DIPROPRANGE_NOMAX ((LONG)0x7FFFFFFF) - -#if(DIRECTINPUT_VERSION >= 0x050a) -typedef struct DIPROPCAL { - DIPROPHEADER diph; - LONG lMin; - LONG lCenter; - LONG lMax; -} DIPROPCAL, *LPDIPROPCAL; -typedef const DIPROPCAL *LPCDIPROPCAL; - -typedef struct DIPROPCALPOV { - DIPROPHEADER diph; - LONG lMin[5]; - LONG lMax[5]; -} DIPROPCALPOV, *LPDIPROPCALPOV; -typedef const DIPROPCALPOV *LPCDIPROPCALPOV; - -typedef struct DIPROPGUIDANDPATH { - DIPROPHEADER diph; - GUID guidClass; - WCHAR wszPath[MAX_PATH]; -} DIPROPGUIDANDPATH, *LPDIPROPGUIDANDPATH; -typedef const DIPROPGUIDANDPATH *LPCDIPROPGUIDANDPATH; - -typedef struct DIPROPSTRING { - DIPROPHEADER diph; - WCHAR wsz[MAX_PATH]; -} DIPROPSTRING, *LPDIPROPSTRING; -typedef const DIPROPSTRING *LPCDIPROPSTRING; - -#endif /* DIRECTINPUT_VERSION >= 0x050a */ - -#if(DIRECTINPUT_VERSION >= 0x0800) -#define MAXCPOINTSNUM 8 - -typedef struct _CPOINT -{ - LONG lP; // raw value - DWORD dwLog; // logical_value / max_logical_value * 10000 -} CPOINT, *PCPOINT; - -typedef struct DIPROPCPOINTS { - DIPROPHEADER diph; - DWORD dwCPointsNum; - CPOINT cp[MAXCPOINTSNUM]; -} DIPROPCPOINTS, *LPDIPROPCPOINTS; -typedef const DIPROPCPOINTS *LPCDIPROPCPOINTS; -#endif /* DIRECTINPUT_VERSION >= 0x0800 */ - - -#ifdef __cplusplus -#define MAKEDIPROP(prop) (*(const GUID *)(prop)) -#else -#define MAKEDIPROP(prop) ((REFGUID)(prop)) -#endif - -#define DIPROP_BUFFERSIZE MAKEDIPROP(1) - -#define DIPROP_AXISMODE MAKEDIPROP(2) - -#define DIPROPAXISMODE_ABS 0 -#define DIPROPAXISMODE_REL 1 - -#define DIPROP_GRANULARITY MAKEDIPROP(3) - -#define DIPROP_RANGE MAKEDIPROP(4) - -#define DIPROP_DEADZONE MAKEDIPROP(5) - -#define DIPROP_SATURATION MAKEDIPROP(6) - -#define DIPROP_FFGAIN MAKEDIPROP(7) - -#define DIPROP_FFLOAD MAKEDIPROP(8) - -#define DIPROP_AUTOCENTER MAKEDIPROP(9) - -#define DIPROPAUTOCENTER_OFF 0 -#define DIPROPAUTOCENTER_ON 1 - -#define DIPROP_CALIBRATIONMODE MAKEDIPROP(10) - -#define DIPROPCALIBRATIONMODE_COOKED 0 -#define DIPROPCALIBRATIONMODE_RAW 1 - -#if(DIRECTINPUT_VERSION >= 0x050a) -#define DIPROP_CALIBRATION MAKEDIPROP(11) - -#define DIPROP_GUIDANDPATH MAKEDIPROP(12) - -#define DIPROP_INSTANCENAME MAKEDIPROP(13) - -#define DIPROP_PRODUCTNAME MAKEDIPROP(14) -#endif /* DIRECTINPUT_VERSION >= 0x050a */ - -#if(DIRECTINPUT_VERSION >= 0x05b2) -#define DIPROP_JOYSTICKID MAKEDIPROP(15) - -#define DIPROP_GETPORTDISPLAYNAME MAKEDIPROP(16) - -#endif /* DIRECTINPUT_VERSION >= 0x05b2 */ - -#if(DIRECTINPUT_VERSION >= 0x0700) -#define DIPROP_PHYSICALRANGE MAKEDIPROP(18) - -#define DIPROP_LOGICALRANGE MAKEDIPROP(19) -#endif /* DIRECTINPUT_VERSION >= 0x0700 */ - -#if(DIRECTINPUT_VERSION >= 0x0800) -#define DIPROP_KEYNAME MAKEDIPROP(20) - -#define DIPROP_CPOINTS MAKEDIPROP(21) - -#define DIPROP_APPDATA MAKEDIPROP(22) - -#define DIPROP_SCANCODE MAKEDIPROP(23) - -#define DIPROP_VIDPID MAKEDIPROP(24) - -#define DIPROP_USERNAME MAKEDIPROP(25) - -#define DIPROP_TYPENAME MAKEDIPROP(26) -#endif /* DIRECTINPUT_VERSION >= 0x0800 */ - - -typedef struct DIDEVICEOBJECTDATA_DX3 { - DWORD dwOfs; - DWORD dwData; - DWORD dwTimeStamp; - DWORD dwSequence; -} DIDEVICEOBJECTDATA_DX3, *LPDIDEVICEOBJECTDATA_DX3; -typedef const DIDEVICEOBJECTDATA_DX3 *LPCDIDEVICEOBJECTDATA_DX; - -typedef struct DIDEVICEOBJECTDATA { - DWORD dwOfs; - DWORD dwData; - DWORD dwTimeStamp; - DWORD dwSequence; -#if(DIRECTINPUT_VERSION >= 0x0800) - UINT_PTR uAppData; -#endif /* DIRECTINPUT_VERSION >= 0x0800 */ -} DIDEVICEOBJECTDATA, *LPDIDEVICEOBJECTDATA; -typedef const DIDEVICEOBJECTDATA *LPCDIDEVICEOBJECTDATA; - -#define DIGDD_PEEK 0x00000001 - -#define DISEQUENCE_COMPARE(dwSequence1, cmp, dwSequence2) \ - ((int)((dwSequence1) - (dwSequence2)) cmp 0) -#define DISCL_EXCLUSIVE 0x00000001 -#define DISCL_NONEXCLUSIVE 0x00000002 -#define DISCL_FOREGROUND 0x00000004 -#define DISCL_BACKGROUND 0x00000008 -#define DISCL_NOWINKEY 0x00000010 - -#if(DIRECTINPUT_VERSION >= 0x0500) -/* These structures are defined for DirectX 3.0 compatibility */ - -typedef struct DIDEVICEINSTANCE_DX3A { - DWORD dwSize; - GUID guidInstance; - GUID guidProduct; - DWORD dwDevType; - CHAR tszInstanceName[MAX_PATH]; - CHAR tszProductName[MAX_PATH]; -} DIDEVICEINSTANCE_DX3A, *LPDIDEVICEINSTANCE_DX3A; -typedef struct DIDEVICEINSTANCE_DX3W { - DWORD dwSize; - GUID guidInstance; - GUID guidProduct; - DWORD dwDevType; - WCHAR tszInstanceName[MAX_PATH]; - WCHAR tszProductName[MAX_PATH]; -} DIDEVICEINSTANCE_DX3W, *LPDIDEVICEINSTANCE_DX3W; -#ifdef UNICODE -typedef DIDEVICEINSTANCE_DX3W DIDEVICEINSTANCE_DX3; -typedef LPDIDEVICEINSTANCE_DX3W LPDIDEVICEINSTANCE_DX3; -#else -typedef DIDEVICEINSTANCE_DX3A DIDEVICEINSTANCE_DX3; -typedef LPDIDEVICEINSTANCE_DX3A LPDIDEVICEINSTANCE_DX3; -#endif // UNICODE -typedef const DIDEVICEINSTANCE_DX3A *LPCDIDEVICEINSTANCE_DX3A; -typedef const DIDEVICEINSTANCE_DX3W *LPCDIDEVICEINSTANCE_DX3W; -typedef const DIDEVICEINSTANCE_DX3 *LPCDIDEVICEINSTANCE_DX3; -#endif /* DIRECTINPUT_VERSION >= 0x0500 */ - -typedef struct DIDEVICEINSTANCEA { - DWORD dwSize; - GUID guidInstance; - GUID guidProduct; - DWORD dwDevType; - CHAR tszInstanceName[MAX_PATH]; - CHAR tszProductName[MAX_PATH]; -#if(DIRECTINPUT_VERSION >= 0x0500) - GUID guidFFDriver; - WORD wUsagePage; - WORD wUsage; -#endif /* DIRECTINPUT_VERSION >= 0x0500 */ -} DIDEVICEINSTANCEA, *LPDIDEVICEINSTANCEA; -typedef struct DIDEVICEINSTANCEW { - DWORD dwSize; - GUID guidInstance; - GUID guidProduct; - DWORD dwDevType; - WCHAR tszInstanceName[MAX_PATH]; - WCHAR tszProductName[MAX_PATH]; -#if(DIRECTINPUT_VERSION >= 0x0500) - GUID guidFFDriver; - WORD wUsagePage; - WORD wUsage; -#endif /* DIRECTINPUT_VERSION >= 0x0500 */ -} DIDEVICEINSTANCEW, *LPDIDEVICEINSTANCEW; -#ifdef UNICODE -typedef DIDEVICEINSTANCEW DIDEVICEINSTANCE; -typedef LPDIDEVICEINSTANCEW LPDIDEVICEINSTANCE; -#else -typedef DIDEVICEINSTANCEA DIDEVICEINSTANCE; -typedef LPDIDEVICEINSTANCEA LPDIDEVICEINSTANCE; -#endif // UNICODE - -typedef const DIDEVICEINSTANCEA *LPCDIDEVICEINSTANCEA; -typedef const DIDEVICEINSTANCEW *LPCDIDEVICEINSTANCEW; -#ifdef UNICODE -typedef DIDEVICEINSTANCEW DIDEVICEINSTANCE; -typedef LPCDIDEVICEINSTANCEW LPCDIDEVICEINSTANCE; -#else -typedef DIDEVICEINSTANCEA DIDEVICEINSTANCE; -typedef LPCDIDEVICEINSTANCEA LPCDIDEVICEINSTANCE; -#endif // UNICODE -typedef const DIDEVICEINSTANCE *LPCDIDEVICEINSTANCE; - -#undef INTERFACE -#define INTERFACE IDirectInputDeviceW - -DECLARE_INTERFACE_(IDirectInputDeviceW, IUnknown) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID * ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirectInputDeviceW methods ***/ - STDMETHOD(GetCapabilities)(THIS_ LPDIDEVCAPS) PURE; - STDMETHOD(EnumObjects)(THIS_ LPDIENUMDEVICEOBJECTSCALLBACKW,LPVOID,DWORD) PURE; - STDMETHOD(GetProperty)(THIS_ REFGUID,LPDIPROPHEADER) PURE; - STDMETHOD(SetProperty)(THIS_ REFGUID,LPCDIPROPHEADER) PURE; - STDMETHOD(Acquire)(THIS) PURE; - STDMETHOD(Unacquire)(THIS) PURE; - STDMETHOD(GetDeviceState)(THIS_ DWORD,LPVOID) PURE; - STDMETHOD(GetDeviceData)(THIS_ DWORD,LPDIDEVICEOBJECTDATA,LPDWORD,DWORD) PURE; - STDMETHOD(SetDataFormat)(THIS_ LPCDIDATAFORMAT) PURE; - STDMETHOD(SetEventNotification)(THIS_ HANDLE) PURE; - STDMETHOD(SetCooperativeLevel)(THIS_ HWND,DWORD) PURE; - STDMETHOD(GetObjectInfo)(THIS_ LPDIDEVICEOBJECTINSTANCEW,DWORD,DWORD) PURE; - STDMETHOD(GetDeviceInfo)(THIS_ LPDIDEVICEINSTANCEW) PURE; - STDMETHOD(RunControlPanel)(THIS_ HWND,DWORD) PURE; - STDMETHOD(Initialize)(THIS_ HINSTANCE,DWORD,REFGUID) PURE; -}; - -typedef struct IDirectInputDeviceW *LPDIRECTINPUTDEVICEW; - -#undef INTERFACE -#define INTERFACE IDirectInputDeviceA - -DECLARE_INTERFACE_(IDirectInputDeviceA, IUnknown) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID * ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirectInputDeviceA methods ***/ - STDMETHOD(GetCapabilities)(THIS_ LPDIDEVCAPS) PURE; - STDMETHOD(EnumObjects)(THIS_ LPDIENUMDEVICEOBJECTSCALLBACKA,LPVOID,DWORD) PURE; - STDMETHOD(GetProperty)(THIS_ REFGUID,LPDIPROPHEADER) PURE; - STDMETHOD(SetProperty)(THIS_ REFGUID,LPCDIPROPHEADER) PURE; - STDMETHOD(Acquire)(THIS) PURE; - STDMETHOD(Unacquire)(THIS) PURE; - STDMETHOD(GetDeviceState)(THIS_ DWORD,LPVOID) PURE; - STDMETHOD(GetDeviceData)(THIS_ DWORD,LPDIDEVICEOBJECTDATA,LPDWORD,DWORD) PURE; - STDMETHOD(SetDataFormat)(THIS_ LPCDIDATAFORMAT) PURE; - STDMETHOD(SetEventNotification)(THIS_ HANDLE) PURE; - STDMETHOD(SetCooperativeLevel)(THIS_ HWND,DWORD) PURE; - STDMETHOD(GetObjectInfo)(THIS_ LPDIDEVICEOBJECTINSTANCEA,DWORD,DWORD) PURE; - STDMETHOD(GetDeviceInfo)(THIS_ LPDIDEVICEINSTANCEA) PURE; - STDMETHOD(RunControlPanel)(THIS_ HWND,DWORD) PURE; - STDMETHOD(Initialize)(THIS_ HINSTANCE,DWORD,REFGUID) PURE; -}; - -typedef struct IDirectInputDeviceA *LPDIRECTINPUTDEVICEA; - -#ifdef UNICODE -#define IID_IDirectInputDevice IID_IDirectInputDeviceW -#define IDirectInputDevice IDirectInputDeviceW -#define IDirectInputDeviceVtbl IDirectInputDeviceWVtbl -#else -#define IID_IDirectInputDevice IID_IDirectInputDeviceA -#define IDirectInputDevice IDirectInputDeviceA -#define IDirectInputDeviceVtbl IDirectInputDeviceAVtbl -#endif -typedef struct IDirectInputDevice *LPDIRECTINPUTDEVICE; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectInputDevice_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirectInputDevice_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirectInputDevice_Release(p) (p)->lpVtbl->Release(p) -#define IDirectInputDevice_GetCapabilities(p,a) (p)->lpVtbl->GetCapabilities(p,a) -#define IDirectInputDevice_EnumObjects(p,a,b,c) (p)->lpVtbl->EnumObjects(p,a,b,c) -#define IDirectInputDevice_GetProperty(p,a,b) (p)->lpVtbl->GetProperty(p,a,b) -#define IDirectInputDevice_SetProperty(p,a,b) (p)->lpVtbl->SetProperty(p,a,b) -#define IDirectInputDevice_Acquire(p) (p)->lpVtbl->Acquire(p) -#define IDirectInputDevice_Unacquire(p) (p)->lpVtbl->Unacquire(p) -#define IDirectInputDevice_GetDeviceState(p,a,b) (p)->lpVtbl->GetDeviceState(p,a,b) -#define IDirectInputDevice_GetDeviceData(p,a,b,c,d) (p)->lpVtbl->GetDeviceData(p,a,b,c,d) -#define IDirectInputDevice_SetDataFormat(p,a) (p)->lpVtbl->SetDataFormat(p,a) -#define IDirectInputDevice_SetEventNotification(p,a) (p)->lpVtbl->SetEventNotification(p,a) -#define IDirectInputDevice_SetCooperativeLevel(p,a,b) (p)->lpVtbl->SetCooperativeLevel(p,a,b) -#define IDirectInputDevice_GetObjectInfo(p,a,b,c) (p)->lpVtbl->GetObjectInfo(p,a,b,c) -#define IDirectInputDevice_GetDeviceInfo(p,a) (p)->lpVtbl->GetDeviceInfo(p,a) -#define IDirectInputDevice_RunControlPanel(p,a,b) (p)->lpVtbl->RunControlPanel(p,a,b) -#define IDirectInputDevice_Initialize(p,a,b,c) (p)->lpVtbl->Initialize(p,a,b,c) -#else -#define IDirectInputDevice_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirectInputDevice_AddRef(p) (p)->AddRef() -#define IDirectInputDevice_Release(p) (p)->Release() -#define IDirectInputDevice_GetCapabilities(p,a) (p)->GetCapabilities(a) -#define IDirectInputDevice_EnumObjects(p,a,b,c) (p)->EnumObjects(a,b,c) -#define IDirectInputDevice_GetProperty(p,a,b) (p)->GetProperty(a,b) -#define IDirectInputDevice_SetProperty(p,a,b) (p)->SetProperty(a,b) -#define IDirectInputDevice_Acquire(p) (p)->Acquire() -#define IDirectInputDevice_Unacquire(p) (p)->Unacquire() -#define IDirectInputDevice_GetDeviceState(p,a,b) (p)->GetDeviceState(a,b) -#define IDirectInputDevice_GetDeviceData(p,a,b,c,d) (p)->GetDeviceData(a,b,c,d) -#define IDirectInputDevice_SetDataFormat(p,a) (p)->SetDataFormat(a) -#define IDirectInputDevice_SetEventNotification(p,a) (p)->SetEventNotification(a) -#define IDirectInputDevice_SetCooperativeLevel(p,a,b) (p)->SetCooperativeLevel(a,b) -#define IDirectInputDevice_GetObjectInfo(p,a,b,c) (p)->GetObjectInfo(a,b,c) -#define IDirectInputDevice_GetDeviceInfo(p,a) (p)->GetDeviceInfo(a) -#define IDirectInputDevice_RunControlPanel(p,a,b) (p)->RunControlPanel(a,b) -#define IDirectInputDevice_Initialize(p,a,b,c) (p)->Initialize(a,b,c) -#endif - -#endif /* DIJ_RINGZERO */ - - -#if(DIRECTINPUT_VERSION >= 0x0500) - -#define DISFFC_RESET 0x00000001 -#define DISFFC_STOPALL 0x00000002 -#define DISFFC_PAUSE 0x00000004 -#define DISFFC_CONTINUE 0x00000008 -#define DISFFC_SETACTUATORSON 0x00000010 -#define DISFFC_SETACTUATORSOFF 0x00000020 - -#define DIGFFS_EMPTY 0x00000001 -#define DIGFFS_STOPPED 0x00000002 -#define DIGFFS_PAUSED 0x00000004 -#define DIGFFS_ACTUATORSON 0x00000010 -#define DIGFFS_ACTUATORSOFF 0x00000020 -#define DIGFFS_POWERON 0x00000040 -#define DIGFFS_POWEROFF 0x00000080 -#define DIGFFS_SAFETYSWITCHON 0x00000100 -#define DIGFFS_SAFETYSWITCHOFF 0x00000200 -#define DIGFFS_USERFFSWITCHON 0x00000400 -#define DIGFFS_USERFFSWITCHOFF 0x00000800 -#define DIGFFS_DEVICELOST 0x80000000 - -#ifndef DIJ_RINGZERO - -typedef struct DIEFFECTINFOA { - DWORD dwSize; - GUID guid; - DWORD dwEffType; - DWORD dwStaticParams; - DWORD dwDynamicParams; - CHAR tszName[MAX_PATH]; -} DIEFFECTINFOA, *LPDIEFFECTINFOA; -typedef struct DIEFFECTINFOW { - DWORD dwSize; - GUID guid; - DWORD dwEffType; - DWORD dwStaticParams; - DWORD dwDynamicParams; - WCHAR tszName[MAX_PATH]; -} DIEFFECTINFOW, *LPDIEFFECTINFOW; -#ifdef UNICODE -typedef DIEFFECTINFOW DIEFFECTINFO; -typedef LPDIEFFECTINFOW LPDIEFFECTINFO; -#else -typedef DIEFFECTINFOA DIEFFECTINFO; -typedef LPDIEFFECTINFOA LPDIEFFECTINFO; -#endif // UNICODE -typedef const DIEFFECTINFOA *LPCDIEFFECTINFOA; -typedef const DIEFFECTINFOW *LPCDIEFFECTINFOW; -typedef const DIEFFECTINFO *LPCDIEFFECTINFO; - -#define DISDD_CONTINUE 0x00000001 - -typedef BOOL (FAR PASCAL * LPDIENUMEFFECTSCALLBACKA)(LPCDIEFFECTINFOA, LPVOID); -typedef BOOL (FAR PASCAL * LPDIENUMEFFECTSCALLBACKW)(LPCDIEFFECTINFOW, LPVOID); -#ifdef UNICODE -#define LPDIENUMEFFECTSCALLBACK LPDIENUMEFFECTSCALLBACKW -#else -#define LPDIENUMEFFECTSCALLBACK LPDIENUMEFFECTSCALLBACKA -#endif // !UNICODE -typedef BOOL (FAR PASCAL * LPDIENUMCREATEDEFFECTOBJECTSCALLBACK)(LPDIRECTINPUTEFFECT, LPVOID); - -#undef INTERFACE -#define INTERFACE IDirectInputDevice2W - -DECLARE_INTERFACE_(IDirectInputDevice2W, IDirectInputDeviceW) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID * ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirectInputDeviceW methods ***/ - STDMETHOD(GetCapabilities)(THIS_ LPDIDEVCAPS) PURE; - STDMETHOD(EnumObjects)(THIS_ LPDIENUMDEVICEOBJECTSCALLBACKW,LPVOID,DWORD) PURE; - STDMETHOD(GetProperty)(THIS_ REFGUID,LPDIPROPHEADER) PURE; - STDMETHOD(SetProperty)(THIS_ REFGUID,LPCDIPROPHEADER) PURE; - STDMETHOD(Acquire)(THIS) PURE; - STDMETHOD(Unacquire)(THIS) PURE; - STDMETHOD(GetDeviceState)(THIS_ DWORD,LPVOID) PURE; - STDMETHOD(GetDeviceData)(THIS_ DWORD,LPDIDEVICEOBJECTDATA,LPDWORD,DWORD) PURE; - STDMETHOD(SetDataFormat)(THIS_ LPCDIDATAFORMAT) PURE; - STDMETHOD(SetEventNotification)(THIS_ HANDLE) PURE; - STDMETHOD(SetCooperativeLevel)(THIS_ HWND,DWORD) PURE; - STDMETHOD(GetObjectInfo)(THIS_ LPDIDEVICEOBJECTINSTANCEW,DWORD,DWORD) PURE; - STDMETHOD(GetDeviceInfo)(THIS_ LPDIDEVICEINSTANCEW) PURE; - STDMETHOD(RunControlPanel)(THIS_ HWND,DWORD) PURE; - STDMETHOD(Initialize)(THIS_ HINSTANCE,DWORD,REFGUID) PURE; - - /*** IDirectInputDevice2W methods ***/ - STDMETHOD(CreateEffect)(THIS_ REFGUID,LPCDIEFFECT,LPDIRECTINPUTEFFECT *,LPUNKNOWN) PURE; - STDMETHOD(EnumEffects)(THIS_ LPDIENUMEFFECTSCALLBACKW,LPVOID,DWORD) PURE; - STDMETHOD(GetEffectInfo)(THIS_ LPDIEFFECTINFOW,REFGUID) PURE; - STDMETHOD(GetForceFeedbackState)(THIS_ LPDWORD) PURE; - STDMETHOD(SendForceFeedbackCommand)(THIS_ DWORD) PURE; - STDMETHOD(EnumCreatedEffectObjects)(THIS_ LPDIENUMCREATEDEFFECTOBJECTSCALLBACK,LPVOID,DWORD) PURE; - STDMETHOD(Escape)(THIS_ LPDIEFFESCAPE) PURE; - STDMETHOD(Poll)(THIS) PURE; - STDMETHOD(SendDeviceData)(THIS_ DWORD,LPCDIDEVICEOBJECTDATA,LPDWORD,DWORD) PURE; -}; - -typedef struct IDirectInputDevice2W *LPDIRECTINPUTDEVICE2W; - -#undef INTERFACE -#define INTERFACE IDirectInputDevice2A - -DECLARE_INTERFACE_(IDirectInputDevice2A, IDirectInputDeviceA) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID * ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirectInputDeviceA methods ***/ - STDMETHOD(GetCapabilities)(THIS_ LPDIDEVCAPS) PURE; - STDMETHOD(EnumObjects)(THIS_ LPDIENUMDEVICEOBJECTSCALLBACKA,LPVOID,DWORD) PURE; - STDMETHOD(GetProperty)(THIS_ REFGUID,LPDIPROPHEADER) PURE; - STDMETHOD(SetProperty)(THIS_ REFGUID,LPCDIPROPHEADER) PURE; - STDMETHOD(Acquire)(THIS) PURE; - STDMETHOD(Unacquire)(THIS) PURE; - STDMETHOD(GetDeviceState)(THIS_ DWORD,LPVOID) PURE; - STDMETHOD(GetDeviceData)(THIS_ DWORD,LPDIDEVICEOBJECTDATA,LPDWORD,DWORD) PURE; - STDMETHOD(SetDataFormat)(THIS_ LPCDIDATAFORMAT) PURE; - STDMETHOD(SetEventNotification)(THIS_ HANDLE) PURE; - STDMETHOD(SetCooperativeLevel)(THIS_ HWND,DWORD) PURE; - STDMETHOD(GetObjectInfo)(THIS_ LPDIDEVICEOBJECTINSTANCEA,DWORD,DWORD) PURE; - STDMETHOD(GetDeviceInfo)(THIS_ LPDIDEVICEINSTANCEA) PURE; - STDMETHOD(RunControlPanel)(THIS_ HWND,DWORD) PURE; - STDMETHOD(Initialize)(THIS_ HINSTANCE,DWORD,REFGUID) PURE; - - /*** IDirectInputDevice2A methods ***/ - STDMETHOD(CreateEffect)(THIS_ REFGUID,LPCDIEFFECT,LPDIRECTINPUTEFFECT *,LPUNKNOWN) PURE; - STDMETHOD(EnumEffects)(THIS_ LPDIENUMEFFECTSCALLBACKA,LPVOID,DWORD) PURE; - STDMETHOD(GetEffectInfo)(THIS_ LPDIEFFECTINFOA,REFGUID) PURE; - STDMETHOD(GetForceFeedbackState)(THIS_ LPDWORD) PURE; - STDMETHOD(SendForceFeedbackCommand)(THIS_ DWORD) PURE; - STDMETHOD(EnumCreatedEffectObjects)(THIS_ LPDIENUMCREATEDEFFECTOBJECTSCALLBACK,LPVOID,DWORD) PURE; - STDMETHOD(Escape)(THIS_ LPDIEFFESCAPE) PURE; - STDMETHOD(Poll)(THIS) PURE; - STDMETHOD(SendDeviceData)(THIS_ DWORD,LPCDIDEVICEOBJECTDATA,LPDWORD,DWORD) PURE; -}; - -typedef struct IDirectInputDevice2A *LPDIRECTINPUTDEVICE2A; - -#ifdef UNICODE -#define IID_IDirectInputDevice2 IID_IDirectInputDevice2W -#define IDirectInputDevice2 IDirectInputDevice2W -#define IDirectInputDevice2Vtbl IDirectInputDevice2WVtbl -#else -#define IID_IDirectInputDevice2 IID_IDirectInputDevice2A -#define IDirectInputDevice2 IDirectInputDevice2A -#define IDirectInputDevice2Vtbl IDirectInputDevice2AVtbl -#endif -typedef struct IDirectInputDevice2 *LPDIRECTINPUTDEVICE2; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectInputDevice2_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirectInputDevice2_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirectInputDevice2_Release(p) (p)->lpVtbl->Release(p) -#define IDirectInputDevice2_GetCapabilities(p,a) (p)->lpVtbl->GetCapabilities(p,a) -#define IDirectInputDevice2_EnumObjects(p,a,b,c) (p)->lpVtbl->EnumObjects(p,a,b,c) -#define IDirectInputDevice2_GetProperty(p,a,b) (p)->lpVtbl->GetProperty(p,a,b) -#define IDirectInputDevice2_SetProperty(p,a,b) (p)->lpVtbl->SetProperty(p,a,b) -#define IDirectInputDevice2_Acquire(p) (p)->lpVtbl->Acquire(p) -#define IDirectInputDevice2_Unacquire(p) (p)->lpVtbl->Unacquire(p) -#define IDirectInputDevice2_GetDeviceState(p,a,b) (p)->lpVtbl->GetDeviceState(p,a,b) -#define IDirectInputDevice2_GetDeviceData(p,a,b,c,d) (p)->lpVtbl->GetDeviceData(p,a,b,c,d) -#define IDirectInputDevice2_SetDataFormat(p,a) (p)->lpVtbl->SetDataFormat(p,a) -#define IDirectInputDevice2_SetEventNotification(p,a) (p)->lpVtbl->SetEventNotification(p,a) -#define IDirectInputDevice2_SetCooperativeLevel(p,a,b) (p)->lpVtbl->SetCooperativeLevel(p,a,b) -#define IDirectInputDevice2_GetObjectInfo(p,a,b,c) (p)->lpVtbl->GetObjectInfo(p,a,b,c) -#define IDirectInputDevice2_GetDeviceInfo(p,a) (p)->lpVtbl->GetDeviceInfo(p,a) -#define IDirectInputDevice2_RunControlPanel(p,a,b) (p)->lpVtbl->RunControlPanel(p,a,b) -#define IDirectInputDevice2_Initialize(p,a,b,c) (p)->lpVtbl->Initialize(p,a,b,c) -#define IDirectInputDevice2_CreateEffect(p,a,b,c,d) (p)->lpVtbl->CreateEffect(p,a,b,c,d) -#define IDirectInputDevice2_EnumEffects(p,a,b,c) (p)->lpVtbl->EnumEffects(p,a,b,c) -#define IDirectInputDevice2_GetEffectInfo(p,a,b) (p)->lpVtbl->GetEffectInfo(p,a,b) -#define IDirectInputDevice2_GetForceFeedbackState(p,a) (p)->lpVtbl->GetForceFeedbackState(p,a) -#define IDirectInputDevice2_SendForceFeedbackCommand(p,a) (p)->lpVtbl->SendForceFeedbackCommand(p,a) -#define IDirectInputDevice2_EnumCreatedEffectObjects(p,a,b,c) (p)->lpVtbl->EnumCreatedEffectObjects(p,a,b,c) -#define IDirectInputDevice2_Escape(p,a) (p)->lpVtbl->Escape(p,a) -#define IDirectInputDevice2_Poll(p) (p)->lpVtbl->Poll(p) -#define IDirectInputDevice2_SendDeviceData(p,a,b,c,d) (p)->lpVtbl->SendDeviceData(p,a,b,c,d) -#else -#define IDirectInputDevice2_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirectInputDevice2_AddRef(p) (p)->AddRef() -#define IDirectInputDevice2_Release(p) (p)->Release() -#define IDirectInputDevice2_GetCapabilities(p,a) (p)->GetCapabilities(a) -#define IDirectInputDevice2_EnumObjects(p,a,b,c) (p)->EnumObjects(a,b,c) -#define IDirectInputDevice2_GetProperty(p,a,b) (p)->GetProperty(a,b) -#define IDirectInputDevice2_SetProperty(p,a,b) (p)->SetProperty(a,b) -#define IDirectInputDevice2_Acquire(p) (p)->Acquire() -#define IDirectInputDevice2_Unacquire(p) (p)->Unacquire() -#define IDirectInputDevice2_GetDeviceState(p,a,b) (p)->GetDeviceState(a,b) -#define IDirectInputDevice2_GetDeviceData(p,a,b,c,d) (p)->GetDeviceData(a,b,c,d) -#define IDirectInputDevice2_SetDataFormat(p,a) (p)->SetDataFormat(a) -#define IDirectInputDevice2_SetEventNotification(p,a) (p)->SetEventNotification(a) -#define IDirectInputDevice2_SetCooperativeLevel(p,a,b) (p)->SetCooperativeLevel(a,b) -#define IDirectInputDevice2_GetObjectInfo(p,a,b,c) (p)->GetObjectInfo(a,b,c) -#define IDirectInputDevice2_GetDeviceInfo(p,a) (p)->GetDeviceInfo(a) -#define IDirectInputDevice2_RunControlPanel(p,a,b) (p)->RunControlPanel(a,b) -#define IDirectInputDevice2_Initialize(p,a,b,c) (p)->Initialize(a,b,c) -#define IDirectInputDevice2_CreateEffect(p,a,b,c,d) (p)->CreateEffect(a,b,c,d) -#define IDirectInputDevice2_EnumEffects(p,a,b,c) (p)->EnumEffects(a,b,c) -#define IDirectInputDevice2_GetEffectInfo(p,a,b) (p)->GetEffectInfo(a,b) -#define IDirectInputDevice2_GetForceFeedbackState(p,a) (p)->GetForceFeedbackState(a) -#define IDirectInputDevice2_SendForceFeedbackCommand(p,a) (p)->SendForceFeedbackCommand(a) -#define IDirectInputDevice2_EnumCreatedEffectObjects(p,a,b,c) (p)->EnumCreatedEffectObjects(a,b,c) -#define IDirectInputDevice2_Escape(p,a) (p)->Escape(a) -#define IDirectInputDevice2_Poll(p) (p)->Poll() -#define IDirectInputDevice2_SendDeviceData(p,a,b,c,d) (p)->SendDeviceData(a,b,c,d) -#endif - -#endif /* DIJ_RINGZERO */ - -#endif /* DIRECTINPUT_VERSION >= 0x0500 */ - -#if(DIRECTINPUT_VERSION >= 0x0700) -#define DIFEF_DEFAULT 0x00000000 -#define DIFEF_INCLUDENONSTANDARD 0x00000001 -#define DIFEF_MODIFYIFNEEDED 0x00000010 - -#ifndef DIJ_RINGZERO - -#undef INTERFACE -#define INTERFACE IDirectInputDevice7W - -DECLARE_INTERFACE_(IDirectInputDevice7W, IDirectInputDevice2W) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID * ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirectInputDevice2W methods ***/ - STDMETHOD(GetCapabilities)(THIS_ LPDIDEVCAPS) PURE; - STDMETHOD(EnumObjects)(THIS_ LPDIENUMDEVICEOBJECTSCALLBACKW,LPVOID,DWORD) PURE; - STDMETHOD(GetProperty)(THIS_ REFGUID,LPDIPROPHEADER) PURE; - STDMETHOD(SetProperty)(THIS_ REFGUID,LPCDIPROPHEADER) PURE; - STDMETHOD(Acquire)(THIS) PURE; - STDMETHOD(Unacquire)(THIS) PURE; - STDMETHOD(GetDeviceState)(THIS_ DWORD,LPVOID) PURE; - STDMETHOD(GetDeviceData)(THIS_ DWORD,LPDIDEVICEOBJECTDATA,LPDWORD,DWORD) PURE; - STDMETHOD(SetDataFormat)(THIS_ LPCDIDATAFORMAT) PURE; - STDMETHOD(SetEventNotification)(THIS_ HANDLE) PURE; - STDMETHOD(SetCooperativeLevel)(THIS_ HWND,DWORD) PURE; - STDMETHOD(GetObjectInfo)(THIS_ LPDIDEVICEOBJECTINSTANCEW,DWORD,DWORD) PURE; - STDMETHOD(GetDeviceInfo)(THIS_ LPDIDEVICEINSTANCEW) PURE; - STDMETHOD(RunControlPanel)(THIS_ HWND,DWORD) PURE; - STDMETHOD(Initialize)(THIS_ HINSTANCE,DWORD,REFGUID) PURE; - STDMETHOD(CreateEffect)(THIS_ REFGUID,LPCDIEFFECT,LPDIRECTINPUTEFFECT *,LPUNKNOWN) PURE; - STDMETHOD(EnumEffects)(THIS_ LPDIENUMEFFECTSCALLBACKW,LPVOID,DWORD) PURE; - STDMETHOD(GetEffectInfo)(THIS_ LPDIEFFECTINFOW,REFGUID) PURE; - STDMETHOD(GetForceFeedbackState)(THIS_ LPDWORD) PURE; - STDMETHOD(SendForceFeedbackCommand)(THIS_ DWORD) PURE; - STDMETHOD(EnumCreatedEffectObjects)(THIS_ LPDIENUMCREATEDEFFECTOBJECTSCALLBACK,LPVOID,DWORD) PURE; - STDMETHOD(Escape)(THIS_ LPDIEFFESCAPE) PURE; - STDMETHOD(Poll)(THIS) PURE; - STDMETHOD(SendDeviceData)(THIS_ DWORD,LPCDIDEVICEOBJECTDATA,LPDWORD,DWORD) PURE; - - /*** IDirectInputDevice7W methods ***/ - STDMETHOD(EnumEffectsInFile)(THIS_ LPCWSTR,LPDIENUMEFFECTSINFILECALLBACK,LPVOID,DWORD) PURE; - STDMETHOD(WriteEffectToFile)(THIS_ LPCWSTR,DWORD,LPDIFILEEFFECT,DWORD) PURE; -}; - -typedef struct IDirectInputDevice7W *LPDIRECTINPUTDEVICE7W; - -#undef INTERFACE -#define INTERFACE IDirectInputDevice7A - -DECLARE_INTERFACE_(IDirectInputDevice7A, IDirectInputDevice2A) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID * ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirectInputDevice2A methods ***/ - STDMETHOD(GetCapabilities)(THIS_ LPDIDEVCAPS) PURE; - STDMETHOD(EnumObjects)(THIS_ LPDIENUMDEVICEOBJECTSCALLBACKA,LPVOID,DWORD) PURE; - STDMETHOD(GetProperty)(THIS_ REFGUID,LPDIPROPHEADER) PURE; - STDMETHOD(SetProperty)(THIS_ REFGUID,LPCDIPROPHEADER) PURE; - STDMETHOD(Acquire)(THIS) PURE; - STDMETHOD(Unacquire)(THIS) PURE; - STDMETHOD(GetDeviceState)(THIS_ DWORD,LPVOID) PURE; - STDMETHOD(GetDeviceData)(THIS_ DWORD,LPDIDEVICEOBJECTDATA,LPDWORD,DWORD) PURE; - STDMETHOD(SetDataFormat)(THIS_ LPCDIDATAFORMAT) PURE; - STDMETHOD(SetEventNotification)(THIS_ HANDLE) PURE; - STDMETHOD(SetCooperativeLevel)(THIS_ HWND,DWORD) PURE; - STDMETHOD(GetObjectInfo)(THIS_ LPDIDEVICEOBJECTINSTANCEA,DWORD,DWORD) PURE; - STDMETHOD(GetDeviceInfo)(THIS_ LPDIDEVICEINSTANCEA) PURE; - STDMETHOD(RunControlPanel)(THIS_ HWND,DWORD) PURE; - STDMETHOD(Initialize)(THIS_ HINSTANCE,DWORD,REFGUID) PURE; - STDMETHOD(CreateEffect)(THIS_ REFGUID,LPCDIEFFECT,LPDIRECTINPUTEFFECT *,LPUNKNOWN) PURE; - STDMETHOD(EnumEffects)(THIS_ LPDIENUMEFFECTSCALLBACKA,LPVOID,DWORD) PURE; - STDMETHOD(GetEffectInfo)(THIS_ LPDIEFFECTINFOA,REFGUID) PURE; - STDMETHOD(GetForceFeedbackState)(THIS_ LPDWORD) PURE; - STDMETHOD(SendForceFeedbackCommand)(THIS_ DWORD) PURE; - STDMETHOD(EnumCreatedEffectObjects)(THIS_ LPDIENUMCREATEDEFFECTOBJECTSCALLBACK,LPVOID,DWORD) PURE; - STDMETHOD(Escape)(THIS_ LPDIEFFESCAPE) PURE; - STDMETHOD(Poll)(THIS) PURE; - STDMETHOD(SendDeviceData)(THIS_ DWORD,LPCDIDEVICEOBJECTDATA,LPDWORD,DWORD) PURE; - - /*** IDirectInputDevice7A methods ***/ - STDMETHOD(EnumEffectsInFile)(THIS_ LPCSTR,LPDIENUMEFFECTSINFILECALLBACK,LPVOID,DWORD) PURE; - STDMETHOD(WriteEffectToFile)(THIS_ LPCSTR,DWORD,LPDIFILEEFFECT,DWORD) PURE; -}; - -typedef struct IDirectInputDevice7A *LPDIRECTINPUTDEVICE7A; - -#ifdef UNICODE -#define IID_IDirectInputDevice7 IID_IDirectInputDevice7W -#define IDirectInputDevice7 IDirectInputDevice7W -#define IDirectInputDevice7Vtbl IDirectInputDevice7WVtbl -#else -#define IID_IDirectInputDevice7 IID_IDirectInputDevice7A -#define IDirectInputDevice7 IDirectInputDevice7A -#define IDirectInputDevice7Vtbl IDirectInputDevice7AVtbl -#endif -typedef struct IDirectInputDevice7 *LPDIRECTINPUTDEVICE7; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectInputDevice7_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirectInputDevice7_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirectInputDevice7_Release(p) (p)->lpVtbl->Release(p) -#define IDirectInputDevice7_GetCapabilities(p,a) (p)->lpVtbl->GetCapabilities(p,a) -#define IDirectInputDevice7_EnumObjects(p,a,b,c) (p)->lpVtbl->EnumObjects(p,a,b,c) -#define IDirectInputDevice7_GetProperty(p,a,b) (p)->lpVtbl->GetProperty(p,a,b) -#define IDirectInputDevice7_SetProperty(p,a,b) (p)->lpVtbl->SetProperty(p,a,b) -#define IDirectInputDevice7_Acquire(p) (p)->lpVtbl->Acquire(p) -#define IDirectInputDevice7_Unacquire(p) (p)->lpVtbl->Unacquire(p) -#define IDirectInputDevice7_GetDeviceState(p,a,b) (p)->lpVtbl->GetDeviceState(p,a,b) -#define IDirectInputDevice7_GetDeviceData(p,a,b,c,d) (p)->lpVtbl->GetDeviceData(p,a,b,c,d) -#define IDirectInputDevice7_SetDataFormat(p,a) (p)->lpVtbl->SetDataFormat(p,a) -#define IDirectInputDevice7_SetEventNotification(p,a) (p)->lpVtbl->SetEventNotification(p,a) -#define IDirectInputDevice7_SetCooperativeLevel(p,a,b) (p)->lpVtbl->SetCooperativeLevel(p,a,b) -#define IDirectInputDevice7_GetObjectInfo(p,a,b,c) (p)->lpVtbl->GetObjectInfo(p,a,b,c) -#define IDirectInputDevice7_GetDeviceInfo(p,a) (p)->lpVtbl->GetDeviceInfo(p,a) -#define IDirectInputDevice7_RunControlPanel(p,a,b) (p)->lpVtbl->RunControlPanel(p,a,b) -#define IDirectInputDevice7_Initialize(p,a,b,c) (p)->lpVtbl->Initialize(p,a,b,c) -#define IDirectInputDevice7_CreateEffect(p,a,b,c,d) (p)->lpVtbl->CreateEffect(p,a,b,c,d) -#define IDirectInputDevice7_EnumEffects(p,a,b,c) (p)->lpVtbl->EnumEffects(p,a,b,c) -#define IDirectInputDevice7_GetEffectInfo(p,a,b) (p)->lpVtbl->GetEffectInfo(p,a,b) -#define IDirectInputDevice7_GetForceFeedbackState(p,a) (p)->lpVtbl->GetForceFeedbackState(p,a) -#define IDirectInputDevice7_SendForceFeedbackCommand(p,a) (p)->lpVtbl->SendForceFeedbackCommand(p,a) -#define IDirectInputDevice7_EnumCreatedEffectObjects(p,a,b,c) (p)->lpVtbl->EnumCreatedEffectObjects(p,a,b,c) -#define IDirectInputDevice7_Escape(p,a) (p)->lpVtbl->Escape(p,a) -#define IDirectInputDevice7_Poll(p) (p)->lpVtbl->Poll(p) -#define IDirectInputDevice7_SendDeviceData(p,a,b,c,d) (p)->lpVtbl->SendDeviceData(p,a,b,c,d) -#define IDirectInputDevice7_EnumEffectsInFile(p,a,b,c,d) (p)->lpVtbl->EnumEffectsInFile(p,a,b,c,d) -#define IDirectInputDevice7_WriteEffectToFile(p,a,b,c,d) (p)->lpVtbl->WriteEffectToFile(p,a,b,c,d) -#else -#define IDirectInputDevice7_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirectInputDevice7_AddRef(p) (p)->AddRef() -#define IDirectInputDevice7_Release(p) (p)->Release() -#define IDirectInputDevice7_GetCapabilities(p,a) (p)->GetCapabilities(a) -#define IDirectInputDevice7_EnumObjects(p,a,b,c) (p)->EnumObjects(a,b,c) -#define IDirectInputDevice7_GetProperty(p,a,b) (p)->GetProperty(a,b) -#define IDirectInputDevice7_SetProperty(p,a,b) (p)->SetProperty(a,b) -#define IDirectInputDevice7_Acquire(p) (p)->Acquire() -#define IDirectInputDevice7_Unacquire(p) (p)->Unacquire() -#define IDirectInputDevice7_GetDeviceState(p,a,b) (p)->GetDeviceState(a,b) -#define IDirectInputDevice7_GetDeviceData(p,a,b,c,d) (p)->GetDeviceData(a,b,c,d) -#define IDirectInputDevice7_SetDataFormat(p,a) (p)->SetDataFormat(a) -#define IDirectInputDevice7_SetEventNotification(p,a) (p)->SetEventNotification(a) -#define IDirectInputDevice7_SetCooperativeLevel(p,a,b) (p)->SetCooperativeLevel(a,b) -#define IDirectInputDevice7_GetObjectInfo(p,a,b,c) (p)->GetObjectInfo(a,b,c) -#define IDirectInputDevice7_GetDeviceInfo(p,a) (p)->GetDeviceInfo(a) -#define IDirectInputDevice7_RunControlPanel(p,a,b) (p)->RunControlPanel(a,b) -#define IDirectInputDevice7_Initialize(p,a,b,c) (p)->Initialize(a,b,c) -#define IDirectInputDevice7_CreateEffect(p,a,b,c,d) (p)->CreateEffect(a,b,c,d) -#define IDirectInputDevice7_EnumEffects(p,a,b,c) (p)->EnumEffects(a,b,c) -#define IDirectInputDevice7_GetEffectInfo(p,a,b) (p)->GetEffectInfo(a,b) -#define IDirectInputDevice7_GetForceFeedbackState(p,a) (p)->GetForceFeedbackState(a) -#define IDirectInputDevice7_SendForceFeedbackCommand(p,a) (p)->SendForceFeedbackCommand(a) -#define IDirectInputDevice7_EnumCreatedEffectObjects(p,a,b,c) (p)->EnumCreatedEffectObjects(a,b,c) -#define IDirectInputDevice7_Escape(p,a) (p)->Escape(a) -#define IDirectInputDevice7_Poll(p) (p)->Poll() -#define IDirectInputDevice7_SendDeviceData(p,a,b,c,d) (p)->SendDeviceData(a,b,c,d) -#define IDirectInputDevice7_EnumEffectsInFile(p,a,b,c,d) (p)->EnumEffectsInFile(a,b,c,d) -#define IDirectInputDevice7_WriteEffectToFile(p,a,b,c,d) (p)->WriteEffectToFile(a,b,c,d) -#endif - -#endif /* DIJ_RINGZERO */ - -#endif /* DIRECTINPUT_VERSION >= 0x0700 */ - -#if(DIRECTINPUT_VERSION >= 0x0800) - -#ifndef DIJ_RINGZERO - -#undef INTERFACE -#define INTERFACE IDirectInputDevice8W - -DECLARE_INTERFACE_(IDirectInputDevice8W, IUnknown) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID * ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirectInputDevice8W methods ***/ - STDMETHOD(GetCapabilities)(THIS_ LPDIDEVCAPS) PURE; - STDMETHOD(EnumObjects)(THIS_ LPDIENUMDEVICEOBJECTSCALLBACKW,LPVOID,DWORD) PURE; - STDMETHOD(GetProperty)(THIS_ REFGUID,LPDIPROPHEADER) PURE; - STDMETHOD(SetProperty)(THIS_ REFGUID,LPCDIPROPHEADER) PURE; - STDMETHOD(Acquire)(THIS) PURE; - STDMETHOD(Unacquire)(THIS) PURE; - STDMETHOD(GetDeviceState)(THIS_ DWORD,LPVOID) PURE; - STDMETHOD(GetDeviceData)(THIS_ DWORD,LPDIDEVICEOBJECTDATA,LPDWORD,DWORD) PURE; - STDMETHOD(SetDataFormat)(THIS_ LPCDIDATAFORMAT) PURE; - STDMETHOD(SetEventNotification)(THIS_ HANDLE) PURE; - STDMETHOD(SetCooperativeLevel)(THIS_ HWND,DWORD) PURE; - STDMETHOD(GetObjectInfo)(THIS_ LPDIDEVICEOBJECTINSTANCEW,DWORD,DWORD) PURE; - STDMETHOD(GetDeviceInfo)(THIS_ LPDIDEVICEINSTANCEW) PURE; - STDMETHOD(RunControlPanel)(THIS_ HWND,DWORD) PURE; - STDMETHOD(Initialize)(THIS_ HINSTANCE,DWORD,REFGUID) PURE; - STDMETHOD(CreateEffect)(THIS_ REFGUID,LPCDIEFFECT,LPDIRECTINPUTEFFECT *,LPUNKNOWN) PURE; - STDMETHOD(EnumEffects)(THIS_ LPDIENUMEFFECTSCALLBACKW,LPVOID,DWORD) PURE; - STDMETHOD(GetEffectInfo)(THIS_ LPDIEFFECTINFOW,REFGUID) PURE; - STDMETHOD(GetForceFeedbackState)(THIS_ LPDWORD) PURE; - STDMETHOD(SendForceFeedbackCommand)(THIS_ DWORD) PURE; - STDMETHOD(EnumCreatedEffectObjects)(THIS_ LPDIENUMCREATEDEFFECTOBJECTSCALLBACK,LPVOID,DWORD) PURE; - STDMETHOD(Escape)(THIS_ LPDIEFFESCAPE) PURE; - STDMETHOD(Poll)(THIS) PURE; - STDMETHOD(SendDeviceData)(THIS_ DWORD,LPCDIDEVICEOBJECTDATA,LPDWORD,DWORD) PURE; - STDMETHOD(EnumEffectsInFile)(THIS_ LPCWSTR,LPDIENUMEFFECTSINFILECALLBACK,LPVOID,DWORD) PURE; - STDMETHOD(WriteEffectToFile)(THIS_ LPCWSTR,DWORD,LPDIFILEEFFECT,DWORD) PURE; - STDMETHOD(BuildActionMap)(THIS_ LPDIACTIONFORMATW,LPCWSTR,DWORD) PURE; - STDMETHOD(SetActionMap)(THIS_ LPDIACTIONFORMATW,LPCWSTR,DWORD) PURE; - STDMETHOD(GetImageInfo)(THIS_ LPDIDEVICEIMAGEINFOHEADERW) PURE; -}; - -typedef struct IDirectInputDevice8W *LPDIRECTINPUTDEVICE8W; - -#undef INTERFACE -#define INTERFACE IDirectInputDevice8A - -DECLARE_INTERFACE_(IDirectInputDevice8A, IUnknown) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID * ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirectInputDevice8A methods ***/ - STDMETHOD(GetCapabilities)(THIS_ LPDIDEVCAPS) PURE; - STDMETHOD(EnumObjects)(THIS_ LPDIENUMDEVICEOBJECTSCALLBACKA,LPVOID,DWORD) PURE; - STDMETHOD(GetProperty)(THIS_ REFGUID,LPDIPROPHEADER) PURE; - STDMETHOD(SetProperty)(THIS_ REFGUID,LPCDIPROPHEADER) PURE; - STDMETHOD(Acquire)(THIS) PURE; - STDMETHOD(Unacquire)(THIS) PURE; - STDMETHOD(GetDeviceState)(THIS_ DWORD,LPVOID) PURE; - STDMETHOD(GetDeviceData)(THIS_ DWORD,LPDIDEVICEOBJECTDATA,LPDWORD,DWORD) PURE; - STDMETHOD(SetDataFormat)(THIS_ LPCDIDATAFORMAT) PURE; - STDMETHOD(SetEventNotification)(THIS_ HANDLE) PURE; - STDMETHOD(SetCooperativeLevel)(THIS_ HWND,DWORD) PURE; - STDMETHOD(GetObjectInfo)(THIS_ LPDIDEVICEOBJECTINSTANCEA,DWORD,DWORD) PURE; - STDMETHOD(GetDeviceInfo)(THIS_ LPDIDEVICEINSTANCEA) PURE; - STDMETHOD(RunControlPanel)(THIS_ HWND,DWORD) PURE; - STDMETHOD(Initialize)(THIS_ HINSTANCE,DWORD,REFGUID) PURE; - STDMETHOD(CreateEffect)(THIS_ REFGUID,LPCDIEFFECT,LPDIRECTINPUTEFFECT *,LPUNKNOWN) PURE; - STDMETHOD(EnumEffects)(THIS_ LPDIENUMEFFECTSCALLBACKA,LPVOID,DWORD) PURE; - STDMETHOD(GetEffectInfo)(THIS_ LPDIEFFECTINFOA,REFGUID) PURE; - STDMETHOD(GetForceFeedbackState)(THIS_ LPDWORD) PURE; - STDMETHOD(SendForceFeedbackCommand)(THIS_ DWORD) PURE; - STDMETHOD(EnumCreatedEffectObjects)(THIS_ LPDIENUMCREATEDEFFECTOBJECTSCALLBACK,LPVOID,DWORD) PURE; - STDMETHOD(Escape)(THIS_ LPDIEFFESCAPE) PURE; - STDMETHOD(Poll)(THIS) PURE; - STDMETHOD(SendDeviceData)(THIS_ DWORD,LPCDIDEVICEOBJECTDATA,LPDWORD,DWORD) PURE; - STDMETHOD(EnumEffectsInFile)(THIS_ LPCSTR,LPDIENUMEFFECTSINFILECALLBACK,LPVOID,DWORD) PURE; - STDMETHOD(WriteEffectToFile)(THIS_ LPCSTR,DWORD,LPDIFILEEFFECT,DWORD) PURE; - STDMETHOD(BuildActionMap)(THIS_ LPDIACTIONFORMATA,LPCSTR,DWORD) PURE; - STDMETHOD(SetActionMap)(THIS_ LPDIACTIONFORMATA,LPCSTR,DWORD) PURE; - STDMETHOD(GetImageInfo)(THIS_ LPDIDEVICEIMAGEINFOHEADERA) PURE; -}; - -typedef struct IDirectInputDevice8A *LPDIRECTINPUTDEVICE8A; - -#ifdef UNICODE -#define IID_IDirectInputDevice8 IID_IDirectInputDevice8W -#define IDirectInputDevice8 IDirectInputDevice8W -#define IDirectInputDevice8Vtbl IDirectInputDevice8WVtbl -#else -#define IID_IDirectInputDevice8 IID_IDirectInputDevice8A -#define IDirectInputDevice8 IDirectInputDevice8A -#define IDirectInputDevice8Vtbl IDirectInputDevice8AVtbl -#endif -typedef struct IDirectInputDevice8 *LPDIRECTINPUTDEVICE8; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectInputDevice8_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirectInputDevice8_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirectInputDevice8_Release(p) (p)->lpVtbl->Release(p) -#define IDirectInputDevice8_GetCapabilities(p,a) (p)->lpVtbl->GetCapabilities(p,a) -#define IDirectInputDevice8_EnumObjects(p,a,b,c) (p)->lpVtbl->EnumObjects(p,a,b,c) -#define IDirectInputDevice8_GetProperty(p,a,b) (p)->lpVtbl->GetProperty(p,a,b) -#define IDirectInputDevice8_SetProperty(p,a,b) (p)->lpVtbl->SetProperty(p,a,b) -#define IDirectInputDevice8_Acquire(p) (p)->lpVtbl->Acquire(p) -#define IDirectInputDevice8_Unacquire(p) (p)->lpVtbl->Unacquire(p) -#define IDirectInputDevice8_GetDeviceState(p,a,b) (p)->lpVtbl->GetDeviceState(p,a,b) -#define IDirectInputDevice8_GetDeviceData(p,a,b,c,d) (p)->lpVtbl->GetDeviceData(p,a,b,c,d) -#define IDirectInputDevice8_SetDataFormat(p,a) (p)->lpVtbl->SetDataFormat(p,a) -#define IDirectInputDevice8_SetEventNotification(p,a) (p)->lpVtbl->SetEventNotification(p,a) -#define IDirectInputDevice8_SetCooperativeLevel(p,a,b) (p)->lpVtbl->SetCooperativeLevel(p,a,b) -#define IDirectInputDevice8_GetObjectInfo(p,a,b,c) (p)->lpVtbl->GetObjectInfo(p,a,b,c) -#define IDirectInputDevice8_GetDeviceInfo(p,a) (p)->lpVtbl->GetDeviceInfo(p,a) -#define IDirectInputDevice8_RunControlPanel(p,a,b) (p)->lpVtbl->RunControlPanel(p,a,b) -#define IDirectInputDevice8_Initialize(p,a,b,c) (p)->lpVtbl->Initialize(p,a,b,c) -#define IDirectInputDevice8_CreateEffect(p,a,b,c,d) (p)->lpVtbl->CreateEffect(p,a,b,c,d) -#define IDirectInputDevice8_EnumEffects(p,a,b,c) (p)->lpVtbl->EnumEffects(p,a,b,c) -#define IDirectInputDevice8_GetEffectInfo(p,a,b) (p)->lpVtbl->GetEffectInfo(p,a,b) -#define IDirectInputDevice8_GetForceFeedbackState(p,a) (p)->lpVtbl->GetForceFeedbackState(p,a) -#define IDirectInputDevice8_SendForceFeedbackCommand(p,a) (p)->lpVtbl->SendForceFeedbackCommand(p,a) -#define IDirectInputDevice8_EnumCreatedEffectObjects(p,a,b,c) (p)->lpVtbl->EnumCreatedEffectObjects(p,a,b,c) -#define IDirectInputDevice8_Escape(p,a) (p)->lpVtbl->Escape(p,a) -#define IDirectInputDevice8_Poll(p) (p)->lpVtbl->Poll(p) -#define IDirectInputDevice8_SendDeviceData(p,a,b,c,d) (p)->lpVtbl->SendDeviceData(p,a,b,c,d) -#define IDirectInputDevice8_EnumEffectsInFile(p,a,b,c,d) (p)->lpVtbl->EnumEffectsInFile(p,a,b,c,d) -#define IDirectInputDevice8_WriteEffectToFile(p,a,b,c,d) (p)->lpVtbl->WriteEffectToFile(p,a,b,c,d) -#define IDirectInputDevice8_BuildActionMap(p,a,b,c) (p)->lpVtbl->BuildActionMap(p,a,b,c) -#define IDirectInputDevice8_SetActionMap(p,a,b,c) (p)->lpVtbl->SetActionMap(p,a,b,c) -#define IDirectInputDevice8_GetImageInfo(p,a) (p)->lpVtbl->GetImageInfo(p,a) -#else -#define IDirectInputDevice8_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirectInputDevice8_AddRef(p) (p)->AddRef() -#define IDirectInputDevice8_Release(p) (p)->Release() -#define IDirectInputDevice8_GetCapabilities(p,a) (p)->GetCapabilities(a) -#define IDirectInputDevice8_EnumObjects(p,a,b,c) (p)->EnumObjects(a,b,c) -#define IDirectInputDevice8_GetProperty(p,a,b) (p)->GetProperty(a,b) -#define IDirectInputDevice8_SetProperty(p,a,b) (p)->SetProperty(a,b) -#define IDirectInputDevice8_Acquire(p) (p)->Acquire() -#define IDirectInputDevice8_Unacquire(p) (p)->Unacquire() -#define IDirectInputDevice8_GetDeviceState(p,a,b) (p)->GetDeviceState(a,b) -#define IDirectInputDevice8_GetDeviceData(p,a,b,c,d) (p)->GetDeviceData(a,b,c,d) -#define IDirectInputDevice8_SetDataFormat(p,a) (p)->SetDataFormat(a) -#define IDirectInputDevice8_SetEventNotification(p,a) (p)->SetEventNotification(a) -#define IDirectInputDevice8_SetCooperativeLevel(p,a,b) (p)->SetCooperativeLevel(a,b) -#define IDirectInputDevice8_GetObjectInfo(p,a,b,c) (p)->GetObjectInfo(a,b,c) -#define IDirectInputDevice8_GetDeviceInfo(p,a) (p)->GetDeviceInfo(a) -#define IDirectInputDevice8_RunControlPanel(p,a,b) (p)->RunControlPanel(a,b) -#define IDirectInputDevice8_Initialize(p,a,b,c) (p)->Initialize(a,b,c) -#define IDirectInputDevice8_CreateEffect(p,a,b,c,d) (p)->CreateEffect(a,b,c,d) -#define IDirectInputDevice8_EnumEffects(p,a,b,c) (p)->EnumEffects(a,b,c) -#define IDirectInputDevice8_GetEffectInfo(p,a,b) (p)->GetEffectInfo(a,b) -#define IDirectInputDevice8_GetForceFeedbackState(p,a) (p)->GetForceFeedbackState(a) -#define IDirectInputDevice8_SendForceFeedbackCommand(p,a) (p)->SendForceFeedbackCommand(a) -#define IDirectInputDevice8_EnumCreatedEffectObjects(p,a,b,c) (p)->EnumCreatedEffectObjects(a,b,c) -#define IDirectInputDevice8_Escape(p,a) (p)->Escape(a) -#define IDirectInputDevice8_Poll(p) (p)->Poll() -#define IDirectInputDevice8_SendDeviceData(p,a,b,c,d) (p)->SendDeviceData(a,b,c,d) -#define IDirectInputDevice8_EnumEffectsInFile(p,a,b,c,d) (p)->EnumEffectsInFile(a,b,c,d) -#define IDirectInputDevice8_WriteEffectToFile(p,a,b,c,d) (p)->WriteEffectToFile(a,b,c,d) -#define IDirectInputDevice8_BuildActionMap(p,a,b,c) (p)->BuildActionMap(a,b,c) -#define IDirectInputDevice8_SetActionMap(p,a,b,c) (p)->SetActionMap(a,b,c) -#define IDirectInputDevice8_GetImageInfo(p,a) (p)->GetImageInfo(a) -#endif - -#endif /* DIJ_RINGZERO */ - -#endif /* DIRECTINPUT_VERSION >= 0x0800 */ - -/**************************************************************************** - * - * Mouse - * - ****************************************************************************/ - -#ifndef DIJ_RINGZERO - -typedef struct _DIMOUSESTATE { - LONG lX; - LONG lY; - LONG lZ; - BYTE rgbButtons[4]; -} DIMOUSESTATE, *LPDIMOUSESTATE; - -#if DIRECTINPUT_VERSION >= 0x0700 -typedef struct _DIMOUSESTATE2 { - LONG lX; - LONG lY; - LONG lZ; - BYTE rgbButtons[8]; -} DIMOUSESTATE2, *LPDIMOUSESTATE2; -#endif - - -#define DIMOFS_X FIELD_OFFSET(DIMOUSESTATE, lX) -#define DIMOFS_Y FIELD_OFFSET(DIMOUSESTATE, lY) -#define DIMOFS_Z FIELD_OFFSET(DIMOUSESTATE, lZ) -#define DIMOFS_BUTTON0 (FIELD_OFFSET(DIMOUSESTATE, rgbButtons) + 0) -#define DIMOFS_BUTTON1 (FIELD_OFFSET(DIMOUSESTATE, rgbButtons) + 1) -#define DIMOFS_BUTTON2 (FIELD_OFFSET(DIMOUSESTATE, rgbButtons) + 2) -#define DIMOFS_BUTTON3 (FIELD_OFFSET(DIMOUSESTATE, rgbButtons) + 3) -#if (DIRECTINPUT_VERSION >= 0x0700) -#define DIMOFS_BUTTON4 (FIELD_OFFSET(DIMOUSESTATE2, rgbButtons) + 4) -#define DIMOFS_BUTTON5 (FIELD_OFFSET(DIMOUSESTATE2, rgbButtons) + 5) -#define DIMOFS_BUTTON6 (FIELD_OFFSET(DIMOUSESTATE2, rgbButtons) + 6) -#define DIMOFS_BUTTON7 (FIELD_OFFSET(DIMOUSESTATE2, rgbButtons) + 7) -#endif -#endif /* DIJ_RINGZERO */ - -/**************************************************************************** - * - * Keyboard - * - ****************************************************************************/ - -#ifndef DIJ_RINGZERO - -/**************************************************************************** - * - * DirectInput keyboard scan codes - * - ****************************************************************************/ -#define DIK_ESCAPE 0x01 -#define DIK_1 0x02 -#define DIK_2 0x03 -#define DIK_3 0x04 -#define DIK_4 0x05 -#define DIK_5 0x06 -#define DIK_6 0x07 -#define DIK_7 0x08 -#define DIK_8 0x09 -#define DIK_9 0x0A -#define DIK_0 0x0B -#define DIK_MINUS 0x0C /* - on main keyboard */ -#define DIK_EQUALS 0x0D -#define DIK_BACK 0x0E /* backspace */ -#define DIK_TAB 0x0F -#define DIK_Q 0x10 -#define DIK_W 0x11 -#define DIK_E 0x12 -#define DIK_R 0x13 -#define DIK_T 0x14 -#define DIK_Y 0x15 -#define DIK_U 0x16 -#define DIK_I 0x17 -#define DIK_O 0x18 -#define DIK_P 0x19 -#define DIK_LBRACKET 0x1A -#define DIK_RBRACKET 0x1B -#define DIK_RETURN 0x1C /* Enter on main keyboard */ -#define DIK_LCONTROL 0x1D -#define DIK_A 0x1E -#define DIK_S 0x1F -#define DIK_D 0x20 -#define DIK_F 0x21 -#define DIK_G 0x22 -#define DIK_H 0x23 -#define DIK_J 0x24 -#define DIK_K 0x25 -#define DIK_L 0x26 -#define DIK_SEMICOLON 0x27 -#define DIK_APOSTROPHE 0x28 -#define DIK_GRAVE 0x29 /* accent grave */ -#define DIK_LSHIFT 0x2A -#define DIK_BACKSLASH 0x2B -#define DIK_Z 0x2C -#define DIK_X 0x2D -#define DIK_C 0x2E -#define DIK_V 0x2F -#define DIK_B 0x30 -#define DIK_N 0x31 -#define DIK_M 0x32 -#define DIK_COMMA 0x33 -#define DIK_PERIOD 0x34 /* . on main keyboard */ -#define DIK_SLASH 0x35 /* / on main keyboard */ -#define DIK_RSHIFT 0x36 -#define DIK_MULTIPLY 0x37 /* * on numeric keypad */ -#define DIK_LMENU 0x38 /* left Alt */ -#define DIK_SPACE 0x39 -#define DIK_CAPITAL 0x3A -#define DIK_F1 0x3B -#define DIK_F2 0x3C -#define DIK_F3 0x3D -#define DIK_F4 0x3E -#define DIK_F5 0x3F -#define DIK_F6 0x40 -#define DIK_F7 0x41 -#define DIK_F8 0x42 -#define DIK_F9 0x43 -#define DIK_F10 0x44 -#define DIK_NUMLOCK 0x45 -#define DIK_SCROLL 0x46 /* Scroll Lock */ -#define DIK_NUMPAD7 0x47 -#define DIK_NUMPAD8 0x48 -#define DIK_NUMPAD9 0x49 -#define DIK_SUBTRACT 0x4A /* - on numeric keypad */ -#define DIK_NUMPAD4 0x4B -#define DIK_NUMPAD5 0x4C -#define DIK_NUMPAD6 0x4D -#define DIK_ADD 0x4E /* + on numeric keypad */ -#define DIK_NUMPAD1 0x4F -#define DIK_NUMPAD2 0x50 -#define DIK_NUMPAD3 0x51 -#define DIK_NUMPAD0 0x52 -#define DIK_DECIMAL 0x53 /* . on numeric keypad */ -#define DIK_OEM_102 0x56 /* <> or \| on RT 102-key keyboard (Non-U.S.) */ -#define DIK_F11 0x57 -#define DIK_F12 0x58 -#define DIK_F13 0x64 /* (NEC PC98) */ -#define DIK_F14 0x65 /* (NEC PC98) */ -#define DIK_F15 0x66 /* (NEC PC98) */ -#define DIK_KANA 0x70 /* (Japanese keyboard) */ -#define DIK_ABNT_C1 0x73 /* /? on Brazilian keyboard */ -#define DIK_CONVERT 0x79 /* (Japanese keyboard) */ -#define DIK_NOCONVERT 0x7B /* (Japanese keyboard) */ -#define DIK_YEN 0x7D /* (Japanese keyboard) */ -#define DIK_ABNT_C2 0x7E /* Numpad . on Brazilian keyboard */ -#define DIK_NUMPADEQUALS 0x8D /* = on numeric keypad (NEC PC98) */ -#define DIK_PREVTRACK 0x90 /* Previous Track (DIK_CIRCUMFLEX on Japanese keyboard) */ -#define DIK_AT 0x91 /* (NEC PC98) */ -#define DIK_COLON 0x92 /* (NEC PC98) */ -#define DIK_UNDERLINE 0x93 /* (NEC PC98) */ -#define DIK_KANJI 0x94 /* (Japanese keyboard) */ -#define DIK_STOP 0x95 /* (NEC PC98) */ -#define DIK_AX 0x96 /* (Japan AX) */ -#define DIK_UNLABELED 0x97 /* (J3100) */ -#define DIK_NEXTTRACK 0x99 /* Next Track */ -#define DIK_NUMPADENTER 0x9C /* Enter on numeric keypad */ -#define DIK_RCONTROL 0x9D -#define DIK_MUTE 0xA0 /* Mute */ -#define DIK_CALCULATOR 0xA1 /* Calculator */ -#define DIK_PLAYPAUSE 0xA2 /* Play / Pause */ -#define DIK_MEDIASTOP 0xA4 /* Media Stop */ -#define DIK_VOLUMEDOWN 0xAE /* Volume - */ -#define DIK_VOLUMEUP 0xB0 /* Volume + */ -#define DIK_WEBHOME 0xB2 /* Web home */ -#define DIK_NUMPADCOMMA 0xB3 /* , on numeric keypad (NEC PC98) */ -#define DIK_DIVIDE 0xB5 /* / on numeric keypad */ -#define DIK_SYSRQ 0xB7 -#define DIK_RMENU 0xB8 /* right Alt */ -#define DIK_PAUSE 0xC5 /* Pause */ -#define DIK_HOME 0xC7 /* Home on arrow keypad */ -#define DIK_UP 0xC8 /* UpArrow on arrow keypad */ -#define DIK_PRIOR 0xC9 /* PgUp on arrow keypad */ -#define DIK_LEFT 0xCB /* LeftArrow on arrow keypad */ -#define DIK_RIGHT 0xCD /* RightArrow on arrow keypad */ -#define DIK_END 0xCF /* End on arrow keypad */ -#define DIK_DOWN 0xD0 /* DownArrow on arrow keypad */ -#define DIK_NEXT 0xD1 /* PgDn on arrow keypad */ -#define DIK_INSERT 0xD2 /* Insert on arrow keypad */ -#define DIK_DELETE 0xD3 /* Delete on arrow keypad */ -#define DIK_LWIN 0xDB /* Left Windows key */ -#define DIK_RWIN 0xDC /* Right Windows key */ -#define DIK_APPS 0xDD /* AppMenu key */ -#define DIK_POWER 0xDE /* System Power */ -#define DIK_SLEEP 0xDF /* System Sleep */ -#define DIK_WAKE 0xE3 /* System Wake */ -#define DIK_WEBSEARCH 0xE5 /* Web Search */ -#define DIK_WEBFAVORITES 0xE6 /* Web Favorites */ -#define DIK_WEBREFRESH 0xE7 /* Web Refresh */ -#define DIK_WEBSTOP 0xE8 /* Web Stop */ -#define DIK_WEBFORWARD 0xE9 /* Web Forward */ -#define DIK_WEBBACK 0xEA /* Web Back */ -#define DIK_MYCOMPUTER 0xEB /* My Computer */ -#define DIK_MAIL 0xEC /* Mail */ -#define DIK_MEDIASELECT 0xED /* Media Select */ - -/* - * Alternate names for keys, to facilitate transition from DOS. - */ -#define DIK_BACKSPACE DIK_BACK /* backspace */ -#define DIK_NUMPADSTAR DIK_MULTIPLY /* * on numeric keypad */ -#define DIK_LALT DIK_LMENU /* left Alt */ -#define DIK_CAPSLOCK DIK_CAPITAL /* CapsLock */ -#define DIK_NUMPADMINUS DIK_SUBTRACT /* - on numeric keypad */ -#define DIK_NUMPADPLUS DIK_ADD /* + on numeric keypad */ -#define DIK_NUMPADPERIOD DIK_DECIMAL /* . on numeric keypad */ -#define DIK_NUMPADSLASH DIK_DIVIDE /* / on numeric keypad */ -#define DIK_RALT DIK_RMENU /* right Alt */ -#define DIK_UPARROW DIK_UP /* UpArrow on arrow keypad */ -#define DIK_PGUP DIK_PRIOR /* PgUp on arrow keypad */ -#define DIK_LEFTARROW DIK_LEFT /* LeftArrow on arrow keypad */ -#define DIK_RIGHTARROW DIK_RIGHT /* RightArrow on arrow keypad */ -#define DIK_DOWNARROW DIK_DOWN /* DownArrow on arrow keypad */ -#define DIK_PGDN DIK_NEXT /* PgDn on arrow keypad */ - -/* - * Alternate names for keys originally not used on US keyboards. - */ -#define DIK_CIRCUMFLEX DIK_PREVTRACK /* Japanese keyboard */ - -#endif /* DIJ_RINGZERO */ - -/**************************************************************************** - * - * Joystick - * - ****************************************************************************/ - -#ifndef DIJ_RINGZERO - -typedef struct DIJOYSTATE { - LONG lX; /* x-axis position */ - LONG lY; /* y-axis position */ - LONG lZ; /* z-axis position */ - LONG lRx; /* x-axis rotation */ - LONG lRy; /* y-axis rotation */ - LONG lRz; /* z-axis rotation */ - LONG rglSlider[2]; /* extra axes positions */ - DWORD rgdwPOV[4]; /* POV directions */ - BYTE rgbButtons[32]; /* 32 buttons */ -} DIJOYSTATE, *LPDIJOYSTATE; - -typedef struct DIJOYSTATE2 { - LONG lX; /* x-axis position */ - LONG lY; /* y-axis position */ - LONG lZ; /* z-axis position */ - LONG lRx; /* x-axis rotation */ - LONG lRy; /* y-axis rotation */ - LONG lRz; /* z-axis rotation */ - LONG rglSlider[2]; /* extra axes positions */ - DWORD rgdwPOV[4]; /* POV directions */ - BYTE rgbButtons[128]; /* 128 buttons */ - LONG lVX; /* x-axis velocity */ - LONG lVY; /* y-axis velocity */ - LONG lVZ; /* z-axis velocity */ - LONG lVRx; /* x-axis angular velocity */ - LONG lVRy; /* y-axis angular velocity */ - LONG lVRz; /* z-axis angular velocity */ - LONG rglVSlider[2]; /* extra axes velocities */ - LONG lAX; /* x-axis acceleration */ - LONG lAY; /* y-axis acceleration */ - LONG lAZ; /* z-axis acceleration */ - LONG lARx; /* x-axis angular acceleration */ - LONG lARy; /* y-axis angular acceleration */ - LONG lARz; /* z-axis angular acceleration */ - LONG rglASlider[2]; /* extra axes accelerations */ - LONG lFX; /* x-axis force */ - LONG lFY; /* y-axis force */ - LONG lFZ; /* z-axis force */ - LONG lFRx; /* x-axis torque */ - LONG lFRy; /* y-axis torque */ - LONG lFRz; /* z-axis torque */ - LONG rglFSlider[2]; /* extra axes forces */ -} DIJOYSTATE2, *LPDIJOYSTATE2; - -#define DIJOFS_X FIELD_OFFSET(DIJOYSTATE, lX) -#define DIJOFS_Y FIELD_OFFSET(DIJOYSTATE, lY) -#define DIJOFS_Z FIELD_OFFSET(DIJOYSTATE, lZ) -#define DIJOFS_RX FIELD_OFFSET(DIJOYSTATE, lRx) -#define DIJOFS_RY FIELD_OFFSET(DIJOYSTATE, lRy) -#define DIJOFS_RZ FIELD_OFFSET(DIJOYSTATE, lRz) -#define DIJOFS_SLIDER(n) (FIELD_OFFSET(DIJOYSTATE, rglSlider) + \ - (n) * sizeof(LONG)) -#define DIJOFS_POV(n) (FIELD_OFFSET(DIJOYSTATE, rgdwPOV) + \ - (n) * sizeof(DWORD)) -#define DIJOFS_BUTTON(n) (FIELD_OFFSET(DIJOYSTATE, rgbButtons) + (n)) -#define DIJOFS_BUTTON0 DIJOFS_BUTTON(0) -#define DIJOFS_BUTTON1 DIJOFS_BUTTON(1) -#define DIJOFS_BUTTON2 DIJOFS_BUTTON(2) -#define DIJOFS_BUTTON3 DIJOFS_BUTTON(3) -#define DIJOFS_BUTTON4 DIJOFS_BUTTON(4) -#define DIJOFS_BUTTON5 DIJOFS_BUTTON(5) -#define DIJOFS_BUTTON6 DIJOFS_BUTTON(6) -#define DIJOFS_BUTTON7 DIJOFS_BUTTON(7) -#define DIJOFS_BUTTON8 DIJOFS_BUTTON(8) -#define DIJOFS_BUTTON9 DIJOFS_BUTTON(9) -#define DIJOFS_BUTTON10 DIJOFS_BUTTON(10) -#define DIJOFS_BUTTON11 DIJOFS_BUTTON(11) -#define DIJOFS_BUTTON12 DIJOFS_BUTTON(12) -#define DIJOFS_BUTTON13 DIJOFS_BUTTON(13) -#define DIJOFS_BUTTON14 DIJOFS_BUTTON(14) -#define DIJOFS_BUTTON15 DIJOFS_BUTTON(15) -#define DIJOFS_BUTTON16 DIJOFS_BUTTON(16) -#define DIJOFS_BUTTON17 DIJOFS_BUTTON(17) -#define DIJOFS_BUTTON18 DIJOFS_BUTTON(18) -#define DIJOFS_BUTTON19 DIJOFS_BUTTON(19) -#define DIJOFS_BUTTON20 DIJOFS_BUTTON(20) -#define DIJOFS_BUTTON21 DIJOFS_BUTTON(21) -#define DIJOFS_BUTTON22 DIJOFS_BUTTON(22) -#define DIJOFS_BUTTON23 DIJOFS_BUTTON(23) -#define DIJOFS_BUTTON24 DIJOFS_BUTTON(24) -#define DIJOFS_BUTTON25 DIJOFS_BUTTON(25) -#define DIJOFS_BUTTON26 DIJOFS_BUTTON(26) -#define DIJOFS_BUTTON27 DIJOFS_BUTTON(27) -#define DIJOFS_BUTTON28 DIJOFS_BUTTON(28) -#define DIJOFS_BUTTON29 DIJOFS_BUTTON(29) -#define DIJOFS_BUTTON30 DIJOFS_BUTTON(30) -#define DIJOFS_BUTTON31 DIJOFS_BUTTON(31) - - -#endif /* DIJ_RINGZERO */ - -/**************************************************************************** - * - * IDirectInput - * - ****************************************************************************/ - -#ifndef DIJ_RINGZERO - -#define DIENUM_STOP 0 -#define DIENUM_CONTINUE 1 - -typedef BOOL (FAR PASCAL * LPDIENUMDEVICESCALLBACKA)(LPCDIDEVICEINSTANCEA, LPVOID); -typedef BOOL (FAR PASCAL * LPDIENUMDEVICESCALLBACKW)(LPCDIDEVICEINSTANCEW, LPVOID); -#ifdef UNICODE -#define LPDIENUMDEVICESCALLBACK LPDIENUMDEVICESCALLBACKW -#else -#define LPDIENUMDEVICESCALLBACK LPDIENUMDEVICESCALLBACKA -#endif // !UNICODE -typedef BOOL (FAR PASCAL * LPDICONFIGUREDEVICESCALLBACK)(IUnknown FAR *, LPVOID); - -#define DIEDFL_ALLDEVICES 0x00000000 -#define DIEDFL_ATTACHEDONLY 0x00000001 -#if(DIRECTINPUT_VERSION >= 0x0500) -#define DIEDFL_FORCEFEEDBACK 0x00000100 -#endif /* DIRECTINPUT_VERSION >= 0x0500 */ -#if(DIRECTINPUT_VERSION >= 0x050a) -#define DIEDFL_INCLUDEALIASES 0x00010000 -#define DIEDFL_INCLUDEPHANTOMS 0x00020000 -#endif /* DIRECTINPUT_VERSION >= 0x050a */ -#if(DIRECTINPUT_VERSION >= 0x0800) -#define DIEDFL_INCLUDEHIDDEN 0x00040000 -#endif /* DIRECTINPUT_VERSION >= 0x0800 */ - - -#if(DIRECTINPUT_VERSION >= 0x0800) -typedef BOOL (FAR PASCAL * LPDIENUMDEVICESBYSEMANTICSCBA)(LPCDIDEVICEINSTANCEA, LPDIRECTINPUTDEVICE8A, DWORD, DWORD, LPVOID); -typedef BOOL (FAR PASCAL * LPDIENUMDEVICESBYSEMANTICSCBW)(LPCDIDEVICEINSTANCEW, LPDIRECTINPUTDEVICE8W, DWORD, DWORD, LPVOID); -#ifdef UNICODE -#define LPDIENUMDEVICESBYSEMANTICSCB LPDIENUMDEVICESBYSEMANTICSCBW -#else -#define LPDIENUMDEVICESBYSEMANTICSCB LPDIENUMDEVICESBYSEMANTICSCBA -#endif // !UNICODE -#endif /* DIRECTINPUT_VERSION >= 0x0800 */ - -#if(DIRECTINPUT_VERSION >= 0x0800) -#define DIEDBS_MAPPEDPRI1 0x00000001 -#define DIEDBS_MAPPEDPRI2 0x00000002 -#define DIEDBS_RECENTDEVICE 0x00000010 -#define DIEDBS_NEWDEVICE 0x00000020 -#endif /* DIRECTINPUT_VERSION >= 0x0800 */ - -#if(DIRECTINPUT_VERSION >= 0x0800) -#define DIEDBSFL_ATTACHEDONLY 0x00000000 -#define DIEDBSFL_THISUSER 0x00000010 -#define DIEDBSFL_FORCEFEEDBACK DIEDFL_FORCEFEEDBACK -#define DIEDBSFL_AVAILABLEDEVICES 0x00001000 -#define DIEDBSFL_MULTIMICEKEYBOARDS 0x00002000 -#define DIEDBSFL_NONGAMINGDEVICES 0x00004000 -#define DIEDBSFL_VALID 0x00007110 -#endif /* DIRECTINPUT_VERSION >= 0x0800 */ - -#undef INTERFACE -#define INTERFACE IDirectInputW - -DECLARE_INTERFACE_(IDirectInputW, IUnknown) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID * ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirectInputW methods ***/ - STDMETHOD(CreateDevice)(THIS_ REFGUID,LPDIRECTINPUTDEVICEW *,LPUNKNOWN) PURE; - STDMETHOD(EnumDevices)(THIS_ DWORD,LPDIENUMDEVICESCALLBACKW,LPVOID,DWORD) PURE; - STDMETHOD(GetDeviceStatus)(THIS_ REFGUID) PURE; - STDMETHOD(RunControlPanel)(THIS_ HWND,DWORD) PURE; - STDMETHOD(Initialize)(THIS_ HINSTANCE,DWORD) PURE; -}; - -typedef struct IDirectInputW *LPDIRECTINPUTW; - -#undef INTERFACE -#define INTERFACE IDirectInputA - -DECLARE_INTERFACE_(IDirectInputA, IUnknown) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID * ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirectInputA methods ***/ - STDMETHOD(CreateDevice)(THIS_ REFGUID,LPDIRECTINPUTDEVICEA *,LPUNKNOWN) PURE; - STDMETHOD(EnumDevices)(THIS_ DWORD,LPDIENUMDEVICESCALLBACKA,LPVOID,DWORD) PURE; - STDMETHOD(GetDeviceStatus)(THIS_ REFGUID) PURE; - STDMETHOD(RunControlPanel)(THIS_ HWND,DWORD) PURE; - STDMETHOD(Initialize)(THIS_ HINSTANCE,DWORD) PURE; -}; - -typedef struct IDirectInputA *LPDIRECTINPUTA; - -#ifdef UNICODE -#define IID_IDirectInput IID_IDirectInputW -#define IDirectInput IDirectInputW -#define IDirectInputVtbl IDirectInputWVtbl -#else -#define IID_IDirectInput IID_IDirectInputA -#define IDirectInput IDirectInputA -#define IDirectInputVtbl IDirectInputAVtbl -#endif -typedef struct IDirectInput *LPDIRECTINPUT; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectInput_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirectInput_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirectInput_Release(p) (p)->lpVtbl->Release(p) -#define IDirectInput_CreateDevice(p,a,b,c) (p)->lpVtbl->CreateDevice(p,a,b,c) -#define IDirectInput_EnumDevices(p,a,b,c,d) (p)->lpVtbl->EnumDevices(p,a,b,c,d) -#define IDirectInput_GetDeviceStatus(p,a) (p)->lpVtbl->GetDeviceStatus(p,a) -#define IDirectInput_RunControlPanel(p,a,b) (p)->lpVtbl->RunControlPanel(p,a,b) -#define IDirectInput_Initialize(p,a,b) (p)->lpVtbl->Initialize(p,a,b) -#else -#define IDirectInput_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirectInput_AddRef(p) (p)->AddRef() -#define IDirectInput_Release(p) (p)->Release() -#define IDirectInput_CreateDevice(p,a,b,c) (p)->CreateDevice(a,b,c) -#define IDirectInput_EnumDevices(p,a,b,c,d) (p)->EnumDevices(a,b,c,d) -#define IDirectInput_GetDeviceStatus(p,a) (p)->GetDeviceStatus(a) -#define IDirectInput_RunControlPanel(p,a,b) (p)->RunControlPanel(a,b) -#define IDirectInput_Initialize(p,a,b) (p)->Initialize(a,b) -#endif - -#undef INTERFACE -#define INTERFACE IDirectInput2W - -DECLARE_INTERFACE_(IDirectInput2W, IDirectInputW) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID * ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirectInputW methods ***/ - STDMETHOD(CreateDevice)(THIS_ REFGUID,LPDIRECTINPUTDEVICEW *,LPUNKNOWN) PURE; - STDMETHOD(EnumDevices)(THIS_ DWORD,LPDIENUMDEVICESCALLBACKW,LPVOID,DWORD) PURE; - STDMETHOD(GetDeviceStatus)(THIS_ REFGUID) PURE; - STDMETHOD(RunControlPanel)(THIS_ HWND,DWORD) PURE; - STDMETHOD(Initialize)(THIS_ HINSTANCE,DWORD) PURE; - - /*** IDirectInput2W methods ***/ - STDMETHOD(FindDevice)(THIS_ REFGUID,LPCWSTR,LPGUID) PURE; -}; - -typedef struct IDirectInput2W *LPDIRECTINPUT2W; - -#undef INTERFACE -#define INTERFACE IDirectInput2A - -DECLARE_INTERFACE_(IDirectInput2A, IDirectInputA) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID * ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirectInputA methods ***/ - STDMETHOD(CreateDevice)(THIS_ REFGUID,LPDIRECTINPUTDEVICEA *,LPUNKNOWN) PURE; - STDMETHOD(EnumDevices)(THIS_ DWORD,LPDIENUMDEVICESCALLBACKA,LPVOID,DWORD) PURE; - STDMETHOD(GetDeviceStatus)(THIS_ REFGUID) PURE; - STDMETHOD(RunControlPanel)(THIS_ HWND,DWORD) PURE; - STDMETHOD(Initialize)(THIS_ HINSTANCE,DWORD) PURE; - - /*** IDirectInput2A methods ***/ - STDMETHOD(FindDevice)(THIS_ REFGUID,LPCSTR,LPGUID) PURE; -}; - -typedef struct IDirectInput2A *LPDIRECTINPUT2A; - -#ifdef UNICODE -#define IID_IDirectInput2 IID_IDirectInput2W -#define IDirectInput2 IDirectInput2W -#define IDirectInput2Vtbl IDirectInput2WVtbl -#else -#define IID_IDirectInput2 IID_IDirectInput2A -#define IDirectInput2 IDirectInput2A -#define IDirectInput2Vtbl IDirectInput2AVtbl -#endif -typedef struct IDirectInput2 *LPDIRECTINPUT2; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectInput2_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirectInput2_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirectInput2_Release(p) (p)->lpVtbl->Release(p) -#define IDirectInput2_CreateDevice(p,a,b,c) (p)->lpVtbl->CreateDevice(p,a,b,c) -#define IDirectInput2_EnumDevices(p,a,b,c,d) (p)->lpVtbl->EnumDevices(p,a,b,c,d) -#define IDirectInput2_GetDeviceStatus(p,a) (p)->lpVtbl->GetDeviceStatus(p,a) -#define IDirectInput2_RunControlPanel(p,a,b) (p)->lpVtbl->RunControlPanel(p,a,b) -#define IDirectInput2_Initialize(p,a,b) (p)->lpVtbl->Initialize(p,a,b) -#define IDirectInput2_FindDevice(p,a,b,c) (p)->lpVtbl->FindDevice(p,a,b,c) -#else -#define IDirectInput2_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirectInput2_AddRef(p) (p)->AddRef() -#define IDirectInput2_Release(p) (p)->Release() -#define IDirectInput2_CreateDevice(p,a,b,c) (p)->CreateDevice(a,b,c) -#define IDirectInput2_EnumDevices(p,a,b,c,d) (p)->EnumDevices(a,b,c,d) -#define IDirectInput2_GetDeviceStatus(p,a) (p)->GetDeviceStatus(a) -#define IDirectInput2_RunControlPanel(p,a,b) (p)->RunControlPanel(a,b) -#define IDirectInput2_Initialize(p,a,b) (p)->Initialize(a,b) -#define IDirectInput2_FindDevice(p,a,b,c) (p)->FindDevice(a,b,c) -#endif - - -#undef INTERFACE -#define INTERFACE IDirectInput7W - -DECLARE_INTERFACE_(IDirectInput7W, IDirectInput2W) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID * ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirectInput2W methods ***/ - STDMETHOD(CreateDevice)(THIS_ REFGUID,LPDIRECTINPUTDEVICEW *,LPUNKNOWN) PURE; - STDMETHOD(EnumDevices)(THIS_ DWORD,LPDIENUMDEVICESCALLBACKW,LPVOID,DWORD) PURE; - STDMETHOD(GetDeviceStatus)(THIS_ REFGUID) PURE; - STDMETHOD(RunControlPanel)(THIS_ HWND,DWORD) PURE; - STDMETHOD(Initialize)(THIS_ HINSTANCE,DWORD) PURE; - STDMETHOD(FindDevice)(THIS_ REFGUID,LPCWSTR,LPGUID) PURE; - - /*** IDirectInput7W methods ***/ - STDMETHOD(CreateDeviceEx)(THIS_ REFGUID,REFIID,LPVOID *,LPUNKNOWN) PURE; -}; - -typedef struct IDirectInput7W *LPDIRECTINPUT7W; - -#undef INTERFACE -#define INTERFACE IDirectInput7A - -DECLARE_INTERFACE_(IDirectInput7A, IDirectInput2A) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID * ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirectInput2A methods ***/ - STDMETHOD(CreateDevice)(THIS_ REFGUID,LPDIRECTINPUTDEVICEA *,LPUNKNOWN) PURE; - STDMETHOD(EnumDevices)(THIS_ DWORD,LPDIENUMDEVICESCALLBACKA,LPVOID,DWORD) PURE; - STDMETHOD(GetDeviceStatus)(THIS_ REFGUID) PURE; - STDMETHOD(RunControlPanel)(THIS_ HWND,DWORD) PURE; - STDMETHOD(Initialize)(THIS_ HINSTANCE,DWORD) PURE; - STDMETHOD(FindDevice)(THIS_ REFGUID,LPCSTR,LPGUID) PURE; - - /*** IDirectInput7A methods ***/ - STDMETHOD(CreateDeviceEx)(THIS_ REFGUID,REFIID,LPVOID *,LPUNKNOWN) PURE; -}; - -typedef struct IDirectInput7A *LPDIRECTINPUT7A; - -#ifdef UNICODE -#define IID_IDirectInput7 IID_IDirectInput7W -#define IDirectInput7 IDirectInput7W -#define IDirectInput7Vtbl IDirectInput7WVtbl -#else -#define IID_IDirectInput7 IID_IDirectInput7A -#define IDirectInput7 IDirectInput7A -#define IDirectInput7Vtbl IDirectInput7AVtbl -#endif -typedef struct IDirectInput7 *LPDIRECTINPUT7; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectInput7_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirectInput7_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirectInput7_Release(p) (p)->lpVtbl->Release(p) -#define IDirectInput7_CreateDevice(p,a,b,c) (p)->lpVtbl->CreateDevice(p,a,b,c) -#define IDirectInput7_EnumDevices(p,a,b,c,d) (p)->lpVtbl->EnumDevices(p,a,b,c,d) -#define IDirectInput7_GetDeviceStatus(p,a) (p)->lpVtbl->GetDeviceStatus(p,a) -#define IDirectInput7_RunControlPanel(p,a,b) (p)->lpVtbl->RunControlPanel(p,a,b) -#define IDirectInput7_Initialize(p,a,b) (p)->lpVtbl->Initialize(p,a,b) -#define IDirectInput7_FindDevice(p,a,b,c) (p)->lpVtbl->FindDevice(p,a,b,c) -#define IDirectInput7_CreateDeviceEx(p,a,b,c,d) (p)->lpVtbl->CreateDeviceEx(p,a,b,c,d) -#else -#define IDirectInput7_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirectInput7_AddRef(p) (p)->AddRef() -#define IDirectInput7_Release(p) (p)->Release() -#define IDirectInput7_CreateDevice(p,a,b,c) (p)->CreateDevice(a,b,c) -#define IDirectInput7_EnumDevices(p,a,b,c,d) (p)->EnumDevices(a,b,c,d) -#define IDirectInput7_GetDeviceStatus(p,a) (p)->GetDeviceStatus(a) -#define IDirectInput7_RunControlPanel(p,a,b) (p)->RunControlPanel(a,b) -#define IDirectInput7_Initialize(p,a,b) (p)->Initialize(a,b) -#define IDirectInput7_FindDevice(p,a,b,c) (p)->FindDevice(a,b,c) -#define IDirectInput7_CreateDeviceEx(p,a,b,c,d) (p)->CreateDeviceEx(a,b,c,d) -#endif - -#if(DIRECTINPUT_VERSION >= 0x0800) -#undef INTERFACE -#define INTERFACE IDirectInput8W - -DECLARE_INTERFACE_(IDirectInput8W, IUnknown) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID * ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirectInput8W methods ***/ - STDMETHOD(CreateDevice)(THIS_ REFGUID,LPDIRECTINPUTDEVICE8W *,LPUNKNOWN) PURE; - STDMETHOD(EnumDevices)(THIS_ DWORD,LPDIENUMDEVICESCALLBACKW,LPVOID,DWORD) PURE; - STDMETHOD(GetDeviceStatus)(THIS_ REFGUID) PURE; - STDMETHOD(RunControlPanel)(THIS_ HWND,DWORD) PURE; - STDMETHOD(Initialize)(THIS_ HINSTANCE,DWORD) PURE; - STDMETHOD(FindDevice)(THIS_ REFGUID,LPCWSTR,LPGUID) PURE; - STDMETHOD(EnumDevicesBySemantics)(THIS_ LPCWSTR,LPDIACTIONFORMATW,LPDIENUMDEVICESBYSEMANTICSCBW,LPVOID,DWORD) PURE; - STDMETHOD(ConfigureDevices)(THIS_ LPDICONFIGUREDEVICESCALLBACK,LPDICONFIGUREDEVICESPARAMSW,DWORD,LPVOID) PURE; -}; - -typedef struct IDirectInput8W *LPDIRECTINPUT8W; - -#undef INTERFACE -#define INTERFACE IDirectInput8A - -DECLARE_INTERFACE_(IDirectInput8A, IUnknown) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID * ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirectInput8A methods ***/ - STDMETHOD(CreateDevice)(THIS_ REFGUID,LPDIRECTINPUTDEVICE8A *,LPUNKNOWN) PURE; - STDMETHOD(EnumDevices)(THIS_ DWORD,LPDIENUMDEVICESCALLBACKA,LPVOID,DWORD) PURE; - STDMETHOD(GetDeviceStatus)(THIS_ REFGUID) PURE; - STDMETHOD(RunControlPanel)(THIS_ HWND,DWORD) PURE; - STDMETHOD(Initialize)(THIS_ HINSTANCE,DWORD) PURE; - STDMETHOD(FindDevice)(THIS_ REFGUID,LPCSTR,LPGUID) PURE; - STDMETHOD(EnumDevicesBySemantics)(THIS_ LPCSTR,LPDIACTIONFORMATA,LPDIENUMDEVICESBYSEMANTICSCBA,LPVOID,DWORD) PURE; - STDMETHOD(ConfigureDevices)(THIS_ LPDICONFIGUREDEVICESCALLBACK,LPDICONFIGUREDEVICESPARAMSA,DWORD,LPVOID) PURE; -}; - -typedef struct IDirectInput8A *LPDIRECTINPUT8A; - -#ifdef UNICODE -#define IID_IDirectInput8 IID_IDirectInput8W -#define IDirectInput8 IDirectInput8W -#define IDirectInput8Vtbl IDirectInput8WVtbl -#else -#define IID_IDirectInput8 IID_IDirectInput8A -#define IDirectInput8 IDirectInput8A -#define IDirectInput8Vtbl IDirectInput8AVtbl -#endif -typedef struct IDirectInput8 *LPDIRECTINPUT8; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectInput8_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirectInput8_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirectInput8_Release(p) (p)->lpVtbl->Release(p) -#define IDirectInput8_CreateDevice(p,a,b,c) (p)->lpVtbl->CreateDevice(p,a,b,c) -#define IDirectInput8_EnumDevices(p,a,b,c,d) (p)->lpVtbl->EnumDevices(p,a,b,c,d) -#define IDirectInput8_GetDeviceStatus(p,a) (p)->lpVtbl->GetDeviceStatus(p,a) -#define IDirectInput8_RunControlPanel(p,a,b) (p)->lpVtbl->RunControlPanel(p,a,b) -#define IDirectInput8_Initialize(p,a,b) (p)->lpVtbl->Initialize(p,a,b) -#define IDirectInput8_FindDevice(p,a,b,c) (p)->lpVtbl->FindDevice(p,a,b,c) -#define IDirectInput8_EnumDevicesBySemantics(p,a,b,c,d,e) (p)->lpVtbl->EnumDevicesBySemantics(p,a,b,c,d,e) -#define IDirectInput8_ConfigureDevices(p,a,b,c,d) (p)->lpVtbl->ConfigureDevices(p,a,b,c,d) -#else -#define IDirectInput8_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirectInput8_AddRef(p) (p)->AddRef() -#define IDirectInput8_Release(p) (p)->Release() -#define IDirectInput8_CreateDevice(p,a,b,c) (p)->CreateDevice(a,b,c) -#define IDirectInput8_EnumDevices(p,a,b,c,d) (p)->EnumDevices(a,b,c,d) -#define IDirectInput8_GetDeviceStatus(p,a) (p)->GetDeviceStatus(a) -#define IDirectInput8_RunControlPanel(p,a,b) (p)->RunControlPanel(a,b) -#define IDirectInput8_Initialize(p,a,b) (p)->Initialize(a,b) -#define IDirectInput8_FindDevice(p,a,b,c) (p)->FindDevice(a,b,c) -#define IDirectInput8_EnumDevicesBySemantics(p,a,b,c,d,e) (p)->EnumDevicesBySemantics(a,b,c,d,e) -#define IDirectInput8_ConfigureDevices(p,a,b,c,d) (p)->ConfigureDevices(a,b,c,d) -#endif -#endif /* DIRECTINPUT_VERSION >= 0x0800 */ - -#if DIRECTINPUT_VERSION > 0x0700 - -extern HRESULT WINAPI DirectInput8Create(HINSTANCE hinst, DWORD dwVersion, REFIID riidltf, LPVOID *ppvOut, LPUNKNOWN punkOuter); - -#else -extern HRESULT WINAPI DirectInputCreateA(HINSTANCE hinst, DWORD dwVersion, LPDIRECTINPUTA *ppDI, LPUNKNOWN punkOuter); -extern HRESULT WINAPI DirectInputCreateW(HINSTANCE hinst, DWORD dwVersion, LPDIRECTINPUTW *ppDI, LPUNKNOWN punkOuter); -#ifdef UNICODE -#define DirectInputCreate DirectInputCreateW -#else -#define DirectInputCreate DirectInputCreateA -#endif // !UNICODE - -extern HRESULT WINAPI DirectInputCreateEx(HINSTANCE hinst, DWORD dwVersion, REFIID riidltf, LPVOID *ppvOut, LPUNKNOWN punkOuter); - -#endif /* DIRECTINPUT_VERSION > 0x700 */ - -#endif /* DIJ_RINGZERO */ - - -/**************************************************************************** - * - * Return Codes - * - ****************************************************************************/ - -/* - * The operation completed successfully. - */ -#define DI_OK S_OK - -/* - * The device exists but is not currently attached. - */ -#define DI_NOTATTACHED S_FALSE - -/* - * The device buffer overflowed. Some input was lost. - */ -#define DI_BUFFEROVERFLOW S_FALSE - -/* - * The change in device properties had no effect. - */ -#define DI_PROPNOEFFECT S_FALSE - -/* - * The operation had no effect. - */ -#define DI_NOEFFECT S_FALSE - -/* - * The device is a polled device. As a result, device buffering - * will not collect any data and event notifications will not be - * signalled until GetDeviceState is called. - */ -#define DI_POLLEDDEVICE ((HRESULT)0x00000002L) - -/* - * The parameters of the effect were successfully updated by - * IDirectInputEffect::SetParameters, but the effect was not - * downloaded because the device is not exclusively acquired - * or because the DIEP_NODOWNLOAD flag was passed. - */ -#define DI_DOWNLOADSKIPPED ((HRESULT)0x00000003L) - -/* - * The parameters of the effect were successfully updated by - * IDirectInputEffect::SetParameters, but in order to change - * the parameters, the effect needed to be restarted. - */ -#define DI_EFFECTRESTARTED ((HRESULT)0x00000004L) - -/* - * The parameters of the effect were successfully updated by - * IDirectInputEffect::SetParameters, but some of them were - * beyond the capabilities of the device and were truncated. - */ -#define DI_TRUNCATED ((HRESULT)0x00000008L) - -/* - * The settings have been successfully applied but could not be - * persisted. - */ -#define DI_SETTINGSNOTSAVED ((HRESULT)0x0000000BL) - -/* - * Equal to DI_EFFECTRESTARTED | DI_TRUNCATED. - */ -#define DI_TRUNCATEDANDRESTARTED ((HRESULT)0x0000000CL) - -/* - * A SUCCESS code indicating that settings cannot be modified. - */ -#define DI_WRITEPROTECT ((HRESULT)0x00000013L) - -/* - * The application requires a newer version of DirectInput. - */ -#define DIERR_OLDDIRECTINPUTVERSION \ - MAKE_HRESULT(SEVERITY_ERROR, FACILITY_WIN32, ERROR_OLD_WIN_VERSION) - -/* - * The application was written for an unsupported prerelease version - * of DirectInput. - */ -#define DIERR_BETADIRECTINPUTVERSION \ - MAKE_HRESULT(SEVERITY_ERROR, FACILITY_WIN32, ERROR_RMODE_APP) - -/* - * The object could not be created due to an incompatible driver version - * or mismatched or incomplete driver components. - */ -#define DIERR_BADDRIVERVER \ - MAKE_HRESULT(SEVERITY_ERROR, FACILITY_WIN32, ERROR_BAD_DRIVER_LEVEL) - -/* - * The device or device instance or effect is not registered with DirectInput. - */ -#define DIERR_DEVICENOTREG REGDB_E_CLASSNOTREG - -/* - * The requested object does not exist. - */ -#define DIERR_NOTFOUND \ - MAKE_HRESULT(SEVERITY_ERROR, FACILITY_WIN32, ERROR_FILE_NOT_FOUND) - -/* - * The requested object does not exist. - */ -#define DIERR_OBJECTNOTFOUND \ - MAKE_HRESULT(SEVERITY_ERROR, FACILITY_WIN32, ERROR_FILE_NOT_FOUND) - -/* - * An invalid parameter was passed to the returning function, - * or the object was not in a state that admitted the function - * to be called. - */ -#define DIERR_INVALIDPARAM E_INVALIDARG - -/* - * The specified interface is not supported by the object - */ -#define DIERR_NOINTERFACE E_NOINTERFACE - -/* - * An undetermined error occured inside the DInput subsystem - */ -#define DIERR_GENERIC E_FAIL - -/* - * The DInput subsystem couldn't allocate sufficient memory to complete the - * caller's request. - */ -#define DIERR_OUTOFMEMORY E_OUTOFMEMORY - -/* - * The function called is not supported at this time - */ -#define DIERR_UNSUPPORTED E_NOTIMPL - -/* - * This object has not been initialized - */ -#define DIERR_NOTINITIALIZED \ - MAKE_HRESULT(SEVERITY_ERROR, FACILITY_WIN32, ERROR_NOT_READY) - -/* - * This object is already initialized - */ -#define DIERR_ALREADYINITIALIZED \ - MAKE_HRESULT(SEVERITY_ERROR, FACILITY_WIN32, ERROR_ALREADY_INITIALIZED) - -/* - * This object does not support aggregation - */ -#define DIERR_NOAGGREGATION CLASS_E_NOAGGREGATION - -/* - * Another app has a higher priority level, preventing this call from - * succeeding. - */ -#define DIERR_OTHERAPPHASPRIO E_ACCESSDENIED - -/* - * Access to the device has been lost. It must be re-acquired. - */ -#define DIERR_INPUTLOST \ - MAKE_HRESULT(SEVERITY_ERROR, FACILITY_WIN32, ERROR_READ_FAULT) - -/* - * The operation cannot be performed while the device is acquired. - */ -#define DIERR_ACQUIRED \ - MAKE_HRESULT(SEVERITY_ERROR, FACILITY_WIN32, ERROR_BUSY) - -/* - * The operation cannot be performed unless the device is acquired. - */ -#define DIERR_NOTACQUIRED \ - MAKE_HRESULT(SEVERITY_ERROR, FACILITY_WIN32, ERROR_INVALID_ACCESS) - -/* - * The specified property cannot be changed. - */ -#define DIERR_READONLY E_ACCESSDENIED - -/* - * The device already has an event notification associated with it. - */ -#define DIERR_HANDLEEXISTS E_ACCESSDENIED - -/* - * Data is not yet available. - */ -#ifndef E_PENDING -#define E_PENDING 0x8000000AL -#endif - -/* - * Unable to IDirectInputJoyConfig_Acquire because the user - * does not have sufficient privileges to change the joystick - * configuration. - */ -#define DIERR_INSUFFICIENTPRIVS 0x80040200L - -/* - * The device is full. - */ -#define DIERR_DEVICEFULL 0x80040201L - -/* - * Not all the requested information fit into the buffer. - */ -#define DIERR_MOREDATA 0x80040202L - -/* - * The effect is not downloaded. - */ -#define DIERR_NOTDOWNLOADED 0x80040203L - -/* - * The device cannot be reinitialized because there are still effects - * attached to it. - */ -#define DIERR_HASEFFECTS 0x80040204L - -/* - * The operation cannot be performed unless the device is acquired - * in DISCL_EXCLUSIVE mode. - */ -#define DIERR_NOTEXCLUSIVEACQUIRED 0x80040205L - -/* - * The effect could not be downloaded because essential information - * is missing. For example, no axes have been associated with the - * effect, or no type-specific information has been created. - */ -#define DIERR_INCOMPLETEEFFECT 0x80040206L - -/* - * Attempted to read buffered device data from a device that is - * not buffered. - */ -#define DIERR_NOTBUFFERED 0x80040207L - -/* - * An attempt was made to modify parameters of an effect while it is - * playing. Not all hardware devices support altering the parameters - * of an effect while it is playing. - */ -#define DIERR_EFFECTPLAYING 0x80040208L - -/* - * The operation could not be completed because the device is not - * plugged in. - */ -#define DIERR_UNPLUGGED 0x80040209L - -/* - * SendDeviceData failed because more information was requested - * to be sent than can be sent to the device. Some devices have - * restrictions on how much data can be sent to them. (For example, - * there might be a limit on the number of buttons that can be - * pressed at once.) - */ -#define DIERR_REPORTFULL 0x8004020AL - - -/* - * A mapper file function failed because reading or writing the user or IHV - * settings file failed. - */ -#define DIERR_MAPFILEFAIL 0x8004020BL - - -/*--- DINPUT Mapper Definitions: New for Dx8 ---*/ - - -/*--- Keyboard - Physical Keyboard Device ---*/ - -#define DIKEYBOARD_ESCAPE 0x81000401 -#define DIKEYBOARD_1 0x81000402 -#define DIKEYBOARD_2 0x81000403 -#define DIKEYBOARD_3 0x81000404 -#define DIKEYBOARD_4 0x81000405 -#define DIKEYBOARD_5 0x81000406 -#define DIKEYBOARD_6 0x81000407 -#define DIKEYBOARD_7 0x81000408 -#define DIKEYBOARD_8 0x81000409 -#define DIKEYBOARD_9 0x8100040A -#define DIKEYBOARD_0 0x8100040B -#define DIKEYBOARD_MINUS 0x8100040C /* - on main keyboard */ -#define DIKEYBOARD_EQUALS 0x8100040D -#define DIKEYBOARD_BACK 0x8100040E /* backspace */ -#define DIKEYBOARD_TAB 0x8100040F -#define DIKEYBOARD_Q 0x81000410 -#define DIKEYBOARD_W 0x81000411 -#define DIKEYBOARD_E 0x81000412 -#define DIKEYBOARD_R 0x81000413 -#define DIKEYBOARD_T 0x81000414 -#define DIKEYBOARD_Y 0x81000415 -#define DIKEYBOARD_U 0x81000416 -#define DIKEYBOARD_I 0x81000417 -#define DIKEYBOARD_O 0x81000418 -#define DIKEYBOARD_P 0x81000419 -#define DIKEYBOARD_LBRACKET 0x8100041A -#define DIKEYBOARD_RBRACKET 0x8100041B -#define DIKEYBOARD_RETURN 0x8100041C /* Enter on main keyboard */ -#define DIKEYBOARD_LCONTROL 0x8100041D -#define DIKEYBOARD_A 0x8100041E -#define DIKEYBOARD_S 0x8100041F -#define DIKEYBOARD_D 0x81000420 -#define DIKEYBOARD_F 0x81000421 -#define DIKEYBOARD_G 0x81000422 -#define DIKEYBOARD_H 0x81000423 -#define DIKEYBOARD_J 0x81000424 -#define DIKEYBOARD_K 0x81000425 -#define DIKEYBOARD_L 0x81000426 -#define DIKEYBOARD_SEMICOLON 0x81000427 -#define DIKEYBOARD_APOSTROPHE 0x81000428 -#define DIKEYBOARD_GRAVE 0x81000429 /* accent grave */ -#define DIKEYBOARD_LSHIFT 0x8100042A -#define DIKEYBOARD_BACKSLASH 0x8100042B -#define DIKEYBOARD_Z 0x8100042C -#define DIKEYBOARD_X 0x8100042D -#define DIKEYBOARD_C 0x8100042E -#define DIKEYBOARD_V 0x8100042F -#define DIKEYBOARD_B 0x81000430 -#define DIKEYBOARD_N 0x81000431 -#define DIKEYBOARD_M 0x81000432 -#define DIKEYBOARD_COMMA 0x81000433 -#define DIKEYBOARD_PERIOD 0x81000434 /* . on main keyboard */ -#define DIKEYBOARD_SLASH 0x81000435 /* / on main keyboard */ -#define DIKEYBOARD_RSHIFT 0x81000436 -#define DIKEYBOARD_MULTIPLY 0x81000437 /* * on numeric keypad */ -#define DIKEYBOARD_LMENU 0x81000438 /* left Alt */ -#define DIKEYBOARD_SPACE 0x81000439 -#define DIKEYBOARD_CAPITAL 0x8100043A -#define DIKEYBOARD_F1 0x8100043B -#define DIKEYBOARD_F2 0x8100043C -#define DIKEYBOARD_F3 0x8100043D -#define DIKEYBOARD_F4 0x8100043E -#define DIKEYBOARD_F5 0x8100043F -#define DIKEYBOARD_F6 0x81000440 -#define DIKEYBOARD_F7 0x81000441 -#define DIKEYBOARD_F8 0x81000442 -#define DIKEYBOARD_F9 0x81000443 -#define DIKEYBOARD_F10 0x81000444 -#define DIKEYBOARD_NUMLOCK 0x81000445 -#define DIKEYBOARD_SCROLL 0x81000446 /* Scroll Lock */ -#define DIKEYBOARD_NUMPAD7 0x81000447 -#define DIKEYBOARD_NUMPAD8 0x81000448 -#define DIKEYBOARD_NUMPAD9 0x81000449 -#define DIKEYBOARD_SUBTRACT 0x8100044A /* - on numeric keypad */ -#define DIKEYBOARD_NUMPAD4 0x8100044B -#define DIKEYBOARD_NUMPAD5 0x8100044C -#define DIKEYBOARD_NUMPAD6 0x8100044D -#define DIKEYBOARD_ADD 0x8100044E /* + on numeric keypad */ -#define DIKEYBOARD_NUMPAD1 0x8100044F -#define DIKEYBOARD_NUMPAD2 0x81000450 -#define DIKEYBOARD_NUMPAD3 0x81000451 -#define DIKEYBOARD_NUMPAD0 0x81000452 -#define DIKEYBOARD_DECIMAL 0x81000453 /* . on numeric keypad */ -#define DIKEYBOARD_OEM_102 0x81000456 /* <> or \| on RT 102-key keyboard (Non-U.S.) */ -#define DIKEYBOARD_F11 0x81000457 -#define DIKEYBOARD_F12 0x81000458 -#define DIKEYBOARD_F13 0x81000464 /* (NEC PC98) */ -#define DIKEYBOARD_F14 0x81000465 /* (NEC PC98) */ -#define DIKEYBOARD_F15 0x81000466 /* (NEC PC98) */ -#define DIKEYBOARD_KANA 0x81000470 /* (Japanese keyboard) */ -#define DIKEYBOARD_ABNT_C1 0x81000473 /* /? on Brazilian keyboard */ -#define DIKEYBOARD_CONVERT 0x81000479 /* (Japanese keyboard) */ -#define DIKEYBOARD_NOCONVERT 0x8100047B /* (Japanese keyboard) */ -#define DIKEYBOARD_YEN 0x8100047D /* (Japanese keyboard) */ -#define DIKEYBOARD_ABNT_C2 0x8100047E /* Numpad . on Brazilian keyboard */ -#define DIKEYBOARD_NUMPADEQUALS 0x8100048D /* = on numeric keypad (NEC PC98) */ -#define DIKEYBOARD_PREVTRACK 0x81000490 /* Previous Track (DIK_CIRCUMFLEX on Japanese keyboard) */ -#define DIKEYBOARD_AT 0x81000491 /* (NEC PC98) */ -#define DIKEYBOARD_COLON 0x81000492 /* (NEC PC98) */ -#define DIKEYBOARD_UNDERLINE 0x81000493 /* (NEC PC98) */ -#define DIKEYBOARD_KANJI 0x81000494 /* (Japanese keyboard) */ -#define DIKEYBOARD_STOP 0x81000495 /* (NEC PC98) */ -#define DIKEYBOARD_AX 0x81000496 /* (Japan AX) */ -#define DIKEYBOARD_UNLABELED 0x81000497 /* (J3100) */ -#define DIKEYBOARD_NEXTTRACK 0x81000499 /* Next Track */ -#define DIKEYBOARD_NUMPADENTER 0x8100049C /* Enter on numeric keypad */ -#define DIKEYBOARD_RCONTROL 0x8100049D -#define DIKEYBOARD_MUTE 0x810004A0 /* Mute */ -#define DIKEYBOARD_CALCULATOR 0x810004A1 /* Calculator */ -#define DIKEYBOARD_PLAYPAUSE 0x810004A2 /* Play / Pause */ -#define DIKEYBOARD_MEDIASTOP 0x810004A4 /* Media Stop */ -#define DIKEYBOARD_VOLUMEDOWN 0x810004AE /* Volume - */ -#define DIKEYBOARD_VOLUMEUP 0x810004B0 /* Volume + */ -#define DIKEYBOARD_WEBHOME 0x810004B2 /* Web home */ -#define DIKEYBOARD_NUMPADCOMMA 0x810004B3 /* , on numeric keypad (NEC PC98) */ -#define DIKEYBOARD_DIVIDE 0x810004B5 /* / on numeric keypad */ -#define DIKEYBOARD_SYSRQ 0x810004B7 -#define DIKEYBOARD_RMENU 0x810004B8 /* right Alt */ -#define DIKEYBOARD_PAUSE 0x810004C5 /* Pause */ -#define DIKEYBOARD_HOME 0x810004C7 /* Home on arrow keypad */ -#define DIKEYBOARD_UP 0x810004C8 /* UpArrow on arrow keypad */ -#define DIKEYBOARD_PRIOR 0x810004C9 /* PgUp on arrow keypad */ -#define DIKEYBOARD_LEFT 0x810004CB /* LeftArrow on arrow keypad */ -#define DIKEYBOARD_RIGHT 0x810004CD /* RightArrow on arrow keypad */ -#define DIKEYBOARD_END 0x810004CF /* End on arrow keypad */ -#define DIKEYBOARD_DOWN 0x810004D0 /* DownArrow on arrow keypad */ -#define DIKEYBOARD_NEXT 0x810004D1 /* PgDn on arrow keypad */ -#define DIKEYBOARD_INSERT 0x810004D2 /* Insert on arrow keypad */ -#define DIKEYBOARD_DELETE 0x810004D3 /* Delete on arrow keypad */ -#define DIKEYBOARD_LWIN 0x810004DB /* Left Windows key */ -#define DIKEYBOARD_RWIN 0x810004DC /* Right Windows key */ -#define DIKEYBOARD_APPS 0x810004DD /* AppMenu key */ -#define DIKEYBOARD_POWER 0x810004DE /* System Power */ -#define DIKEYBOARD_SLEEP 0x810004DF /* System Sleep */ -#define DIKEYBOARD_WAKE 0x810004E3 /* System Wake */ -#define DIKEYBOARD_WEBSEARCH 0x810004E5 /* Web Search */ -#define DIKEYBOARD_WEBFAVORITES 0x810004E6 /* Web Favorites */ -#define DIKEYBOARD_WEBREFRESH 0x810004E7 /* Web Refresh */ -#define DIKEYBOARD_WEBSTOP 0x810004E8 /* Web Stop */ -#define DIKEYBOARD_WEBFORWARD 0x810004E9 /* Web Forward */ -#define DIKEYBOARD_WEBBACK 0x810004EA /* Web Back */ -#define DIKEYBOARD_MYCOMPUTER 0x810004EB /* My Computer */ -#define DIKEYBOARD_MAIL 0x810004EC /* Mail */ -#define DIKEYBOARD_MEDIASELECT 0x810004ED /* Media Select */ - - -/*--- MOUSE - Physical Mouse Device ---*/ - -#define DIMOUSE_XAXISAB (0x82000200 |DIMOFS_X ) /* X Axis-absolute: Some mice natively report absolute coordinates */ -#define DIMOUSE_YAXISAB (0x82000200 |DIMOFS_Y ) /* Y Axis-absolute: Some mice natively report absolute coordinates */ -#define DIMOUSE_XAXIS (0x82000300 |DIMOFS_X ) /* X Axis */ -#define DIMOUSE_YAXIS (0x82000300 |DIMOFS_Y ) /* Y Axis */ -#define DIMOUSE_WHEEL (0x82000300 |DIMOFS_Z ) /* Z Axis */ -#define DIMOUSE_BUTTON0 (0x82000400 |DIMOFS_BUTTON0) /* Button 0 */ -#define DIMOUSE_BUTTON1 (0x82000400 |DIMOFS_BUTTON1) /* Button 1 */ -#define DIMOUSE_BUTTON2 (0x82000400 |DIMOFS_BUTTON2) /* Button 2 */ -#define DIMOUSE_BUTTON3 (0x82000400 |DIMOFS_BUTTON3) /* Button 3 */ -#define DIMOUSE_BUTTON4 (0x82000400 |DIMOFS_BUTTON4) /* Button 4 */ -#define DIMOUSE_BUTTON5 (0x82000400 |DIMOFS_BUTTON5) /* Button 5 */ -#define DIMOUSE_BUTTON6 (0x82000400 |DIMOFS_BUTTON6) /* Button 6 */ -#define DIMOUSE_BUTTON7 (0x82000400 |DIMOFS_BUTTON7) /* Button 7 */ - - -/*--- VOICE - Physical Dplay Voice Device ---*/ - -#define DIVOICE_CHANNEL1 0x83000401 -#define DIVOICE_CHANNEL2 0x83000402 -#define DIVOICE_CHANNEL3 0x83000403 -#define DIVOICE_CHANNEL4 0x83000404 -#define DIVOICE_CHANNEL5 0x83000405 -#define DIVOICE_CHANNEL6 0x83000406 -#define DIVOICE_CHANNEL7 0x83000407 -#define DIVOICE_CHANNEL8 0x83000408 -#define DIVOICE_TEAM 0x83000409 -#define DIVOICE_ALL 0x8300040A -#define DIVOICE_RECORDMUTE 0x8300040B -#define DIVOICE_PLAYBACKMUTE 0x8300040C -#define DIVOICE_TRANSMIT 0x8300040D - -#define DIVOICE_VOICECOMMAND 0x83000410 - - -/*--- Driving Simulator - Racing - Vehicle control is primary objective ---*/ -#define DIVIRTUAL_DRIVING_RACE 0x01000000 -#define DIAXIS_DRIVINGR_STEER 0x01008A01 /* Steering */ -#define DIAXIS_DRIVINGR_ACCELERATE 0x01039202 /* Accelerate */ -#define DIAXIS_DRIVINGR_BRAKE 0x01041203 /* Brake-Axis */ -#define DIBUTTON_DRIVINGR_SHIFTUP 0x01000C01 /* Shift to next higher gear */ -#define DIBUTTON_DRIVINGR_SHIFTDOWN 0x01000C02 /* Shift to next lower gear */ -#define DIBUTTON_DRIVINGR_VIEW 0x01001C03 /* Cycle through view options */ -#define DIBUTTON_DRIVINGR_MENU 0x010004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIAXIS_DRIVINGR_ACCEL_AND_BRAKE 0x01014A04 /* Some devices combine accelerate and brake in a single axis */ -#define DIHATSWITCH_DRIVINGR_GLANCE 0x01004601 /* Look around */ -#define DIBUTTON_DRIVINGR_BRAKE 0x01004C04 /* Brake-button */ -#define DIBUTTON_DRIVINGR_DASHBOARD 0x01004405 /* Select next dashboard option */ -#define DIBUTTON_DRIVINGR_AIDS 0x01004406 /* Driver correction aids */ -#define DIBUTTON_DRIVINGR_MAP 0x01004407 /* Display Driving Map */ -#define DIBUTTON_DRIVINGR_BOOST 0x01004408 /* Turbo Boost */ -#define DIBUTTON_DRIVINGR_PIT 0x01004409 /* Pit stop notification */ -#define DIBUTTON_DRIVINGR_ACCELERATE_LINK 0x0103D4E0 /* Fallback Accelerate button */ -#define DIBUTTON_DRIVINGR_STEER_LEFT_LINK 0x0100CCE4 /* Fallback Steer Left button */ -#define DIBUTTON_DRIVINGR_STEER_RIGHT_LINK 0x0100CCEC /* Fallback Steer Right button */ -#define DIBUTTON_DRIVINGR_GLANCE_LEFT_LINK 0x0107C4E4 /* Fallback Glance Left button */ -#define DIBUTTON_DRIVINGR_GLANCE_RIGHT_LINK 0x0107C4EC /* Fallback Glance Right button */ -#define DIBUTTON_DRIVINGR_DEVICE 0x010044FE /* Show input device and controls */ -#define DIBUTTON_DRIVINGR_PAUSE 0x010044FC /* Start / Pause / Restart game */ - -/*--- Driving Simulator - Combat - Combat from within a vehicle is primary objective ---*/ -#define DIVIRTUAL_DRIVING_COMBAT 0x02000000 -#define DIAXIS_DRIVINGC_STEER 0x02008A01 /* Steering */ -#define DIAXIS_DRIVINGC_ACCELERATE 0x02039202 /* Accelerate */ -#define DIAXIS_DRIVINGC_BRAKE 0x02041203 /* Brake-axis */ -#define DIBUTTON_DRIVINGC_FIRE 0x02000C01 /* Fire */ -#define DIBUTTON_DRIVINGC_WEAPONS 0x02000C02 /* Select next weapon */ -#define DIBUTTON_DRIVINGC_TARGET 0x02000C03 /* Select next available target */ -#define DIBUTTON_DRIVINGC_MENU 0x020004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIAXIS_DRIVINGC_ACCEL_AND_BRAKE 0x02014A04 /* Some devices combine accelerate and brake in a single axis */ -#define DIHATSWITCH_DRIVINGC_GLANCE 0x02004601 /* Look around */ -#define DIBUTTON_DRIVINGC_SHIFTUP 0x02004C04 /* Shift to next higher gear */ -#define DIBUTTON_DRIVINGC_SHIFTDOWN 0x02004C05 /* Shift to next lower gear */ -#define DIBUTTON_DRIVINGC_DASHBOARD 0x02004406 /* Select next dashboard option */ -#define DIBUTTON_DRIVINGC_AIDS 0x02004407 /* Driver correction aids */ -#define DIBUTTON_DRIVINGC_BRAKE 0x02004C08 /* Brake-button */ -#define DIBUTTON_DRIVINGC_FIRESECONDARY 0x02004C09 /* Alternative fire button */ -#define DIBUTTON_DRIVINGC_ACCELERATE_LINK 0x0203D4E0 /* Fallback Accelerate button */ -#define DIBUTTON_DRIVINGC_STEER_LEFT_LINK 0x0200CCE4 /* Fallback Steer Left button */ -#define DIBUTTON_DRIVINGC_STEER_RIGHT_LINK 0x0200CCEC /* Fallback Steer Right button */ -#define DIBUTTON_DRIVINGC_GLANCE_LEFT_LINK 0x0207C4E4 /* Fallback Glance Left button */ -#define DIBUTTON_DRIVINGC_GLANCE_RIGHT_LINK 0x0207C4EC /* Fallback Glance Right button */ -#define DIBUTTON_DRIVINGC_DEVICE 0x020044FE /* Show input device and controls */ -#define DIBUTTON_DRIVINGC_PAUSE 0x020044FC /* Start / Pause / Restart game */ - -/*--- Driving Simulator - Tank - Combat from withing a tank is primary objective ---*/ -#define DIVIRTUAL_DRIVING_TANK 0x03000000 -#define DIAXIS_DRIVINGT_STEER 0x03008A01 /* Turn tank left / right */ -#define DIAXIS_DRIVINGT_BARREL 0x03010202 /* Raise / lower barrel */ -#define DIAXIS_DRIVINGT_ACCELERATE 0x03039203 /* Accelerate */ -#define DIAXIS_DRIVINGT_ROTATE 0x03020204 /* Turn barrel left / right */ -#define DIBUTTON_DRIVINGT_FIRE 0x03000C01 /* Fire */ -#define DIBUTTON_DRIVINGT_WEAPONS 0x03000C02 /* Select next weapon */ -#define DIBUTTON_DRIVINGT_TARGET 0x03000C03 /* Selects next available target */ -#define DIBUTTON_DRIVINGT_MENU 0x030004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIHATSWITCH_DRIVINGT_GLANCE 0x03004601 /* Look around */ -#define DIAXIS_DRIVINGT_BRAKE 0x03045205 /* Brake-axis */ -#define DIAXIS_DRIVINGT_ACCEL_AND_BRAKE 0x03014A06 /* Some devices combine accelerate and brake in a single axis */ -#define DIBUTTON_DRIVINGT_VIEW 0x03005C04 /* Cycle through view options */ -#define DIBUTTON_DRIVINGT_DASHBOARD 0x03005C05 /* Select next dashboard option */ -#define DIBUTTON_DRIVINGT_BRAKE 0x03004C06 /* Brake-button */ -#define DIBUTTON_DRIVINGT_FIRESECONDARY 0x03004C07 /* Alternative fire button */ -#define DIBUTTON_DRIVINGT_ACCELERATE_LINK 0x0303D4E0 /* Fallback Accelerate button */ -#define DIBUTTON_DRIVINGT_STEER_LEFT_LINK 0x0300CCE4 /* Fallback Steer Left button */ -#define DIBUTTON_DRIVINGT_STEER_RIGHT_LINK 0x0300CCEC /* Fallback Steer Right button */ -#define DIBUTTON_DRIVINGT_BARREL_UP_LINK 0x030144E0 /* Fallback Barrel up button */ -#define DIBUTTON_DRIVINGT_BARREL_DOWN_LINK 0x030144E8 /* Fallback Barrel down button */ -#define DIBUTTON_DRIVINGT_ROTATE_LEFT_LINK 0x030244E4 /* Fallback Rotate left button */ -#define DIBUTTON_DRIVINGT_ROTATE_RIGHT_LINK 0x030244EC /* Fallback Rotate right button */ -#define DIBUTTON_DRIVINGT_GLANCE_LEFT_LINK 0x0307C4E4 /* Fallback Glance Left button */ -#define DIBUTTON_DRIVINGT_GLANCE_RIGHT_LINK 0x0307C4EC /* Fallback Glance Right button */ -#define DIBUTTON_DRIVINGT_DEVICE 0x030044FE /* Show input device and controls */ -#define DIBUTTON_DRIVINGT_PAUSE 0x030044FC /* Start / Pause / Restart game */ - -/*--- Flight Simulator - Civilian - Plane control is the primary objective ---*/ -#define DIVIRTUAL_FLYING_CIVILIAN 0x04000000 -#define DIAXIS_FLYINGC_BANK 0x04008A01 /* Roll ship left / right */ -#define DIAXIS_FLYINGC_PITCH 0x04010A02 /* Nose up / down */ -#define DIAXIS_FLYINGC_THROTTLE 0x04039203 /* Throttle */ -#define DIBUTTON_FLYINGC_VIEW 0x04002401 /* Cycle through view options */ -#define DIBUTTON_FLYINGC_DISPLAY 0x04002402 /* Select next dashboard / heads up display option */ -#define DIBUTTON_FLYINGC_GEAR 0x04002C03 /* Gear up / down */ -#define DIBUTTON_FLYINGC_MENU 0x040004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIHATSWITCH_FLYINGC_GLANCE 0x04004601 /* Look around */ -#define DIAXIS_FLYINGC_BRAKE 0x04046A04 /* Apply Brake */ -#define DIAXIS_FLYINGC_RUDDER 0x04025205 /* Yaw ship left/right */ -#define DIAXIS_FLYINGC_FLAPS 0x04055A06 /* Flaps */ -#define DIBUTTON_FLYINGC_FLAPSUP 0x04006404 /* Increment stepping up until fully retracted */ -#define DIBUTTON_FLYINGC_FLAPSDOWN 0x04006405 /* Decrement stepping down until fully extended */ -#define DIBUTTON_FLYINGC_BRAKE_LINK 0x04046CE0 /* Fallback brake button */ -#define DIBUTTON_FLYINGC_FASTER_LINK 0x0403D4E0 /* Fallback throttle up button */ -#define DIBUTTON_FLYINGC_SLOWER_LINK 0x0403D4E8 /* Fallback throttle down button */ -#define DIBUTTON_FLYINGC_GLANCE_LEFT_LINK 0x0407C4E4 /* Fallback Glance Left button */ -#define DIBUTTON_FLYINGC_GLANCE_RIGHT_LINK 0x0407C4EC /* Fallback Glance Right button */ -#define DIBUTTON_FLYINGC_GLANCE_UP_LINK 0x0407C4E0 /* Fallback Glance Up button */ -#define DIBUTTON_FLYINGC_GLANCE_DOWN_LINK 0x0407C4E8 /* Fallback Glance Down button */ -#define DIBUTTON_FLYINGC_DEVICE 0x040044FE /* Show input device and controls */ -#define DIBUTTON_FLYINGC_PAUSE 0x040044FC /* Start / Pause / Restart game */ - -/*--- Flight Simulator - Military - Aerial combat is the primary objective ---*/ -#define DIVIRTUAL_FLYING_MILITARY 0x05000000 -#define DIAXIS_FLYINGM_BANK 0x05008A01 /* Bank - Roll ship left / right */ -#define DIAXIS_FLYINGM_PITCH 0x05010A02 /* Pitch - Nose up / down */ -#define DIAXIS_FLYINGM_THROTTLE 0x05039203 /* Throttle - faster / slower */ -#define DIBUTTON_FLYINGM_FIRE 0x05000C01 /* Fire */ -#define DIBUTTON_FLYINGM_WEAPONS 0x05000C02 /* Select next weapon */ -#define DIBUTTON_FLYINGM_TARGET 0x05000C03 /* Selects next available target */ -#define DIBUTTON_FLYINGM_MENU 0x050004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIHATSWITCH_FLYINGM_GLANCE 0x05004601 /* Look around */ -#define DIBUTTON_FLYINGM_COUNTER 0x05005C04 /* Activate counter measures */ -#define DIAXIS_FLYINGM_RUDDER 0x05024A04 /* Rudder - Yaw ship left/right */ -#define DIAXIS_FLYINGM_BRAKE 0x05046205 /* Brake-axis */ -#define DIBUTTON_FLYINGM_VIEW 0x05006405 /* Cycle through view options */ -#define DIBUTTON_FLYINGM_DISPLAY 0x05006406 /* Select next dashboard option */ -#define DIAXIS_FLYINGM_FLAPS 0x05055206 /* Flaps */ -#define DIBUTTON_FLYINGM_FLAPSUP 0x05005407 /* Increment stepping up until fully retracted */ -#define DIBUTTON_FLYINGM_FLAPSDOWN 0x05005408 /* Decrement stepping down until fully extended */ -#define DIBUTTON_FLYINGM_FIRESECONDARY 0x05004C09 /* Alternative fire button */ -#define DIBUTTON_FLYINGM_GEAR 0x0500640A /* Gear up / down */ -#define DIBUTTON_FLYINGM_BRAKE_LINK 0x050464E0 /* Fallback brake button */ -#define DIBUTTON_FLYINGM_FASTER_LINK 0x0503D4E0 /* Fallback throttle up button */ -#define DIBUTTON_FLYINGM_SLOWER_LINK 0x0503D4E8 /* Fallback throttle down button */ -#define DIBUTTON_FLYINGM_GLANCE_LEFT_LINK 0x0507C4E4 /* Fallback Glance Left button */ -#define DIBUTTON_FLYINGM_GLANCE_RIGHT_LINK 0x0507C4EC /* Fallback Glance Right button */ -#define DIBUTTON_FLYINGM_GLANCE_UP_LINK 0x0507C4E0 /* Fallback Glance Up button */ -#define DIBUTTON_FLYINGM_GLANCE_DOWN_LINK 0x0507C4E8 /* Fallback Glance Down button */ -#define DIBUTTON_FLYINGM_DEVICE 0x050044FE /* Show input device and controls */ -#define DIBUTTON_FLYINGM_PAUSE 0x050044FC /* Start / Pause / Restart game */ - -/*--- Flight Simulator - Combat Helicopter - Combat from helicopter is primary objective ---*/ -#define DIVIRTUAL_FLYING_HELICOPTER 0x06000000 -#define DIAXIS_FLYINGH_BANK 0x06008A01 /* Bank - Roll ship left / right */ -#define DIAXIS_FLYINGH_PITCH 0x06010A02 /* Pitch - Nose up / down */ -#define DIAXIS_FLYINGH_COLLECTIVE 0x06018A03 /* Collective - Blade pitch/power */ -#define DIBUTTON_FLYINGH_FIRE 0x06001401 /* Fire */ -#define DIBUTTON_FLYINGH_WEAPONS 0x06001402 /* Select next weapon */ -#define DIBUTTON_FLYINGH_TARGET 0x06001403 /* Selects next available target */ -#define DIBUTTON_FLYINGH_MENU 0x060004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIHATSWITCH_FLYINGH_GLANCE 0x06004601 /* Look around */ -#define DIAXIS_FLYINGH_TORQUE 0x06025A04 /* Torque - Rotate ship around left / right axis */ -#define DIAXIS_FLYINGH_THROTTLE 0x0603DA05 /* Throttle */ -#define DIBUTTON_FLYINGH_COUNTER 0x06005404 /* Activate counter measures */ -#define DIBUTTON_FLYINGH_VIEW 0x06006405 /* Cycle through view options */ -#define DIBUTTON_FLYINGH_GEAR 0x06006406 /* Gear up / down */ -#define DIBUTTON_FLYINGH_FIRESECONDARY 0x06004C07 /* Alternative fire button */ -#define DIBUTTON_FLYINGH_FASTER_LINK 0x0603DCE0 /* Fallback throttle up button */ -#define DIBUTTON_FLYINGH_SLOWER_LINK 0x0603DCE8 /* Fallback throttle down button */ -#define DIBUTTON_FLYINGH_GLANCE_LEFT_LINK 0x0607C4E4 /* Fallback Glance Left button */ -#define DIBUTTON_FLYINGH_GLANCE_RIGHT_LINK 0x0607C4EC /* Fallback Glance Right button */ -#define DIBUTTON_FLYINGH_GLANCE_UP_LINK 0x0607C4E0 /* Fallback Glance Up button */ -#define DIBUTTON_FLYINGH_GLANCE_DOWN_LINK 0x0607C4E8 /* Fallback Glance Down button */ -#define DIBUTTON_FLYINGH_DEVICE 0x060044FE /* Show input device and controls */ -#define DIBUTTON_FLYINGH_PAUSE 0x060044FC /* Start / Pause / Restart game */ - -/*--- Space Simulator - Combat - Space Simulator with weapons ---*/ -#define DIVIRTUAL_SPACESIM 0x07000000 -#define DIAXIS_SPACESIM_LATERAL 0x07008201 /* Move ship left / right */ -#define DIAXIS_SPACESIM_MOVE 0x07010202 /* Move ship forward/backward */ -#define DIAXIS_SPACESIM_THROTTLE 0x07038203 /* Throttle - Engine speed */ -#define DIBUTTON_SPACESIM_FIRE 0x07000401 /* Fire */ -#define DIBUTTON_SPACESIM_WEAPONS 0x07000402 /* Select next weapon */ -#define DIBUTTON_SPACESIM_TARGET 0x07000403 /* Selects next available target */ -#define DIBUTTON_SPACESIM_MENU 0x070004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIHATSWITCH_SPACESIM_GLANCE 0x07004601 /* Look around */ -#define DIAXIS_SPACESIM_CLIMB 0x0701C204 /* Climb - Pitch ship up/down */ -#define DIAXIS_SPACESIM_ROTATE 0x07024205 /* Rotate - Turn ship left/right */ -#define DIBUTTON_SPACESIM_VIEW 0x07004404 /* Cycle through view options */ -#define DIBUTTON_SPACESIM_DISPLAY 0x07004405 /* Select next dashboard / heads up display option */ -#define DIBUTTON_SPACESIM_RAISE 0x07004406 /* Raise ship while maintaining current pitch */ -#define DIBUTTON_SPACESIM_LOWER 0x07004407 /* Lower ship while maintaining current pitch */ -#define DIBUTTON_SPACESIM_GEAR 0x07004408 /* Gear up / down */ -#define DIBUTTON_SPACESIM_FIRESECONDARY 0x07004409 /* Alternative fire button */ -#define DIBUTTON_SPACESIM_LEFT_LINK 0x0700C4E4 /* Fallback move left button */ -#define DIBUTTON_SPACESIM_RIGHT_LINK 0x0700C4EC /* Fallback move right button */ -#define DIBUTTON_SPACESIM_FORWARD_LINK 0x070144E0 /* Fallback move forward button */ -#define DIBUTTON_SPACESIM_BACKWARD_LINK 0x070144E8 /* Fallback move backwards button */ -#define DIBUTTON_SPACESIM_FASTER_LINK 0x0703C4E0 /* Fallback throttle up button */ -#define DIBUTTON_SPACESIM_SLOWER_LINK 0x0703C4E8 /* Fallback throttle down button */ -#define DIBUTTON_SPACESIM_TURN_LEFT_LINK 0x070244E4 /* Fallback turn left button */ -#define DIBUTTON_SPACESIM_TURN_RIGHT_LINK 0x070244EC /* Fallback turn right button */ -#define DIBUTTON_SPACESIM_GLANCE_LEFT_LINK 0x0707C4E4 /* Fallback Glance Left button */ -#define DIBUTTON_SPACESIM_GLANCE_RIGHT_LINK 0x0707C4EC /* Fallback Glance Right button */ -#define DIBUTTON_SPACESIM_GLANCE_UP_LINK 0x0707C4E0 /* Fallback Glance Up button */ -#define DIBUTTON_SPACESIM_GLANCE_DOWN_LINK 0x0707C4E8 /* Fallback Glance Down button */ -#define DIBUTTON_SPACESIM_DEVICE 0x070044FE /* Show input device and controls */ -#define DIBUTTON_SPACESIM_PAUSE 0x070044FC /* Start / Pause / Restart game */ - -/*--- Fighting - First Person - Hand to Hand combat is primary objective ---*/ -#define DIVIRTUAL_FIGHTING_HAND2HAND 0x08000000 -#define DIAXIS_FIGHTINGH_LATERAL 0x08008201 /* Sidestep left/right */ -#define DIAXIS_FIGHTINGH_MOVE 0x08010202 /* Move forward/backward */ -#define DIBUTTON_FIGHTINGH_PUNCH 0x08000401 /* Punch */ -#define DIBUTTON_FIGHTINGH_KICK 0x08000402 /* Kick */ -#define DIBUTTON_FIGHTINGH_BLOCK 0x08000403 /* Block */ -#define DIBUTTON_FIGHTINGH_CROUCH 0x08000404 /* Crouch */ -#define DIBUTTON_FIGHTINGH_JUMP 0x08000405 /* Jump */ -#define DIBUTTON_FIGHTINGH_SPECIAL1 0x08000406 /* Apply first special move */ -#define DIBUTTON_FIGHTINGH_SPECIAL2 0x08000407 /* Apply second special move */ -#define DIBUTTON_FIGHTINGH_MENU 0x080004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIBUTTON_FIGHTINGH_SELECT 0x08004408 /* Select special move */ -#define DIHATSWITCH_FIGHTINGH_SLIDE 0x08004601 /* Look around */ -#define DIBUTTON_FIGHTINGH_DISPLAY 0x08004409 /* Shows next on-screen display option */ -#define DIAXIS_FIGHTINGH_ROTATE 0x08024203 /* Rotate - Turn body left/right */ -#define DIBUTTON_FIGHTINGH_DODGE 0x0800440A /* Dodge */ -#define DIBUTTON_FIGHTINGH_LEFT_LINK 0x0800C4E4 /* Fallback left sidestep button */ -#define DIBUTTON_FIGHTINGH_RIGHT_LINK 0x0800C4EC /* Fallback right sidestep button */ -#define DIBUTTON_FIGHTINGH_FORWARD_LINK 0x080144E0 /* Fallback forward button */ -#define DIBUTTON_FIGHTINGH_BACKWARD_LINK 0x080144E8 /* Fallback backward button */ -#define DIBUTTON_FIGHTINGH_DEVICE 0x080044FE /* Show input device and controls */ -#define DIBUTTON_FIGHTINGH_PAUSE 0x080044FC /* Start / Pause / Restart game */ - -/*--- Fighting - First Person Shooting - Navigation and combat are primary objectives ---*/ -#define DIVIRTUAL_FIGHTING_FPS 0x09000000 -#define DIAXIS_FPS_ROTATE 0x09008201 /* Rotate character left/right */ -#define DIAXIS_FPS_MOVE 0x09010202 /* Move forward/backward */ -#define DIBUTTON_FPS_FIRE 0x09000401 /* Fire */ -#define DIBUTTON_FPS_WEAPONS 0x09000402 /* Select next weapon */ -#define DIBUTTON_FPS_APPLY 0x09000403 /* Use item */ -#define DIBUTTON_FPS_SELECT 0x09000404 /* Select next inventory item */ -#define DIBUTTON_FPS_CROUCH 0x09000405 /* Crouch/ climb down/ swim down */ -#define DIBUTTON_FPS_JUMP 0x09000406 /* Jump/ climb up/ swim up */ -#define DIAXIS_FPS_LOOKUPDOWN 0x09018203 /* Look up / down */ -#define DIBUTTON_FPS_STRAFE 0x09000407 /* Enable strafing while active */ -#define DIBUTTON_FPS_MENU 0x090004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIHATSWITCH_FPS_GLANCE 0x09004601 /* Look around */ -#define DIBUTTON_FPS_DISPLAY 0x09004408 /* Shows next on-screen display option/ map */ -#define DIAXIS_FPS_SIDESTEP 0x09024204 /* Sidestep */ -#define DIBUTTON_FPS_DODGE 0x09004409 /* Dodge */ -#define DIBUTTON_FPS_GLANCEL 0x0900440A /* Glance Left */ -#define DIBUTTON_FPS_GLANCER 0x0900440B /* Glance Right */ -#define DIBUTTON_FPS_FIRESECONDARY 0x0900440C /* Alternative fire button */ -#define DIBUTTON_FPS_ROTATE_LEFT_LINK 0x0900C4E4 /* Fallback rotate left button */ -#define DIBUTTON_FPS_ROTATE_RIGHT_LINK 0x0900C4EC /* Fallback rotate right button */ -#define DIBUTTON_FPS_FORWARD_LINK 0x090144E0 /* Fallback forward button */ -#define DIBUTTON_FPS_BACKWARD_LINK 0x090144E8 /* Fallback backward button */ -#define DIBUTTON_FPS_GLANCE_UP_LINK 0x0901C4E0 /* Fallback look up button */ -#define DIBUTTON_FPS_GLANCE_DOWN_LINK 0x0901C4E8 /* Fallback look down button */ -#define DIBUTTON_FPS_STEP_LEFT_LINK 0x090244E4 /* Fallback step left button */ -#define DIBUTTON_FPS_STEP_RIGHT_LINK 0x090244EC /* Fallback step right button */ -#define DIBUTTON_FPS_DEVICE 0x090044FE /* Show input device and controls */ -#define DIBUTTON_FPS_PAUSE 0x090044FC /* Start / Pause / Restart game */ - -/*--- Fighting - Third Person action - Perspective of camera is behind the main character ---*/ -#define DIVIRTUAL_FIGHTING_THIRDPERSON 0x0A000000 -#define DIAXIS_TPS_TURN 0x0A020201 /* Turn left/right */ -#define DIAXIS_TPS_MOVE 0x0A010202 /* Move forward/backward */ -#define DIBUTTON_TPS_RUN 0x0A000401 /* Run or walk toggle switch */ -#define DIBUTTON_TPS_ACTION 0x0A000402 /* Action Button */ -#define DIBUTTON_TPS_SELECT 0x0A000403 /* Select next weapon */ -#define DIBUTTON_TPS_USE 0x0A000404 /* Use inventory item currently selected */ -#define DIBUTTON_TPS_JUMP 0x0A000405 /* Character Jumps */ -#define DIBUTTON_TPS_MENU 0x0A0004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIHATSWITCH_TPS_GLANCE 0x0A004601 /* Look around */ -#define DIBUTTON_TPS_VIEW 0x0A004406 /* Select camera view */ -#define DIBUTTON_TPS_STEPLEFT 0x0A004407 /* Character takes a left step */ -#define DIBUTTON_TPS_STEPRIGHT 0x0A004408 /* Character takes a right step */ -#define DIAXIS_TPS_STEP 0x0A00C203 /* Character steps left/right */ -#define DIBUTTON_TPS_DODGE 0x0A004409 /* Character dodges or ducks */ -#define DIBUTTON_TPS_INVENTORY 0x0A00440A /* Cycle through inventory */ -#define DIBUTTON_TPS_TURN_LEFT_LINK 0x0A0244E4 /* Fallback turn left button */ -#define DIBUTTON_TPS_TURN_RIGHT_LINK 0x0A0244EC /* Fallback turn right button */ -#define DIBUTTON_TPS_FORWARD_LINK 0x0A0144E0 /* Fallback forward button */ -#define DIBUTTON_TPS_BACKWARD_LINK 0x0A0144E8 /* Fallback backward button */ -#define DIBUTTON_TPS_GLANCE_UP_LINK 0x0A07C4E0 /* Fallback look up button */ -#define DIBUTTON_TPS_GLANCE_DOWN_LINK 0x0A07C4E8 /* Fallback look down button */ -#define DIBUTTON_TPS_GLANCE_LEFT_LINK 0x0A07C4E4 /* Fallback glance up button */ -#define DIBUTTON_TPS_GLANCE_RIGHT_LINK 0x0A07C4EC /* Fallback glance right button */ -#define DIBUTTON_TPS_DEVICE 0x0A0044FE /* Show input device and controls */ -#define DIBUTTON_TPS_PAUSE 0x0A0044FC /* Start / Pause / Restart game */ - -/*--- Strategy - Role Playing - Navigation and problem solving are primary actions ---*/ -#define DIVIRTUAL_STRATEGY_ROLEPLAYING 0x0B000000 -#define DIAXIS_STRATEGYR_LATERAL 0x0B008201 /* sidestep - left/right */ -#define DIAXIS_STRATEGYR_MOVE 0x0B010202 /* move forward/backward */ -#define DIBUTTON_STRATEGYR_GET 0x0B000401 /* Acquire item */ -#define DIBUTTON_STRATEGYR_APPLY 0x0B000402 /* Use selected item */ -#define DIBUTTON_STRATEGYR_SELECT 0x0B000403 /* Select nextitem */ -#define DIBUTTON_STRATEGYR_ATTACK 0x0B000404 /* Attack */ -#define DIBUTTON_STRATEGYR_CAST 0x0B000405 /* Cast Spell */ -#define DIBUTTON_STRATEGYR_CROUCH 0x0B000406 /* Crouch */ -#define DIBUTTON_STRATEGYR_JUMP 0x0B000407 /* Jump */ -#define DIBUTTON_STRATEGYR_MENU 0x0B0004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIHATSWITCH_STRATEGYR_GLANCE 0x0B004601 /* Look around */ -#define DIBUTTON_STRATEGYR_MAP 0x0B004408 /* Cycle through map options */ -#define DIBUTTON_STRATEGYR_DISPLAY 0x0B004409 /* Shows next on-screen display option */ -#define DIAXIS_STRATEGYR_ROTATE 0x0B024203 /* Turn body left/right */ -#define DIBUTTON_STRATEGYR_LEFT_LINK 0x0B00C4E4 /* Fallback sidestep left button */ -#define DIBUTTON_STRATEGYR_RIGHT_LINK 0x0B00C4EC /* Fallback sidestep right button */ -#define DIBUTTON_STRATEGYR_FORWARD_LINK 0x0B0144E0 /* Fallback move forward button */ -#define DIBUTTON_STRATEGYR_BACK_LINK 0x0B0144E8 /* Fallback move backward button */ -#define DIBUTTON_STRATEGYR_ROTATE_LEFT_LINK 0x0B0244E4 /* Fallback turn body left button */ -#define DIBUTTON_STRATEGYR_ROTATE_RIGHT_LINK 0x0B0244EC /* Fallback turn body right button */ -#define DIBUTTON_STRATEGYR_DEVICE 0x0B0044FE /* Show input device and controls */ -#define DIBUTTON_STRATEGYR_PAUSE 0x0B0044FC /* Start / Pause / Restart game */ - -/*--- Strategy - Turn based - Navigation and problem solving are primary actions ---*/ -#define DIVIRTUAL_STRATEGY_TURN 0x0C000000 -#define DIAXIS_STRATEGYT_LATERAL 0x0C008201 /* Sidestep left/right */ -#define DIAXIS_STRATEGYT_MOVE 0x0C010202 /* Move forward/backwards */ -#define DIBUTTON_STRATEGYT_SELECT 0x0C000401 /* Select unit or object */ -#define DIBUTTON_STRATEGYT_INSTRUCT 0x0C000402 /* Cycle through instructions */ -#define DIBUTTON_STRATEGYT_APPLY 0x0C000403 /* Apply selected instruction */ -#define DIBUTTON_STRATEGYT_TEAM 0x0C000404 /* Select next team / cycle through all */ -#define DIBUTTON_STRATEGYT_TURN 0x0C000405 /* Indicate turn over */ -#define DIBUTTON_STRATEGYT_MENU 0x0C0004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIBUTTON_STRATEGYT_ZOOM 0x0C004406 /* Zoom - in / out */ -#define DIBUTTON_STRATEGYT_MAP 0x0C004407 /* cycle through map options */ -#define DIBUTTON_STRATEGYT_DISPLAY 0x0C004408 /* shows next on-screen display options */ -#define DIBUTTON_STRATEGYT_LEFT_LINK 0x0C00C4E4 /* Fallback sidestep left button */ -#define DIBUTTON_STRATEGYT_RIGHT_LINK 0x0C00C4EC /* Fallback sidestep right button */ -#define DIBUTTON_STRATEGYT_FORWARD_LINK 0x0C0144E0 /* Fallback move forward button */ -#define DIBUTTON_STRATEGYT_BACK_LINK 0x0C0144E8 /* Fallback move back button */ -#define DIBUTTON_STRATEGYT_DEVICE 0x0C0044FE /* Show input device and controls */ -#define DIBUTTON_STRATEGYT_PAUSE 0x0C0044FC /* Start / Pause / Restart game */ - -/*--- Sports - Hunting - Hunting ---*/ -#define DIVIRTUAL_SPORTS_HUNTING 0x0D000000 -#define DIAXIS_HUNTING_LATERAL 0x0D008201 /* sidestep left/right */ -#define DIAXIS_HUNTING_MOVE 0x0D010202 /* move forward/backwards */ -#define DIBUTTON_HUNTING_FIRE 0x0D000401 /* Fire selected weapon */ -#define DIBUTTON_HUNTING_AIM 0x0D000402 /* Select aim/move */ -#define DIBUTTON_HUNTING_WEAPON 0x0D000403 /* Select next weapon */ -#define DIBUTTON_HUNTING_BINOCULAR 0x0D000404 /* Look through Binoculars */ -#define DIBUTTON_HUNTING_CALL 0x0D000405 /* Make animal call */ -#define DIBUTTON_HUNTING_MAP 0x0D000406 /* View Map */ -#define DIBUTTON_HUNTING_SPECIAL 0x0D000407 /* Special game operation */ -#define DIBUTTON_HUNTING_MENU 0x0D0004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIHATSWITCH_HUNTING_GLANCE 0x0D004601 /* Look around */ -#define DIBUTTON_HUNTING_DISPLAY 0x0D004408 /* show next on-screen display option */ -#define DIAXIS_HUNTING_ROTATE 0x0D024203 /* Turn body left/right */ -#define DIBUTTON_HUNTING_CROUCH 0x0D004409 /* Crouch/ Climb / Swim down */ -#define DIBUTTON_HUNTING_JUMP 0x0D00440A /* Jump/ Climb up / Swim up */ -#define DIBUTTON_HUNTING_FIRESECONDARY 0x0D00440B /* Alternative fire button */ -#define DIBUTTON_HUNTING_LEFT_LINK 0x0D00C4E4 /* Fallback sidestep left button */ -#define DIBUTTON_HUNTING_RIGHT_LINK 0x0D00C4EC /* Fallback sidestep right button */ -#define DIBUTTON_HUNTING_FORWARD_LINK 0x0D0144E0 /* Fallback move forward button */ -#define DIBUTTON_HUNTING_BACK_LINK 0x0D0144E8 /* Fallback move back button */ -#define DIBUTTON_HUNTING_ROTATE_LEFT_LINK 0x0D0244E4 /* Fallback turn body left button */ -#define DIBUTTON_HUNTING_ROTATE_RIGHT_LINK 0x0D0244EC /* Fallback turn body right button */ -#define DIBUTTON_HUNTING_DEVICE 0x0D0044FE /* Show input device and controls */ -#define DIBUTTON_HUNTING_PAUSE 0x0D0044FC /* Start / Pause / Restart game */ - -/*--- Sports - Fishing - Catching Fish is primary objective ---*/ -#define DIVIRTUAL_SPORTS_FISHING 0x0E000000 -#define DIAXIS_FISHING_LATERAL 0x0E008201 /* sidestep left/right */ -#define DIAXIS_FISHING_MOVE 0x0E010202 /* move forward/backwards */ -#define DIBUTTON_FISHING_CAST 0x0E000401 /* Cast line */ -#define DIBUTTON_FISHING_TYPE 0x0E000402 /* Select cast type */ -#define DIBUTTON_FISHING_BINOCULAR 0x0E000403 /* Look through Binocular */ -#define DIBUTTON_FISHING_BAIT 0x0E000404 /* Select type of Bait */ -#define DIBUTTON_FISHING_MAP 0x0E000405 /* View Map */ -#define DIBUTTON_FISHING_MENU 0x0E0004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIHATSWITCH_FISHING_GLANCE 0x0E004601 /* Look around */ -#define DIBUTTON_FISHING_DISPLAY 0x0E004406 /* Show next on-screen display option */ -#define DIAXIS_FISHING_ROTATE 0x0E024203 /* Turn character left / right */ -#define DIBUTTON_FISHING_CROUCH 0x0E004407 /* Crouch/ Climb / Swim down */ -#define DIBUTTON_FISHING_JUMP 0x0E004408 /* Jump/ Climb up / Swim up */ -#define DIBUTTON_FISHING_LEFT_LINK 0x0E00C4E4 /* Fallback sidestep left button */ -#define DIBUTTON_FISHING_RIGHT_LINK 0x0E00C4EC /* Fallback sidestep right button */ -#define DIBUTTON_FISHING_FORWARD_LINK 0x0E0144E0 /* Fallback move forward button */ -#define DIBUTTON_FISHING_BACK_LINK 0x0E0144E8 /* Fallback move back button */ -#define DIBUTTON_FISHING_ROTATE_LEFT_LINK 0x0E0244E4 /* Fallback turn body left button */ -#define DIBUTTON_FISHING_ROTATE_RIGHT_LINK 0x0E0244EC /* Fallback turn body right button */ -#define DIBUTTON_FISHING_DEVICE 0x0E0044FE /* Show input device and controls */ -#define DIBUTTON_FISHING_PAUSE 0x0E0044FC /* Start / Pause / Restart game */ - -/*--- Sports - Baseball - Batting - Batter control is primary objective ---*/ -#define DIVIRTUAL_SPORTS_BASEBALL_BAT 0x0F000000 -#define DIAXIS_BASEBALLB_LATERAL 0x0F008201 /* Aim left / right */ -#define DIAXIS_BASEBALLB_MOVE 0x0F010202 /* Aim up / down */ -#define DIBUTTON_BASEBALLB_SELECT 0x0F000401 /* cycle through swing options */ -#define DIBUTTON_BASEBALLB_NORMAL 0x0F000402 /* normal swing */ -#define DIBUTTON_BASEBALLB_POWER 0x0F000403 /* swing for the fence */ -#define DIBUTTON_BASEBALLB_BUNT 0x0F000404 /* bunt */ -#define DIBUTTON_BASEBALLB_STEAL 0x0F000405 /* Base runner attempts to steal a base */ -#define DIBUTTON_BASEBALLB_BURST 0x0F000406 /* Base runner invokes burst of speed */ -#define DIBUTTON_BASEBALLB_SLIDE 0x0F000407 /* Base runner slides into base */ -#define DIBUTTON_BASEBALLB_CONTACT 0x0F000408 /* Contact swing */ -#define DIBUTTON_BASEBALLB_MENU 0x0F0004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIBUTTON_BASEBALLB_NOSTEAL 0x0F004409 /* Base runner goes back to a base */ -#define DIBUTTON_BASEBALLB_BOX 0x0F00440A /* Enter or exit batting box */ -#define DIBUTTON_BASEBALLB_LEFT_LINK 0x0F00C4E4 /* Fallback sidestep left button */ -#define DIBUTTON_BASEBALLB_RIGHT_LINK 0x0F00C4EC /* Fallback sidestep right button */ -#define DIBUTTON_BASEBALLB_FORWARD_LINK 0x0F0144E0 /* Fallback move forward button */ -#define DIBUTTON_BASEBALLB_BACK_LINK 0x0F0144E8 /* Fallback move back button */ -#define DIBUTTON_BASEBALLB_DEVICE 0x0F0044FE /* Show input device and controls */ -#define DIBUTTON_BASEBALLB_PAUSE 0x0F0044FC /* Start / Pause / Restart game */ - -/*--- Sports - Baseball - Pitching - Pitcher control is primary objective ---*/ -#define DIVIRTUAL_SPORTS_BASEBALL_PITCH 0x10000000 -#define DIAXIS_BASEBALLP_LATERAL 0x10008201 /* Aim left / right */ -#define DIAXIS_BASEBALLP_MOVE 0x10010202 /* Aim up / down */ -#define DIBUTTON_BASEBALLP_SELECT 0x10000401 /* cycle through pitch selections */ -#define DIBUTTON_BASEBALLP_PITCH 0x10000402 /* throw pitch */ -#define DIBUTTON_BASEBALLP_BASE 0x10000403 /* select base to throw to */ -#define DIBUTTON_BASEBALLP_THROW 0x10000404 /* throw to base */ -#define DIBUTTON_BASEBALLP_FAKE 0x10000405 /* Fake a throw to a base */ -#define DIBUTTON_BASEBALLP_MENU 0x100004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIBUTTON_BASEBALLP_WALK 0x10004406 /* Throw intentional walk / pitch out */ -#define DIBUTTON_BASEBALLP_LOOK 0x10004407 /* Look at runners on bases */ -#define DIBUTTON_BASEBALLP_LEFT_LINK 0x1000C4E4 /* Fallback sidestep left button */ -#define DIBUTTON_BASEBALLP_RIGHT_LINK 0x1000C4EC /* Fallback sidestep right button */ -#define DIBUTTON_BASEBALLP_FORWARD_LINK 0x100144E0 /* Fallback move forward button */ -#define DIBUTTON_BASEBALLP_BACK_LINK 0x100144E8 /* Fallback move back button */ -#define DIBUTTON_BASEBALLP_DEVICE 0x100044FE /* Show input device and controls */ -#define DIBUTTON_BASEBALLP_PAUSE 0x100044FC /* Start / Pause / Restart game */ - -/*--- Sports - Baseball - Fielding - Fielder control is primary objective ---*/ -#define DIVIRTUAL_SPORTS_BASEBALL_FIELD 0x11000000 -#define DIAXIS_BASEBALLF_LATERAL 0x11008201 /* Aim left / right */ -#define DIAXIS_BASEBALLF_MOVE 0x11010202 /* Aim up / down */ -#define DIBUTTON_BASEBALLF_NEAREST 0x11000401 /* Switch to fielder nearest to the ball */ -#define DIBUTTON_BASEBALLF_THROW1 0x11000402 /* Make conservative throw */ -#define DIBUTTON_BASEBALLF_THROW2 0x11000403 /* Make aggressive throw */ -#define DIBUTTON_BASEBALLF_BURST 0x11000404 /* Invoke burst of speed */ -#define DIBUTTON_BASEBALLF_JUMP 0x11000405 /* Jump to catch ball */ -#define DIBUTTON_BASEBALLF_DIVE 0x11000406 /* Dive to catch ball */ -#define DIBUTTON_BASEBALLF_MENU 0x110004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIBUTTON_BASEBALLF_SHIFTIN 0x11004407 /* Shift the infield positioning */ -#define DIBUTTON_BASEBALLF_SHIFTOUT 0x11004408 /* Shift the outfield positioning */ -#define DIBUTTON_BASEBALLF_AIM_LEFT_LINK 0x1100C4E4 /* Fallback aim left button */ -#define DIBUTTON_BASEBALLF_AIM_RIGHT_LINK 0x1100C4EC /* Fallback aim right button */ -#define DIBUTTON_BASEBALLF_FORWARD_LINK 0x110144E0 /* Fallback move forward button */ -#define DIBUTTON_BASEBALLF_BACK_LINK 0x110144E8 /* Fallback move back button */ -#define DIBUTTON_BASEBALLF_DEVICE 0x110044FE /* Show input device and controls */ -#define DIBUTTON_BASEBALLF_PAUSE 0x110044FC /* Start / Pause / Restart game */ - -/*--- Sports - Basketball - Offense - Offense ---*/ -#define DIVIRTUAL_SPORTS_BASKETBALL_OFFENSE 0x12000000 -#define DIAXIS_BBALLO_LATERAL 0x12008201 /* left / right */ -#define DIAXIS_BBALLO_MOVE 0x12010202 /* up / down */ -#define DIBUTTON_BBALLO_SHOOT 0x12000401 /* shoot basket */ -#define DIBUTTON_BBALLO_DUNK 0x12000402 /* dunk basket */ -#define DIBUTTON_BBALLO_PASS 0x12000403 /* throw pass */ -#define DIBUTTON_BBALLO_FAKE 0x12000404 /* fake shot or pass */ -#define DIBUTTON_BBALLO_SPECIAL 0x12000405 /* apply special move */ -#define DIBUTTON_BBALLO_PLAYER 0x12000406 /* select next player */ -#define DIBUTTON_BBALLO_BURST 0x12000407 /* invoke burst */ -#define DIBUTTON_BBALLO_CALL 0x12000408 /* call for ball / pass to me */ -#define DIBUTTON_BBALLO_MENU 0x120004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIHATSWITCH_BBALLO_GLANCE 0x12004601 /* scroll view */ -#define DIBUTTON_BBALLO_SCREEN 0x12004409 /* Call for screen */ -#define DIBUTTON_BBALLO_PLAY 0x1200440A /* Call for specific offensive play */ -#define DIBUTTON_BBALLO_JAB 0x1200440B /* Initiate fake drive to basket */ -#define DIBUTTON_BBALLO_POST 0x1200440C /* Perform post move */ -#define DIBUTTON_BBALLO_TIMEOUT 0x1200440D /* Time Out */ -#define DIBUTTON_BBALLO_SUBSTITUTE 0x1200440E /* substitute one player for another */ -#define DIBUTTON_BBALLO_LEFT_LINK 0x1200C4E4 /* Fallback sidestep left button */ -#define DIBUTTON_BBALLO_RIGHT_LINK 0x1200C4EC /* Fallback sidestep right button */ -#define DIBUTTON_BBALLO_FORWARD_LINK 0x120144E0 /* Fallback move forward button */ -#define DIBUTTON_BBALLO_BACK_LINK 0x120144E8 /* Fallback move back button */ -#define DIBUTTON_BBALLO_DEVICE 0x120044FE /* Show input device and controls */ -#define DIBUTTON_BBALLO_PAUSE 0x120044FC /* Start / Pause / Restart game */ - -/*--- Sports - Basketball - Defense - Defense ---*/ -#define DIVIRTUAL_SPORTS_BASKETBALL_DEFENSE 0x13000000 -#define DIAXIS_BBALLD_LATERAL 0x13008201 /* left / right */ -#define DIAXIS_BBALLD_MOVE 0x13010202 /* up / down */ -#define DIBUTTON_BBALLD_JUMP 0x13000401 /* jump to block shot */ -#define DIBUTTON_BBALLD_STEAL 0x13000402 /* attempt to steal ball */ -#define DIBUTTON_BBALLD_FAKE 0x13000403 /* fake block or steal */ -#define DIBUTTON_BBALLD_SPECIAL 0x13000404 /* apply special move */ -#define DIBUTTON_BBALLD_PLAYER 0x13000405 /* select next player */ -#define DIBUTTON_BBALLD_BURST 0x13000406 /* invoke burst */ -#define DIBUTTON_BBALLD_PLAY 0x13000407 /* call for specific defensive play */ -#define DIBUTTON_BBALLD_MENU 0x130004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIHATSWITCH_BBALLD_GLANCE 0x13004601 /* scroll view */ -#define DIBUTTON_BBALLD_TIMEOUT 0x13004408 /* Time Out */ -#define DIBUTTON_BBALLD_SUBSTITUTE 0x13004409 /* substitute one player for another */ -#define DIBUTTON_BBALLD_LEFT_LINK 0x1300C4E4 /* Fallback sidestep left button */ -#define DIBUTTON_BBALLD_RIGHT_LINK 0x1300C4EC /* Fallback sidestep right button */ -#define DIBUTTON_BBALLD_FORWARD_LINK 0x130144E0 /* Fallback move forward button */ -#define DIBUTTON_BBALLD_BACK_LINK 0x130144E8 /* Fallback move back button */ -#define DIBUTTON_BBALLD_DEVICE 0x130044FE /* Show input device and controls */ -#define DIBUTTON_BBALLD_PAUSE 0x130044FC /* Start / Pause / Restart game */ - -/*--- Sports - Football - Play - Play selection ---*/ -#define DIVIRTUAL_SPORTS_FOOTBALL_FIELD 0x14000000 -#define DIBUTTON_FOOTBALLP_PLAY 0x14000401 /* cycle through available plays */ -#define DIBUTTON_FOOTBALLP_SELECT 0x14000402 /* select play */ -#define DIBUTTON_FOOTBALLP_HELP 0x14000403 /* Bring up pop-up help */ -#define DIBUTTON_FOOTBALLP_MENU 0x140004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIBUTTON_FOOTBALLP_DEVICE 0x140044FE /* Show input device and controls */ -#define DIBUTTON_FOOTBALLP_PAUSE 0x140044FC /* Start / Pause / Restart game */ - -/*--- Sports - Football - QB - Offense: Quarterback / Kicker ---*/ -#define DIVIRTUAL_SPORTS_FOOTBALL_QBCK 0x15000000 -#define DIAXIS_FOOTBALLQ_LATERAL 0x15008201 /* Move / Aim: left / right */ -#define DIAXIS_FOOTBALLQ_MOVE 0x15010202 /* Move / Aim: up / down */ -#define DIBUTTON_FOOTBALLQ_SELECT 0x15000401 /* Select */ -#define DIBUTTON_FOOTBALLQ_SNAP 0x15000402 /* snap ball - start play */ -#define DIBUTTON_FOOTBALLQ_JUMP 0x15000403 /* jump over defender */ -#define DIBUTTON_FOOTBALLQ_SLIDE 0x15000404 /* Dive/Slide */ -#define DIBUTTON_FOOTBALLQ_PASS 0x15000405 /* throws pass to receiver */ -#define DIBUTTON_FOOTBALLQ_FAKE 0x15000406 /* pump fake pass or fake kick */ -#define DIBUTTON_FOOTBALLQ_MENU 0x150004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIBUTTON_FOOTBALLQ_FAKESNAP 0x15004407 /* Fake snap */ -#define DIBUTTON_FOOTBALLQ_MOTION 0x15004408 /* Send receivers in motion */ -#define DIBUTTON_FOOTBALLQ_AUDIBLE 0x15004409 /* Change offensive play at line of scrimmage */ -#define DIBUTTON_FOOTBALLQ_LEFT_LINK 0x1500C4E4 /* Fallback sidestep left button */ -#define DIBUTTON_FOOTBALLQ_RIGHT_LINK 0x1500C4EC /* Fallback sidestep right button */ -#define DIBUTTON_FOOTBALLQ_FORWARD_LINK 0x150144E0 /* Fallback move forward button */ -#define DIBUTTON_FOOTBALLQ_BACK_LINK 0x150144E8 /* Fallback move back button */ -#define DIBUTTON_FOOTBALLQ_DEVICE 0x150044FE /* Show input device and controls */ -#define DIBUTTON_FOOTBALLQ_PAUSE 0x150044FC /* Start / Pause / Restart game */ - -/*--- Sports - Football - Offense - Offense - Runner ---*/ -#define DIVIRTUAL_SPORTS_FOOTBALL_OFFENSE 0x16000000 -#define DIAXIS_FOOTBALLO_LATERAL 0x16008201 /* Move / Aim: left / right */ -#define DIAXIS_FOOTBALLO_MOVE 0x16010202 /* Move / Aim: up / down */ -#define DIBUTTON_FOOTBALLO_JUMP 0x16000401 /* jump or hurdle over defender */ -#define DIBUTTON_FOOTBALLO_LEFTARM 0x16000402 /* holds out left arm */ -#define DIBUTTON_FOOTBALLO_RIGHTARM 0x16000403 /* holds out right arm */ -#define DIBUTTON_FOOTBALLO_THROW 0x16000404 /* throw pass or lateral ball to another runner */ -#define DIBUTTON_FOOTBALLO_SPIN 0x16000405 /* Spin to avoid defenders */ -#define DIBUTTON_FOOTBALLO_MENU 0x160004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIBUTTON_FOOTBALLO_JUKE 0x16004406 /* Use special move to avoid defenders */ -#define DIBUTTON_FOOTBALLO_SHOULDER 0x16004407 /* Lower shoulder to run over defenders */ -#define DIBUTTON_FOOTBALLO_TURBO 0x16004408 /* Speed burst past defenders */ -#define DIBUTTON_FOOTBALLO_DIVE 0x16004409 /* Dive over defenders */ -#define DIBUTTON_FOOTBALLO_ZOOM 0x1600440A /* Zoom view in / out */ -#define DIBUTTON_FOOTBALLO_SUBSTITUTE 0x1600440B /* substitute one player for another */ -#define DIBUTTON_FOOTBALLO_LEFT_LINK 0x1600C4E4 /* Fallback sidestep left button */ -#define DIBUTTON_FOOTBALLO_RIGHT_LINK 0x1600C4EC /* Fallback sidestep right button */ -#define DIBUTTON_FOOTBALLO_FORWARD_LINK 0x160144E0 /* Fallback move forward button */ -#define DIBUTTON_FOOTBALLO_BACK_LINK 0x160144E8 /* Fallback move back button */ -#define DIBUTTON_FOOTBALLO_DEVICE 0x160044FE /* Show input device and controls */ -#define DIBUTTON_FOOTBALLO_PAUSE 0x160044FC /* Start / Pause / Restart game */ - -/*--- Sports - Football - Defense - Defense ---*/ -#define DIVIRTUAL_SPORTS_FOOTBALL_DEFENSE 0x17000000 -#define DIAXIS_FOOTBALLD_LATERAL 0x17008201 /* Move / Aim: left / right */ -#define DIAXIS_FOOTBALLD_MOVE 0x17010202 /* Move / Aim: up / down */ -#define DIBUTTON_FOOTBALLD_PLAY 0x17000401 /* cycle through available plays */ -#define DIBUTTON_FOOTBALLD_SELECT 0x17000402 /* select player closest to the ball */ -#define DIBUTTON_FOOTBALLD_JUMP 0x17000403 /* jump to intercept or block */ -#define DIBUTTON_FOOTBALLD_TACKLE 0x17000404 /* tackler runner */ -#define DIBUTTON_FOOTBALLD_FAKE 0x17000405 /* hold down to fake tackle or intercept */ -#define DIBUTTON_FOOTBALLD_SUPERTACKLE 0x17000406 /* Initiate special tackle */ -#define DIBUTTON_FOOTBALLD_MENU 0x170004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIBUTTON_FOOTBALLD_SPIN 0x17004407 /* Spin to beat offensive line */ -#define DIBUTTON_FOOTBALLD_SWIM 0x17004408 /* Swim to beat the offensive line */ -#define DIBUTTON_FOOTBALLD_BULLRUSH 0x17004409 /* Bull rush the offensive line */ -#define DIBUTTON_FOOTBALLD_RIP 0x1700440A /* Rip the offensive line */ -#define DIBUTTON_FOOTBALLD_AUDIBLE 0x1700440B /* Change defensive play at the line of scrimmage */ -#define DIBUTTON_FOOTBALLD_ZOOM 0x1700440C /* Zoom view in / out */ -#define DIBUTTON_FOOTBALLD_SUBSTITUTE 0x1700440D /* substitute one player for another */ -#define DIBUTTON_FOOTBALLD_LEFT_LINK 0x1700C4E4 /* Fallback sidestep left button */ -#define DIBUTTON_FOOTBALLD_RIGHT_LINK 0x1700C4EC /* Fallback sidestep right button */ -#define DIBUTTON_FOOTBALLD_FORWARD_LINK 0x170144E0 /* Fallback move forward button */ -#define DIBUTTON_FOOTBALLD_BACK_LINK 0x170144E8 /* Fallback move back button */ -#define DIBUTTON_FOOTBALLD_DEVICE 0x170044FE /* Show input device and controls */ -#define DIBUTTON_FOOTBALLD_PAUSE 0x170044FC /* Start / Pause / Restart game */ - -/*--- Sports - Golf - ---*/ -#define DIVIRTUAL_SPORTS_GOLF 0x18000000 -#define DIAXIS_GOLF_LATERAL 0x18008201 /* Move / Aim: left / right */ -#define DIAXIS_GOLF_MOVE 0x18010202 /* Move / Aim: up / down */ -#define DIBUTTON_GOLF_SWING 0x18000401 /* swing club */ -#define DIBUTTON_GOLF_SELECT 0x18000402 /* cycle between: club / swing strength / ball arc / ball spin */ -#define DIBUTTON_GOLF_UP 0x18000403 /* increase selection */ -#define DIBUTTON_GOLF_DOWN 0x18000404 /* decrease selection */ -#define DIBUTTON_GOLF_TERRAIN 0x18000405 /* shows terrain detail */ -#define DIBUTTON_GOLF_FLYBY 0x18000406 /* view the hole via a flyby */ -#define DIBUTTON_GOLF_MENU 0x180004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIHATSWITCH_GOLF_SCROLL 0x18004601 /* scroll view */ -#define DIBUTTON_GOLF_ZOOM 0x18004407 /* Zoom view in / out */ -#define DIBUTTON_GOLF_TIMEOUT 0x18004408 /* Call for time out */ -#define DIBUTTON_GOLF_SUBSTITUTE 0x18004409 /* substitute one player for another */ -#define DIBUTTON_GOLF_LEFT_LINK 0x1800C4E4 /* Fallback sidestep left button */ -#define DIBUTTON_GOLF_RIGHT_LINK 0x1800C4EC /* Fallback sidestep right button */ -#define DIBUTTON_GOLF_FORWARD_LINK 0x180144E0 /* Fallback move forward button */ -#define DIBUTTON_GOLF_BACK_LINK 0x180144E8 /* Fallback move back button */ -#define DIBUTTON_GOLF_DEVICE 0x180044FE /* Show input device and controls */ -#define DIBUTTON_GOLF_PAUSE 0x180044FC /* Start / Pause / Restart game */ - -/*--- Sports - Hockey - Offense - Offense ---*/ -#define DIVIRTUAL_SPORTS_HOCKEY_OFFENSE 0x19000000 -#define DIAXIS_HOCKEYO_LATERAL 0x19008201 /* Move / Aim: left / right */ -#define DIAXIS_HOCKEYO_MOVE 0x19010202 /* Move / Aim: up / down */ -#define DIBUTTON_HOCKEYO_SHOOT 0x19000401 /* Shoot */ -#define DIBUTTON_HOCKEYO_PASS 0x19000402 /* pass the puck */ -#define DIBUTTON_HOCKEYO_BURST 0x19000403 /* invoke speed burst */ -#define DIBUTTON_HOCKEYO_SPECIAL 0x19000404 /* invoke special move */ -#define DIBUTTON_HOCKEYO_FAKE 0x19000405 /* hold down to fake pass or kick */ -#define DIBUTTON_HOCKEYO_MENU 0x190004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIHATSWITCH_HOCKEYO_SCROLL 0x19004601 /* scroll view */ -#define DIBUTTON_HOCKEYO_ZOOM 0x19004406 /* Zoom view in / out */ -#define DIBUTTON_HOCKEYO_STRATEGY 0x19004407 /* Invoke coaching menu for strategy help */ -#define DIBUTTON_HOCKEYO_TIMEOUT 0x19004408 /* Call for time out */ -#define DIBUTTON_HOCKEYO_SUBSTITUTE 0x19004409 /* substitute one player for another */ -#define DIBUTTON_HOCKEYO_LEFT_LINK 0x1900C4E4 /* Fallback sidestep left button */ -#define DIBUTTON_HOCKEYO_RIGHT_LINK 0x1900C4EC /* Fallback sidestep right button */ -#define DIBUTTON_HOCKEYO_FORWARD_LINK 0x190144E0 /* Fallback move forward button */ -#define DIBUTTON_HOCKEYO_BACK_LINK 0x190144E8 /* Fallback move back button */ -#define DIBUTTON_HOCKEYO_DEVICE 0x190044FE /* Show input device and controls */ -#define DIBUTTON_HOCKEYO_PAUSE 0x190044FC /* Start / Pause / Restart game */ - -/*--- Sports - Hockey - Defense - Defense ---*/ -#define DIVIRTUAL_SPORTS_HOCKEY_DEFENSE 0x1A000000 -#define DIAXIS_HOCKEYD_LATERAL 0x1A008201 /* Move / Aim: left / right */ -#define DIAXIS_HOCKEYD_MOVE 0x1A010202 /* Move / Aim: up / down */ -#define DIBUTTON_HOCKEYD_PLAYER 0x1A000401 /* control player closest to the puck */ -#define DIBUTTON_HOCKEYD_STEAL 0x1A000402 /* attempt steal */ -#define DIBUTTON_HOCKEYD_BURST 0x1A000403 /* speed burst or body check */ -#define DIBUTTON_HOCKEYD_BLOCK 0x1A000404 /* block puck */ -#define DIBUTTON_HOCKEYD_FAKE 0x1A000405 /* hold down to fake tackle or intercept */ -#define DIBUTTON_HOCKEYD_MENU 0x1A0004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIHATSWITCH_HOCKEYD_SCROLL 0x1A004601 /* scroll view */ -#define DIBUTTON_HOCKEYD_ZOOM 0x1A004406 /* Zoom view in / out */ -#define DIBUTTON_HOCKEYD_STRATEGY 0x1A004407 /* Invoke coaching menu for strategy help */ -#define DIBUTTON_HOCKEYD_TIMEOUT 0x1A004408 /* Call for time out */ -#define DIBUTTON_HOCKEYD_SUBSTITUTE 0x1A004409 /* substitute one player for another */ -#define DIBUTTON_HOCKEYD_LEFT_LINK 0x1A00C4E4 /* Fallback sidestep left button */ -#define DIBUTTON_HOCKEYD_RIGHT_LINK 0x1A00C4EC /* Fallback sidestep right button */ -#define DIBUTTON_HOCKEYD_FORWARD_LINK 0x1A0144E0 /* Fallback move forward button */ -#define DIBUTTON_HOCKEYD_BACK_LINK 0x1A0144E8 /* Fallback move back button */ -#define DIBUTTON_HOCKEYD_DEVICE 0x1A0044FE /* Show input device and controls */ -#define DIBUTTON_HOCKEYD_PAUSE 0x1A0044FC /* Start / Pause / Restart game */ - -/*--- Sports - Hockey - Goalie - Goal tending ---*/ -#define DIVIRTUAL_SPORTS_HOCKEY_GOALIE 0x1B000000 -#define DIAXIS_HOCKEYG_LATERAL 0x1B008201 /* Move / Aim: left / right */ -#define DIAXIS_HOCKEYG_MOVE 0x1B010202 /* Move / Aim: up / down */ -#define DIBUTTON_HOCKEYG_PASS 0x1B000401 /* pass puck */ -#define DIBUTTON_HOCKEYG_POKE 0x1B000402 /* poke / check / hack */ -#define DIBUTTON_HOCKEYG_STEAL 0x1B000403 /* attempt steal */ -#define DIBUTTON_HOCKEYG_BLOCK 0x1B000404 /* block puck */ -#define DIBUTTON_HOCKEYG_MENU 0x1B0004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIHATSWITCH_HOCKEYG_SCROLL 0x1B004601 /* scroll view */ -#define DIBUTTON_HOCKEYG_ZOOM 0x1B004405 /* Zoom view in / out */ -#define DIBUTTON_HOCKEYG_STRATEGY 0x1B004406 /* Invoke coaching menu for strategy help */ -#define DIBUTTON_HOCKEYG_TIMEOUT 0x1B004407 /* Call for time out */ -#define DIBUTTON_HOCKEYG_SUBSTITUTE 0x1B004408 /* substitute one player for another */ -#define DIBUTTON_HOCKEYG_LEFT_LINK 0x1B00C4E4 /* Fallback sidestep left button */ -#define DIBUTTON_HOCKEYG_RIGHT_LINK 0x1B00C4EC /* Fallback sidestep right button */ -#define DIBUTTON_HOCKEYG_FORWARD_LINK 0x1B0144E0 /* Fallback move forward button */ -#define DIBUTTON_HOCKEYG_BACK_LINK 0x1B0144E8 /* Fallback move back button */ -#define DIBUTTON_HOCKEYG_DEVICE 0x1B0044FE /* Show input device and controls */ -#define DIBUTTON_HOCKEYG_PAUSE 0x1B0044FC /* Start / Pause / Restart game */ - -/*--- Sports - Mountain Biking - ---*/ -#define DIVIRTUAL_SPORTS_BIKING_MOUNTAIN 0x1C000000 -#define DIAXIS_BIKINGM_TURN 0x1C008201 /* left / right */ -#define DIAXIS_BIKINGM_PEDAL 0x1C010202 /* Pedal faster / slower / brake */ -#define DIBUTTON_BIKINGM_JUMP 0x1C000401 /* jump over obstacle */ -#define DIBUTTON_BIKINGM_CAMERA 0x1C000402 /* switch camera view */ -#define DIBUTTON_BIKINGM_SPECIAL1 0x1C000403 /* perform first special move */ -#define DIBUTTON_BIKINGM_SELECT 0x1C000404 /* Select */ -#define DIBUTTON_BIKINGM_SPECIAL2 0x1C000405 /* perform second special move */ -#define DIBUTTON_BIKINGM_MENU 0x1C0004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIHATSWITCH_BIKINGM_SCROLL 0x1C004601 /* scroll view */ -#define DIBUTTON_BIKINGM_ZOOM 0x1C004406 /* Zoom view in / out */ -#define DIAXIS_BIKINGM_BRAKE 0x1C044203 /* Brake axis */ -#define DIBUTTON_BIKINGM_LEFT_LINK 0x1C00C4E4 /* Fallback turn left button */ -#define DIBUTTON_BIKINGM_RIGHT_LINK 0x1C00C4EC /* Fallback turn right button */ -#define DIBUTTON_BIKINGM_FASTER_LINK 0x1C0144E0 /* Fallback pedal faster button */ -#define DIBUTTON_BIKINGM_SLOWER_LINK 0x1C0144E8 /* Fallback pedal slower button */ -#define DIBUTTON_BIKINGM_BRAKE_BUTTON_LINK 0x1C0444E8 /* Fallback brake button */ -#define DIBUTTON_BIKINGM_DEVICE 0x1C0044FE /* Show input device and controls */ -#define DIBUTTON_BIKINGM_PAUSE 0x1C0044FC /* Start / Pause / Restart game */ - -/*--- Sports: Skiing / Snowboarding / Skateboarding - ---*/ -#define DIVIRTUAL_SPORTS_SKIING 0x1D000000 -#define DIAXIS_SKIING_TURN 0x1D008201 /* left / right */ -#define DIAXIS_SKIING_SPEED 0x1D010202 /* faster / slower */ -#define DIBUTTON_SKIING_JUMP 0x1D000401 /* Jump */ -#define DIBUTTON_SKIING_CROUCH 0x1D000402 /* crouch down */ -#define DIBUTTON_SKIING_CAMERA 0x1D000403 /* switch camera view */ -#define DIBUTTON_SKIING_SPECIAL1 0x1D000404 /* perform first special move */ -#define DIBUTTON_SKIING_SELECT 0x1D000405 /* Select */ -#define DIBUTTON_SKIING_SPECIAL2 0x1D000406 /* perform second special move */ -#define DIBUTTON_SKIING_MENU 0x1D0004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIHATSWITCH_SKIING_GLANCE 0x1D004601 /* scroll view */ -#define DIBUTTON_SKIING_ZOOM 0x1D004407 /* Zoom view in / out */ -#define DIBUTTON_SKIING_LEFT_LINK 0x1D00C4E4 /* Fallback turn left button */ -#define DIBUTTON_SKIING_RIGHT_LINK 0x1D00C4EC /* Fallback turn right button */ -#define DIBUTTON_SKIING_FASTER_LINK 0x1D0144E0 /* Fallback increase speed button */ -#define DIBUTTON_SKIING_SLOWER_LINK 0x1D0144E8 /* Fallback decrease speed button */ -#define DIBUTTON_SKIING_DEVICE 0x1D0044FE /* Show input device and controls */ -#define DIBUTTON_SKIING_PAUSE 0x1D0044FC /* Start / Pause / Restart game */ - -/*--- Sports - Soccer - Offense - Offense ---*/ -#define DIVIRTUAL_SPORTS_SOCCER_OFFENSE 0x1E000000 -#define DIAXIS_SOCCERO_LATERAL 0x1E008201 /* Move / Aim: left / right */ -#define DIAXIS_SOCCERO_MOVE 0x1E010202 /* Move / Aim: up / down */ -#define DIAXIS_SOCCERO_BEND 0x1E018203 /* Bend to soccer shot/pass */ -#define DIBUTTON_SOCCERO_SHOOT 0x1E000401 /* Shoot the ball */ -#define DIBUTTON_SOCCERO_PASS 0x1E000402 /* Pass */ -#define DIBUTTON_SOCCERO_FAKE 0x1E000403 /* Fake */ -#define DIBUTTON_SOCCERO_PLAYER 0x1E000404 /* Select next player */ -#define DIBUTTON_SOCCERO_SPECIAL1 0x1E000405 /* Apply special move */ -#define DIBUTTON_SOCCERO_SELECT 0x1E000406 /* Select special move */ -#define DIBUTTON_SOCCERO_MENU 0x1E0004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIHATSWITCH_SOCCERO_GLANCE 0x1E004601 /* scroll view */ -#define DIBUTTON_SOCCERO_SUBSTITUTE 0x1E004407 /* Substitute one player for another */ -#define DIBUTTON_SOCCERO_SHOOTLOW 0x1E004408 /* Shoot the ball low */ -#define DIBUTTON_SOCCERO_SHOOTHIGH 0x1E004409 /* Shoot the ball high */ -#define DIBUTTON_SOCCERO_PASSTHRU 0x1E00440A /* Make a thru pass */ -#define DIBUTTON_SOCCERO_SPRINT 0x1E00440B /* Sprint / turbo boost */ -#define DIBUTTON_SOCCERO_CONTROL 0x1E00440C /* Obtain control of the ball */ -#define DIBUTTON_SOCCERO_HEAD 0x1E00440D /* Attempt to head the ball */ -#define DIBUTTON_SOCCERO_LEFT_LINK 0x1E00C4E4 /* Fallback sidestep left button */ -#define DIBUTTON_SOCCERO_RIGHT_LINK 0x1E00C4EC /* Fallback sidestep right button */ -#define DIBUTTON_SOCCERO_FORWARD_LINK 0x1E0144E0 /* Fallback move forward button */ -#define DIBUTTON_SOCCERO_BACK_LINK 0x1E0144E8 /* Fallback move back button */ -#define DIBUTTON_SOCCERO_DEVICE 0x1E0044FE /* Show input device and controls */ -#define DIBUTTON_SOCCERO_PAUSE 0x1E0044FC /* Start / Pause / Restart game */ - -/*--- Sports - Soccer - Defense - Defense ---*/ -#define DIVIRTUAL_SPORTS_SOCCER_DEFENSE 0x1F000000 -#define DIAXIS_SOCCERD_LATERAL 0x1F008201 /* Move / Aim: left / right */ -#define DIAXIS_SOCCERD_MOVE 0x1F010202 /* Move / Aim: up / down */ -#define DIBUTTON_SOCCERD_BLOCK 0x1F000401 /* Attempt to block shot */ -#define DIBUTTON_SOCCERD_STEAL 0x1F000402 /* Attempt to steal ball */ -#define DIBUTTON_SOCCERD_FAKE 0x1F000403 /* Fake a block or a steal */ -#define DIBUTTON_SOCCERD_PLAYER 0x1F000404 /* Select next player */ -#define DIBUTTON_SOCCERD_SPECIAL 0x1F000405 /* Apply special move */ -#define DIBUTTON_SOCCERD_SELECT 0x1F000406 /* Select special move */ -#define DIBUTTON_SOCCERD_SLIDE 0x1F000407 /* Attempt a slide tackle */ -#define DIBUTTON_SOCCERD_MENU 0x1F0004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIHATSWITCH_SOCCERD_GLANCE 0x1F004601 /* scroll view */ -#define DIBUTTON_SOCCERD_FOUL 0x1F004408 /* Initiate a foul / hard-foul */ -#define DIBUTTON_SOCCERD_HEAD 0x1F004409 /* Attempt a Header */ -#define DIBUTTON_SOCCERD_CLEAR 0x1F00440A /* Attempt to clear the ball down the field */ -#define DIBUTTON_SOCCERD_GOALIECHARGE 0x1F00440B /* Make the goalie charge out of the box */ -#define DIBUTTON_SOCCERD_SUBSTITUTE 0x1F00440C /* Substitute one player for another */ -#define DIBUTTON_SOCCERD_LEFT_LINK 0x1F00C4E4 /* Fallback sidestep left button */ -#define DIBUTTON_SOCCERD_RIGHT_LINK 0x1F00C4EC /* Fallback sidestep right button */ -#define DIBUTTON_SOCCERD_FORWARD_LINK 0x1F0144E0 /* Fallback move forward button */ -#define DIBUTTON_SOCCERD_BACK_LINK 0x1F0144E8 /* Fallback move back button */ -#define DIBUTTON_SOCCERD_DEVICE 0x1F0044FE /* Show input device and controls */ -#define DIBUTTON_SOCCERD_PAUSE 0x1F0044FC /* Start / Pause / Restart game */ - -/*--- Sports - Racquet - Tennis - Table-Tennis - Squash ---*/ -#define DIVIRTUAL_SPORTS_RACQUET 0x20000000 -#define DIAXIS_RACQUET_LATERAL 0x20008201 /* Move / Aim: left / right */ -#define DIAXIS_RACQUET_MOVE 0x20010202 /* Move / Aim: up / down */ -#define DIBUTTON_RACQUET_SWING 0x20000401 /* Swing racquet */ -#define DIBUTTON_RACQUET_BACKSWING 0x20000402 /* Swing backhand */ -#define DIBUTTON_RACQUET_SMASH 0x20000403 /* Smash shot */ -#define DIBUTTON_RACQUET_SPECIAL 0x20000404 /* Special shot */ -#define DIBUTTON_RACQUET_SELECT 0x20000405 /* Select special shot */ -#define DIBUTTON_RACQUET_MENU 0x200004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIHATSWITCH_RACQUET_GLANCE 0x20004601 /* scroll view */ -#define DIBUTTON_RACQUET_TIMEOUT 0x20004406 /* Call for time out */ -#define DIBUTTON_RACQUET_SUBSTITUTE 0x20004407 /* Substitute one player for another */ -#define DIBUTTON_RACQUET_LEFT_LINK 0x2000C4E4 /* Fallback sidestep left button */ -#define DIBUTTON_RACQUET_RIGHT_LINK 0x2000C4EC /* Fallback sidestep right button */ -#define DIBUTTON_RACQUET_FORWARD_LINK 0x200144E0 /* Fallback move forward button */ -#define DIBUTTON_RACQUET_BACK_LINK 0x200144E8 /* Fallback move back button */ -#define DIBUTTON_RACQUET_DEVICE 0x200044FE /* Show input device and controls */ -#define DIBUTTON_RACQUET_PAUSE 0x200044FC /* Start / Pause / Restart game */ - -/*--- Arcade- 2D - Side to Side movement ---*/ -#define DIVIRTUAL_ARCADE_SIDE2SIDE 0x21000000 -#define DIAXIS_ARCADES_LATERAL 0x21008201 /* left / right */ -#define DIAXIS_ARCADES_MOVE 0x21010202 /* up / down */ -#define DIBUTTON_ARCADES_THROW 0x21000401 /* throw object */ -#define DIBUTTON_ARCADES_CARRY 0x21000402 /* carry object */ -#define DIBUTTON_ARCADES_ATTACK 0x21000403 /* attack */ -#define DIBUTTON_ARCADES_SPECIAL 0x21000404 /* apply special move */ -#define DIBUTTON_ARCADES_SELECT 0x21000405 /* select special move */ -#define DIBUTTON_ARCADES_MENU 0x210004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIHATSWITCH_ARCADES_VIEW 0x21004601 /* scroll view left / right / up / down */ -#define DIBUTTON_ARCADES_LEFT_LINK 0x2100C4E4 /* Fallback sidestep left button */ -#define DIBUTTON_ARCADES_RIGHT_LINK 0x2100C4EC /* Fallback sidestep right button */ -#define DIBUTTON_ARCADES_FORWARD_LINK 0x210144E0 /* Fallback move forward button */ -#define DIBUTTON_ARCADES_BACK_LINK 0x210144E8 /* Fallback move back button */ -#define DIBUTTON_ARCADES_VIEW_UP_LINK 0x2107C4E0 /* Fallback scroll view up button */ -#define DIBUTTON_ARCADES_VIEW_DOWN_LINK 0x2107C4E8 /* Fallback scroll view down button */ -#define DIBUTTON_ARCADES_VIEW_LEFT_LINK 0x2107C4E4 /* Fallback scroll view left button */ -#define DIBUTTON_ARCADES_VIEW_RIGHT_LINK 0x2107C4EC /* Fallback scroll view right button */ -#define DIBUTTON_ARCADES_DEVICE 0x210044FE /* Show input device and controls */ -#define DIBUTTON_ARCADES_PAUSE 0x210044FC /* Start / Pause / Restart game */ - -/*--- Arcade - Platform Game - Character moves around on screen ---*/ -#define DIVIRTUAL_ARCADE_PLATFORM 0x22000000 -#define DIAXIS_ARCADEP_LATERAL 0x22008201 /* Left / right */ -#define DIAXIS_ARCADEP_MOVE 0x22010202 /* Up / down */ -#define DIBUTTON_ARCADEP_JUMP 0x22000401 /* Jump */ -#define DIBUTTON_ARCADEP_FIRE 0x22000402 /* Fire */ -#define DIBUTTON_ARCADEP_CROUCH 0x22000403 /* Crouch */ -#define DIBUTTON_ARCADEP_SPECIAL 0x22000404 /* Apply special move */ -#define DIBUTTON_ARCADEP_SELECT 0x22000405 /* Select special move */ -#define DIBUTTON_ARCADEP_MENU 0x220004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIHATSWITCH_ARCADEP_VIEW 0x22004601 /* Scroll view */ -#define DIBUTTON_ARCADEP_FIRESECONDARY 0x22004406 /* Alternative fire button */ -#define DIBUTTON_ARCADEP_LEFT_LINK 0x2200C4E4 /* Fallback sidestep left button */ -#define DIBUTTON_ARCADEP_RIGHT_LINK 0x2200C4EC /* Fallback sidestep right button */ -#define DIBUTTON_ARCADEP_FORWARD_LINK 0x220144E0 /* Fallback move forward button */ -#define DIBUTTON_ARCADEP_BACK_LINK 0x220144E8 /* Fallback move back button */ -#define DIBUTTON_ARCADEP_VIEW_UP_LINK 0x2207C4E0 /* Fallback scroll view up button */ -#define DIBUTTON_ARCADEP_VIEW_DOWN_LINK 0x2207C4E8 /* Fallback scroll view down button */ -#define DIBUTTON_ARCADEP_VIEW_LEFT_LINK 0x2207C4E4 /* Fallback scroll view left button */ -#define DIBUTTON_ARCADEP_VIEW_RIGHT_LINK 0x2207C4EC /* Fallback scroll view right button */ -#define DIBUTTON_ARCADEP_DEVICE 0x220044FE /* Show input device and controls */ -#define DIBUTTON_ARCADEP_PAUSE 0x220044FC /* Start / Pause / Restart game */ - -/*--- CAD - 2D Object Control - Controls to select and move objects in 2D ---*/ -#define DIVIRTUAL_CAD_2DCONTROL 0x23000000 -#define DIAXIS_2DCONTROL_LATERAL 0x23008201 /* Move view left / right */ -#define DIAXIS_2DCONTROL_MOVE 0x23010202 /* Move view up / down */ -#define DIAXIS_2DCONTROL_INOUT 0x23018203 /* Zoom - in / out */ -#define DIBUTTON_2DCONTROL_SELECT 0x23000401 /* Select Object */ -#define DIBUTTON_2DCONTROL_SPECIAL1 0x23000402 /* Do first special operation */ -#define DIBUTTON_2DCONTROL_SPECIAL 0x23000403 /* Select special operation */ -#define DIBUTTON_2DCONTROL_SPECIAL2 0x23000404 /* Do second special operation */ -#define DIBUTTON_2DCONTROL_MENU 0x230004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIHATSWITCH_2DCONTROL_HATSWITCH 0x23004601 /* Hat switch */ -#define DIAXIS_2DCONTROL_ROTATEZ 0x23024204 /* Rotate view clockwise / counterclockwise */ -#define DIBUTTON_2DCONTROL_DISPLAY 0x23004405 /* Shows next on-screen display options */ -#define DIBUTTON_2DCONTROL_DEVICE 0x230044FE /* Show input device and controls */ -#define DIBUTTON_2DCONTROL_PAUSE 0x230044FC /* Start / Pause / Restart game */ - -/*--- CAD - 3D object control - Controls to select and move objects within a 3D environment ---*/ -#define DIVIRTUAL_CAD_3DCONTROL 0x24000000 -#define DIAXIS_3DCONTROL_LATERAL 0x24008201 /* Move view left / right */ -#define DIAXIS_3DCONTROL_MOVE 0x24010202 /* Move view up / down */ -#define DIAXIS_3DCONTROL_INOUT 0x24018203 /* Zoom - in / out */ -#define DIBUTTON_3DCONTROL_SELECT 0x24000401 /* Select Object */ -#define DIBUTTON_3DCONTROL_SPECIAL1 0x24000402 /* Do first special operation */ -#define DIBUTTON_3DCONTROL_SPECIAL 0x24000403 /* Select special operation */ -#define DIBUTTON_3DCONTROL_SPECIAL2 0x24000404 /* Do second special operation */ -#define DIBUTTON_3DCONTROL_MENU 0x240004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIHATSWITCH_3DCONTROL_HATSWITCH 0x24004601 /* Hat switch */ -#define DIAXIS_3DCONTROL_ROTATEX 0x24034204 /* Rotate view forward or up / backward or down */ -#define DIAXIS_3DCONTROL_ROTATEY 0x2402C205 /* Rotate view clockwise / counterclockwise */ -#define DIAXIS_3DCONTROL_ROTATEZ 0x24024206 /* Rotate view left / right */ -#define DIBUTTON_3DCONTROL_DISPLAY 0x24004405 /* Show next on-screen display options */ -#define DIBUTTON_3DCONTROL_DEVICE 0x240044FE /* Show input device and controls */ -#define DIBUTTON_3DCONTROL_PAUSE 0x240044FC /* Start / Pause / Restart game */ - -/*--- CAD - 3D Navigation - Fly through - Controls for 3D modeling ---*/ -#define DIVIRTUAL_CAD_FLYBY 0x25000000 -#define DIAXIS_CADF_LATERAL 0x25008201 /* move view left / right */ -#define DIAXIS_CADF_MOVE 0x25010202 /* move view up / down */ -#define DIAXIS_CADF_INOUT 0x25018203 /* in / out */ -#define DIBUTTON_CADF_SELECT 0x25000401 /* Select Object */ -#define DIBUTTON_CADF_SPECIAL1 0x25000402 /* do first special operation */ -#define DIBUTTON_CADF_SPECIAL 0x25000403 /* Select special operation */ -#define DIBUTTON_CADF_SPECIAL2 0x25000404 /* do second special operation */ -#define DIBUTTON_CADF_MENU 0x250004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIHATSWITCH_CADF_HATSWITCH 0x25004601 /* Hat switch */ -#define DIAXIS_CADF_ROTATEX 0x25034204 /* Rotate view forward or up / backward or down */ -#define DIAXIS_CADF_ROTATEY 0x2502C205 /* Rotate view clockwise / counterclockwise */ -#define DIAXIS_CADF_ROTATEZ 0x25024206 /* Rotate view left / right */ -#define DIBUTTON_CADF_DISPLAY 0x25004405 /* shows next on-screen display options */ -#define DIBUTTON_CADF_DEVICE 0x250044FE /* Show input device and controls */ -#define DIBUTTON_CADF_PAUSE 0x250044FC /* Start / Pause / Restart game */ - -/*--- CAD - 3D Model Control - Controls for 3D modeling ---*/ -#define DIVIRTUAL_CAD_MODEL 0x26000000 -#define DIAXIS_CADM_LATERAL 0x26008201 /* move view left / right */ -#define DIAXIS_CADM_MOVE 0x26010202 /* move view up / down */ -#define DIAXIS_CADM_INOUT 0x26018203 /* in / out */ -#define DIBUTTON_CADM_SELECT 0x26000401 /* Select Object */ -#define DIBUTTON_CADM_SPECIAL1 0x26000402 /* do first special operation */ -#define DIBUTTON_CADM_SPECIAL 0x26000403 /* Select special operation */ -#define DIBUTTON_CADM_SPECIAL2 0x26000404 /* do second special operation */ -#define DIBUTTON_CADM_MENU 0x260004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIHATSWITCH_CADM_HATSWITCH 0x26004601 /* Hat switch */ -#define DIAXIS_CADM_ROTATEX 0x26034204 /* Rotate view forward or up / backward or down */ -#define DIAXIS_CADM_ROTATEY 0x2602C205 /* Rotate view clockwise / counterclockwise */ -#define DIAXIS_CADM_ROTATEZ 0x26024206 /* Rotate view left / right */ -#define DIBUTTON_CADM_DISPLAY 0x26004405 /* shows next on-screen display options */ -#define DIBUTTON_CADM_DEVICE 0x260044FE /* Show input device and controls */ -#define DIBUTTON_CADM_PAUSE 0x260044FC /* Start / Pause / Restart game */ - -/*--- Control - Media Equipment - Remote ---*/ -#define DIVIRTUAL_REMOTE_CONTROL 0x27000000 -#define DIAXIS_REMOTE_SLIDER 0x27050201 /* Slider for adjustment: volume / color / bass / etc */ -#define DIBUTTON_REMOTE_MUTE 0x27000401 /* Set volume on current device to zero */ -#define DIBUTTON_REMOTE_SELECT 0x27000402 /* Next/previous: channel/ track / chapter / picture / station */ -#define DIBUTTON_REMOTE_PLAY 0x27002403 /* Start or pause entertainment on current device */ -#define DIBUTTON_REMOTE_CUE 0x27002404 /* Move through current media */ -#define DIBUTTON_REMOTE_REVIEW 0x27002405 /* Move through current media */ -#define DIBUTTON_REMOTE_CHANGE 0x27002406 /* Select next device */ -#define DIBUTTON_REMOTE_RECORD 0x27002407 /* Start recording the current media */ -#define DIBUTTON_REMOTE_MENU 0x270004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIAXIS_REMOTE_SLIDER2 0x27054202 /* Slider for adjustment: volume */ -#define DIBUTTON_REMOTE_TV 0x27005C08 /* Select TV */ -#define DIBUTTON_REMOTE_CABLE 0x27005C09 /* Select cable box */ -#define DIBUTTON_REMOTE_CD 0x27005C0A /* Select CD player */ -#define DIBUTTON_REMOTE_VCR 0x27005C0B /* Select VCR */ -#define DIBUTTON_REMOTE_TUNER 0x27005C0C /* Select tuner */ -#define DIBUTTON_REMOTE_DVD 0x27005C0D /* Select DVD player */ -#define DIBUTTON_REMOTE_ADJUST 0x27005C0E /* Enter device adjustment menu */ -#define DIBUTTON_REMOTE_DIGIT0 0x2700540F /* Digit 0 */ -#define DIBUTTON_REMOTE_DIGIT1 0x27005410 /* Digit 1 */ -#define DIBUTTON_REMOTE_DIGIT2 0x27005411 /* Digit 2 */ -#define DIBUTTON_REMOTE_DIGIT3 0x27005412 /* Digit 3 */ -#define DIBUTTON_REMOTE_DIGIT4 0x27005413 /* Digit 4 */ -#define DIBUTTON_REMOTE_DIGIT5 0x27005414 /* Digit 5 */ -#define DIBUTTON_REMOTE_DIGIT6 0x27005415 /* Digit 6 */ -#define DIBUTTON_REMOTE_DIGIT7 0x27005416 /* Digit 7 */ -#define DIBUTTON_REMOTE_DIGIT8 0x27005417 /* Digit 8 */ -#define DIBUTTON_REMOTE_DIGIT9 0x27005418 /* Digit 9 */ -#define DIBUTTON_REMOTE_DEVICE 0x270044FE /* Show input device and controls */ -#define DIBUTTON_REMOTE_PAUSE 0x270044FC /* Start / Pause / Restart game */ - -/*--- Control- Web - Help or Browser ---*/ -#define DIVIRTUAL_BROWSER_CONTROL 0x28000000 -#define DIAXIS_BROWSER_LATERAL 0x28008201 /* Move on screen pointer */ -#define DIAXIS_BROWSER_MOVE 0x28010202 /* Move on screen pointer */ -#define DIBUTTON_BROWSER_SELECT 0x28000401 /* Select current item */ -#define DIAXIS_BROWSER_VIEW 0x28018203 /* Move view up/down */ -#define DIBUTTON_BROWSER_REFRESH 0x28000402 /* Refresh */ -#define DIBUTTON_BROWSER_MENU 0x280004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIBUTTON_BROWSER_SEARCH 0x28004403 /* Use search tool */ -#define DIBUTTON_BROWSER_STOP 0x28004404 /* Cease current update */ -#define DIBUTTON_BROWSER_HOME 0x28004405 /* Go directly to "home" location */ -#define DIBUTTON_BROWSER_FAVORITES 0x28004406 /* Mark current site as favorite */ -#define DIBUTTON_BROWSER_NEXT 0x28004407 /* Select Next page */ -#define DIBUTTON_BROWSER_PREVIOUS 0x28004408 /* Select Previous page */ -#define DIBUTTON_BROWSER_HISTORY 0x28004409 /* Show/Hide History */ -#define DIBUTTON_BROWSER_PRINT 0x2800440A /* Print current page */ -#define DIBUTTON_BROWSER_DEVICE 0x280044FE /* Show input device and controls */ -#define DIBUTTON_BROWSER_PAUSE 0x280044FC /* Start / Pause / Restart game */ - -/*--- Driving Simulator - Giant Walking Robot - Walking tank with weapons ---*/ -#define DIVIRTUAL_DRIVING_MECHA 0x29000000 -#define DIAXIS_MECHA_STEER 0x29008201 /* Turns mecha left/right */ -#define DIAXIS_MECHA_TORSO 0x29010202 /* Tilts torso forward/backward */ -#define DIAXIS_MECHA_ROTATE 0x29020203 /* Turns torso left/right */ -#define DIAXIS_MECHA_THROTTLE 0x29038204 /* Engine Speed */ -#define DIBUTTON_MECHA_FIRE 0x29000401 /* Fire */ -#define DIBUTTON_MECHA_WEAPONS 0x29000402 /* Select next weapon group */ -#define DIBUTTON_MECHA_TARGET 0x29000403 /* Select closest enemy available target */ -#define DIBUTTON_MECHA_REVERSE 0x29000404 /* Toggles throttle in/out of reverse */ -#define DIBUTTON_MECHA_ZOOM 0x29000405 /* Zoom in/out targeting reticule */ -#define DIBUTTON_MECHA_JUMP 0x29000406 /* Fires jump jets */ -#define DIBUTTON_MECHA_MENU 0x290004FD /* Show menu options */ -/*--- Priority 2 controls ---*/ - -#define DIBUTTON_MECHA_CENTER 0x29004407 /* Center torso to legs */ -#define DIHATSWITCH_MECHA_GLANCE 0x29004601 /* Look around */ -#define DIBUTTON_MECHA_VIEW 0x29004408 /* Cycle through view options */ -#define DIBUTTON_MECHA_FIRESECONDARY 0x29004409 /* Alternative fire button */ -#define DIBUTTON_MECHA_LEFT_LINK 0x2900C4E4 /* Fallback steer left button */ -#define DIBUTTON_MECHA_RIGHT_LINK 0x2900C4EC /* Fallback steer right button */ -#define DIBUTTON_MECHA_FORWARD_LINK 0x290144E0 /* Fallback tilt torso forward button */ -#define DIBUTTON_MECHA_BACK_LINK 0x290144E8 /* Fallback tilt toroso backward button */ -#define DIBUTTON_MECHA_ROTATE_LEFT_LINK 0x290244E4 /* Fallback rotate toroso right button */ -#define DIBUTTON_MECHA_ROTATE_RIGHT_LINK 0x290244EC /* Fallback rotate torso left button */ -#define DIBUTTON_MECHA_FASTER_LINK 0x2903C4E0 /* Fallback increase engine speed */ -#define DIBUTTON_MECHA_SLOWER_LINK 0x2903C4E8 /* Fallback decrease engine speed */ -#define DIBUTTON_MECHA_DEVICE 0x290044FE /* Show input device and controls */ -#define DIBUTTON_MECHA_PAUSE 0x290044FC /* Start / Pause / Restart game */ - -/* - * "ANY" semantics can be used as a last resort to get mappings for actions - * that match nothing in the chosen virtual genre. These semantics will be - * mapped at a lower priority that virtual genre semantics. Also, hardware - * vendors will not be able to provide sensible mappings for these unless - * they provide application specific mappings. - */ -#define DIAXIS_ANY_X_1 0xFF00C201 -#define DIAXIS_ANY_X_2 0xFF00C202 -#define DIAXIS_ANY_Y_1 0xFF014201 -#define DIAXIS_ANY_Y_2 0xFF014202 -#define DIAXIS_ANY_Z_1 0xFF01C201 -#define DIAXIS_ANY_Z_2 0xFF01C202 -#define DIAXIS_ANY_R_1 0xFF024201 -#define DIAXIS_ANY_R_2 0xFF024202 -#define DIAXIS_ANY_U_1 0xFF02C201 -#define DIAXIS_ANY_U_2 0xFF02C202 -#define DIAXIS_ANY_V_1 0xFF034201 -#define DIAXIS_ANY_V_2 0xFF034202 -#define DIAXIS_ANY_A_1 0xFF03C201 -#define DIAXIS_ANY_A_2 0xFF03C202 -#define DIAXIS_ANY_B_1 0xFF044201 -#define DIAXIS_ANY_B_2 0xFF044202 -#define DIAXIS_ANY_C_1 0xFF04C201 -#define DIAXIS_ANY_C_2 0xFF04C202 -#define DIAXIS_ANY_S_1 0xFF054201 -#define DIAXIS_ANY_S_2 0xFF054202 - -#define DIAXIS_ANY_1 0xFF004201 -#define DIAXIS_ANY_2 0xFF004202 -#define DIAXIS_ANY_3 0xFF004203 -#define DIAXIS_ANY_4 0xFF004204 - -#define DIPOV_ANY_1 0xFF004601 -#define DIPOV_ANY_2 0xFF004602 -#define DIPOV_ANY_3 0xFF004603 -#define DIPOV_ANY_4 0xFF004604 - -#define DIBUTTON_ANY(instance) ( 0xFF004400 | instance ) - - -#ifdef __cplusplus -}; -#endif - -#endif /* __DINPUT_INCLUDED__ */ - -/**************************************************************************** - * - * Definitions for non-IDirectInput (VJoyD) features defined more recently - * than the current sdk files - * - ****************************************************************************/ - -#ifdef _INC_MMSYSTEM -#ifndef MMNOJOY - -#ifndef __VJOYDX_INCLUDED__ -#define __VJOYDX_INCLUDED__ - -#ifdef __cplusplus -extern "C" { -#endif - -/* - * Flag to indicate that the dwReserved2 field of the JOYINFOEX structure - * contains mini-driver specific data to be passed by VJoyD to the mini- - * driver instead of doing a poll. - */ -#define JOY_PASSDRIVERDATA 0x10000000l - -/* - * Informs the joystick driver that the configuration has been changed - * and should be reloaded from the registery. - * dwFlags is reserved and should be set to zero - */ -WINMMAPI MMRESULT WINAPI joyConfigChanged( DWORD dwFlags ); - -#ifndef DIJ_RINGZERO -/* - * Invoke the joystick control panel directly, using the passed window handle - * as the parent of the dialog. This API is only supported for compatibility - * purposes; new applications should use the RunControlPanel method of a - * device interface for a game controller. - * The API is called by using the function pointer returned by - * GetProcAddress( hCPL, TEXT("ShowJoyCPL") ) where hCPL is a HMODULE returned - * by LoadLibrary( TEXT("joy.cpl") ). The typedef is provided to allow - * declaration and casting of an appropriately typed variable. - */ -void WINAPI ShowJoyCPL( HWND hWnd ); -typedef void (WINAPI* LPFNSHOWJOYCPL)( HWND hWnd ); -#endif /* DIJ_RINGZERO */ - - -/* - * Hardware Setting indicating that the device is a headtracker - */ -#define JOY_HWS_ISHEADTRACKER 0x02000000l - -/* - * Hardware Setting indicating that the VxD is used to replace - * the standard analog polling - */ -#define JOY_HWS_ISGAMEPORTDRIVER 0x04000000l - -/* - * Hardware Setting indicating that the driver needs a standard - * gameport in order to communicate with the device. - */ -#define JOY_HWS_ISANALOGPORTDRIVER 0x08000000l - -/* - * Hardware Setting indicating that VJoyD should not load this - * driver, it will be loaded externally and will register with - * VJoyD of it's own accord. - */ -#define JOY_HWS_AUTOLOAD 0x10000000l - -/* - * Hardware Setting indicating that the driver acquires any - * resources needed without needing a devnode through VJoyD. - */ -#define JOY_HWS_NODEVNODE 0x20000000l - - -/* - * Hardware Setting indicating that the device is a gameport bus - */ -#define JOY_HWS_ISGAMEPORTBUS 0x80000000l -#define JOY_HWS_GAMEPORTBUSBUSY 0x00000001l - -/* - * Usage Setting indicating that the settings are volatile and - * should be removed if still present on a reboot. - */ -#define JOY_US_VOLATILE 0x00000008L - -#ifdef __cplusplus -}; -#endif - -#endif /* __VJOYDX_INCLUDED__ */ - -#endif /* not MMNOJOY */ -#endif /* _INC_MMSYSTEM */ - -/**************************************************************************** - * - * Definitions for non-IDirectInput (VJoyD) features defined more recently - * than the current ddk files - * - ****************************************************************************/ - -#ifndef DIJ_RINGZERO - -#ifdef _INC_MMDDK -#ifndef MMNOJOYDEV - -#ifndef __VJOYDXD_INCLUDED__ -#define __VJOYDXD_INCLUDED__ -/* - * Poll type in which the do_other field of the JOYOEMPOLLDATA - * structure contains mini-driver specific data passed from an app. - */ -#define JOY_OEMPOLL_PASSDRIVERDATA 7 - -#endif /* __VJOYDXD_INCLUDED__ */ - -#endif /* not MMNOJOYDEV */ -#endif /* _INC_MMDDK */ - -#endif /* DIJ_RINGZERO */ - diff --git a/SDK/Include/dinputd.h b/SDK/Include/dinputd.h deleted file mode 100644 index f534353..0000000 --- a/SDK/Include/dinputd.h +++ /dev/null @@ -1,755 +0,0 @@ -/**************************************************************************** - * - * Copyright (C) 1995-2000 Microsoft Corporation. All Rights Reserved. - * - * File: dinputd.h - * Content: DirectInput include file for device driver implementors - * - ****************************************************************************/ -#ifndef __DINPUTD_INCLUDED__ -#define __DINPUTD_INCLUDED__ - -#ifndef DIRECTINPUT_VERSION -#define DIRECTINPUT_VERSION 0x0800 -#pragma message(__FILE__ ": DIRECTINPUT_VERSION undefined. Defaulting to version 0x0800") -#endif - -#ifdef __cplusplus -extern "C" { -#endif - -/**************************************************************************** - * - * Interfaces - * - ****************************************************************************/ - -#ifndef DIJ_RINGZERO - -DEFINE_GUID(IID_IDirectInputEffectDriver, 0x02538130,0x898F,0x11D0,0x9A,0xD0,0x00,0xA0,0xC9,0xA0,0x6E,0x35); -DEFINE_GUID(IID_IDirectInputJoyConfig, 0x1DE12AB1,0xC9F5,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00); -DEFINE_GUID(IID_IDirectInputPIDDriver, 0xEEC6993A,0xB3FD,0x11D2,0xA9,0x16,0x00,0xC0,0x4F,0xB9,0x86,0x38); - -DEFINE_GUID(IID_IDirectInputJoyConfig8, 0xeb0d7dfa,0x1990,0x4f27,0xb4,0xd6,0xed,0xf2,0xee,0xc4,0xa4,0x4c); - -#endif /* DIJ_RINGZERO */ - - -/**************************************************************************** - * - * IDirectInputEffectDriver - * - ****************************************************************************/ - -typedef struct DIOBJECTATTRIBUTES { - DWORD dwFlags; - WORD wUsagePage; - WORD wUsage; -} DIOBJECTATTRIBUTES, *LPDIOBJECTATTRIBUTES; -typedef const DIOBJECTATTRIBUTES *LPCDIOBJECTATTRIBUTES; - -typedef struct DIFFOBJECTATTRIBUTES { - DWORD dwFFMaxForce; - DWORD dwFFForceResolution; -} DIFFOBJECTATTRIBUTES, *LPDIFFOBJECTATTRIBUTES; -typedef const DIFFOBJECTATTRIBUTES *LPCDIFFOBJECTATTRIBUTES; - -typedef struct DIOBJECTCALIBRATION { - LONG lMin; - LONG lCenter; - LONG lMax; -} DIOBJECTCALIBRATION, *LPDIOBJECTCALIBRATION; -typedef const DIOBJECTCALIBRATION *LPCDIOBJECTCALIBRATION; - -typedef struct DIPOVCALIBRATION { - LONG lMin[5]; - LONG lMax[5]; -} DIPOVCALIBRATION, *LPDIPOVCALIBRATION; -typedef const DIPOVCALIBRATION *LPCDIPOVCALIBRATION; - -typedef struct DIEFFECTATTRIBUTES { - DWORD dwEffectId; - DWORD dwEffType; - DWORD dwStaticParams; - DWORD dwDynamicParams; - DWORD dwCoords; -} DIEFFECTATTRIBUTES, *LPDIEFFECTATTRIBUTES; -typedef const DIEFFECTATTRIBUTES *LPCDIEFFECTATTRIBUTES; - -typedef struct DIFFDEVICEATTRIBUTES { - DWORD dwFlags; - DWORD dwFFSamplePeriod; - DWORD dwFFMinTimeResolution; -} DIFFDEVICEATTRIBUTES, *LPDIFFDEVICEATTRIBUTES; -typedef const DIFFDEVICEATTRIBUTES *LPCDIFFDEVICEATTRIBUTES; - -typedef struct DIDRIVERVERSIONS { - DWORD dwSize; - DWORD dwFirmwareRevision; - DWORD dwHardwareRevision; - DWORD dwFFDriverVersion; -} DIDRIVERVERSIONS, *LPDIDRIVERVERSIONS; -typedef const DIDRIVERVERSIONS *LPCDIDRIVERVERSIONS; - -typedef struct DIDEVICESTATE { - DWORD dwSize; - DWORD dwState; - DWORD dwLoad; -} DIDEVICESTATE, *LPDIDEVICESTATE; - -#define DEV_STS_EFFECT_RUNNING DIEGES_PLAYING - -#ifndef DIJ_RINGZERO - -typedef struct DIHIDFFINITINFO { - DWORD dwSize; - LPWSTR pwszDeviceInterface; - GUID GuidInstance; -} DIHIDFFINITINFO, *LPDIHIDFFINITINFO; - -#undef INTERFACE -#define INTERFACE IDirectInputEffectDriver - -DECLARE_INTERFACE_(IDirectInputEffectDriver, IUnknown) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID * ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirectInputEffectDriver methods ***/ - STDMETHOD(DeviceID)(THIS_ DWORD,DWORD,DWORD,DWORD,LPVOID) PURE; - STDMETHOD(GetVersions)(THIS_ LPDIDRIVERVERSIONS) PURE; - STDMETHOD(Escape)(THIS_ DWORD,DWORD,LPDIEFFESCAPE) PURE; - STDMETHOD(SetGain)(THIS_ DWORD,DWORD) PURE; - STDMETHOD(SendForceFeedbackCommand)(THIS_ DWORD,DWORD) PURE; - STDMETHOD(GetForceFeedbackState)(THIS_ DWORD,LPDIDEVICESTATE) PURE; - STDMETHOD(DownloadEffect)(THIS_ DWORD,DWORD,LPDWORD,LPCDIEFFECT,DWORD) PURE; - STDMETHOD(DestroyEffect)(THIS_ DWORD,DWORD) PURE; - STDMETHOD(StartEffect)(THIS_ DWORD,DWORD,DWORD,DWORD) PURE; - STDMETHOD(StopEffect)(THIS_ DWORD,DWORD) PURE; - STDMETHOD(GetEffectStatus)(THIS_ DWORD,DWORD,LPDWORD) PURE; -}; - -typedef struct IDirectInputEffectDriver *LPDIRECTINPUTEFFECTDRIVER; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectInputEffectDriver_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirectInputEffectDriver_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirectInputEffectDriver_Release(p) (p)->lpVtbl->Release(p) -#define IDirectInputEffectDriver_DeviceID(p,a,b,c,d,e) (p)->lpVtbl->DeviceID(p,a,b,c,d,e) -#define IDirectInputEffectDriver_GetVersions(p,a) (p)->lpVtbl->GetVersions(p,a) -#define IDirectInputEffectDriver_Escape(p,a,b,c) (p)->lpVtbl->Escape(p,a,b,c) -#define IDirectInputEffectDriver_SetGain(p,a,b) (p)->lpVtbl->SetGain(p,a,b) -#define IDirectInputEffectDriver_SendForceFeedbackCommand(p,a,b) (p)->lpVtbl->SendForceFeedbackCommand(p,a,b) -#define IDirectInputEffectDriver_GetForceFeedbackState(p,a,b) (p)->lpVtbl->GetForceFeedbackState(p,a,b) -#define IDirectInputEffectDriver_DownloadEffect(p,a,b,c,d,e) (p)->lpVtbl->DownloadEffect(p,a,b,c,d,e) -#define IDirectInputEffectDriver_DestroyEffect(p,a,b) (p)->lpVtbl->DestroyEffect(p,a,b) -#define IDirectInputEffectDriver_StartEffect(p,a,b,c,d) (p)->lpVtbl->StartEffect(p,a,b,c,d) -#define IDirectInputEffectDriver_StopEffect(p,a,b) (p)->lpVtbl->StopEffect(p,a,b) -#define IDirectInputEffectDriver_GetEffectStatus(p,a,b,c) (p)->lpVtbl->GetEffectStatus(p,a,b,c) -#else -#define IDirectInputEffectDriver_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirectInputEffectDriver_AddRef(p) (p)->AddRef() -#define IDirectInputEffectDriver_Release(p) (p)->Release() -#define IDirectInputEffectDriver_DeviceID(p,a,b,c,d,e) (p)->DeviceID(a,b,c,d,e) -#define IDirectInputEffectDriver_GetVersions(p,a) (p)->GetVersions(a) -#define IDirectInputEffectDriver_Escape(p,a,b,c) (p)->Escape(a,b,c) -#define IDirectInputEffectDriver_SetGain(p,a,b) (p)->SetGain(a,b) -#define IDirectInputEffectDriver_SendForceFeedbackCommand(p,a,b) (p)->SendForceFeedbackCommand(a,b) -#define IDirectInputEffectDriver_GetForceFeedbackState(p,a,b) (p)->GetForceFeedbackState(a,b) -#define IDirectInputEffectDriver_DownloadEffect(p,a,b,c,d,e) (p)->DownloadEffect(a,b,c,d,e) -#define IDirectInputEffectDriver_DestroyEffect(p,a,b) (p)->DestroyEffect(a,b) -#define IDirectInputEffectDriver_StartEffect(p,a,b,c,d) (p)->StartEffect(a,b,c,d) -#define IDirectInputEffectDriver_StopEffect(p,a,b) (p)->StopEffect(a,b) -#define IDirectInputEffectDriver_GetEffectStatus(p,a,b,c) (p)->GetEffectStatus(a,b,c) -#endif - - -#endif /* DIJ_RINGZERO */ - - -/**************************************************************************** - * - * IDirectInputJoyConfig - * - ****************************************************************************/ - -/**************************************************************************** - * - * Definitions copied from the DDK - * - ****************************************************************************/ - -#ifndef JOY_HW_NONE - -/* pre-defined joystick types */ -#define JOY_HW_NONE 0 -#define JOY_HW_CUSTOM 1 -#define JOY_HW_2A_2B_GENERIC 2 -#define JOY_HW_2A_4B_GENERIC 3 -#define JOY_HW_2B_GAMEPAD 4 -#define JOY_HW_2B_FLIGHTYOKE 5 -#define JOY_HW_2B_FLIGHTYOKETHROTTLE 6 -#define JOY_HW_3A_2B_GENERIC 7 -#define JOY_HW_3A_4B_GENERIC 8 -#define JOY_HW_4B_GAMEPAD 9 -#define JOY_HW_4B_FLIGHTYOKE 10 -#define JOY_HW_4B_FLIGHTYOKETHROTTLE 11 -#define JOY_HW_TWO_2A_2B_WITH_Y 12 -#define JOY_HW_LASTENTRY 13 - - -/* calibration flags */ -#define JOY_ISCAL_XY 0x00000001l /* XY are calibrated */ -#define JOY_ISCAL_Z 0x00000002l /* Z is calibrated */ -#define JOY_ISCAL_R 0x00000004l /* R is calibrated */ -#define JOY_ISCAL_U 0x00000008l /* U is calibrated */ -#define JOY_ISCAL_V 0x00000010l /* V is calibrated */ -#define JOY_ISCAL_POV 0x00000020l /* POV is calibrated */ - -/* point of view constants */ -#define JOY_POV_NUMDIRS 4 -#define JOY_POVVAL_FORWARD 0 -#define JOY_POVVAL_BACKWARD 1 -#define JOY_POVVAL_LEFT 2 -#define JOY_POVVAL_RIGHT 3 - -/* Specific settings for joystick hardware */ -#define JOY_HWS_HASZ 0x00000001l /* has Z info? */ -#define JOY_HWS_HASPOV 0x00000002l /* point of view hat present */ -#define JOY_HWS_POVISBUTTONCOMBOS 0x00000004l /* pov done through combo of buttons */ -#define JOY_HWS_POVISPOLL 0x00000008l /* pov done through polling */ -#define JOY_HWS_ISYOKE 0x00000010l /* joystick is a flight yoke */ -#define JOY_HWS_ISGAMEPAD 0x00000020l /* joystick is a game pad */ -#define JOY_HWS_ISCARCTRL 0x00000040l /* joystick is a car controller */ -/* X defaults to J1 X axis */ -#define JOY_HWS_XISJ1Y 0x00000080l /* X is on J1 Y axis */ -#define JOY_HWS_XISJ2X 0x00000100l /* X is on J2 X axis */ -#define JOY_HWS_XISJ2Y 0x00000200l /* X is on J2 Y axis */ -/* Y defaults to J1 Y axis */ -#define JOY_HWS_YISJ1X 0x00000400l /* Y is on J1 X axis */ -#define JOY_HWS_YISJ2X 0x00000800l /* Y is on J2 X axis */ -#define JOY_HWS_YISJ2Y 0x00001000l /* Y is on J2 Y axis */ -/* Z defaults to J2 Y axis */ -#define JOY_HWS_ZISJ1X 0x00002000l /* Z is on J1 X axis */ -#define JOY_HWS_ZISJ1Y 0x00004000l /* Z is on J1 Y axis */ -#define JOY_HWS_ZISJ2X 0x00008000l /* Z is on J2 X axis */ -/* POV defaults to J2 Y axis, if it is not button based */ -#define JOY_HWS_POVISJ1X 0x00010000l /* pov done through J1 X axis */ -#define JOY_HWS_POVISJ1Y 0x00020000l /* pov done through J1 Y axis */ -#define JOY_HWS_POVISJ2X 0x00040000l /* pov done through J2 X axis */ -/* R defaults to J2 X axis */ -#define JOY_HWS_HASR 0x00080000l /* has R (4th axis) info */ -#define JOY_HWS_RISJ1X 0x00100000l /* R done through J1 X axis */ -#define JOY_HWS_RISJ1Y 0x00200000l /* R done through J1 Y axis */ -#define JOY_HWS_RISJ2Y 0x00400000l /* R done through J2 X axis */ -/* U & V for future hardware */ -#define JOY_HWS_HASU 0x00800000l /* has U (5th axis) info */ -#define JOY_HWS_HASV 0x01000000l /* has V (6th axis) info */ - -/* Usage settings */ -#define JOY_US_HASRUDDER 0x00000001l /* joystick configured with rudder */ -#define JOY_US_PRESENT 0x00000002l /* is joystick actually present? */ -#define JOY_US_ISOEM 0x00000004l /* joystick is an OEM defined type */ - -/* reserved for future use -> as link to next possible dword */ -#define JOY_US_RESERVED 0x80000000l /* reserved */ - - -/* Settings for TypeInfo Flags1 */ -#define JOYTYPE_ZEROGAMEENUMOEMDATA 0x00000001l /* Zero GameEnum's OEM data field */ -#define JOYTYPE_NOAUTODETECTGAMEPORT 0x00000002l /* Device does not support Autodetect gameport*/ -#define JOYTYPE_NOHIDDIRECT 0x00000004l /* Do not use HID directly for this device */ -#define JOYTYPE_ANALOGCOMPAT 0x00000008l /* Expose the analog compatible ID */ -#define JOYTYPE_DEFAULTPROPSHEET 0x80000000l /* CPL overrides custom property sheet */ - -/* Settings for TypeInfo Flags2 */ -#define JOYTYPE_DEVICEHIDE 0x00010000l /* Hide unclassified devices */ -#define JOYTYPE_MOUSEHIDE 0x00020000l /* Hide mice */ -#define JOYTYPE_KEYBHIDE 0x00040000l /* Hide keyboards */ -#define JOYTYPE_GAMEHIDE 0x00080000l /* Hide game controllers */ -#define JOYTYPE_HIDEACTIVE 0x00100000l /* Hide flags are active */ -#define JOYTYPE_INFOMASK 0x00E00000l /* Mask for type specific info */ -#define JOYTYPE_INFODEFAULT 0x00000000l /* Use default axis mappings */ -#define JOYTYPE_INFOYYPEDALS 0x00200000l /* Use Y as a combined pedals axis */ -#define JOYTYPE_INFOZYPEDALS 0x00400000l /* Use Z for accelerate, Y for brake */ -#define JOYTYPE_INFOYRPEDALS 0x00600000l /* Use Y for accelerate, R for brake */ -#define JOYTYPE_INFOZRPEDALS 0x00800000l /* Use Z for accelerate, R for brake */ -#define JOYTYPE_INFOZISSLIDER 0x00200000l /* Use Z as a slider */ -#define JOYTYPE_INFOZISZ 0x00400000l /* Use Z as Z axis */ -#define JOYTYPE_ENABLEINPUTREPORT 0x01000000l /* Enable initial input reports */ - -/* struct for storing x,y, z, and rudder values */ -typedef struct joypos_tag { - DWORD dwX; - DWORD dwY; - DWORD dwZ; - DWORD dwR; - DWORD dwU; - DWORD dwV; -} JOYPOS, FAR *LPJOYPOS; - -/* struct for storing ranges */ -typedef struct joyrange_tag { - JOYPOS jpMin; - JOYPOS jpMax; - JOYPOS jpCenter; -} JOYRANGE,FAR *LPJOYRANGE; - -/* - * dwTimeout - value at which to timeout joystick polling - * jrvRanges - range of values app wants returned for axes - * jpDeadZone - area around center to be considered - * as "dead". specified as a percentage - * (0-100). Only X & Y handled by system driver - */ -typedef struct joyreguservalues_tag { - DWORD dwTimeOut; - JOYRANGE jrvRanges; - JOYPOS jpDeadZone; -} JOYREGUSERVALUES, FAR *LPJOYREGUSERVALUES; - -typedef struct joyreghwsettings_tag { - DWORD dwFlags; - DWORD dwNumButtons; -} JOYREGHWSETTINGS, FAR *LPJOYHWSETTINGS; - -/* range of values returned by the hardware (filled in by calibration) */ -/* - * jrvHardware - values returned by hardware - * dwPOVValues - POV values returned by hardware - * dwCalFlags - what has been calibrated - */ -typedef struct joyreghwvalues_tag { - JOYRANGE jrvHardware; - DWORD dwPOVValues[JOY_POV_NUMDIRS]; - DWORD dwCalFlags; -} JOYREGHWVALUES, FAR *LPJOYREGHWVALUES; - -/* hardware configuration */ -/* - * hws - hardware settings - * dwUsageSettings - usage settings - * hwv - values returned by hardware - * dwType - type of joystick - * dwReserved - reserved for OEM drivers - */ -typedef struct joyreghwconfig_tag { - JOYREGHWSETTINGS hws; - DWORD dwUsageSettings; - JOYREGHWVALUES hwv; - DWORD dwType; - DWORD dwReserved; -} JOYREGHWCONFIG, FAR *LPJOYREGHWCONFIG; - -/* joystick calibration info structure */ -typedef struct joycalibrate_tag { - UINT wXbase; - UINT wXdelta; - UINT wYbase; - UINT wYdelta; - UINT wZbase; - UINT wZdelta; -} JOYCALIBRATE; -typedef JOYCALIBRATE FAR *LPJOYCALIBRATE; - -#endif - -#ifndef DIJ_RINGZERO - -#define MAX_JOYSTRING 256 -typedef BOOL (FAR PASCAL * LPDIJOYTYPECALLBACK)(LPCWSTR, LPVOID); - -#ifndef MAX_JOYSTICKOEMVXDNAME -#define MAX_JOYSTICKOEMVXDNAME 260 -#endif - -#define DITC_REGHWSETTINGS 0x00000001 -#define DITC_CLSIDCONFIG 0x00000002 -#define DITC_DISPLAYNAME 0x00000004 -#define DITC_CALLOUT 0x00000008 -#define DITC_HARDWAREID 0x00000010 -#define DITC_FLAGS1 0x00000020 -#define DITC_FLAGS2 0x00000040 -#define DITC_MAPFILE 0x00000080 - - - -/* This structure is defined for DirectX 5.0 compatibility */ - -typedef struct DIJOYTYPEINFO_DX5 { - DWORD dwSize; - JOYREGHWSETTINGS hws; - CLSID clsidConfig; - WCHAR wszDisplayName[MAX_JOYSTRING]; - WCHAR wszCallout[MAX_JOYSTICKOEMVXDNAME]; -} DIJOYTYPEINFO_DX5, *LPDIJOYTYPEINFO_DX5; -typedef const DIJOYTYPEINFO_DX5 *LPCDIJOYTYPEINFO_DX5; - -/* This structure is defined for DirectX 6.1 compatibility */ -typedef struct DIJOYTYPEINFO_DX6 { - DWORD dwSize; - JOYREGHWSETTINGS hws; - CLSID clsidConfig; - WCHAR wszDisplayName[MAX_JOYSTRING]; - WCHAR wszCallout[MAX_JOYSTICKOEMVXDNAME]; - WCHAR wszHardwareId[MAX_JOYSTRING]; - DWORD dwFlags1; -} DIJOYTYPEINFO_DX6, *LPDIJOYTYPEINFO_DX6; -typedef const DIJOYTYPEINFO_DX6 *LPCDIJOYTYPEINFO_DX6; - -typedef struct DIJOYTYPEINFO { - DWORD dwSize; - JOYREGHWSETTINGS hws; - CLSID clsidConfig; - WCHAR wszDisplayName[MAX_JOYSTRING]; - WCHAR wszCallout[MAX_JOYSTICKOEMVXDNAME]; -#if(DIRECTINPUT_VERSION >= 0x05b2) - WCHAR wszHardwareId[MAX_JOYSTRING]; - DWORD dwFlags1; -#if(DIRECTINPUT_VERSION >= 0x0800) - DWORD dwFlags2; - WCHAR wszMapFile[MAX_JOYSTRING]; -#endif /* DIRECTINPUT_VERSION >= 0x0800 */ -#endif /* DIRECTINPUT_VERSION >= 0x05b2 */ -} DIJOYTYPEINFO, *LPDIJOYTYPEINFO; -typedef const DIJOYTYPEINFO *LPCDIJOYTYPEINFO; -#define DIJC_GUIDINSTANCE 0x00000001 -#define DIJC_REGHWCONFIGTYPE 0x00000002 -#define DIJC_GAIN 0x00000004 -#define DIJC_CALLOUT 0x00000008 -#define DIJC_WDMGAMEPORT 0x00000010 - -/* This structure is defined for DirectX 5.0 compatibility */ - -typedef struct DIJOYCONFIG_DX5 { - DWORD dwSize; - GUID guidInstance; - JOYREGHWCONFIG hwc; - DWORD dwGain; - WCHAR wszType[MAX_JOYSTRING]; - WCHAR wszCallout[MAX_JOYSTRING]; -} DIJOYCONFIG_DX5, *LPDIJOYCONFIG_DX5; -typedef const DIJOYCONFIG_DX5 *LPCDIJOYCONFIG_DX5; - -typedef struct DIJOYCONFIG { - DWORD dwSize; - GUID guidInstance; - JOYREGHWCONFIG hwc; - DWORD dwGain; - WCHAR wszType[MAX_JOYSTRING]; - WCHAR wszCallout[MAX_JOYSTRING]; -#if(DIRECTINPUT_VERSION >= 0x05b2) - GUID guidGameport; -#endif /* DIRECTINPUT_VERSION >= 0x05b2 */ - } DIJOYCONFIG, *LPDIJOYCONFIG; -typedef const DIJOYCONFIG *LPCDIJOYCONFIG; - - -#define DIJU_USERVALUES 0x00000001 -#define DIJU_GLOBALDRIVER 0x00000002 -#define DIJU_GAMEPORTEMULATOR 0x00000004 - -typedef struct DIJOYUSERVALUES { - DWORD dwSize; - JOYREGUSERVALUES ruv; - WCHAR wszGlobalDriver[MAX_JOYSTRING]; - WCHAR wszGameportEmulator[MAX_JOYSTRING]; -} DIJOYUSERVALUES, *LPDIJOYUSERVALUES; -typedef const DIJOYUSERVALUES *LPCDIJOYUSERVALUES; - -DEFINE_GUID(GUID_KeyboardClass, 0x4D36E96B,0xE325,0x11CE,0xBF,0xC1,0x08,0x00,0x2B,0xE1,0x03,0x18); -DEFINE_GUID(GUID_MediaClass, 0x4D36E96C,0xE325,0x11CE,0xBF,0xC1,0x08,0x00,0x2B,0xE1,0x03,0x18); -DEFINE_GUID(GUID_MouseClass, 0x4D36E96F,0xE325,0x11CE,0xBF,0xC1,0x08,0x00,0x2B,0xE1,0x03,0x18); -DEFINE_GUID(GUID_HIDClass, 0x745A17A0,0x74D3,0x11D0,0xB6,0xFE,0x00,0xA0,0xC9,0x0F,0x57,0xDA); - -#undef INTERFACE -#define INTERFACE IDirectInputJoyConfig - -DECLARE_INTERFACE_(IDirectInputJoyConfig, IUnknown) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID * ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirectInputJoyConfig methods ***/ - STDMETHOD(Acquire)(THIS) PURE; - STDMETHOD(Unacquire)(THIS) PURE; - STDMETHOD(SetCooperativeLevel)(THIS_ HWND,DWORD) PURE; - STDMETHOD(SendNotify)(THIS) PURE; - STDMETHOD(EnumTypes)(THIS_ LPDIJOYTYPECALLBACK,LPVOID) PURE; - STDMETHOD(GetTypeInfo)(THIS_ LPCWSTR,LPDIJOYTYPEINFO,DWORD) PURE; - STDMETHOD(SetTypeInfo)(THIS_ LPCWSTR,LPCDIJOYTYPEINFO,DWORD) PURE; - STDMETHOD(DeleteType)(THIS_ LPCWSTR) PURE; - STDMETHOD(GetConfig)(THIS_ UINT,LPDIJOYCONFIG,DWORD) PURE; - STDMETHOD(SetConfig)(THIS_ UINT,LPCDIJOYCONFIG,DWORD) PURE; - STDMETHOD(DeleteConfig)(THIS_ UINT) PURE; - STDMETHOD(GetUserValues)(THIS_ LPDIJOYUSERVALUES,DWORD) PURE; - STDMETHOD(SetUserValues)(THIS_ LPCDIJOYUSERVALUES,DWORD) PURE; - STDMETHOD(AddNewHardware)(THIS_ HWND,REFGUID) PURE; - STDMETHOD(OpenTypeKey)(THIS_ LPCWSTR,DWORD,PHKEY) PURE; - STDMETHOD(OpenConfigKey)(THIS_ UINT,DWORD,PHKEY) PURE; -}; - -typedef struct IDirectInputJoyConfig *LPDIRECTINPUTJOYCONFIG; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectInputJoyConfig_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirectInputJoyConfig_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirectInputJoyConfig_Release(p) (p)->lpVtbl->Release(p) -#define IDirectInputJoyConfig_Acquire(p) (p)->lpVtbl->Acquire(p) -#define IDirectInputJoyConfig_Unacquire(p) (p)->lpVtbl->Unacquire(p) -#define IDirectInputJoyConfig_SetCooperativeLevel(p,a,b) (p)->lpVtbl->SetCooperativeLevel(p,a,b) -#define IDirectInputJoyConfig_SendNotify(p) (p)->lpVtbl->SendNotify(p) -#define IDirectInputJoyConfig_EnumTypes(p,a,b) (p)->lpVtbl->EnumTypes(p,a,b) -#define IDirectInputJoyConfig_GetTypeInfo(p,a,b,c) (p)->lpVtbl->GetTypeInfo(p,a,b,c) -#define IDirectInputJoyConfig_SetTypeInfo(p,a,b,c) (p)->lpVtbl->SetTypeInfo(p,a,b,c) -#define IDirectInputJoyConfig_DeleteType(p,a) (p)->lpVtbl->DeleteType(p,a) -#define IDirectInputJoyConfig_GetConfig(p,a,b,c) (p)->lpVtbl->GetConfig(p,a,b,c) -#define IDirectInputJoyConfig_SetConfig(p,a,b,c) (p)->lpVtbl->SetConfig(p,a,b,c) -#define IDirectInputJoyConfig_DeleteConfig(p,a) (p)->lpVtbl->DeleteConfig(p,a) -#define IDirectInputJoyConfig_GetUserValues(p,a,b) (p)->lpVtbl->GetUserValues(p,a,b) -#define IDirectInputJoyConfig_SetUserValues(p,a,b) (p)->lpVtbl->SetUserValues(p,a,b) -#define IDirectInputJoyConfig_AddNewHardware(p,a,b) (p)->lpVtbl->AddNewHardware(p,a,b) -#define IDirectInputJoyConfig_OpenTypeKey(p,a,b,c) (p)->lpVtbl->OpenTypeKey(p,a,b,c) -#define IDirectInputJoyConfig_OpenConfigKey(p,a,b,c) (p)->lpVtbl->OpenConfigKey(p,a,b,c) -#else -#define IDirectInputJoyConfig_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirectInputJoyConfig_AddRef(p) (p)->AddRef() -#define IDirectInputJoyConfig_Release(p) (p)->Release() -#define IDirectInputJoyConfig_Acquire(p) (p)->Acquire() -#define IDirectInputJoyConfig_Unacquire(p) (p)->Unacquire() -#define IDirectInputJoyConfig_SetCooperativeLevel(p,a,b) (p)->SetCooperativeLevel(a,b) -#define IDirectInputJoyConfig_SendNotify(p) (p)->SendNotify() -#define IDirectInputJoyConfig_EnumTypes(p,a,b) (p)->EnumTypes(a,b) -#define IDirectInputJoyConfig_GetTypeInfo(p,a,b,c) (p)->GetTypeInfo(a,b,c) -#define IDirectInputJoyConfig_SetTypeInfo(p,a,b,c) (p)->SetTypeInfo(a,b,c) -#define IDirectInputJoyConfig_DeleteType(p,a) (p)->DeleteType(a) -#define IDirectInputJoyConfig_GetConfig(p,a,b,c) (p)->GetConfig(a,b,c) -#define IDirectInputJoyConfig_SetConfig(p,a,b,c) (p)->SetConfig(a,b,c) -#define IDirectInputJoyConfig_DeleteConfig(p,a) (p)->DeleteConfig(a) -#define IDirectInputJoyConfig_GetUserValues(p,a,b) (p)->GetUserValues(a,b) -#define IDirectInputJoyConfig_SetUserValues(p,a,b) (p)->SetUserValues(a,b) -#define IDirectInputJoyConfig_AddNewHardware(p,a,b) (p)->AddNewHardware(a,b) -#define IDirectInputJoyConfig_OpenTypeKey(p,a,b,c) (p)->OpenTypeKey(a,b,c) -#define IDirectInputJoyConfig_OpenConfigKey(p,a,b,c) (p)->OpenConfigKey(a,b,c) -#endif - -#endif /* DIJ_RINGZERO */ - -#if(DIRECTINPUT_VERSION >= 0x0800) - -#ifndef DIJ_RINGZERO - -#undef INTERFACE -#define INTERFACE IDirectInputJoyConfig8 - -DECLARE_INTERFACE_(IDirectInputJoyConfig8, IUnknown) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID * ppvObj) PURE; - STDMETHOD_(ULONG,AddRef)(THIS) PURE; - STDMETHOD_(ULONG,Release)(THIS) PURE; - - /*** IDirectInputJoyConfig8 methods ***/ - STDMETHOD(Acquire)(THIS) PURE; - STDMETHOD(Unacquire)(THIS) PURE; - STDMETHOD(SetCooperativeLevel)(THIS_ HWND,DWORD) PURE; - STDMETHOD(SendNotify)(THIS) PURE; - STDMETHOD(EnumTypes)(THIS_ LPDIJOYTYPECALLBACK,LPVOID) PURE; - STDMETHOD(GetTypeInfo)(THIS_ LPCWSTR,LPDIJOYTYPEINFO,DWORD) PURE; - STDMETHOD(SetTypeInfo)(THIS_ LPCWSTR,LPCDIJOYTYPEINFO,DWORD,LPWSTR) PURE; - STDMETHOD(DeleteType)(THIS_ LPCWSTR) PURE; - STDMETHOD(GetConfig)(THIS_ UINT,LPDIJOYCONFIG,DWORD) PURE; - STDMETHOD(SetConfig)(THIS_ UINT,LPCDIJOYCONFIG,DWORD) PURE; - STDMETHOD(DeleteConfig)(THIS_ UINT) PURE; - STDMETHOD(GetUserValues)(THIS_ LPDIJOYUSERVALUES,DWORD) PURE; - STDMETHOD(SetUserValues)(THIS_ LPCDIJOYUSERVALUES,DWORD) PURE; - STDMETHOD(AddNewHardware)(THIS_ HWND,REFGUID) PURE; - STDMETHOD(OpenTypeKey)(THIS_ LPCWSTR,DWORD,PHKEY) PURE; - STDMETHOD(OpenAppStatusKey)(THIS_ PHKEY) PURE; -}; - -typedef struct IDirectInputJoyConfig8 *LPDIRECTINPUTJOYCONFIG8; - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectInputJoyConfig8_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDirectInputJoyConfig8_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDirectInputJoyConfig8_Release(p) (p)->lpVtbl->Release(p) -#define IDirectInputJoyConfig8_Acquire(p) (p)->lpVtbl->Acquire(p) -#define IDirectInputJoyConfig8_Unacquire(p) (p)->lpVtbl->Unacquire(p) -#define IDirectInputJoyConfig8_SetCooperativeLevel(p,a,b) (p)->lpVtbl->SetCooperativeLevel(p,a,b) -#define IDirectInputJoyConfig8_SendNotify(p) (p)->lpVtbl->SendNotify(p) -#define IDirectInputJoyConfig8_EnumTypes(p,a,b) (p)->lpVtbl->EnumTypes(p,a,b) -#define IDirectInputJoyConfig8_GetTypeInfo(p,a,b,c) (p)->lpVtbl->GetTypeInfo(p,a,b,c) -#define IDirectInputJoyConfig8_SetTypeInfo(p,a,b,c,d) (p)->lpVtbl->SetTypeInfo(p,a,b,c,d) -#define IDirectInputJoyConfig8_DeleteType(p,a) (p)->lpVtbl->DeleteType(p,a) -#define IDirectInputJoyConfig8_GetConfig(p,a,b,c) (p)->lpVtbl->GetConfig(p,a,b,c) -#define IDirectInputJoyConfig8_SetConfig(p,a,b,c) (p)->lpVtbl->SetConfig(p,a,b,c) -#define IDirectInputJoyConfig8_DeleteConfig(p,a) (p)->lpVtbl->DeleteConfig(p,a) -#define IDirectInputJoyConfig8_GetUserValues(p,a,b) (p)->lpVtbl->GetUserValues(p,a,b) -#define IDirectInputJoyConfig8_SetUserValues(p,a,b) (p)->lpVtbl->SetUserValues(p,a,b) -#define IDirectInputJoyConfig8_AddNewHardware(p,a,b) (p)->lpVtbl->AddNewHardware(p,a,b) -#define IDirectInputJoyConfig8_OpenTypeKey(p,a,b,c) (p)->lpVtbl->OpenTypeKey(p,a,b,c) -#define IDirectInputJoyConfig8_OpenAppStatusKey(p,a) (p)->lpVtbl->OpenAppStatusKey(p,a) -#else -#define IDirectInputJoyConfig8_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#define IDirectInputJoyConfig8_AddRef(p) (p)->AddRef() -#define IDirectInputJoyConfig8_Release(p) (p)->Release() -#define IDirectInputJoyConfig8_Acquire(p) (p)->Acquire() -#define IDirectInputJoyConfig8_Unacquire(p) (p)->Unacquire() -#define IDirectInputJoyConfig8_SetCooperativeLevel(p,a,b) (p)->SetCooperativeLevel(a,b) -#define IDirectInputJoyConfig8_SendNotify(p) (p)->SendNotify() -#define IDirectInputJoyConfig8_EnumTypes(p,a,b) (p)->EnumTypes(a,b) -#define IDirectInputJoyConfig8_GetTypeInfo(p,a,b,c) (p)->GetTypeInfo(a,b,c) -#define IDirectInputJoyConfig8_SetTypeInfo(p,a,b,c,d) (p)->SetTypeInfo(a,b,c,d) -#define IDirectInputJoyConfig8_DeleteType(p,a) (p)->DeleteType(a) -#define IDirectInputJoyConfig8_GetConfig(p,a,b,c) (p)->GetConfig(a,b,c) -#define IDirectInputJoyConfig8_SetConfig(p,a,b,c) (p)->SetConfig(a,b,c) -#define IDirectInputJoyConfig8_DeleteConfig(p,a) (p)->DeleteConfig(a) -#define IDirectInputJoyConfig8_GetUserValues(p,a,b) (p)->GetUserValues(a,b) -#define IDirectInputJoyConfig8_SetUserValues(p,a,b) (p)->SetUserValues(a,b) -#define IDirectInputJoyConfig8_AddNewHardware(p,a,b) (p)->AddNewHardware(a,b) -#define IDirectInputJoyConfig8_OpenTypeKey(p,a,b,c) (p)->OpenTypeKey(a,b,c) -#define IDirectInputJoyConfig8_OpenAppStatusKey(p,a) (p)->OpenAppStatusKey(a) -#endif - -#endif /* DIJ_RINGZERO */ - -/**************************************************************************** - * - * Notification Messages - * - ****************************************************************************/ - -/* RegisterWindowMessage with this to get DirectInput notification messages */ -#define DIRECTINPUT_NOTIFICATION_MSGSTRINGA "DIRECTINPUT_NOTIFICATION_MSGSTRING" -#define DIRECTINPUT_NOTIFICATION_MSGSTRINGW L"DIRECTINPUT_NOTIFICATION_MSGSTRING" - -#ifdef UNICODE -#define DIRECTINPUT_NOTIFICATION_MSGSTRING DIRECTINPUT_NOTIFICATION_MSGSTRINGW -#else -#define DIRECTINPUT_NOTIFICATION_MSGSTRING DIRECTINPUT_NOTIFICATION_MSGSTRINGA -#endif - -#define DIMSGWP_NEWAPPSTART 0x00000001 -#define DIMSGWP_DX8APPSTART 0x00000002 -#define DIMSGWP_DX8MAPPERAPPSTART 0x00000003 - -#endif /* DIRECTINPUT_VERSION >= 0x0800 */ - -#define DIAPPIDFLAG_NOTIME 0x00000001 -#define DIAPPIDFLAG_NOSIZE 0x00000002 - -#define DIRECTINPUT_REGSTR_VAL_APPIDFLAGA "AppIdFlag" -#define DIRECTINPUT_REGSTR_KEY_LASTAPPA "MostRecentApplication" -#define DIRECTINPUT_REGSTR_KEY_LASTMAPAPPA "MostRecentMapperApplication" -#define DIRECTINPUT_REGSTR_VAL_VERSIONA "Version" -#define DIRECTINPUT_REGSTR_VAL_NAMEA "Name" -#define DIRECTINPUT_REGSTR_VAL_IDA "Id" -#define DIRECTINPUT_REGSTR_VAL_MAPPERA "UsesMapper" -#define DIRECTINPUT_REGSTR_VAL_LASTSTARTA "MostRecentStart" - -#define DIRECTINPUT_REGSTR_VAL_APPIDFLAGW L"AppIdFlag" -#define DIRECTINPUT_REGSTR_KEY_LASTAPPW L"MostRecentApplication" -#define DIRECTINPUT_REGSTR_KEY_LASTMAPAPPW L"MostRecentMapperApplication" -#define DIRECTINPUT_REGSTR_VAL_VERSIONW L"Version" -#define DIRECTINPUT_REGSTR_VAL_NAMEW L"Name" -#define DIRECTINPUT_REGSTR_VAL_IDW L"Id" -#define DIRECTINPUT_REGSTR_VAL_MAPPERW L"UsesMapper" -#define DIRECTINPUT_REGSTR_VAL_LASTSTARTW L"MostRecentStart" - -#ifdef UNICODE -#define DIRECTINPUT_REGSTR_VAL_APPIDFLAG DIRECTINPUT_REGSTR_VAL_APPIDFLAGW -#define DIRECTINPUT_REGSTR_KEY_LASTAPP DIRECTINPUT_REGSTR_KEY_LASTAPPW -#define DIRECTINPUT_REGSTR_KEY_LASTMAPAPP DIRECTINPUT_REGSTR_KEY_LASTMAPAPPW -#define DIRECTINPUT_REGSTR_VAL_VERSION DIRECTINPUT_REGSTR_VAL_VERSIONW -#define DIRECTINPUT_REGSTR_VAL_NAME DIRECTINPUT_REGSTR_VAL_NAMEW -#define DIRECTINPUT_REGSTR_VAL_ID DIRECTINPUT_REGSTR_VAL_IDW -#define DIRECTINPUT_REGSTR_VAL_MAPPER DIRECTINPUT_REGSTR_VAL_MAPPERW -#define DIRECTINPUT_REGSTR_VAL_LASTSTART DIRECTINPUT_REGSTR_VAL_LASTSTARTW -#else -#define DIRECTINPUT_REGSTR_VAL_APPIDFLAG DIRECTINPUT_REGSTR_VAL_APPIDFLAGA -#define DIRECTINPUT_REGSTR_KEY_LASTAPP DIRECTINPUT_REGSTR_KEY_LASTAPPA -#define DIRECTINPUT_REGSTR_KEY_LASTMAPAPP DIRECTINPUT_REGSTR_KEY_LASTMAPAPPA -#define DIRECTINPUT_REGSTR_VAL_VERSION DIRECTINPUT_REGSTR_VAL_VERSIONA -#define DIRECTINPUT_REGSTR_VAL_NAME DIRECTINPUT_REGSTR_VAL_NAMEA -#define DIRECTINPUT_REGSTR_VAL_ID DIRECTINPUT_REGSTR_VAL_IDA -#define DIRECTINPUT_REGSTR_VAL_MAPPER DIRECTINPUT_REGSTR_VAL_MAPPERA -#define DIRECTINPUT_REGSTR_VAL_LASTSTART DIRECTINPUT_REGSTR_VAL_LASTSTARTA -#endif - - -/**************************************************************************** - * - * Return Codes - * - ****************************************************************************/ - -#define DIERR_NOMOREITEMS \ - MAKE_HRESULT(SEVERITY_ERROR, FACILITY_WIN32, ERROR_NO_MORE_ITEMS) - -/* - * Device driver-specific codes. - */ - -#define DIERR_DRIVERFIRST 0x80040300L -#define DIERR_DRIVERLAST 0x800403FFL - -/* - * Unless the specific driver has been precisely identified, no meaning - * should be attributed to these values other than that the driver - * originated the error. However, to illustrate the types of error that - * may be causing the failure, the PID force feedback driver distributed - * with DirectX 7 could return the following errors: - * - * DIERR_DRIVERFIRST + 1 - * The requested usage was not found. - * DIERR_DRIVERFIRST + 2 - * The parameter block couldn't be downloaded to the device. - * DIERR_DRIVERFIRST + 3 - * PID initialization failed. - * DIERR_DRIVERFIRST + 4 - * The provided values couldn't be scaled. - */ - - -/* - * Device installer errors. - */ - -/* - * Registry entry or DLL for class installer invalid - * or class installer not found. - */ -#define DIERR_INVALIDCLASSINSTALLER 0x80040400L - -/* - * The user cancelled the install operation. - */ -#define DIERR_CANCELLED 0x80040401L - -/* - * The INF file for the selected device could not be - * found or is invalid or is damaged. - */ -#define DIERR_BADINF 0x80040402L - -/**************************************************************************** - * - * Map files - * - ****************************************************************************/ - -/* - * Delete particular data from default map file. - */ -#define DIDIFT_DELETE 0x01000000 - -#ifdef __cplusplus -}; -#endif - -#endif /* __DINPUTD_INCLUDED__ */ diff --git a/SDK/Include/dsconf.h b/SDK/Include/dsconf.h deleted file mode 100644 index 018f65a..0000000 --- a/SDK/Include/dsconf.h +++ /dev/null @@ -1,195 +0,0 @@ -/*==========================================================================; - * - * Copyright (c) Microsoft Corporation. All rights reserved. - * - * File: dsconf.h - * Content: DirectSound configuration interface include file - * - **************************************************************************/ - -#ifndef __DSCONF_INCLUDED__ -#define __DSCONF_INCLUDED__ - -#ifndef __DSOUND_INCLUDED__ -#error dsound.h not included -#endif // __DSOUND_INCLUDED__ - -#ifdef __cplusplus -extern "C" { -#endif // __cplusplus - - -// DirectSound Private Component GUID {11AB3EC0-25EC-11d1-A4D8-00C04FC28ACA} -DEFINE_GUID(CLSID_DirectSoundPrivate, 0x11ab3ec0, 0x25ec, 0x11d1, 0xa4, 0xd8, 0x0, 0xc0, 0x4f, 0xc2, 0x8a, 0xca); - - -// -// DirectSound Device Properties {84624F82-25EC-11d1-A4D8-00C04FC28ACA} -// - -DEFINE_GUID(DSPROPSETID_DirectSoundDevice, 0x84624f82, 0x25ec, 0x11d1, 0xa4, 0xd8, 0x0, 0xc0, 0x4f, 0xc2, 0x8a, 0xca); - -typedef enum -{ - DSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING_A = 1, - DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_1 = 2, - DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_1 = 3, - DSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING_W = 4, - DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_A = 5, - DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_W = 6, - DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_A = 7, - DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_W = 8, -} DSPROPERTY_DIRECTSOUNDDEVICE; - -#if DIRECTSOUND_VERSION >= 0x0700 -#ifdef UNICODE -#define DSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING DSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING_W -#define DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_W -#define DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_W -#else // UNICODE -#define DSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING DSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING_A -#define DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_A -#define DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_A -#endif // UNICODE -#else // DIRECTSOUND_VERSION >= 0x0700 -#define DSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING DSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING_A -#define DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_1 -#define DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_1 -#endif // DIRECTSOUND_VERSION >= 0x0700 - -typedef enum -{ - DIRECTSOUNDDEVICE_TYPE_EMULATED, - DIRECTSOUNDDEVICE_TYPE_VXD, - DIRECTSOUNDDEVICE_TYPE_WDM -} DIRECTSOUNDDEVICE_TYPE; - -typedef enum -{ - DIRECTSOUNDDEVICE_DATAFLOW_RENDER, - DIRECTSOUNDDEVICE_DATAFLOW_CAPTURE -} DIRECTSOUNDDEVICE_DATAFLOW; - - -typedef struct _DSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING_A_DATA -{ - LPSTR DeviceName; // waveIn/waveOut device name - DIRECTSOUNDDEVICE_DATAFLOW DataFlow; // Data flow (i.e. waveIn or waveOut) - GUID DeviceId; // DirectSound device id -} DSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING_A_DATA, *PDSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING_A_DATA; - -typedef struct _DSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING_W_DATA -{ - LPWSTR DeviceName; // waveIn/waveOut device name - DIRECTSOUNDDEVICE_DATAFLOW DataFlow; // Data flow (i.e. waveIn or waveOut) - GUID DeviceId; // DirectSound device id -} DSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING_W_DATA, *PDSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING_W_DATA; - -#ifdef UNICODE -#define DSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING_DATA DSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING_W_DATA -#define PDSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING_DATA PDSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING_W_DATA -#else // UNICODE -#define DSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING_DATA DSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING_A_DATA -#define PDSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING_DATA PDSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING_A_DATA -#endif // UNICODE - -typedef struct _DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_1_DATA -{ - GUID DeviceId; // DirectSound device id - CHAR DescriptionA[0x100]; // Device description (ANSI) - WCHAR DescriptionW[0x100]; // Device description (Unicode) - CHAR ModuleA[MAX_PATH]; // Device driver module (ANSI) - WCHAR ModuleW[MAX_PATH]; // Device driver module (Unicode) - DIRECTSOUNDDEVICE_TYPE Type; // Device type - DIRECTSOUNDDEVICE_DATAFLOW DataFlow; // Device dataflow - ULONG WaveDeviceId; // Wave device id - ULONG Devnode; // Devnode (or DevInst) -} DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_1_DATA, *PDSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_1_DATA; - -typedef struct _DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_A_DATA -{ - DIRECTSOUNDDEVICE_TYPE Type; // Device type - DIRECTSOUNDDEVICE_DATAFLOW DataFlow; // Device dataflow - GUID DeviceId; // DirectSound device id - LPSTR Description; // Device description - LPSTR Module; // Device driver module - LPSTR Interface; // Device interface - ULONG WaveDeviceId; // Wave device id -} DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_A_DATA, *PDSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_A_DATA; - -typedef struct _DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_W_DATA -{ - DIRECTSOUNDDEVICE_TYPE Type; // Device type - DIRECTSOUNDDEVICE_DATAFLOW DataFlow; // Device dataflow - GUID DeviceId; // DirectSound device id - LPWSTR Description; // Device description - LPWSTR Module; // Device driver module - LPWSTR Interface; // Device interface - ULONG WaveDeviceId; // Wave device id -} DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_W_DATA, *PDSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_W_DATA; - -#if DIRECTSOUND_VERSION >= 0x0700 -#ifdef UNICODE -#define DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_DATA DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_W_DATA -#define PDSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_DATA PDSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_W_DATA -#else // UNICODE -#define DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_DATA DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_A_DATA -#define PDSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_DATA PDSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_A_DATA -#endif // UNICODE -#else // DIRECTSOUND_VERSION >= 0x0700 -#define DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_DATA DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_1_DATA -#define PDSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_DATA PDSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_1_DATA -#endif // DIRECTSOUND_VERSION >= 0x0700 - -typedef BOOL (CALLBACK *LPFNDIRECTSOUNDDEVICEENUMERATECALLBACK1)(PDSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_1_DATA, LPVOID); -typedef BOOL (CALLBACK *LPFNDIRECTSOUNDDEVICEENUMERATECALLBACKA)(PDSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_A_DATA, LPVOID); -typedef BOOL (CALLBACK *LPFNDIRECTSOUNDDEVICEENUMERATECALLBACKW)(PDSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_W_DATA, LPVOID); - -#if DIRECTSOUND_VERSION >= 0x0700 -#ifdef UNICODE -#define LPFNDIRECTSOUNDDEVICEENUMERATECALLBACK LPFNDIRECTSOUNDDEVICEENUMERATECALLBACKW -#else // UNICODE -#define LPFNDIRECTSOUNDDEVICEENUMERATECALLBACK LPFNDIRECTSOUNDDEVICEENUMERATECALLBACKA -#endif // UNICODE -#else // DIRECTSOUND_VERSION >= 0x0700 -#define LPFNDIRECTSOUNDDEVICEENUMERATECALLBACK LPFNDIRECTSOUNDDEVICEENUMERATECALLBACK1 -#endif // DIRECTSOUND_VERSION >= 0x0700 - -typedef struct _DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_1_DATA -{ - LPFNDIRECTSOUNDDEVICEENUMERATECALLBACK1 Callback; // Callback function pointer - LPVOID Context; // Callback function context argument -} DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_1_DATA, *PDSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_1_DATA; - -typedef struct _DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_A_DATA -{ - LPFNDIRECTSOUNDDEVICEENUMERATECALLBACKA Callback; // Callback function pointer - LPVOID Context; // Callback function context argument -} DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_A_DATA, *PDSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_A_DATA; - -typedef struct _DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_W_DATA -{ - LPFNDIRECTSOUNDDEVICEENUMERATECALLBACKW Callback; // Callback function pointer - LPVOID Context; // Callback function context argument -} DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_W_DATA, *PDSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_W_DATA; - -#if DIRECTSOUND_VERSION >= 0x0700 -#ifdef UNICODE -#define DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_DATA DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_W_DATA -#define PDSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_DATA PDSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_W_DATA -#else // UNICODE -#define DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_DATA DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_A_DATA -#define PDSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_DATA PDSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_A_DATA -#endif // UNICODE -#else // DIRECTSOUND_VERSION >= 0x0700 -#define DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_DATA DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_1_DATA -#define PDSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_DATA PDSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_1_DATA -#endif // DIRECTSOUND_VERSION >= 0x0700 - - -#ifdef __cplusplus -} -#endif // __cplusplus - -#endif // __DSCONF_INCLUDED__ - diff --git a/SDK/Include/dsetup.h b/SDK/Include/dsetup.h deleted file mode 100644 index ebada13..0000000 --- a/SDK/Include/dsetup.h +++ /dev/null @@ -1,283 +0,0 @@ -/*========================================================================== - * - * Copyright (C) 1995-1997 Microsoft Corporation. All Rights Reserved. - * - * File: dsetup.h - * Content: DirectXSetup, error codes and flags - ***************************************************************************/ - -#ifndef __DSETUP_H__ -#define __DSETUP_H__ - -#include // windows stuff - -#ifdef __cplusplus -extern "C" { -#endif - -#define FOURCC_VERS mmioFOURCC('v','e','r','s') - -// DSETUP Error Codes, must remain compatible with previous setup. -#define DSETUPERR_SUCCESS_RESTART 1 -#define DSETUPERR_SUCCESS 0 -#define DSETUPERR_BADWINDOWSVERSION -1 -#define DSETUPERR_SOURCEFILENOTFOUND -2 -#define DSETUPERR_NOCOPY -5 -#define DSETUPERR_OUTOFDISKSPACE -6 -#define DSETUPERR_CANTFINDINF -7 -#define DSETUPERR_CANTFINDDIR -8 -#define DSETUPERR_INTERNAL -9 -#define DSETUPERR_UNKNOWNOS -11 -#define DSETUPERR_NEWERVERSION -14 -#define DSETUPERR_NOTADMIN -15 -#define DSETUPERR_UNSUPPORTEDPROCESSOR -16 -#define DSETUPERR_MISSINGCAB_MANAGEDDX -17 -#define DSETUPERR_NODOTNETFRAMEWORKINSTALLED -18 -#define DSETUPERR_CABDOWNLOADFAIL -19 -#define DSETUPERR_DXCOMPONENTFILEINUSE -20 -#define DSETUPERR_UNTRUSTEDCABINETFILE -21 - -// DSETUP flags. DirectX 5.0 apps should use these flags only. -#define DSETUP_DDRAWDRV 0x00000008 /* install DirectDraw Drivers */ -#define DSETUP_DSOUNDDRV 0x00000010 /* install DirectSound Drivers */ -#define DSETUP_DXCORE 0x00010000 /* install DirectX runtime */ -#define DSETUP_DIRECTX (DSETUP_DXCORE|DSETUP_DDRAWDRV|DSETUP_DSOUNDDRV) -#define DSETUP_MANAGEDDX 0x00004000 /* OBSOLETE. install managed DirectX */ -#define DSETUP_TESTINSTALL 0x00020000 /* just test install, don't do anything */ - -// These OBSOLETE flags are here for compatibility with pre-DX5 apps only. -// They are present to allow DX3 apps to be recompiled with DX5 and still work. -// DO NOT USE THEM for DX5. They will go away in future DX releases. -#define DSETUP_DDRAW 0x00000001 /* OBSOLETE. install DirectDraw */ -#define DSETUP_DSOUND 0x00000002 /* OBSOLETE. install DirectSound */ -#define DSETUP_DPLAY 0x00000004 /* OBSOLETE. install DirectPlay */ -#define DSETUP_DPLAYSP 0x00000020 /* OBSOLETE. install DirectPlay Providers */ -#define DSETUP_DVIDEO 0x00000040 /* OBSOLETE. install DirectVideo */ -#define DSETUP_D3D 0x00000200 /* OBSOLETE. install Direct3D */ -#define DSETUP_DINPUT 0x00000800 /* OBSOLETE. install DirectInput */ -#define DSETUP_DIRECTXSETUP 0x00001000 /* OBSOLETE. install DirectXSetup DLL's */ -#define DSETUP_NOUI 0x00002000 /* OBSOLETE. install DirectX with NO UI */ -#define DSETUP_PROMPTFORDRIVERS 0x10000000 /* OBSOLETE. prompt when replacing display/audio drivers */ -#define DSETUP_RESTOREDRIVERS 0x20000000 /* OBSOLETE. restore display/audio drivers */ - - - -//****************************************************************** -// DirectX Setup Callback mechanism -//****************************************************************** - -// DSETUP Message Info Codes, passed to callback as Reason parameter. -#define DSETUP_CB_MSG_NOMESSAGE 0 -#define DSETUP_CB_MSG_INTERNAL_ERROR 10 -#define DSETUP_CB_MSG_BEGIN_INSTALL 13 -#define DSETUP_CB_MSG_BEGIN_INSTALL_RUNTIME 14 -#define DSETUP_CB_MSG_PROGRESS 18 -#define DSETUP_CB_MSG_WARNING_DISABLED_COMPONENT 19 - - - - - - -typedef struct _DSETUP_CB_PROGRESS -{ - DWORD dwPhase; - DWORD dwInPhaseMaximum; - DWORD dwInPhaseProgress; - DWORD dwOverallMaximum; - DWORD dwOverallProgress; -} DSETUP_CB_PROGRESS; - - -enum _DSETUP_CB_PROGRESS_PHASE -{ - DSETUP_INITIALIZING, - DSETUP_EXTRACTING, - DSETUP_COPYING, - DSETUP_FINALIZING -}; - - -#ifdef _WIN32 -// -// Data Structures -// -#ifndef UNICODE_ONLY - -typedef struct _DIRECTXREGISTERAPPA { - DWORD dwSize; - DWORD dwFlags; - LPSTR lpszApplicationName; - LPGUID lpGUID; - LPSTR lpszFilename; - LPSTR lpszCommandLine; - LPSTR lpszPath; - LPSTR lpszCurrentDirectory; -} DIRECTXREGISTERAPPA, *PDIRECTXREGISTERAPPA, *LPDIRECTXREGISTERAPPA; - -typedef struct _DIRECTXREGISTERAPP2A { - DWORD dwSize; - DWORD dwFlags; - LPSTR lpszApplicationName; - LPGUID lpGUID; - LPSTR lpszFilename; - LPSTR lpszCommandLine; - LPSTR lpszPath; - LPSTR lpszCurrentDirectory; - LPSTR lpszLauncherName; -} DIRECTXREGISTERAPP2A, *PDIRECTXREGISTERAPP2A, *LPDIRECTXREGISTERAPP2A; - -#endif //!UNICODE_ONLY -#ifndef ANSI_ONLY - -typedef struct _DIRECTXREGISTERAPPW { - DWORD dwSize; - DWORD dwFlags; - LPWSTR lpszApplicationName; - LPGUID lpGUID; - LPWSTR lpszFilename; - LPWSTR lpszCommandLine; - LPWSTR lpszPath; - LPWSTR lpszCurrentDirectory; -} DIRECTXREGISTERAPPW, *PDIRECTXREGISTERAPPW, *LPDIRECTXREGISTERAPPW; - -typedef struct _DIRECTXREGISTERAPP2W { - DWORD dwSize; - DWORD dwFlags; - LPWSTR lpszApplicationName; - LPGUID lpGUID; - LPWSTR lpszFilename; - LPWSTR lpszCommandLine; - LPWSTR lpszPath; - LPWSTR lpszCurrentDirectory; - LPWSTR lpszLauncherName; -} DIRECTXREGISTERAPP2W, *PDIRECTXREGISTERAPP2W, *LPDIRECTXREGISTERAPP2W; -#endif //!ANSI_ONLY -#ifdef UNICODE -typedef DIRECTXREGISTERAPPW DIRECTXREGISTERAPP; -typedef PDIRECTXREGISTERAPPW PDIRECTXREGISTERAPP; -typedef LPDIRECTXREGISTERAPPW LPDIRECTXREGISTERAPP; -typedef DIRECTXREGISTERAPP2W DIRECTXREGISTERAPP2; -typedef PDIRECTXREGISTERAPP2W PDIRECTXREGISTERAPP2; -typedef LPDIRECTXREGISTERAPP2W LPDIRECTXREGISTERAPP2; -#else -typedef DIRECTXREGISTERAPPA DIRECTXREGISTERAPP; -typedef PDIRECTXREGISTERAPPA PDIRECTXREGISTERAPP; -typedef LPDIRECTXREGISTERAPPA LPDIRECTXREGISTERAPP; -typedef DIRECTXREGISTERAPP2A DIRECTXREGISTERAPP2; -typedef PDIRECTXREGISTERAPP2A PDIRECTXREGISTERAPP2; -typedef LPDIRECTXREGISTERAPP2A LPDIRECTXREGISTERAPP2; -#endif // UNICODE - - -// -// API -// - -#ifndef UNICODE_ONLY -INT -WINAPI -DirectXSetupA( - HWND hWnd, - __in_opt LPSTR lpszRootPath, - DWORD dwFlags - ); -#endif //!UNICODE_ONLY -#ifndef ANSI_ONLY -INT -WINAPI -DirectXSetupW( - HWND hWnd, - __in_opt LPWSTR lpszRootPath, - DWORD dwFlags - ); -#endif //!ANSI_ONLY -#ifdef UNICODE -#define DirectXSetup DirectXSetupW -#else -#define DirectXSetup DirectXSetupA -#endif // !UNICODE - -#ifndef UNICODE_ONLY -INT -WINAPI -DirectXRegisterApplicationA( - HWND hWnd, - LPVOID lpDXRegApp - ); -#endif //!UNICODE_ONLY -#ifndef ANSI_ONLY -INT -WINAPI -DirectXRegisterApplicationW( - HWND hWnd, - LPVOID lpDXRegApp - ); -#endif //!ANSI_ONLY -#ifdef UNICODE -#define DirectXRegisterApplication DirectXRegisterApplicationW -#else -#define DirectXRegisterApplication DirectXRegisterApplicationA -#endif // !UNICODE - -INT -WINAPI -DirectXUnRegisterApplication( - HWND hWnd, - LPGUID lpGUID - ); - -// -// Function Pointers -// -#ifdef UNICODE -typedef INT (WINAPI * LPDIRECTXSETUP)(HWND, LPWSTR, DWORD); -typedef INT (WINAPI * LPDIRECTXREGISTERAPPLICATION)(HWND, LPVOID); -#else -typedef INT (WINAPI * LPDIRECTXSETUP)(HWND, LPSTR, DWORD); -typedef INT (WINAPI * LPDIRECTXREGISTERAPPLICATION)(HWND, LPVOID); -#endif // UNICODE - -typedef DWORD (FAR PASCAL * DSETUP_CALLBACK)(DWORD Reason, - DWORD MsgType, /* Same as flags to MessageBox */ - LPSTR szMessage, - LPSTR szName, - void *pInfo); - -INT WINAPI DirectXSetupSetCallback(DSETUP_CALLBACK Callback); -INT WINAPI DirectXSetupGetVersion(DWORD *lpdwVersion, DWORD *lpdwMinorVersion); -INT WINAPI DirectXSetupShowEULA(HWND hWndParent); -#ifndef UNICODE_ONLY -UINT -WINAPI -DirectXSetupGetEULAA( - __out_ecount(cchEULA) LPSTR lpszEULA, - UINT cchEULA, - WORD LangID - ); -#endif //!UNICODE_ONLY -#ifndef ANSI_ONLY -UINT -WINAPI -DirectXSetupGetEULAW( - __out_ecount(cchEULA) LPWSTR lpszEULA, - UINT cchEULA, - WORD LangID - ); -#endif //!ANSI_ONLY -#ifdef UNICODE -#define DirectXSetupGetEULA DirectXSetupGetEULAW -typedef UINT (WINAPI * LPDIRECTXSETUPGETEULA)(LPWSTR, UINT, WORD); -#else -#define DirectXSetupGetEULA DirectXSetupGetEULAA -typedef UINT (WINAPI * LPDIRECTXSETUPGETEULA)(LPSTR, UINT, WORD); -#endif // !UNICODE - -#endif // WIN32 - - -#ifdef __cplusplus -}; -#endif - -#endif diff --git a/SDK/Include/dsound.h b/SDK/Include/dsound.h deleted file mode 100644 index 34e4c30..0000000 --- a/SDK/Include/dsound.h +++ /dev/null @@ -1,2385 +0,0 @@ -/*==========================================================================; - * - * Copyright (c) Microsoft Corporation. All rights reserved. - * - * File: dsound.h - * Content: DirectSound include file - * - **************************************************************************/ - -#define COM_NO_WINDOWS_H -#include -#include -#include - -#ifndef DIRECTSOUND_VERSION - -#if (NTDDI_VERSION < NTDDI_WINXP) /* Windows 2000 */ -#define DIRECTSOUND_VERSION 0x0700 /* Version 7.0 */ -#elif (NTDDI_VERSION < NTDDI_WINXPSP2 || NTDDI_VERSION == NTDDI_WS03) /* Windows XP and SP1, or Windows Server 2003 */ -#define DIRECTSOUND_VERSION 0x0800 /* Version 8.0 */ -#else /* Windows XP SP2 and higher, Windows Server 2003 SP1 and higher, Longhorn, or higher */ -#define DIRECTSOUND_VERSION 0x0900 /* Version 9.0 */ -#endif - -#endif // DIRECTSOUND_VERSION - -#ifdef __cplusplus -extern "C" { -#endif // __cplusplus - -#ifndef __DSOUND_INCLUDED__ -#define __DSOUND_INCLUDED__ - -/* Type definitions shared with Direct3D */ - -#ifndef DX_SHARED_DEFINES - -typedef float D3DVALUE, *LPD3DVALUE; - -#ifndef D3DCOLOR_DEFINED -typedef DWORD D3DCOLOR; -#define D3DCOLOR_DEFINED -#endif - -#ifndef LPD3DCOLOR_DEFINED -typedef DWORD *LPD3DCOLOR; -#define LPD3DCOLOR_DEFINED -#endif - -#ifndef D3DVECTOR_DEFINED -typedef struct _D3DVECTOR { - float x; - float y; - float z; -} D3DVECTOR; -#define D3DVECTOR_DEFINED -#endif - -#ifndef LPD3DVECTOR_DEFINED -typedef D3DVECTOR *LPD3DVECTOR; -#define LPD3DVECTOR_DEFINED -#endif - -#define DX_SHARED_DEFINES -#endif // DX_SHARED_DEFINES - -#define _FACDS 0x878 /* DirectSound's facility code */ -#define MAKE_DSHRESULT(code) MAKE_HRESULT(1, _FACDS, code) - -// DirectSound Component GUID {47D4D946-62E8-11CF-93BC-444553540000} -DEFINE_GUID(CLSID_DirectSound, 0x47d4d946, 0x62e8, 0x11cf, 0x93, 0xbc, 0x44, 0x45, 0x53, 0x54, 0x0, 0x0); - -// DirectSound 8.0 Component GUID {3901CC3F-84B5-4FA4-BA35-AA8172B8A09B} -DEFINE_GUID(CLSID_DirectSound8, 0x3901cc3f, 0x84b5, 0x4fa4, 0xba, 0x35, 0xaa, 0x81, 0x72, 0xb8, 0xa0, 0x9b); - -// DirectSound Capture Component GUID {B0210780-89CD-11D0-AF08-00A0C925CD16} -DEFINE_GUID(CLSID_DirectSoundCapture, 0xb0210780, 0x89cd, 0x11d0, 0xaf, 0x8, 0x0, 0xa0, 0xc9, 0x25, 0xcd, 0x16); - -// DirectSound 8.0 Capture Component GUID {E4BCAC13-7F99-4908-9A8E-74E3BF24B6E1} -DEFINE_GUID(CLSID_DirectSoundCapture8, 0xe4bcac13, 0x7f99, 0x4908, 0x9a, 0x8e, 0x74, 0xe3, 0xbf, 0x24, 0xb6, 0xe1); - -// DirectSound Full Duplex Component GUID {FEA4300C-7959-4147-B26A-2377B9E7A91D} -DEFINE_GUID(CLSID_DirectSoundFullDuplex, 0xfea4300c, 0x7959, 0x4147, 0xb2, 0x6a, 0x23, 0x77, 0xb9, 0xe7, 0xa9, 0x1d); - - -// DirectSound default playback device GUID {DEF00000-9C6D-47ED-AAF1-4DDA8F2B5C03} -DEFINE_GUID(DSDEVID_DefaultPlayback, 0xdef00000, 0x9c6d, 0x47ed, 0xaa, 0xf1, 0x4d, 0xda, 0x8f, 0x2b, 0x5c, 0x03); - -// DirectSound default capture device GUID {DEF00001-9C6D-47ED-AAF1-4DDA8F2B5C03} -DEFINE_GUID(DSDEVID_DefaultCapture, 0xdef00001, 0x9c6d, 0x47ed, 0xaa, 0xf1, 0x4d, 0xda, 0x8f, 0x2b, 0x5c, 0x03); - -// DirectSound default device for voice playback {DEF00002-9C6D-47ED-AAF1-4DDA8F2B5C03} -DEFINE_GUID(DSDEVID_DefaultVoicePlayback, 0xdef00002, 0x9c6d, 0x47ed, 0xaa, 0xf1, 0x4d, 0xda, 0x8f, 0x2b, 0x5c, 0x03); - -// DirectSound default device for voice capture {DEF00003-9C6D-47ED-AAF1-4DDA8F2B5C03} -DEFINE_GUID(DSDEVID_DefaultVoiceCapture, 0xdef00003, 0x9c6d, 0x47ed, 0xaa, 0xf1, 0x4d, 0xda, 0x8f, 0x2b, 0x5c, 0x03); - - -// -// Forward declarations for interfaces. -// 'struct' not 'class' per the way DECLARE_INTERFACE_ is defined -// - -#ifdef __cplusplus -struct IDirectSound; -struct IDirectSoundBuffer; -struct IDirectSound3DListener; -struct IDirectSound3DBuffer; -struct IDirectSoundCapture; -struct IDirectSoundCaptureBuffer; -struct IDirectSoundNotify; -#endif // __cplusplus - -// -// DirectSound 8.0 interfaces. -// - -#if DIRECTSOUND_VERSION >= 0x0800 - -#ifdef __cplusplus -struct IDirectSound8; -struct IDirectSoundBuffer8; -struct IDirectSoundCaptureBuffer8; -struct IDirectSoundFXGargle; -struct IDirectSoundFXChorus; -struct IDirectSoundFXFlanger; -struct IDirectSoundFXEcho; -struct IDirectSoundFXDistortion; -struct IDirectSoundFXCompressor; -struct IDirectSoundFXParamEq; -struct IDirectSoundFXWavesReverb; -struct IDirectSoundFXI3DL2Reverb; -struct IDirectSoundCaptureFXAec; -struct IDirectSoundCaptureFXNoiseSuppress; -struct IDirectSoundFullDuplex; -#endif // __cplusplus - -// IDirectSound8, IDirectSoundBuffer8 and IDirectSoundCaptureBuffer8 are the -// only DirectSound 7.0 interfaces with changed functionality in version 8.0. -// The other level 8 interfaces as equivalent to their level 7 counterparts: - -#define IDirectSoundCapture8 IDirectSoundCapture -#define IDirectSound3DListener8 IDirectSound3DListener -#define IDirectSound3DBuffer8 IDirectSound3DBuffer -#define IDirectSoundNotify8 IDirectSoundNotify -#define IDirectSoundFXGargle8 IDirectSoundFXGargle -#define IDirectSoundFXChorus8 IDirectSoundFXChorus -#define IDirectSoundFXFlanger8 IDirectSoundFXFlanger -#define IDirectSoundFXEcho8 IDirectSoundFXEcho -#define IDirectSoundFXDistortion8 IDirectSoundFXDistortion -#define IDirectSoundFXCompressor8 IDirectSoundFXCompressor -#define IDirectSoundFXParamEq8 IDirectSoundFXParamEq -#define IDirectSoundFXWavesReverb8 IDirectSoundFXWavesReverb -#define IDirectSoundFXI3DL2Reverb8 IDirectSoundFXI3DL2Reverb -#define IDirectSoundCaptureFXAec8 IDirectSoundCaptureFXAec -#define IDirectSoundCaptureFXNoiseSuppress8 IDirectSoundCaptureFXNoiseSuppress -#define IDirectSoundFullDuplex8 IDirectSoundFullDuplex - -#endif // DIRECTSOUND_VERSION >= 0x0800 - -typedef struct IDirectSound *LPDIRECTSOUND; -typedef struct IDirectSoundBuffer *LPDIRECTSOUNDBUFFER; -typedef struct IDirectSound3DListener *LPDIRECTSOUND3DLISTENER; -typedef struct IDirectSound3DBuffer *LPDIRECTSOUND3DBUFFER; -typedef struct IDirectSoundCapture *LPDIRECTSOUNDCAPTURE; -typedef struct IDirectSoundCaptureBuffer *LPDIRECTSOUNDCAPTUREBUFFER; -typedef struct IDirectSoundNotify *LPDIRECTSOUNDNOTIFY; - -#if DIRECTSOUND_VERSION >= 0x0800 - -typedef struct IDirectSoundFXGargle *LPDIRECTSOUNDFXGARGLE; -typedef struct IDirectSoundFXChorus *LPDIRECTSOUNDFXCHORUS; -typedef struct IDirectSoundFXFlanger *LPDIRECTSOUNDFXFLANGER; -typedef struct IDirectSoundFXEcho *LPDIRECTSOUNDFXECHO; -typedef struct IDirectSoundFXDistortion *LPDIRECTSOUNDFXDISTORTION; -typedef struct IDirectSoundFXCompressor *LPDIRECTSOUNDFXCOMPRESSOR; -typedef struct IDirectSoundFXParamEq *LPDIRECTSOUNDFXPARAMEQ; -typedef struct IDirectSoundFXWavesReverb *LPDIRECTSOUNDFXWAVESREVERB; -typedef struct IDirectSoundFXI3DL2Reverb *LPDIRECTSOUNDFXI3DL2REVERB; -typedef struct IDirectSoundCaptureFXAec *LPDIRECTSOUNDCAPTUREFXAEC; -typedef struct IDirectSoundCaptureFXNoiseSuppress *LPDIRECTSOUNDCAPTUREFXNOISESUPPRESS; -typedef struct IDirectSoundFullDuplex *LPDIRECTSOUNDFULLDUPLEX; - -typedef struct IDirectSound8 *LPDIRECTSOUND8; -typedef struct IDirectSoundBuffer8 *LPDIRECTSOUNDBUFFER8; -typedef struct IDirectSound3DListener8 *LPDIRECTSOUND3DLISTENER8; -typedef struct IDirectSound3DBuffer8 *LPDIRECTSOUND3DBUFFER8; -typedef struct IDirectSoundCapture8 *LPDIRECTSOUNDCAPTURE8; -typedef struct IDirectSoundCaptureBuffer8 *LPDIRECTSOUNDCAPTUREBUFFER8; -typedef struct IDirectSoundNotify8 *LPDIRECTSOUNDNOTIFY8; -typedef struct IDirectSoundFXGargle8 *LPDIRECTSOUNDFXGARGLE8; -typedef struct IDirectSoundFXChorus8 *LPDIRECTSOUNDFXCHORUS8; -typedef struct IDirectSoundFXFlanger8 *LPDIRECTSOUNDFXFLANGER8; -typedef struct IDirectSoundFXEcho8 *LPDIRECTSOUNDFXECHO8; -typedef struct IDirectSoundFXDistortion8 *LPDIRECTSOUNDFXDISTORTION8; -typedef struct IDirectSoundFXCompressor8 *LPDIRECTSOUNDFXCOMPRESSOR8; -typedef struct IDirectSoundFXParamEq8 *LPDIRECTSOUNDFXPARAMEQ8; -typedef struct IDirectSoundFXWavesReverb8 *LPDIRECTSOUNDFXWAVESREVERB8; -typedef struct IDirectSoundFXI3DL2Reverb8 *LPDIRECTSOUNDFXI3DL2REVERB8; -typedef struct IDirectSoundCaptureFXAec8 *LPDIRECTSOUNDCAPTUREFXAEC8; -typedef struct IDirectSoundCaptureFXNoiseSuppress8 *LPDIRECTSOUNDCAPTUREFXNOISESUPPRESS8; -typedef struct IDirectSoundFullDuplex8 *LPDIRECTSOUNDFULLDUPLEX8; - -#endif // DIRECTSOUND_VERSION >= 0x0800 - -// -// IID definitions for the unchanged DirectSound 8.0 interfaces -// - -#if DIRECTSOUND_VERSION >= 0x0800 - -#define IID_IDirectSoundCapture8 IID_IDirectSoundCapture -#define IID_IDirectSound3DListener8 IID_IDirectSound3DListener -#define IID_IDirectSound3DBuffer8 IID_IDirectSound3DBuffer -#define IID_IDirectSoundNotify8 IID_IDirectSoundNotify -#define IID_IDirectSoundFXGargle8 IID_IDirectSoundFXGargle -#define IID_IDirectSoundFXChorus8 IID_IDirectSoundFXChorus -#define IID_IDirectSoundFXFlanger8 IID_IDirectSoundFXFlanger -#define IID_IDirectSoundFXEcho8 IID_IDirectSoundFXEcho -#define IID_IDirectSoundFXDistortion8 IID_IDirectSoundFXDistortion -#define IID_IDirectSoundFXCompressor8 IID_IDirectSoundFXCompressor -#define IID_IDirectSoundFXParamEq8 IID_IDirectSoundFXParamEq -#define IID_IDirectSoundFXWavesReverb8 IID_IDirectSoundFXWavesReverb -#define IID_IDirectSoundFXI3DL2Reverb8 IID_IDirectSoundFXI3DL2Reverb -#define IID_IDirectSoundCaptureFXAec8 IID_IDirectSoundCaptureFXAec -#define IID_IDirectSoundCaptureFXNoiseSuppress8 IID_IDirectSoundCaptureFXNoiseSuppress -#define IID_IDirectSoundFullDuplex8 IID_IDirectSoundFullDuplex - -#endif // DIRECTSOUND_VERSION >= 0x0800 - -// -// Compatibility typedefs -// - -#ifndef _LPCWAVEFORMATEX_DEFINED -#define _LPCWAVEFORMATEX_DEFINED -typedef const WAVEFORMATEX *LPCWAVEFORMATEX; -#endif // _LPCWAVEFORMATEX_DEFINED - -#ifndef __LPCGUID_DEFINED__ -#define __LPCGUID_DEFINED__ -typedef const GUID *LPCGUID; -#endif // __LPCGUID_DEFINED__ - -typedef LPDIRECTSOUND *LPLPDIRECTSOUND; -typedef LPDIRECTSOUNDBUFFER *LPLPDIRECTSOUNDBUFFER; -typedef LPDIRECTSOUND3DLISTENER *LPLPDIRECTSOUND3DLISTENER; -typedef LPDIRECTSOUND3DBUFFER *LPLPDIRECTSOUND3DBUFFER; -typedef LPDIRECTSOUNDCAPTURE *LPLPDIRECTSOUNDCAPTURE; -typedef LPDIRECTSOUNDCAPTUREBUFFER *LPLPDIRECTSOUNDCAPTUREBUFFER; -typedef LPDIRECTSOUNDNOTIFY *LPLPDIRECTSOUNDNOTIFY; - -#if DIRECTSOUND_VERSION >= 0x0800 -typedef LPDIRECTSOUND8 *LPLPDIRECTSOUND8; -typedef LPDIRECTSOUNDBUFFER8 *LPLPDIRECTSOUNDBUFFER8; -typedef LPDIRECTSOUNDCAPTURE8 *LPLPDIRECTSOUNDCAPTURE8; -typedef LPDIRECTSOUNDCAPTUREBUFFER8 *LPLPDIRECTSOUNDCAPTUREBUFFER8; -#endif // DIRECTSOUND_VERSION >= 0x0800 - -// -// Structures -// - -typedef struct _DSCAPS -{ - DWORD dwSize; - DWORD dwFlags; - DWORD dwMinSecondarySampleRate; - DWORD dwMaxSecondarySampleRate; - DWORD dwPrimaryBuffers; - DWORD dwMaxHwMixingAllBuffers; - DWORD dwMaxHwMixingStaticBuffers; - DWORD dwMaxHwMixingStreamingBuffers; - DWORD dwFreeHwMixingAllBuffers; - DWORD dwFreeHwMixingStaticBuffers; - DWORD dwFreeHwMixingStreamingBuffers; - DWORD dwMaxHw3DAllBuffers; - DWORD dwMaxHw3DStaticBuffers; - DWORD dwMaxHw3DStreamingBuffers; - DWORD dwFreeHw3DAllBuffers; - DWORD dwFreeHw3DStaticBuffers; - DWORD dwFreeHw3DStreamingBuffers; - DWORD dwTotalHwMemBytes; - DWORD dwFreeHwMemBytes; - DWORD dwMaxContigFreeHwMemBytes; - DWORD dwUnlockTransferRateHwBuffers; - DWORD dwPlayCpuOverheadSwBuffers; - DWORD dwReserved1; - DWORD dwReserved2; -} DSCAPS, *LPDSCAPS; - -typedef const DSCAPS *LPCDSCAPS; - -typedef struct _DSBCAPS -{ - DWORD dwSize; - DWORD dwFlags; - DWORD dwBufferBytes; - DWORD dwUnlockTransferRate; - DWORD dwPlayCpuOverhead; -} DSBCAPS, *LPDSBCAPS; - -typedef const DSBCAPS *LPCDSBCAPS; - -#if DIRECTSOUND_VERSION >= 0x0800 - - typedef struct _DSEFFECTDESC - { - DWORD dwSize; - DWORD dwFlags; - GUID guidDSFXClass; - DWORD_PTR dwReserved1; - DWORD_PTR dwReserved2; - } DSEFFECTDESC, *LPDSEFFECTDESC; - typedef const DSEFFECTDESC *LPCDSEFFECTDESC; - - #define DSFX_LOCHARDWARE 0x00000001 - #define DSFX_LOCSOFTWARE 0x00000002 - - enum - { - DSFXR_PRESENT, // 0 - DSFXR_LOCHARDWARE, // 1 - DSFXR_LOCSOFTWARE, // 2 - DSFXR_UNALLOCATED, // 3 - DSFXR_FAILED, // 4 - DSFXR_UNKNOWN, // 5 - DSFXR_SENDLOOP // 6 - }; - - typedef struct _DSCEFFECTDESC - { - DWORD dwSize; - DWORD dwFlags; - GUID guidDSCFXClass; - GUID guidDSCFXInstance; - DWORD dwReserved1; - DWORD dwReserved2; - } DSCEFFECTDESC, *LPDSCEFFECTDESC; - typedef const DSCEFFECTDESC *LPCDSCEFFECTDESC; - - #define DSCFX_LOCHARDWARE 0x00000001 - #define DSCFX_LOCSOFTWARE 0x00000002 - - #define DSCFXR_LOCHARDWARE 0x00000010 - #define DSCFXR_LOCSOFTWARE 0x00000020 - -#endif // DIRECTSOUND_VERSION >= 0x0800 - -typedef struct _DSBUFFERDESC -{ - DWORD dwSize; - DWORD dwFlags; - DWORD dwBufferBytes; - DWORD dwReserved; - LPWAVEFORMATEX lpwfxFormat; -#if DIRECTSOUND_VERSION >= 0x0700 - GUID guid3DAlgorithm; -#endif -} DSBUFFERDESC, *LPDSBUFFERDESC; - -typedef const DSBUFFERDESC *LPCDSBUFFERDESC; - -// Older version of this structure: - -typedef struct _DSBUFFERDESC1 -{ - DWORD dwSize; - DWORD dwFlags; - DWORD dwBufferBytes; - DWORD dwReserved; - LPWAVEFORMATEX lpwfxFormat; -} DSBUFFERDESC1, *LPDSBUFFERDESC1; - -typedef const DSBUFFERDESC1 *LPCDSBUFFERDESC1; - -typedef struct _DS3DBUFFER -{ - DWORD dwSize; - D3DVECTOR vPosition; - D3DVECTOR vVelocity; - DWORD dwInsideConeAngle; - DWORD dwOutsideConeAngle; - D3DVECTOR vConeOrientation; - LONG lConeOutsideVolume; - D3DVALUE flMinDistance; - D3DVALUE flMaxDistance; - DWORD dwMode; -} DS3DBUFFER, *LPDS3DBUFFER; - -typedef const DS3DBUFFER *LPCDS3DBUFFER; - -typedef struct _DS3DLISTENER -{ - DWORD dwSize; - D3DVECTOR vPosition; - D3DVECTOR vVelocity; - D3DVECTOR vOrientFront; - D3DVECTOR vOrientTop; - D3DVALUE flDistanceFactor; - D3DVALUE flRolloffFactor; - D3DVALUE flDopplerFactor; -} DS3DLISTENER, *LPDS3DLISTENER; - -typedef const DS3DLISTENER *LPCDS3DLISTENER; - -typedef struct _DSCCAPS -{ - DWORD dwSize; - DWORD dwFlags; - DWORD dwFormats; - DWORD dwChannels; -} DSCCAPS, *LPDSCCAPS; - -typedef const DSCCAPS *LPCDSCCAPS; - -typedef struct _DSCBUFFERDESC1 -{ - DWORD dwSize; - DWORD dwFlags; - DWORD dwBufferBytes; - DWORD dwReserved; - LPWAVEFORMATEX lpwfxFormat; -} DSCBUFFERDESC1, *LPDSCBUFFERDESC1; - -typedef struct _DSCBUFFERDESC -{ - DWORD dwSize; - DWORD dwFlags; - DWORD dwBufferBytes; - DWORD dwReserved; - LPWAVEFORMATEX lpwfxFormat; -#if DIRECTSOUND_VERSION >= 0x0800 - DWORD dwFXCount; - LPDSCEFFECTDESC lpDSCFXDesc; -#endif -} DSCBUFFERDESC, *LPDSCBUFFERDESC; - -typedef const DSCBUFFERDESC *LPCDSCBUFFERDESC; - -typedef struct _DSCBCAPS -{ - DWORD dwSize; - DWORD dwFlags; - DWORD dwBufferBytes; - DWORD dwReserved; -} DSCBCAPS, *LPDSCBCAPS; - -typedef const DSCBCAPS *LPCDSCBCAPS; - -typedef struct _DSBPOSITIONNOTIFY -{ - DWORD dwOffset; - HANDLE hEventNotify; -} DSBPOSITIONNOTIFY, *LPDSBPOSITIONNOTIFY; - -typedef const DSBPOSITIONNOTIFY *LPCDSBPOSITIONNOTIFY; - -// -// DirectSound API -// - -typedef BOOL (CALLBACK *LPDSENUMCALLBACKA)(LPGUID, LPCSTR, LPCSTR, LPVOID); -typedef BOOL (CALLBACK *LPDSENUMCALLBACKW)(LPGUID, LPCWSTR, LPCWSTR, LPVOID); - -extern HRESULT WINAPI DirectSoundCreate(__in_opt LPCGUID pcGuidDevice, __deref_out LPDIRECTSOUND *ppDS, __null LPUNKNOWN pUnkOuter); -extern HRESULT WINAPI DirectSoundEnumerateA(__in LPDSENUMCALLBACKA pDSEnumCallback, __in_opt LPVOID pContext); -extern HRESULT WINAPI DirectSoundEnumerateW(__in LPDSENUMCALLBACKW pDSEnumCallback, __in_opt LPVOID pContext); - -extern HRESULT WINAPI DirectSoundCaptureCreate(__in_opt LPCGUID pcGuidDevice, __deref_out LPDIRECTSOUNDCAPTURE *ppDSC, __null LPUNKNOWN pUnkOuter); -extern HRESULT WINAPI DirectSoundCaptureEnumerateA(__in LPDSENUMCALLBACKA pDSEnumCallback, __in_opt LPVOID pContext); -extern HRESULT WINAPI DirectSoundCaptureEnumerateW(__in LPDSENUMCALLBACKW pDSEnumCallback, __in_opt LPVOID pContext); - -#if DIRECTSOUND_VERSION >= 0x0800 -extern HRESULT WINAPI DirectSoundCreate8(__in_opt LPCGUID pcGuidDevice, __deref_out LPDIRECTSOUND8 *ppDS8, __null LPUNKNOWN pUnkOuter); -extern HRESULT WINAPI DirectSoundCaptureCreate8(__in_opt LPCGUID pcGuidDevice, __deref_out LPDIRECTSOUNDCAPTURE8 *ppDSC8, __null LPUNKNOWN pUnkOuter); -extern HRESULT WINAPI DirectSoundFullDuplexCreate -( - __in_opt LPCGUID pcGuidCaptureDevice, - __in_opt LPCGUID pcGuidRenderDevice, - __in LPCDSCBUFFERDESC pcDSCBufferDesc, - __in LPCDSBUFFERDESC pcDSBufferDesc, - HWND hWnd, - DWORD dwLevel, - __deref_out LPDIRECTSOUNDFULLDUPLEX* ppDSFD, - __deref_out LPDIRECTSOUNDCAPTUREBUFFER8 *ppDSCBuffer8, - __deref_out LPDIRECTSOUNDBUFFER8 *ppDSBuffer8, - __null LPUNKNOWN pUnkOuter -); -#define DirectSoundFullDuplexCreate8 DirectSoundFullDuplexCreate - -extern HRESULT WINAPI GetDeviceID(__in_opt LPCGUID pGuidSrc, __out LPGUID pGuidDest); -#endif // DIRECTSOUND_VERSION >= 0x0800 - -#ifdef UNICODE -#define LPDSENUMCALLBACK LPDSENUMCALLBACKW -#define DirectSoundEnumerate DirectSoundEnumerateW -#define DirectSoundCaptureEnumerate DirectSoundCaptureEnumerateW -#else // UNICODE -#define LPDSENUMCALLBACK LPDSENUMCALLBACKA -#define DirectSoundEnumerate DirectSoundEnumerateA -#define DirectSoundCaptureEnumerate DirectSoundCaptureEnumerateA -#endif // UNICODE - -// -// IUnknown -// - -#if !defined(__cplusplus) || defined(CINTERFACE) -#ifndef IUnknown_QueryInterface -#define IUnknown_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#endif // IUnknown_QueryInterface -#ifndef IUnknown_AddRef -#define IUnknown_AddRef(p) (p)->lpVtbl->AddRef(p) -#endif // IUnknown_AddRef -#ifndef IUnknown_Release -#define IUnknown_Release(p) (p)->lpVtbl->Release(p) -#endif // IUnknown_Release -#else // !defined(__cplusplus) || defined(CINTERFACE) -#ifndef IUnknown_QueryInterface -#define IUnknown_QueryInterface(p,a,b) (p)->QueryInterface(a,b) -#endif // IUnknown_QueryInterface -#ifndef IUnknown_AddRef -#define IUnknown_AddRef(p) (p)->AddRef() -#endif // IUnknown_AddRef -#ifndef IUnknown_Release -#define IUnknown_Release(p) (p)->Release() -#endif // IUnknown_Release -#endif // !defined(__cplusplus) || defined(CINTERFACE) - -#ifndef __IReferenceClock_INTERFACE_DEFINED__ -#define __IReferenceClock_INTERFACE_DEFINED__ - -typedef LONGLONG REFERENCE_TIME; -typedef REFERENCE_TIME *LPREFERENCE_TIME; - -DEFINE_GUID(IID_IReferenceClock, 0x56a86897, 0x0ad4, 0x11ce, 0xb0, 0x3a, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70); - -#undef INTERFACE -#define INTERFACE IReferenceClock - -DECLARE_INTERFACE_(IReferenceClock, IUnknown) -{ - // IUnknown methods - STDMETHOD(QueryInterface) (THIS_ __in REFIID, __deref_out LPVOID*) PURE; - STDMETHOD_(ULONG,AddRef) (THIS) PURE; - STDMETHOD_(ULONG,Release) (THIS) PURE; - - // IReferenceClock methods - STDMETHOD(GetTime) (THIS_ __out REFERENCE_TIME *pTime) PURE; - STDMETHOD(AdviseTime) (THIS_ REFERENCE_TIME rtBaseTime, REFERENCE_TIME rtStreamTime, - HANDLE hEvent, __out LPDWORD pdwAdviseCookie) PURE; - STDMETHOD(AdvisePeriodic) (THIS_ REFERENCE_TIME rtStartTime, REFERENCE_TIME rtPeriodTime, - HANDLE hSemaphore, __out LPDWORD pdwAdviseCookie) PURE; - STDMETHOD(Unadvise) (THIS_ DWORD dwAdviseCookie) PURE; -}; - -#endif // __IReferenceClock_INTERFACE_DEFINED__ - -#ifndef IReferenceClock_QueryInterface - -#define IReferenceClock_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) -#define IReferenceClock_AddRef(p) IUnknown_AddRef(p) -#define IReferenceClock_Release(p) IUnknown_Release(p) - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IReferenceClock_GetTime(p,a) (p)->lpVtbl->GetTime(p,a) -#define IReferenceClock_AdviseTime(p,a,b,c,d) (p)->lpVtbl->AdviseTime(p,a,b,c,d) -#define IReferenceClock_AdvisePeriodic(p,a,b,c,d) (p)->lpVtbl->AdvisePeriodic(p,a,b,c,d) -#define IReferenceClock_Unadvise(p,a) (p)->lpVtbl->Unadvise(p,a) -#else // !defined(__cplusplus) || defined(CINTERFACE) -#define IReferenceClock_GetTime(p,a) (p)->GetTime(a) -#define IReferenceClock_AdviseTime(p,a,b,c,d) (p)->AdviseTime(a,b,c,d) -#define IReferenceClock_AdvisePeriodic(p,a,b,c,d) (p)->AdvisePeriodic(a,b,c,d) -#define IReferenceClock_Unadvise(p,a) (p)->Unadvise(a) -#endif // !defined(__cplusplus) || defined(CINTERFACE) - -#endif // IReferenceClock_QueryInterface - -// -// IDirectSound -// - -DEFINE_GUID(IID_IDirectSound, 0x279AFA83, 0x4981, 0x11CE, 0xA5, 0x21, 0x00, 0x20, 0xAF, 0x0B, 0xE5, 0x60); - -#undef INTERFACE -#define INTERFACE IDirectSound - -DECLARE_INTERFACE_(IDirectSound, IUnknown) -{ - // IUnknown methods - STDMETHOD(QueryInterface) (THIS_ __in REFIID, __deref_out LPVOID*) PURE; - STDMETHOD_(ULONG,AddRef) (THIS) PURE; - STDMETHOD_(ULONG,Release) (THIS) PURE; - - // IDirectSound methods - STDMETHOD(CreateSoundBuffer) (THIS_ __in LPCDSBUFFERDESC pcDSBufferDesc, __deref_out LPDIRECTSOUNDBUFFER *ppDSBuffer, __null LPUNKNOWN pUnkOuter) PURE; - STDMETHOD(GetCaps) (THIS_ __out LPDSCAPS pDSCaps) PURE; - STDMETHOD(DuplicateSoundBuffer) (THIS_ __in LPDIRECTSOUNDBUFFER pDSBufferOriginal, __deref_out LPDIRECTSOUNDBUFFER *ppDSBufferDuplicate) PURE; - STDMETHOD(SetCooperativeLevel) (THIS_ HWND hwnd, DWORD dwLevel) PURE; - STDMETHOD(Compact) (THIS) PURE; - STDMETHOD(GetSpeakerConfig) (THIS_ __out LPDWORD pdwSpeakerConfig) PURE; - STDMETHOD(SetSpeakerConfig) (THIS_ DWORD dwSpeakerConfig) PURE; - STDMETHOD(Initialize) (THIS_ __in_opt LPCGUID pcGuidDevice) PURE; -}; - -#define IDirectSound_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) -#define IDirectSound_AddRef(p) IUnknown_AddRef(p) -#define IDirectSound_Release(p) IUnknown_Release(p) - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSound_CreateSoundBuffer(p,a,b,c) (p)->lpVtbl->CreateSoundBuffer(p,a,b,c) -#define IDirectSound_GetCaps(p,a) (p)->lpVtbl->GetCaps(p,a) -#define IDirectSound_DuplicateSoundBuffer(p,a,b) (p)->lpVtbl->DuplicateSoundBuffer(p,a,b) -#define IDirectSound_SetCooperativeLevel(p,a,b) (p)->lpVtbl->SetCooperativeLevel(p,a,b) -#define IDirectSound_Compact(p) (p)->lpVtbl->Compact(p) -#define IDirectSound_GetSpeakerConfig(p,a) (p)->lpVtbl->GetSpeakerConfig(p,a) -#define IDirectSound_SetSpeakerConfig(p,b) (p)->lpVtbl->SetSpeakerConfig(p,b) -#define IDirectSound_Initialize(p,a) (p)->lpVtbl->Initialize(p,a) -#else // !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSound_CreateSoundBuffer(p,a,b,c) (p)->CreateSoundBuffer(a,b,c) -#define IDirectSound_GetCaps(p,a) (p)->GetCaps(a) -#define IDirectSound_DuplicateSoundBuffer(p,a,b) (p)->DuplicateSoundBuffer(a,b) -#define IDirectSound_SetCooperativeLevel(p,a,b) (p)->SetCooperativeLevel(a,b) -#define IDirectSound_Compact(p) (p)->Compact() -#define IDirectSound_GetSpeakerConfig(p,a) (p)->GetSpeakerConfig(a) -#define IDirectSound_SetSpeakerConfig(p,b) (p)->SetSpeakerConfig(b) -#define IDirectSound_Initialize(p,a) (p)->Initialize(a) -#endif // !defined(__cplusplus) || defined(CINTERFACE) - -#if DIRECTSOUND_VERSION >= 0x0800 - -// -// IDirectSound8 -// - -DEFINE_GUID(IID_IDirectSound8, 0xC50A7E93, 0xF395, 0x4834, 0x9E, 0xF6, 0x7F, 0xA9, 0x9D, 0xE5, 0x09, 0x66); - -#undef INTERFACE -#define INTERFACE IDirectSound8 - -DECLARE_INTERFACE_(IDirectSound8, IDirectSound) -{ - // IUnknown methods - STDMETHOD(QueryInterface) (THIS_ __in REFIID, __deref_out LPVOID*) PURE; - STDMETHOD_(ULONG,AddRef) (THIS) PURE; - STDMETHOD_(ULONG,Release) (THIS) PURE; - - // IDirectSound methods - STDMETHOD(CreateSoundBuffer) (THIS_ __in LPCDSBUFFERDESC pcDSBufferDesc, __out LPDIRECTSOUNDBUFFER *ppDSBuffer, __null LPUNKNOWN pUnkOuter) PURE; - STDMETHOD(GetCaps) (THIS_ __out LPDSCAPS pDSCaps) PURE; - STDMETHOD(DuplicateSoundBuffer) (THIS_ __in LPDIRECTSOUNDBUFFER pDSBufferOriginal, __out LPDIRECTSOUNDBUFFER *ppDSBufferDuplicate) PURE; - STDMETHOD(SetCooperativeLevel) (THIS_ HWND hwnd, DWORD dwLevel) PURE; - STDMETHOD(Compact) (THIS) PURE; - STDMETHOD(GetSpeakerConfig) (THIS_ __out LPDWORD pdwSpeakerConfig) PURE; - STDMETHOD(SetSpeakerConfig) (THIS_ DWORD dwSpeakerConfig) PURE; - STDMETHOD(Initialize) (THIS_ __in_opt LPCGUID pcGuidDevice) PURE; - - // IDirectSound8 methods - STDMETHOD(VerifyCertification) (THIS_ __out LPDWORD pdwCertified) PURE; -}; - -#define IDirectSound8_QueryInterface(p,a,b) IDirectSound_QueryInterface(p,a,b) -#define IDirectSound8_AddRef(p) IDirectSound_AddRef(p) -#define IDirectSound8_Release(p) IDirectSound_Release(p) -#define IDirectSound8_CreateSoundBuffer(p,a,b,c) IDirectSound_CreateSoundBuffer(p,a,b,c) -#define IDirectSound8_GetCaps(p,a) IDirectSound_GetCaps(p,a) -#define IDirectSound8_DuplicateSoundBuffer(p,a,b) IDirectSound_DuplicateSoundBuffer(p,a,b) -#define IDirectSound8_SetCooperativeLevel(p,a,b) IDirectSound_SetCooperativeLevel(p,a,b) -#define IDirectSound8_Compact(p) IDirectSound_Compact(p) -#define IDirectSound8_GetSpeakerConfig(p,a) IDirectSound_GetSpeakerConfig(p,a) -#define IDirectSound8_SetSpeakerConfig(p,a) IDirectSound_SetSpeakerConfig(p,a) -#define IDirectSound8_Initialize(p,a) IDirectSound_Initialize(p,a) - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSound8_VerifyCertification(p,a) (p)->lpVtbl->VerifyCertification(p,a) -#else // !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSound8_VerifyCertification(p,a) (p)->VerifyCertification(a) -#endif // !defined(__cplusplus) || defined(CINTERFACE) - -#endif // DIRECTSOUND_VERSION >= 0x0800 - -// -// IDirectSoundBuffer -// - -DEFINE_GUID(IID_IDirectSoundBuffer, 0x279AFA85, 0x4981, 0x11CE, 0xA5, 0x21, 0x00, 0x20, 0xAF, 0x0B, 0xE5, 0x60); - -#undef INTERFACE -#define INTERFACE IDirectSoundBuffer - -DECLARE_INTERFACE_(IDirectSoundBuffer, IUnknown) -{ - // IUnknown methods - STDMETHOD(QueryInterface) (THIS_ __in REFIID, __deref_out LPVOID*) PURE; - STDMETHOD_(ULONG,AddRef) (THIS) PURE; - STDMETHOD_(ULONG,Release) (THIS) PURE; - - // IDirectSoundBuffer methods - STDMETHOD(GetCaps) (THIS_ __out LPDSBCAPS pDSBufferCaps) PURE; - STDMETHOD(GetCurrentPosition) (THIS_ __out_opt LPDWORD pdwCurrentPlayCursor, __out_opt LPDWORD pdwCurrentWriteCursor) PURE; - STDMETHOD(GetFormat) (THIS_ __out_bcount_opt(dwSizeAllocated) LPWAVEFORMATEX pwfxFormat, DWORD dwSizeAllocated, __out_opt LPDWORD pdwSizeWritten) PURE; - STDMETHOD(GetVolume) (THIS_ __out LPLONG plVolume) PURE; - STDMETHOD(GetPan) (THIS_ __out LPLONG plPan) PURE; - STDMETHOD(GetFrequency) (THIS_ __out LPDWORD pdwFrequency) PURE; - STDMETHOD(GetStatus) (THIS_ __out LPDWORD pdwStatus) PURE; - STDMETHOD(Initialize) (THIS_ __in LPDIRECTSOUND pDirectSound, __in LPCDSBUFFERDESC pcDSBufferDesc) PURE; - STDMETHOD(Lock) (THIS_ DWORD dwOffset, DWORD dwBytes, - __deref_out_bcount(*pdwAudioBytes1) LPVOID *ppvAudioPtr1, __out LPDWORD pdwAudioBytes1, - __deref_opt_out_bcount(*pdwAudioBytes2) LPVOID *ppvAudioPtr2, __out_opt LPDWORD pdwAudioBytes2, DWORD dwFlags) PURE; - STDMETHOD(Play) (THIS_ DWORD dwReserved1, DWORD dwPriority, DWORD dwFlags) PURE; - STDMETHOD(SetCurrentPosition) (THIS_ DWORD dwNewPosition) PURE; - STDMETHOD(SetFormat) (THIS_ __in LPCWAVEFORMATEX pcfxFormat) PURE; - STDMETHOD(SetVolume) (THIS_ LONG lVolume) PURE; - STDMETHOD(SetPan) (THIS_ LONG lPan) PURE; - STDMETHOD(SetFrequency) (THIS_ DWORD dwFrequency) PURE; - STDMETHOD(Stop) (THIS) PURE; - STDMETHOD(Unlock) (THIS_ __in_bcount(dwAudioBytes1) LPVOID pvAudioPtr1, DWORD dwAudioBytes1, - __in_bcount_opt(dwAudioBytes2) LPVOID pvAudioPtr2, DWORD dwAudioBytes2) PURE; - STDMETHOD(Restore) (THIS) PURE; -}; - -#define IDirectSoundBuffer_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) -#define IDirectSoundBuffer_AddRef(p) IUnknown_AddRef(p) -#define IDirectSoundBuffer_Release(p) IUnknown_Release(p) - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundBuffer_GetCaps(p,a) (p)->lpVtbl->GetCaps(p,a) -#define IDirectSoundBuffer_GetCurrentPosition(p,a,b) (p)->lpVtbl->GetCurrentPosition(p,a,b) -#define IDirectSoundBuffer_GetFormat(p,a,b,c) (p)->lpVtbl->GetFormat(p,a,b,c) -#define IDirectSoundBuffer_GetVolume(p,a) (p)->lpVtbl->GetVolume(p,a) -#define IDirectSoundBuffer_GetPan(p,a) (p)->lpVtbl->GetPan(p,a) -#define IDirectSoundBuffer_GetFrequency(p,a) (p)->lpVtbl->GetFrequency(p,a) -#define IDirectSoundBuffer_GetStatus(p,a) (p)->lpVtbl->GetStatus(p,a) -#define IDirectSoundBuffer_Initialize(p,a,b) (p)->lpVtbl->Initialize(p,a,b) -#define IDirectSoundBuffer_Lock(p,a,b,c,d,e,f,g) (p)->lpVtbl->Lock(p,a,b,c,d,e,f,g) -#define IDirectSoundBuffer_Play(p,a,b,c) (p)->lpVtbl->Play(p,a,b,c) -#define IDirectSoundBuffer_SetCurrentPosition(p,a) (p)->lpVtbl->SetCurrentPosition(p,a) -#define IDirectSoundBuffer_SetFormat(p,a) (p)->lpVtbl->SetFormat(p,a) -#define IDirectSoundBuffer_SetVolume(p,a) (p)->lpVtbl->SetVolume(p,a) -#define IDirectSoundBuffer_SetPan(p,a) (p)->lpVtbl->SetPan(p,a) -#define IDirectSoundBuffer_SetFrequency(p,a) (p)->lpVtbl->SetFrequency(p,a) -#define IDirectSoundBuffer_Stop(p) (p)->lpVtbl->Stop(p) -#define IDirectSoundBuffer_Unlock(p,a,b,c,d) (p)->lpVtbl->Unlock(p,a,b,c,d) -#define IDirectSoundBuffer_Restore(p) (p)->lpVtbl->Restore(p) -#else // !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundBuffer_GetCaps(p,a) (p)->GetCaps(a) -#define IDirectSoundBuffer_GetCurrentPosition(p,a,b) (p)->GetCurrentPosition(a,b) -#define IDirectSoundBuffer_GetFormat(p,a,b,c) (p)->GetFormat(a,b,c) -#define IDirectSoundBuffer_GetVolume(p,a) (p)->GetVolume(a) -#define IDirectSoundBuffer_GetPan(p,a) (p)->GetPan(a) -#define IDirectSoundBuffer_GetFrequency(p,a) (p)->GetFrequency(a) -#define IDirectSoundBuffer_GetStatus(p,a) (p)->GetStatus(a) -#define IDirectSoundBuffer_Initialize(p,a,b) (p)->Initialize(a,b) -#define IDirectSoundBuffer_Lock(p,a,b,c,d,e,f,g) (p)->Lock(a,b,c,d,e,f,g) -#define IDirectSoundBuffer_Play(p,a,b,c) (p)->Play(a,b,c) -#define IDirectSoundBuffer_SetCurrentPosition(p,a) (p)->SetCurrentPosition(a) -#define IDirectSoundBuffer_SetFormat(p,a) (p)->SetFormat(a) -#define IDirectSoundBuffer_SetVolume(p,a) (p)->SetVolume(a) -#define IDirectSoundBuffer_SetPan(p,a) (p)->SetPan(a) -#define IDirectSoundBuffer_SetFrequency(p,a) (p)->SetFrequency(a) -#define IDirectSoundBuffer_Stop(p) (p)->Stop() -#define IDirectSoundBuffer_Unlock(p,a,b,c,d) (p)->Unlock(a,b,c,d) -#define IDirectSoundBuffer_Restore(p) (p)->Restore() -#endif // !defined(__cplusplus) || defined(CINTERFACE) - -#if DIRECTSOUND_VERSION >= 0x0800 - -// -// IDirectSoundBuffer8 -// - -DEFINE_GUID(IID_IDirectSoundBuffer8, 0x6825a449, 0x7524, 0x4d82, 0x92, 0x0f, 0x50, 0xe3, 0x6a, 0xb3, 0xab, 0x1e); - -#undef INTERFACE -#define INTERFACE IDirectSoundBuffer8 - -DECLARE_INTERFACE_(IDirectSoundBuffer8, IDirectSoundBuffer) -{ - // IUnknown methods - STDMETHOD(QueryInterface) (THIS_ __in REFIID, __deref_out LPVOID*) PURE; - STDMETHOD_(ULONG,AddRef) (THIS) PURE; - STDMETHOD_(ULONG,Release) (THIS) PURE; - - // IDirectSoundBuffer methods - STDMETHOD(GetCaps) (THIS_ __out LPDSBCAPS pDSBufferCaps) PURE; - STDMETHOD(GetCurrentPosition) (THIS_ __out_opt LPDWORD pdwCurrentPlayCursor, __out_opt LPDWORD pdwCurrentWriteCursor) PURE; - STDMETHOD(GetFormat) (THIS_ __out_bcount_opt(dwSizeAllocated) LPWAVEFORMATEX pwfxFormat, DWORD dwSizeAllocated, __out_opt LPDWORD pdwSizeWritten) PURE; - STDMETHOD(GetVolume) (THIS_ __out LPLONG plVolume) PURE; - STDMETHOD(GetPan) (THIS_ __out LPLONG plPan) PURE; - STDMETHOD(GetFrequency) (THIS_ __out LPDWORD pdwFrequency) PURE; - STDMETHOD(GetStatus) (THIS_ __out LPDWORD pdwStatus) PURE; - STDMETHOD(Initialize) (THIS_ __in LPDIRECTSOUND pDirectSound, __in LPCDSBUFFERDESC pcDSBufferDesc) PURE; - STDMETHOD(Lock) (THIS_ DWORD dwOffset, DWORD dwBytes, - __deref_out_bcount(*pdwAudioBytes1) LPVOID *ppvAudioPtr1, __out LPDWORD pdwAudioBytes1, - __deref_opt_out_bcount(*pdwAudioBytes2) LPVOID *ppvAudioPtr2, __out_opt LPDWORD pdwAudioBytes2, DWORD dwFlags) PURE; - STDMETHOD(Play) (THIS_ DWORD dwReserved1, DWORD dwPriority, DWORD dwFlags) PURE; - STDMETHOD(SetCurrentPosition) (THIS_ DWORD dwNewPosition) PURE; - STDMETHOD(SetFormat) (THIS_ __in LPCWAVEFORMATEX pcfxFormat) PURE; - STDMETHOD(SetVolume) (THIS_ LONG lVolume) PURE; - STDMETHOD(SetPan) (THIS_ LONG lPan) PURE; - STDMETHOD(SetFrequency) (THIS_ DWORD dwFrequency) PURE; - STDMETHOD(Stop) (THIS) PURE; - STDMETHOD(Unlock) (THIS_ __in_bcount(dwAudioBytes1) LPVOID pvAudioPtr1, DWORD dwAudioBytes1, - __in_bcount_opt(dwAudioBytes2) LPVOID pvAudioPtr2, DWORD dwAudioBytes2) PURE; - STDMETHOD(Restore) (THIS) PURE; - - // IDirectSoundBuffer8 methods - STDMETHOD(SetFX) (THIS_ DWORD dwEffectsCount, __in_ecount_opt(dwEffectsCount) LPDSEFFECTDESC pDSFXDesc, __out_ecount_opt(dwEffectsCount) LPDWORD pdwResultCodes) PURE; - STDMETHOD(AcquireResources) (THIS_ DWORD dwFlags, DWORD dwEffectsCount, __out_ecount(dwEffectsCount) LPDWORD pdwResultCodes) PURE; - STDMETHOD(GetObjectInPath) (THIS_ __in REFGUID rguidObject, DWORD dwIndex, __in REFGUID rguidInterface, __deref_out LPVOID *ppObject) PURE; -}; - -// Special GUID meaning "select all objects" for use in GetObjectInPath() -DEFINE_GUID(GUID_All_Objects, 0xaa114de5, 0xc262, 0x4169, 0xa1, 0xc8, 0x23, 0xd6, 0x98, 0xcc, 0x73, 0xb5); - -#define IDirectSoundBuffer8_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) -#define IDirectSoundBuffer8_AddRef(p) IUnknown_AddRef(p) -#define IDirectSoundBuffer8_Release(p) IUnknown_Release(p) - -#define IDirectSoundBuffer8_GetCaps(p,a) IDirectSoundBuffer_GetCaps(p,a) -#define IDirectSoundBuffer8_GetCurrentPosition(p,a,b) IDirectSoundBuffer_GetCurrentPosition(p,a,b) -#define IDirectSoundBuffer8_GetFormat(p,a,b,c) IDirectSoundBuffer_GetFormat(p,a,b,c) -#define IDirectSoundBuffer8_GetVolume(p,a) IDirectSoundBuffer_GetVolume(p,a) -#define IDirectSoundBuffer8_GetPan(p,a) IDirectSoundBuffer_GetPan(p,a) -#define IDirectSoundBuffer8_GetFrequency(p,a) IDirectSoundBuffer_GetFrequency(p,a) -#define IDirectSoundBuffer8_GetStatus(p,a) IDirectSoundBuffer_GetStatus(p,a) -#define IDirectSoundBuffer8_Initialize(p,a,b) IDirectSoundBuffer_Initialize(p,a,b) -#define IDirectSoundBuffer8_Lock(p,a,b,c,d,e,f,g) IDirectSoundBuffer_Lock(p,a,b,c,d,e,f,g) -#define IDirectSoundBuffer8_Play(p,a,b,c) IDirectSoundBuffer_Play(p,a,b,c) -#define IDirectSoundBuffer8_SetCurrentPosition(p,a) IDirectSoundBuffer_SetCurrentPosition(p,a) -#define IDirectSoundBuffer8_SetFormat(p,a) IDirectSoundBuffer_SetFormat(p,a) -#define IDirectSoundBuffer8_SetVolume(p,a) IDirectSoundBuffer_SetVolume(p,a) -#define IDirectSoundBuffer8_SetPan(p,a) IDirectSoundBuffer_SetPan(p,a) -#define IDirectSoundBuffer8_SetFrequency(p,a) IDirectSoundBuffer_SetFrequency(p,a) -#define IDirectSoundBuffer8_Stop(p) IDirectSoundBuffer_Stop(p) -#define IDirectSoundBuffer8_Unlock(p,a,b,c,d) IDirectSoundBuffer_Unlock(p,a,b,c,d) -#define IDirectSoundBuffer8_Restore(p) IDirectSoundBuffer_Restore(p) - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundBuffer8_SetFX(p,a,b,c) (p)->lpVtbl->SetFX(p,a,b,c) -#define IDirectSoundBuffer8_AcquireResources(p,a,b,c) (p)->lpVtbl->AcquireResources(p,a,b,c) -#define IDirectSoundBuffer8_GetObjectInPath(p,a,b,c,d) (p)->lpVtbl->GetObjectInPath(p,a,b,c,d) -#else // !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundBuffer8_SetFX(p,a,b,c) (p)->SetFX(a,b,c) -#define IDirectSoundBuffer8_AcquireResources(p,a,b,c) (p)->AcquireResources(a,b,c) -#define IDirectSoundBuffer8_GetObjectInPath(p,a,b,c,d) (p)->GetObjectInPath(a,b,c,d) -#endif // !defined(__cplusplus) || defined(CINTERFACE) - -#endif // DIRECTSOUND_VERSION >= 0x0800 - -// -// IDirectSound3DListener -// - -DEFINE_GUID(IID_IDirectSound3DListener, 0x279AFA84, 0x4981, 0x11CE, 0xA5, 0x21, 0x00, 0x20, 0xAF, 0x0B, 0xE5, 0x60); - -#undef INTERFACE -#define INTERFACE IDirectSound3DListener - -DECLARE_INTERFACE_(IDirectSound3DListener, IUnknown) -{ - // IUnknown methods - STDMETHOD(QueryInterface) (THIS_ __in REFIID, __deref_out LPVOID*) PURE; - STDMETHOD_(ULONG,AddRef) (THIS) PURE; - STDMETHOD_(ULONG,Release) (THIS) PURE; - - // IDirectSound3DListener methods - STDMETHOD(GetAllParameters) (THIS_ __out LPDS3DLISTENER pListener) PURE; - STDMETHOD(GetDistanceFactor) (THIS_ __out D3DVALUE* pflDistanceFactor) PURE; - STDMETHOD(GetDopplerFactor) (THIS_ __out D3DVALUE* pflDopplerFactor) PURE; - STDMETHOD(GetOrientation) (THIS_ __out D3DVECTOR* pvOrientFront, __out D3DVECTOR* pvOrientTop) PURE; - STDMETHOD(GetPosition) (THIS_ __out D3DVECTOR* pvPosition) PURE; - STDMETHOD(GetRolloffFactor) (THIS_ __out D3DVALUE* pflRolloffFactor) PURE; - STDMETHOD(GetVelocity) (THIS_ __out D3DVECTOR* pvVelocity) PURE; - STDMETHOD(SetAllParameters) (THIS_ __in LPCDS3DLISTENER pcListener, DWORD dwApply) PURE; - STDMETHOD(SetDistanceFactor) (THIS_ D3DVALUE flDistanceFactor, DWORD dwApply) PURE; - STDMETHOD(SetDopplerFactor) (THIS_ D3DVALUE flDopplerFactor, DWORD dwApply) PURE; - STDMETHOD(SetOrientation) (THIS_ D3DVALUE xFront, D3DVALUE yFront, D3DVALUE zFront, - D3DVALUE xTop, D3DVALUE yTop, D3DVALUE zTop, DWORD dwApply) PURE; - STDMETHOD(SetPosition) (THIS_ D3DVALUE x, D3DVALUE y, D3DVALUE z, DWORD dwApply) PURE; - STDMETHOD(SetRolloffFactor) (THIS_ D3DVALUE flRolloffFactor, DWORD dwApply) PURE; - STDMETHOD(SetVelocity) (THIS_ D3DVALUE x, D3DVALUE y, D3DVALUE z, DWORD dwApply) PURE; - STDMETHOD(CommitDeferredSettings) (THIS) PURE; -}; - -#define IDirectSound3DListener_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) -#define IDirectSound3DListener_AddRef(p) IUnknown_AddRef(p) -#define IDirectSound3DListener_Release(p) IUnknown_Release(p) - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSound3DListener_GetAllParameters(p,a) (p)->lpVtbl->GetAllParameters(p,a) -#define IDirectSound3DListener_GetDistanceFactor(p,a) (p)->lpVtbl->GetDistanceFactor(p,a) -#define IDirectSound3DListener_GetDopplerFactor(p,a) (p)->lpVtbl->GetDopplerFactor(p,a) -#define IDirectSound3DListener_GetOrientation(p,a,b) (p)->lpVtbl->GetOrientation(p,a,b) -#define IDirectSound3DListener_GetPosition(p,a) (p)->lpVtbl->GetPosition(p,a) -#define IDirectSound3DListener_GetRolloffFactor(p,a) (p)->lpVtbl->GetRolloffFactor(p,a) -#define IDirectSound3DListener_GetVelocity(p,a) (p)->lpVtbl->GetVelocity(p,a) -#define IDirectSound3DListener_SetAllParameters(p,a,b) (p)->lpVtbl->SetAllParameters(p,a,b) -#define IDirectSound3DListener_SetDistanceFactor(p,a,b) (p)->lpVtbl->SetDistanceFactor(p,a,b) -#define IDirectSound3DListener_SetDopplerFactor(p,a,b) (p)->lpVtbl->SetDopplerFactor(p,a,b) -#define IDirectSound3DListener_SetOrientation(p,a,b,c,d,e,f,g) (p)->lpVtbl->SetOrientation(p,a,b,c,d,e,f,g) -#define IDirectSound3DListener_SetPosition(p,a,b,c,d) (p)->lpVtbl->SetPosition(p,a,b,c,d) -#define IDirectSound3DListener_SetRolloffFactor(p,a,b) (p)->lpVtbl->SetRolloffFactor(p,a,b) -#define IDirectSound3DListener_SetVelocity(p,a,b,c,d) (p)->lpVtbl->SetVelocity(p,a,b,c,d) -#define IDirectSound3DListener_CommitDeferredSettings(p) (p)->lpVtbl->CommitDeferredSettings(p) -#else // !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSound3DListener_GetAllParameters(p,a) (p)->GetAllParameters(a) -#define IDirectSound3DListener_GetDistanceFactor(p,a) (p)->GetDistanceFactor(a) -#define IDirectSound3DListener_GetDopplerFactor(p,a) (p)->GetDopplerFactor(a) -#define IDirectSound3DListener_GetOrientation(p,a,b) (p)->GetOrientation(a,b) -#define IDirectSound3DListener_GetPosition(p,a) (p)->GetPosition(a) -#define IDirectSound3DListener_GetRolloffFactor(p,a) (p)->GetRolloffFactor(a) -#define IDirectSound3DListener_GetVelocity(p,a) (p)->GetVelocity(a) -#define IDirectSound3DListener_SetAllParameters(p,a,b) (p)->SetAllParameters(a,b) -#define IDirectSound3DListener_SetDistanceFactor(p,a,b) (p)->SetDistanceFactor(a,b) -#define IDirectSound3DListener_SetDopplerFactor(p,a,b) (p)->SetDopplerFactor(a,b) -#define IDirectSound3DListener_SetOrientation(p,a,b,c,d,e,f,g) (p)->SetOrientation(a,b,c,d,e,f,g) -#define IDirectSound3DListener_SetPosition(p,a,b,c,d) (p)->SetPosition(a,b,c,d) -#define IDirectSound3DListener_SetRolloffFactor(p,a,b) (p)->SetRolloffFactor(a,b) -#define IDirectSound3DListener_SetVelocity(p,a,b,c,d) (p)->SetVelocity(a,b,c,d) -#define IDirectSound3DListener_CommitDeferredSettings(p) (p)->CommitDeferredSettings() -#endif // !defined(__cplusplus) || defined(CINTERFACE) - -// -// IDirectSound3DBuffer -// - -DEFINE_GUID(IID_IDirectSound3DBuffer, 0x279AFA86, 0x4981, 0x11CE, 0xA5, 0x21, 0x00, 0x20, 0xAF, 0x0B, 0xE5, 0x60); - -#undef INTERFACE -#define INTERFACE IDirectSound3DBuffer - -DECLARE_INTERFACE_(IDirectSound3DBuffer, IUnknown) -{ - // IUnknown methods - STDMETHOD(QueryInterface) (THIS_ __in REFIID, __deref_out LPVOID*) PURE; - STDMETHOD_(ULONG,AddRef) (THIS) PURE; - STDMETHOD_(ULONG,Release) (THIS) PURE; - - // IDirectSound3DBuffer methods - STDMETHOD(GetAllParameters) (THIS_ __out LPDS3DBUFFER pDs3dBuffer) PURE; - STDMETHOD(GetConeAngles) (THIS_ __out LPDWORD pdwInsideConeAngle, __out LPDWORD pdwOutsideConeAngle) PURE; - STDMETHOD(GetConeOrientation) (THIS_ __out D3DVECTOR* pvOrientation) PURE; - STDMETHOD(GetConeOutsideVolume) (THIS_ __out LPLONG plConeOutsideVolume) PURE; - STDMETHOD(GetMaxDistance) (THIS_ __out D3DVALUE* pflMaxDistance) PURE; - STDMETHOD(GetMinDistance) (THIS_ __out D3DVALUE* pflMinDistance) PURE; - STDMETHOD(GetMode) (THIS_ __out LPDWORD pdwMode) PURE; - STDMETHOD(GetPosition) (THIS_ __out D3DVECTOR* pvPosition) PURE; - STDMETHOD(GetVelocity) (THIS_ __out D3DVECTOR* pvVelocity) PURE; - STDMETHOD(SetAllParameters) (THIS_ __in LPCDS3DBUFFER pcDs3dBuffer, DWORD dwApply) PURE; - STDMETHOD(SetConeAngles) (THIS_ DWORD dwInsideConeAngle, DWORD dwOutsideConeAngle, DWORD dwApply) PURE; - STDMETHOD(SetConeOrientation) (THIS_ D3DVALUE x, D3DVALUE y, D3DVALUE z, DWORD dwApply) PURE; - STDMETHOD(SetConeOutsideVolume) (THIS_ LONG lConeOutsideVolume, DWORD dwApply) PURE; - STDMETHOD(SetMaxDistance) (THIS_ D3DVALUE flMaxDistance, DWORD dwApply) PURE; - STDMETHOD(SetMinDistance) (THIS_ D3DVALUE flMinDistance, DWORD dwApply) PURE; - STDMETHOD(SetMode) (THIS_ DWORD dwMode, DWORD dwApply) PURE; - STDMETHOD(SetPosition) (THIS_ D3DVALUE x, D3DVALUE y, D3DVALUE z, DWORD dwApply) PURE; - STDMETHOD(SetVelocity) (THIS_ D3DVALUE x, D3DVALUE y, D3DVALUE z, DWORD dwApply) PURE; -}; - -#define IDirectSound3DBuffer_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) -#define IDirectSound3DBuffer_AddRef(p) IUnknown_AddRef(p) -#define IDirectSound3DBuffer_Release(p) IUnknown_Release(p) - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSound3DBuffer_GetAllParameters(p,a) (p)->lpVtbl->GetAllParameters(p,a) -#define IDirectSound3DBuffer_GetConeAngles(p,a,b) (p)->lpVtbl->GetConeAngles(p,a,b) -#define IDirectSound3DBuffer_GetConeOrientation(p,a) (p)->lpVtbl->GetConeOrientation(p,a) -#define IDirectSound3DBuffer_GetConeOutsideVolume(p,a) (p)->lpVtbl->GetConeOutsideVolume(p,a) -#define IDirectSound3DBuffer_GetPosition(p,a) (p)->lpVtbl->GetPosition(p,a) -#define IDirectSound3DBuffer_GetMinDistance(p,a) (p)->lpVtbl->GetMinDistance(p,a) -#define IDirectSound3DBuffer_GetMaxDistance(p,a) (p)->lpVtbl->GetMaxDistance(p,a) -#define IDirectSound3DBuffer_GetMode(p,a) (p)->lpVtbl->GetMode(p,a) -#define IDirectSound3DBuffer_GetVelocity(p,a) (p)->lpVtbl->GetVelocity(p,a) -#define IDirectSound3DBuffer_SetAllParameters(p,a,b) (p)->lpVtbl->SetAllParameters(p,a,b) -#define IDirectSound3DBuffer_SetConeAngles(p,a,b,c) (p)->lpVtbl->SetConeAngles(p,a,b,c) -#define IDirectSound3DBuffer_SetConeOrientation(p,a,b,c,d) (p)->lpVtbl->SetConeOrientation(p,a,b,c,d) -#define IDirectSound3DBuffer_SetConeOutsideVolume(p,a,b) (p)->lpVtbl->SetConeOutsideVolume(p,a,b) -#define IDirectSound3DBuffer_SetPosition(p,a,b,c,d) (p)->lpVtbl->SetPosition(p,a,b,c,d) -#define IDirectSound3DBuffer_SetMinDistance(p,a,b) (p)->lpVtbl->SetMinDistance(p,a,b) -#define IDirectSound3DBuffer_SetMaxDistance(p,a,b) (p)->lpVtbl->SetMaxDistance(p,a,b) -#define IDirectSound3DBuffer_SetMode(p,a,b) (p)->lpVtbl->SetMode(p,a,b) -#define IDirectSound3DBuffer_SetVelocity(p,a,b,c,d) (p)->lpVtbl->SetVelocity(p,a,b,c,d) -#else // !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSound3DBuffer_GetAllParameters(p,a) (p)->GetAllParameters(a) -#define IDirectSound3DBuffer_GetConeAngles(p,a,b) (p)->GetConeAngles(a,b) -#define IDirectSound3DBuffer_GetConeOrientation(p,a) (p)->GetConeOrientation(a) -#define IDirectSound3DBuffer_GetConeOutsideVolume(p,a) (p)->GetConeOutsideVolume(a) -#define IDirectSound3DBuffer_GetPosition(p,a) (p)->GetPosition(a) -#define IDirectSound3DBuffer_GetMinDistance(p,a) (p)->GetMinDistance(a) -#define IDirectSound3DBuffer_GetMaxDistance(p,a) (p)->GetMaxDistance(a) -#define IDirectSound3DBuffer_GetMode(p,a) (p)->GetMode(a) -#define IDirectSound3DBuffer_GetVelocity(p,a) (p)->GetVelocity(a) -#define IDirectSound3DBuffer_SetAllParameters(p,a,b) (p)->SetAllParameters(a,b) -#define IDirectSound3DBuffer_SetConeAngles(p,a,b,c) (p)->SetConeAngles(a,b,c) -#define IDirectSound3DBuffer_SetConeOrientation(p,a,b,c,d) (p)->SetConeOrientation(a,b,c,d) -#define IDirectSound3DBuffer_SetConeOutsideVolume(p,a,b) (p)->SetConeOutsideVolume(a,b) -#define IDirectSound3DBuffer_SetPosition(p,a,b,c,d) (p)->SetPosition(a,b,c,d) -#define IDirectSound3DBuffer_SetMinDistance(p,a,b) (p)->SetMinDistance(a,b) -#define IDirectSound3DBuffer_SetMaxDistance(p,a,b) (p)->SetMaxDistance(a,b) -#define IDirectSound3DBuffer_SetMode(p,a,b) (p)->SetMode(a,b) -#define IDirectSound3DBuffer_SetVelocity(p,a,b,c,d) (p)->SetVelocity(a,b,c,d) -#endif // !defined(__cplusplus) || defined(CINTERFACE) - -// -// IDirectSoundCapture -// - -DEFINE_GUID(IID_IDirectSoundCapture, 0xb0210781, 0x89cd, 0x11d0, 0xaf, 0x8, 0x0, 0xa0, 0xc9, 0x25, 0xcd, 0x16); - -#undef INTERFACE -#define INTERFACE IDirectSoundCapture - -DECLARE_INTERFACE_(IDirectSoundCapture, IUnknown) -{ - // IUnknown methods - STDMETHOD(QueryInterface) (THIS_ __in REFIID, __deref_out LPVOID*) PURE; - STDMETHOD_(ULONG,AddRef) (THIS) PURE; - STDMETHOD_(ULONG,Release) (THIS) PURE; - - // IDirectSoundCapture methods - STDMETHOD(CreateCaptureBuffer) (THIS_ __in LPCDSCBUFFERDESC pcDSCBufferDesc, __deref_out LPDIRECTSOUNDCAPTUREBUFFER *ppDSCBuffer, __null LPUNKNOWN pUnkOuter) PURE; - STDMETHOD(GetCaps) (THIS_ __out LPDSCCAPS pDSCCaps) PURE; - STDMETHOD(Initialize) (THIS_ __in_opt LPCGUID pcGuidDevice) PURE; -}; - -#define IDirectSoundCapture_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) -#define IDirectSoundCapture_AddRef(p) IUnknown_AddRef(p) -#define IDirectSoundCapture_Release(p) IUnknown_Release(p) - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundCapture_CreateCaptureBuffer(p,a,b,c) (p)->lpVtbl->CreateCaptureBuffer(p,a,b,c) -#define IDirectSoundCapture_GetCaps(p,a) (p)->lpVtbl->GetCaps(p,a) -#define IDirectSoundCapture_Initialize(p,a) (p)->lpVtbl->Initialize(p,a) -#else // !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundCapture_CreateCaptureBuffer(p,a,b,c) (p)->CreateCaptureBuffer(a,b,c) -#define IDirectSoundCapture_GetCaps(p,a) (p)->GetCaps(a) -#define IDirectSoundCapture_Initialize(p,a) (p)->Initialize(a) -#endif // !defined(__cplusplus) || defined(CINTERFACE) - -// -// IDirectSoundCaptureBuffer -// - -DEFINE_GUID(IID_IDirectSoundCaptureBuffer, 0xb0210782, 0x89cd, 0x11d0, 0xaf, 0x8, 0x0, 0xa0, 0xc9, 0x25, 0xcd, 0x16); - -#undef INTERFACE -#define INTERFACE IDirectSoundCaptureBuffer - -DECLARE_INTERFACE_(IDirectSoundCaptureBuffer, IUnknown) -{ - // IUnknown methods - STDMETHOD(QueryInterface) (THIS_ __in REFIID, __deref_out LPVOID*) PURE; - STDMETHOD_(ULONG,AddRef) (THIS) PURE; - STDMETHOD_(ULONG,Release) (THIS) PURE; - - // IDirectSoundCaptureBuffer methods - STDMETHOD(GetCaps) (THIS_ __out LPDSCBCAPS pDSCBCaps) PURE; - STDMETHOD(GetCurrentPosition) (THIS_ __out_opt LPDWORD pdwCapturePosition, __out_opt LPDWORD pdwReadPosition) PURE; - STDMETHOD(GetFormat) (THIS_ __out_bcount_opt(dwSizeAllocated) LPWAVEFORMATEX pwfxFormat, DWORD dwSizeAllocated, __out_opt LPDWORD pdwSizeWritten) PURE; - STDMETHOD(GetStatus) (THIS_ __out LPDWORD pdwStatus) PURE; - STDMETHOD(Initialize) (THIS_ __in LPDIRECTSOUNDCAPTURE pDirectSoundCapture, __in LPCDSCBUFFERDESC pcDSCBufferDesc) PURE; - STDMETHOD(Lock) (THIS_ DWORD dwOffset, DWORD dwBytes, - __deref_out_bcount(*pdwAudioBytes1) LPVOID *ppvAudioPtr1, __out LPDWORD pdwAudioBytes1, - __deref_opt_out_bcount(*pdwAudioBytes2) LPVOID *ppvAudioPtr2, __out_opt LPDWORD pdwAudioBytes2, DWORD dwFlags) PURE; - STDMETHOD(Start) (THIS_ DWORD dwFlags) PURE; - STDMETHOD(Stop) (THIS) PURE; - STDMETHOD(Unlock) (THIS_ __in_bcount(dwAudioBytes1) LPVOID pvAudioPtr1, DWORD dwAudioBytes1, - __in_bcount_opt(dwAudioBytes2) LPVOID pvAudioPtr2, DWORD dwAudioBytes2) PURE; -}; - -#define IDirectSoundCaptureBuffer_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) -#define IDirectSoundCaptureBuffer_AddRef(p) IUnknown_AddRef(p) -#define IDirectSoundCaptureBuffer_Release(p) IUnknown_Release(p) - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundCaptureBuffer_GetCaps(p,a) (p)->lpVtbl->GetCaps(p,a) -#define IDirectSoundCaptureBuffer_GetCurrentPosition(p,a,b) (p)->lpVtbl->GetCurrentPosition(p,a,b) -#define IDirectSoundCaptureBuffer_GetFormat(p,a,b,c) (p)->lpVtbl->GetFormat(p,a,b,c) -#define IDirectSoundCaptureBuffer_GetStatus(p,a) (p)->lpVtbl->GetStatus(p,a) -#define IDirectSoundCaptureBuffer_Initialize(p,a,b) (p)->lpVtbl->Initialize(p,a,b) -#define IDirectSoundCaptureBuffer_Lock(p,a,b,c,d,e,f,g) (p)->lpVtbl->Lock(p,a,b,c,d,e,f,g) -#define IDirectSoundCaptureBuffer_Start(p,a) (p)->lpVtbl->Start(p,a) -#define IDirectSoundCaptureBuffer_Stop(p) (p)->lpVtbl->Stop(p) -#define IDirectSoundCaptureBuffer_Unlock(p,a,b,c,d) (p)->lpVtbl->Unlock(p,a,b,c,d) -#else // !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundCaptureBuffer_GetCaps(p,a) (p)->GetCaps(a) -#define IDirectSoundCaptureBuffer_GetCurrentPosition(p,a,b) (p)->GetCurrentPosition(a,b) -#define IDirectSoundCaptureBuffer_GetFormat(p,a,b,c) (p)->GetFormat(a,b,c) -#define IDirectSoundCaptureBuffer_GetStatus(p,a) (p)->GetStatus(a) -#define IDirectSoundCaptureBuffer_Initialize(p,a,b) (p)->Initialize(a,b) -#define IDirectSoundCaptureBuffer_Lock(p,a,b,c,d,e,f,g) (p)->Lock(a,b,c,d,e,f,g) -#define IDirectSoundCaptureBuffer_Start(p,a) (p)->Start(a) -#define IDirectSoundCaptureBuffer_Stop(p) (p)->Stop() -#define IDirectSoundCaptureBuffer_Unlock(p,a,b,c,d) (p)->Unlock(a,b,c,d) -#endif // !defined(__cplusplus) || defined(CINTERFACE) - -#if DIRECTSOUND_VERSION >= 0x0800 - -// -// IDirectSoundCaptureBuffer8 -// - -DEFINE_GUID(IID_IDirectSoundCaptureBuffer8, 0x990df4, 0xdbb, 0x4872, 0x83, 0x3e, 0x6d, 0x30, 0x3e, 0x80, 0xae, 0xb6); - -#undef INTERFACE -#define INTERFACE IDirectSoundCaptureBuffer8 - -DECLARE_INTERFACE_(IDirectSoundCaptureBuffer8, IDirectSoundCaptureBuffer) -{ - // IUnknown methods - STDMETHOD(QueryInterface) (THIS_ __in REFIID, __deref_out LPVOID*) PURE; - STDMETHOD_(ULONG,AddRef) (THIS) PURE; - STDMETHOD_(ULONG,Release) (THIS) PURE; - - // IDirectSoundCaptureBuffer methods - STDMETHOD(GetCaps) (THIS_ __out LPDSCBCAPS pDSCBCaps) PURE; - STDMETHOD(GetCurrentPosition) (THIS_ __out_opt LPDWORD pdwCapturePosition, __out_opt LPDWORD pdwReadPosition) PURE; - STDMETHOD(GetFormat) (THIS_ __out_bcount_opt(dwSizeAllocated) LPWAVEFORMATEX pwfxFormat, DWORD dwSizeAllocated, __out_opt LPDWORD pdwSizeWritten) PURE; - STDMETHOD(GetStatus) (THIS_ __out LPDWORD pdwStatus) PURE; - STDMETHOD(Initialize) (THIS_ __in LPDIRECTSOUNDCAPTURE pDirectSoundCapture, __in LPCDSCBUFFERDESC pcDSCBufferDesc) PURE; - STDMETHOD(Lock) (THIS_ DWORD dwOffset, DWORD dwBytes, - __deref_out_bcount(*pdwAudioBytes1) LPVOID *ppvAudioPtr1, __out LPDWORD pdwAudioBytes1, - __deref_opt_out_bcount(*pdwAudioBytes2) LPVOID *ppvAudioPtr2, __out_opt LPDWORD pdwAudioBytes2, DWORD dwFlags) PURE; - STDMETHOD(Start) (THIS_ DWORD dwFlags) PURE; - STDMETHOD(Stop) (THIS) PURE; - STDMETHOD(Unlock) (THIS_ __in_bcount(dwAudioBytes1) LPVOID pvAudioPtr1, DWORD dwAudioBytes1, - __in_bcount_opt(dwAudioBytes2) LPVOID pvAudioPtr2, DWORD dwAudioBytes2) PURE; - - // IDirectSoundCaptureBuffer8 methods - STDMETHOD(GetObjectInPath) (THIS_ __in REFGUID rguidObject, DWORD dwIndex, __in REFGUID rguidInterface, __deref_out LPVOID *ppObject) PURE; - STDMETHOD(GetFXStatus) (DWORD dwEffectsCount, __out_ecount(dwEffectsCount) LPDWORD pdwFXStatus) PURE; -}; - -#define IDirectSoundCaptureBuffer8_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) -#define IDirectSoundCaptureBuffer8_AddRef(p) IUnknown_AddRef(p) -#define IDirectSoundCaptureBuffer8_Release(p) IUnknown_Release(p) - -#define IDirectSoundCaptureBuffer8_GetCaps(p,a) IDirectSoundCaptureBuffer_GetCaps(p,a) -#define IDirectSoundCaptureBuffer8_GetCurrentPosition(p,a,b) IDirectSoundCaptureBuffer_GetCurrentPosition(p,a,b) -#define IDirectSoundCaptureBuffer8_GetFormat(p,a,b,c) IDirectSoundCaptureBuffer_GetFormat(p,a,b,c) -#define IDirectSoundCaptureBuffer8_GetStatus(p,a) IDirectSoundCaptureBuffer_GetStatus(p,a) -#define IDirectSoundCaptureBuffer8_Initialize(p,a,b) IDirectSoundCaptureBuffer_Initialize(p,a,b) -#define IDirectSoundCaptureBuffer8_Lock(p,a,b,c,d,e,f,g) IDirectSoundCaptureBuffer_Lock(p,a,b,c,d,e,f,g) -#define IDirectSoundCaptureBuffer8_Start(p,a) IDirectSoundCaptureBuffer_Start(p,a) -#define IDirectSoundCaptureBuffer8_Stop(p) IDirectSoundCaptureBuffer_Stop(p)) -#define IDirectSoundCaptureBuffer8_Unlock(p,a,b,c,d) IDirectSoundCaptureBuffer_Unlock(p,a,b,c,d) - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundCaptureBuffer8_GetObjectInPath(p,a,b,c,d) (p)->lpVtbl->GetObjectInPath(p,a,b,c,d) -#define IDirectSoundCaptureBuffer8_GetFXStatus(p,a,b) (p)->lpVtbl->GetFXStatus(p,a,b) -#else // !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundCaptureBuffer8_GetObjectInPath(p,a,b,c,d) (p)->GetObjectInPath(a,b,c,d) -#define IDirectSoundCaptureBuffer8_GetFXStatus(p,a,b) (p)->GetFXStatus(a,b) -#endif // !defined(__cplusplus) || defined(CINTERFACE) - -#endif // DIRECTSOUND_VERSION >= 0x0800 - -// -// IDirectSoundNotify -// - -DEFINE_GUID(IID_IDirectSoundNotify, 0xb0210783, 0x89cd, 0x11d0, 0xaf, 0x8, 0x0, 0xa0, 0xc9, 0x25, 0xcd, 0x16); - -#undef INTERFACE -#define INTERFACE IDirectSoundNotify - -DECLARE_INTERFACE_(IDirectSoundNotify, IUnknown) -{ - // IUnknown methods - STDMETHOD(QueryInterface) (THIS_ __in REFIID, __deref_out LPVOID*) PURE; - STDMETHOD_(ULONG,AddRef) (THIS) PURE; - STDMETHOD_(ULONG,Release) (THIS) PURE; - - // IDirectSoundNotify methods - STDMETHOD(SetNotificationPositions) (THIS_ DWORD dwPositionNotifies, __in_ecount(dwPositionNotifies) LPCDSBPOSITIONNOTIFY pcPositionNotifies) PURE; -}; - -#define IDirectSoundNotify_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) -#define IDirectSoundNotify_AddRef(p) IUnknown_AddRef(p) -#define IDirectSoundNotify_Release(p) IUnknown_Release(p) - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundNotify_SetNotificationPositions(p,a,b) (p)->lpVtbl->SetNotificationPositions(p,a,b) -#else // !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundNotify_SetNotificationPositions(p,a,b) (p)->SetNotificationPositions(a,b) -#endif // !defined(__cplusplus) || defined(CINTERFACE) - -// -// IKsPropertySet -// - -#ifndef _IKsPropertySet_ -#define _IKsPropertySet_ - -#ifdef __cplusplus -// 'struct' not 'class' per the way DECLARE_INTERFACE_ is defined -struct IKsPropertySet; -#endif // __cplusplus - -typedef struct IKsPropertySet *LPKSPROPERTYSET; - -#define KSPROPERTY_SUPPORT_GET 0x00000001 -#define KSPROPERTY_SUPPORT_SET 0x00000002 - -DEFINE_GUID(IID_IKsPropertySet, 0x31efac30, 0x515c, 0x11d0, 0xa9, 0xaa, 0x00, 0xaa, 0x00, 0x61, 0xbe, 0x93); - -#undef INTERFACE -#define INTERFACE IKsPropertySet - -DECLARE_INTERFACE_(IKsPropertySet, IUnknown) -{ - // IUnknown methods - STDMETHOD(QueryInterface) (THIS_ __in REFIID, __deref_out LPVOID*) PURE; - STDMETHOD_(ULONG,AddRef) (THIS) PURE; - STDMETHOD_(ULONG,Release) (THIS) PURE; - - // IKsPropertySet methods - STDMETHOD(Get) (THIS_ __in REFGUID rguidPropSet, ULONG ulId, __in_bcount(ulInstanceLength) LPVOID pInstanceData, ULONG ulInstanceLength, - __out_bcount(ulDataLength) LPVOID pPropertyData, ULONG ulDataLength, __out PULONG pulBytesReturned) PURE; - STDMETHOD(Set) (THIS_ __in REFGUID rguidPropSet, ULONG ulId, __in_bcount(ulInstanceLength) LPVOID pInstanceData, ULONG ulInstanceLength, - __in_bcount(ulDataLength) LPVOID pPropertyData, ULONG ulDataLength) PURE; - STDMETHOD(QuerySupport) (THIS_ __in REFGUID rguidPropSet, ULONG ulId, __out PULONG pulTypeSupport) PURE; -}; - -#define IKsPropertySet_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) -#define IKsPropertySet_AddRef(p) IUnknown_AddRef(p) -#define IKsPropertySet_Release(p) IUnknown_Release(p) - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IKsPropertySet_Get(p,a,b,c,d,e,f,g) (p)->lpVtbl->Get(p,a,b,c,d,e,f,g) -#define IKsPropertySet_Set(p,a,b,c,d,e,f) (p)->lpVtbl->Set(p,a,b,c,d,e,f) -#define IKsPropertySet_QuerySupport(p,a,b,c) (p)->lpVtbl->QuerySupport(p,a,b,c) -#else // !defined(__cplusplus) || defined(CINTERFACE) -#define IKsPropertySet_Get(p,a,b,c,d,e,f,g) (p)->Get(a,b,c,d,e,f,g) -#define IKsPropertySet_Set(p,a,b,c,d,e,f) (p)->Set(a,b,c,d,e,f) -#define IKsPropertySet_QuerySupport(p,a,b,c) (p)->QuerySupport(a,b,c) -#endif // !defined(__cplusplus) || defined(CINTERFACE) - -#endif // _IKsPropertySet_ - -#if DIRECTSOUND_VERSION >= 0x0800 - -// -// IDirectSoundFXGargle -// - -DEFINE_GUID(IID_IDirectSoundFXGargle, 0xd616f352, 0xd622, 0x11ce, 0xaa, 0xc5, 0x00, 0x20, 0xaf, 0x0b, 0x99, 0xa3); - -typedef struct _DSFXGargle -{ - DWORD dwRateHz; // Rate of modulation in hz - DWORD dwWaveShape; // DSFXGARGLE_WAVE_xxx -} DSFXGargle, *LPDSFXGargle; - -#define DSFXGARGLE_WAVE_TRIANGLE 0 -#define DSFXGARGLE_WAVE_SQUARE 1 - -typedef const DSFXGargle *LPCDSFXGargle; - -#define DSFXGARGLE_RATEHZ_MIN 1 -#define DSFXGARGLE_RATEHZ_MAX 1000 - -#undef INTERFACE -#define INTERFACE IDirectSoundFXGargle - -DECLARE_INTERFACE_(IDirectSoundFXGargle, IUnknown) -{ - // IUnknown methods - STDMETHOD(QueryInterface) (THIS_ __in REFIID, __deref_out LPVOID*) PURE; - STDMETHOD_(ULONG,AddRef) (THIS) PURE; - STDMETHOD_(ULONG,Release) (THIS) PURE; - - // IDirectSoundFXGargle methods - STDMETHOD(SetAllParameters) (THIS_ __in LPCDSFXGargle pcDsFxGargle) PURE; - STDMETHOD(GetAllParameters) (THIS_ __out LPDSFXGargle pDsFxGargle) PURE; -}; - -#define IDirectSoundFXGargle_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) -#define IDirectSoundFXGargle_AddRef(p) IUnknown_AddRef(p) -#define IDirectSoundFXGargle_Release(p) IUnknown_Release(p) - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundFXGargle_SetAllParameters(p,a) (p)->lpVtbl->SetAllParameters(p,a) -#define IDirectSoundFXGargle_GetAllParameters(p,a) (p)->lpVtbl->GetAllParameters(p,a) -#else // !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundFXGargle_SetAllParameters(p,a) (p)->SetAllParameters(a) -#define IDirectSoundFXGargle_GetAllParameters(p,a) (p)->GetAllParameters(a) -#endif // !defined(__cplusplus) || defined(CINTERFACE) - -// -// IDirectSoundFXChorus -// - -DEFINE_GUID(IID_IDirectSoundFXChorus, 0x880842e3, 0x145f, 0x43e6, 0xa9, 0x34, 0xa7, 0x18, 0x06, 0xe5, 0x05, 0x47); - -typedef struct _DSFXChorus -{ - FLOAT fWetDryMix; - FLOAT fDepth; - FLOAT fFeedback; - FLOAT fFrequency; - LONG lWaveform; // LFO shape; DSFXCHORUS_WAVE_xxx - FLOAT fDelay; - LONG lPhase; -} DSFXChorus, *LPDSFXChorus; - -typedef const DSFXChorus *LPCDSFXChorus; - -#define DSFXCHORUS_WAVE_TRIANGLE 0 -#define DSFXCHORUS_WAVE_SIN 1 - -#define DSFXCHORUS_WETDRYMIX_MIN 0.0f -#define DSFXCHORUS_WETDRYMIX_MAX 100.0f -#define DSFXCHORUS_DEPTH_MIN 0.0f -#define DSFXCHORUS_DEPTH_MAX 100.0f -#define DSFXCHORUS_FEEDBACK_MIN -99.0f -#define DSFXCHORUS_FEEDBACK_MAX 99.0f -#define DSFXCHORUS_FREQUENCY_MIN 0.0f -#define DSFXCHORUS_FREQUENCY_MAX 10.0f -#define DSFXCHORUS_DELAY_MIN 0.0f -#define DSFXCHORUS_DELAY_MAX 20.0f -#define DSFXCHORUS_PHASE_MIN 0 -#define DSFXCHORUS_PHASE_MAX 4 - -#define DSFXCHORUS_PHASE_NEG_180 0 -#define DSFXCHORUS_PHASE_NEG_90 1 -#define DSFXCHORUS_PHASE_ZERO 2 -#define DSFXCHORUS_PHASE_90 3 -#define DSFXCHORUS_PHASE_180 4 - -#undef INTERFACE -#define INTERFACE IDirectSoundFXChorus - -DECLARE_INTERFACE_(IDirectSoundFXChorus, IUnknown) -{ - // IUnknown methods - STDMETHOD(QueryInterface) (THIS_ __in REFIID, __deref_out LPVOID*) PURE; - STDMETHOD_(ULONG,AddRef) (THIS) PURE; - STDMETHOD_(ULONG,Release) (THIS) PURE; - - // IDirectSoundFXChorus methods - STDMETHOD(SetAllParameters) (THIS_ __in LPCDSFXChorus pcDsFxChorus) PURE; - STDMETHOD(GetAllParameters) (THIS_ __out LPDSFXChorus pDsFxChorus) PURE; -}; - -#define IDirectSoundFXChorus_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) -#define IDirectSoundFXChorus_AddRef(p) IUnknown_AddRef(p) -#define IDirectSoundFXChorus_Release(p) IUnknown_Release(p) - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundFXChorus_SetAllParameters(p,a) (p)->lpVtbl->SetAllParameters(p,a) -#define IDirectSoundFXChorus_GetAllParameters(p,a) (p)->lpVtbl->GetAllParameters(p,a) -#else // !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundFXChorus_SetAllParameters(p,a) (p)->SetAllParameters(a) -#define IDirectSoundFXChorus_GetAllParameters(p,a) (p)->GetAllParameters(a) -#endif // !defined(__cplusplus) || defined(CINTERFACE) - -// -// IDirectSoundFXFlanger -// - -DEFINE_GUID(IID_IDirectSoundFXFlanger, 0x903e9878, 0x2c92, 0x4072, 0x9b, 0x2c, 0xea, 0x68, 0xf5, 0x39, 0x67, 0x83); - -typedef struct _DSFXFlanger -{ - FLOAT fWetDryMix; - FLOAT fDepth; - FLOAT fFeedback; - FLOAT fFrequency; - LONG lWaveform; - FLOAT fDelay; - LONG lPhase; -} DSFXFlanger, *LPDSFXFlanger; - -typedef const DSFXFlanger *LPCDSFXFlanger; - -#define DSFXFLANGER_WAVE_TRIANGLE 0 -#define DSFXFLANGER_WAVE_SIN 1 - -#define DSFXFLANGER_WETDRYMIX_MIN 0.0f -#define DSFXFLANGER_WETDRYMIX_MAX 100.0f -#define DSFXFLANGER_FREQUENCY_MIN 0.0f -#define DSFXFLANGER_FREQUENCY_MAX 10.0f -#define DSFXFLANGER_DEPTH_MIN 0.0f -#define DSFXFLANGER_DEPTH_MAX 100.0f -#define DSFXFLANGER_PHASE_MIN 0 -#define DSFXFLANGER_PHASE_MAX 4 -#define DSFXFLANGER_FEEDBACK_MIN -99.0f -#define DSFXFLANGER_FEEDBACK_MAX 99.0f -#define DSFXFLANGER_DELAY_MIN 0.0f -#define DSFXFLANGER_DELAY_MAX 4.0f - -#define DSFXFLANGER_PHASE_NEG_180 0 -#define DSFXFLANGER_PHASE_NEG_90 1 -#define DSFXFLANGER_PHASE_ZERO 2 -#define DSFXFLANGER_PHASE_90 3 -#define DSFXFLANGER_PHASE_180 4 - -#undef INTERFACE -#define INTERFACE IDirectSoundFXFlanger - -DECLARE_INTERFACE_(IDirectSoundFXFlanger, IUnknown) -{ - // IUnknown methods - STDMETHOD(QueryInterface) (THIS_ __in REFIID, __deref_out LPVOID*) PURE; - STDMETHOD_(ULONG,AddRef) (THIS) PURE; - STDMETHOD_(ULONG,Release) (THIS) PURE; - - // IDirectSoundFXFlanger methods - STDMETHOD(SetAllParameters) (THIS_ __in LPCDSFXFlanger pcDsFxFlanger) PURE; - STDMETHOD(GetAllParameters) (THIS_ __out LPDSFXFlanger pDsFxFlanger) PURE; -}; - -#define IDirectSoundFXFlanger_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) -#define IDirectSoundFXFlanger_AddRef(p) IUnknown_AddRef(p) -#define IDirectSoundFXFlanger_Release(p) IUnknown_Release(p) - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundFXFlanger_SetAllParameters(p,a) (p)->lpVtbl->SetAllParameters(p,a) -#define IDirectSoundFXFlanger_GetAllParameters(p,a) (p)->lpVtbl->GetAllParameters(p,a) -#else // !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundFXFlanger_SetAllParameters(p,a) (p)->SetAllParameters(a) -#define IDirectSoundFXFlanger_GetAllParameters(p,a) (p)->GetAllParameters(a) -#endif // !defined(__cplusplus) || defined(CINTERFACE) - -// -// IDirectSoundFXEcho -// - -DEFINE_GUID(IID_IDirectSoundFXEcho, 0x8bd28edf, 0x50db, 0x4e92, 0xa2, 0xbd, 0x44, 0x54, 0x88, 0xd1, 0xed, 0x42); - -typedef struct _DSFXEcho -{ - FLOAT fWetDryMix; - FLOAT fFeedback; - FLOAT fLeftDelay; - FLOAT fRightDelay; - LONG lPanDelay; -} DSFXEcho, *LPDSFXEcho; - -typedef const DSFXEcho *LPCDSFXEcho; - -#define DSFXECHO_WETDRYMIX_MIN 0.0f -#define DSFXECHO_WETDRYMIX_MAX 100.0f -#define DSFXECHO_FEEDBACK_MIN 0.0f -#define DSFXECHO_FEEDBACK_MAX 100.0f -#define DSFXECHO_LEFTDELAY_MIN 1.0f -#define DSFXECHO_LEFTDELAY_MAX 2000.0f -#define DSFXECHO_RIGHTDELAY_MIN 1.0f -#define DSFXECHO_RIGHTDELAY_MAX 2000.0f -#define DSFXECHO_PANDELAY_MIN 0 -#define DSFXECHO_PANDELAY_MAX 1 - -#undef INTERFACE -#define INTERFACE IDirectSoundFXEcho - -DECLARE_INTERFACE_(IDirectSoundFXEcho, IUnknown) -{ - // IUnknown methods - STDMETHOD(QueryInterface) (THIS_ __in REFIID, __deref_out LPVOID*) PURE; - STDMETHOD_(ULONG,AddRef) (THIS) PURE; - STDMETHOD_(ULONG,Release) (THIS) PURE; - - // IDirectSoundFXEcho methods - STDMETHOD(SetAllParameters) (THIS_ __in LPCDSFXEcho pcDsFxEcho) PURE; - STDMETHOD(GetAllParameters) (THIS_ __out LPDSFXEcho pDsFxEcho) PURE; -}; - -#define IDirectSoundFXEcho_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) -#define IDirectSoundFXEcho_AddRef(p) IUnknown_AddRef(p) -#define IDirectSoundFXEcho_Release(p) IUnknown_Release(p) - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundFXEcho_SetAllParameters(p,a) (p)->lpVtbl->SetAllParameters(p,a) -#define IDirectSoundFXEcho_GetAllParameters(p,a) (p)->lpVtbl->GetAllParameters(p,a) -#else // !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundFXEcho_SetAllParameters(p,a) (p)->SetAllParameters(a) -#define IDirectSoundFXEcho_GetAllParameters(p,a) (p)->GetAllParameters(a) -#endif // !defined(__cplusplus) || defined(CINTERFACE) - -// -// IDirectSoundFXDistortion -// - -DEFINE_GUID(IID_IDirectSoundFXDistortion, 0x8ecf4326, 0x455f, 0x4d8b, 0xbd, 0xa9, 0x8d, 0x5d, 0x3e, 0x9e, 0x3e, 0x0b); - -typedef struct _DSFXDistortion -{ - FLOAT fGain; - FLOAT fEdge; - FLOAT fPostEQCenterFrequency; - FLOAT fPostEQBandwidth; - FLOAT fPreLowpassCutoff; -} DSFXDistortion, *LPDSFXDistortion; - -typedef const DSFXDistortion *LPCDSFXDistortion; - -#define DSFXDISTORTION_GAIN_MIN -60.0f -#define DSFXDISTORTION_GAIN_MAX 0.0f -#define DSFXDISTORTION_EDGE_MIN 0.0f -#define DSFXDISTORTION_EDGE_MAX 100.0f -#define DSFXDISTORTION_POSTEQCENTERFREQUENCY_MIN 100.0f -#define DSFXDISTORTION_POSTEQCENTERFREQUENCY_MAX 8000.0f -#define DSFXDISTORTION_POSTEQBANDWIDTH_MIN 100.0f -#define DSFXDISTORTION_POSTEQBANDWIDTH_MAX 8000.0f -#define DSFXDISTORTION_PRELOWPASSCUTOFF_MIN 100.0f -#define DSFXDISTORTION_PRELOWPASSCUTOFF_MAX 8000.0f - -#undef INTERFACE -#define INTERFACE IDirectSoundFXDistortion - -DECLARE_INTERFACE_(IDirectSoundFXDistortion, IUnknown) -{ - // IUnknown methods - STDMETHOD(QueryInterface) (THIS_ __in REFIID, __deref_out LPVOID*) PURE; - STDMETHOD_(ULONG,AddRef) (THIS) PURE; - STDMETHOD_(ULONG,Release) (THIS) PURE; - - // IDirectSoundFXDistortion methods - STDMETHOD(SetAllParameters) (THIS_ __in LPCDSFXDistortion pcDsFxDistortion) PURE; - STDMETHOD(GetAllParameters) (THIS_ __out LPDSFXDistortion pDsFxDistortion) PURE; -}; - -#define IDirectSoundFXDistortion_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) -#define IDirectSoundFXDistortion_AddRef(p) IUnknown_AddRef(p) -#define IDirectSoundFXDistortion_Release(p) IUnknown_Release(p) - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundFXDistortion_SetAllParameters(p,a) (p)->lpVtbl->SetAllParameters(p,a) -#define IDirectSoundFXDistortion_GetAllParameters(p,a) (p)->lpVtbl->GetAllParameters(p,a) -#else // !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundFXDistortion_SetAllParameters(p,a) (p)->SetAllParameters(a) -#define IDirectSoundFXDistortion_GetAllParameters(p,a) (p)->GetAllParameters(a) -#endif // !defined(__cplusplus) || defined(CINTERFACE) - -// -// IDirectSoundFXCompressor -// - -DEFINE_GUID(IID_IDirectSoundFXCompressor, 0x4bbd1154, 0x62f6, 0x4e2c, 0xa1, 0x5c, 0xd3, 0xb6, 0xc4, 0x17, 0xf7, 0xa0); - -typedef struct _DSFXCompressor -{ - FLOAT fGain; - FLOAT fAttack; - FLOAT fRelease; - FLOAT fThreshold; - FLOAT fRatio; - FLOAT fPredelay; -} DSFXCompressor, *LPDSFXCompressor; - -typedef const DSFXCompressor *LPCDSFXCompressor; - -#define DSFXCOMPRESSOR_GAIN_MIN -60.0f -#define DSFXCOMPRESSOR_GAIN_MAX 60.0f -#define DSFXCOMPRESSOR_ATTACK_MIN 0.01f -#define DSFXCOMPRESSOR_ATTACK_MAX 500.0f -#define DSFXCOMPRESSOR_RELEASE_MIN 50.0f -#define DSFXCOMPRESSOR_RELEASE_MAX 3000.0f -#define DSFXCOMPRESSOR_THRESHOLD_MIN -60.0f -#define DSFXCOMPRESSOR_THRESHOLD_MAX 0.0f -#define DSFXCOMPRESSOR_RATIO_MIN 1.0f -#define DSFXCOMPRESSOR_RATIO_MAX 100.0f -#define DSFXCOMPRESSOR_PREDELAY_MIN 0.0f -#define DSFXCOMPRESSOR_PREDELAY_MAX 4.0f - -#undef INTERFACE -#define INTERFACE IDirectSoundFXCompressor - -DECLARE_INTERFACE_(IDirectSoundFXCompressor, IUnknown) -{ - // IUnknown methods - STDMETHOD(QueryInterface) (THIS_ __in REFIID, __deref_out LPVOID*) PURE; - STDMETHOD_(ULONG,AddRef) (THIS) PURE; - STDMETHOD_(ULONG,Release) (THIS) PURE; - - // IDirectSoundFXCompressor methods - STDMETHOD(SetAllParameters) (THIS_ __in LPCDSFXCompressor pcDsFxCompressor) PURE; - STDMETHOD(GetAllParameters) (THIS_ __out LPDSFXCompressor pDsFxCompressor) PURE; -}; - -#define IDirectSoundFXCompressor_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) -#define IDirectSoundFXCompressor_AddRef(p) IUnknown_AddRef(p) -#define IDirectSoundFXCompressor_Release(p) IUnknown_Release(p) - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundFXCompressor_SetAllParameters(p,a) (p)->lpVtbl->SetAllParameters(p,a) -#define IDirectSoundFXCompressor_GetAllParameters(p,a) (p)->lpVtbl->GetAllParameters(p,a) -#else // !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundFXCompressor_SetAllParameters(p,a) (p)->SetAllParameters(a) -#define IDirectSoundFXCompressor_GetAllParameters(p,a) (p)->GetAllParameters(a) -#endif // !defined(__cplusplus) || defined(CINTERFACE) - -// -// IDirectSoundFXParamEq -// - -DEFINE_GUID(IID_IDirectSoundFXParamEq, 0xc03ca9fe, 0xfe90, 0x4204, 0x80, 0x78, 0x82, 0x33, 0x4c, 0xd1, 0x77, 0xda); - -typedef struct _DSFXParamEq -{ - FLOAT fCenter; - FLOAT fBandwidth; - FLOAT fGain; -} DSFXParamEq, *LPDSFXParamEq; - -typedef const DSFXParamEq *LPCDSFXParamEq; - -#define DSFXPARAMEQ_CENTER_MIN 80.0f -#define DSFXPARAMEQ_CENTER_MAX 16000.0f -#define DSFXPARAMEQ_BANDWIDTH_MIN 1.0f -#define DSFXPARAMEQ_BANDWIDTH_MAX 36.0f -#define DSFXPARAMEQ_GAIN_MIN -15.0f -#define DSFXPARAMEQ_GAIN_MAX 15.0f - -#undef INTERFACE -#define INTERFACE IDirectSoundFXParamEq - -DECLARE_INTERFACE_(IDirectSoundFXParamEq, IUnknown) -{ - // IUnknown methods - STDMETHOD(QueryInterface) (THIS_ __in REFIID, __deref_out LPVOID*) PURE; - STDMETHOD_(ULONG,AddRef) (THIS) PURE; - STDMETHOD_(ULONG,Release) (THIS) PURE; - - // IDirectSoundFXParamEq methods - STDMETHOD(SetAllParameters) (THIS_ __in LPCDSFXParamEq pcDsFxParamEq) PURE; - STDMETHOD(GetAllParameters) (THIS_ __out LPDSFXParamEq pDsFxParamEq) PURE; -}; - -#define IDirectSoundFXParamEq_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) -#define IDirectSoundFXParamEq_AddRef(p) IUnknown_AddRef(p) -#define IDirectSoundFXParamEq_Release(p) IUnknown_Release(p) - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundFXParamEq_SetAllParameters(p,a) (p)->lpVtbl->SetAllParameters(p,a) -#define IDirectSoundFXParamEq_GetAllParameters(p,a) (p)->lpVtbl->GetAllParameters(p,a) -#else // !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundFXParamEq_SetAllParameters(p,a) (p)->SetAllParameters(a) -#define IDirectSoundFXParamEq_GetAllParameters(p,a) (p)->GetAllParameters(a) -#endif // !defined(__cplusplus) || defined(CINTERFACE) - -// -// IDirectSoundFXI3DL2Reverb -// - -DEFINE_GUID(IID_IDirectSoundFXI3DL2Reverb, 0x4b166a6a, 0x0d66, 0x43f3, 0x80, 0xe3, 0xee, 0x62, 0x80, 0xde, 0xe1, 0xa4); - -typedef struct _DSFXI3DL2Reverb -{ - LONG lRoom; // [-10000, 0] default: -1000 mB - LONG lRoomHF; // [-10000, 0] default: 0 mB - FLOAT flRoomRolloffFactor; // [0.0, 10.0] default: 0.0 - FLOAT flDecayTime; // [0.1, 20.0] default: 1.49s - FLOAT flDecayHFRatio; // [0.1, 2.0] default: 0.83 - LONG lReflections; // [-10000, 1000] default: -2602 mB - FLOAT flReflectionsDelay; // [0.0, 0.3] default: 0.007 s - LONG lReverb; // [-10000, 2000] default: 200 mB - FLOAT flReverbDelay; // [0.0, 0.1] default: 0.011 s - FLOAT flDiffusion; // [0.0, 100.0] default: 100.0 % - FLOAT flDensity; // [0.0, 100.0] default: 100.0 % - FLOAT flHFReference; // [20.0, 20000.0] default: 5000.0 Hz -} DSFXI3DL2Reverb, *LPDSFXI3DL2Reverb; - -typedef const DSFXI3DL2Reverb *LPCDSFXI3DL2Reverb; - -#define DSFX_I3DL2REVERB_ROOM_MIN (-10000) -#define DSFX_I3DL2REVERB_ROOM_MAX 0 -#define DSFX_I3DL2REVERB_ROOM_DEFAULT (-1000) - -#define DSFX_I3DL2REVERB_ROOMHF_MIN (-10000) -#define DSFX_I3DL2REVERB_ROOMHF_MAX 0 -#define DSFX_I3DL2REVERB_ROOMHF_DEFAULT (-100) - -#define DSFX_I3DL2REVERB_ROOMROLLOFFFACTOR_MIN 0.0f -#define DSFX_I3DL2REVERB_ROOMROLLOFFFACTOR_MAX 10.0f -#define DSFX_I3DL2REVERB_ROOMROLLOFFFACTOR_DEFAULT 0.0f - -#define DSFX_I3DL2REVERB_DECAYTIME_MIN 0.1f -#define DSFX_I3DL2REVERB_DECAYTIME_MAX 20.0f -#define DSFX_I3DL2REVERB_DECAYTIME_DEFAULT 1.49f - -#define DSFX_I3DL2REVERB_DECAYHFRATIO_MIN 0.1f -#define DSFX_I3DL2REVERB_DECAYHFRATIO_MAX 2.0f -#define DSFX_I3DL2REVERB_DECAYHFRATIO_DEFAULT 0.83f - -#define DSFX_I3DL2REVERB_REFLECTIONS_MIN (-10000) -#define DSFX_I3DL2REVERB_REFLECTIONS_MAX 1000 -#define DSFX_I3DL2REVERB_REFLECTIONS_DEFAULT (-2602) - -#define DSFX_I3DL2REVERB_REFLECTIONSDELAY_MIN 0.0f -#define DSFX_I3DL2REVERB_REFLECTIONSDELAY_MAX 0.3f -#define DSFX_I3DL2REVERB_REFLECTIONSDELAY_DEFAULT 0.007f - -#define DSFX_I3DL2REVERB_REVERB_MIN (-10000) -#define DSFX_I3DL2REVERB_REVERB_MAX 2000 -#define DSFX_I3DL2REVERB_REVERB_DEFAULT (200) - -#define DSFX_I3DL2REVERB_REVERBDELAY_MIN 0.0f -#define DSFX_I3DL2REVERB_REVERBDELAY_MAX 0.1f -#define DSFX_I3DL2REVERB_REVERBDELAY_DEFAULT 0.011f - -#define DSFX_I3DL2REVERB_DIFFUSION_MIN 0.0f -#define DSFX_I3DL2REVERB_DIFFUSION_MAX 100.0f -#define DSFX_I3DL2REVERB_DIFFUSION_DEFAULT 100.0f - -#define DSFX_I3DL2REVERB_DENSITY_MIN 0.0f -#define DSFX_I3DL2REVERB_DENSITY_MAX 100.0f -#define DSFX_I3DL2REVERB_DENSITY_DEFAULT 100.0f - -#define DSFX_I3DL2REVERB_HFREFERENCE_MIN 20.0f -#define DSFX_I3DL2REVERB_HFREFERENCE_MAX 20000.0f -#define DSFX_I3DL2REVERB_HFREFERENCE_DEFAULT 5000.0f - -#define DSFX_I3DL2REVERB_QUALITY_MIN 0 -#define DSFX_I3DL2REVERB_QUALITY_MAX 3 -#define DSFX_I3DL2REVERB_QUALITY_DEFAULT 2 - -#undef INTERFACE -#define INTERFACE IDirectSoundFXI3DL2Reverb - -DECLARE_INTERFACE_(IDirectSoundFXI3DL2Reverb, IUnknown) -{ - // IUnknown methods - STDMETHOD(QueryInterface) (THIS_ __in REFIID, __deref_out LPVOID*) PURE; - STDMETHOD_(ULONG,AddRef) (THIS) PURE; - STDMETHOD_(ULONG,Release) (THIS) PURE; - - // IDirectSoundFXI3DL2Reverb methods - STDMETHOD(SetAllParameters) (THIS_ __in LPCDSFXI3DL2Reverb pcDsFxI3DL2Reverb) PURE; - STDMETHOD(GetAllParameters) (THIS_ __out LPDSFXI3DL2Reverb pDsFxI3DL2Reverb) PURE; - STDMETHOD(SetPreset) (THIS_ DWORD dwPreset) PURE; - STDMETHOD(GetPreset) (THIS_ __out LPDWORD pdwPreset) PURE; - STDMETHOD(SetQuality) (THIS_ LONG lQuality) PURE; - STDMETHOD(GetQuality) (THIS_ __out LONG *plQuality) PURE; -}; - -#define IDirectSoundFXI3DL2Reverb_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) -#define IDirectSoundFXI3DL2Reverb_AddRef(p) IUnknown_AddRef(p) -#define IDirectSoundFXI3DL2Reverb_Release(p) IUnknown_Release(p) - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundFXI3DL2Reverb_SetAllParameters(p,a) (p)->lpVtbl->SetAllParameters(p,a) -#define IDirectSoundFXI3DL2Reverb_GetAllParameters(p,a) (p)->lpVtbl->GetAllParameters(p,a) -#define IDirectSoundFXI3DL2Reverb_SetPreset(p,a) (p)->lpVtbl->SetPreset(p,a) -#define IDirectSoundFXI3DL2Reverb_GetPreset(p,a) (p)->lpVtbl->GetPreset(p,a) -#else // !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundFXI3DL2Reverb_SetAllParameters(p,a) (p)->SetAllParameters(a) -#define IDirectSoundFXI3DL2Reverb_GetAllParameters(p,a) (p)->GetAllParameters(a) -#define IDirectSoundFXI3DL2Reverb_SetPreset(p,a) (p)->SetPreset(a) -#define IDirectSoundFXI3DL2Reverb_GetPreset(p,a) (p)->GetPreset(a) -#endif // !defined(__cplusplus) || defined(CINTERFACE) - -// -// IDirectSoundFXWavesReverb -// - -DEFINE_GUID(IID_IDirectSoundFXWavesReverb,0x46858c3a,0x0dc6,0x45e3,0xb7,0x60,0xd4,0xee,0xf1,0x6c,0xb3,0x25); - -typedef struct _DSFXWavesReverb -{ - FLOAT fInGain; // [-96.0,0.0] default: 0.0 dB - FLOAT fReverbMix; // [-96.0,0.0] default: 0.0 db - FLOAT fReverbTime; // [0.001,3000.0] default: 1000.0 ms - FLOAT fHighFreqRTRatio; // [0.001,0.999] default: 0.001 -} DSFXWavesReverb, *LPDSFXWavesReverb; - -typedef const DSFXWavesReverb *LPCDSFXWavesReverb; - -#define DSFX_WAVESREVERB_INGAIN_MIN -96.0f -#define DSFX_WAVESREVERB_INGAIN_MAX 0.0f -#define DSFX_WAVESREVERB_INGAIN_DEFAULT 0.0f -#define DSFX_WAVESREVERB_REVERBMIX_MIN -96.0f -#define DSFX_WAVESREVERB_REVERBMIX_MAX 0.0f -#define DSFX_WAVESREVERB_REVERBMIX_DEFAULT 0.0f -#define DSFX_WAVESREVERB_REVERBTIME_MIN 0.001f -#define DSFX_WAVESREVERB_REVERBTIME_MAX 3000.0f -#define DSFX_WAVESREVERB_REVERBTIME_DEFAULT 1000.0f -#define DSFX_WAVESREVERB_HIGHFREQRTRATIO_MIN 0.001f -#define DSFX_WAVESREVERB_HIGHFREQRTRATIO_MAX 0.999f -#define DSFX_WAVESREVERB_HIGHFREQRTRATIO_DEFAULT 0.001f - -#undef INTERFACE -#define INTERFACE IDirectSoundFXWavesReverb - -DECLARE_INTERFACE_(IDirectSoundFXWavesReverb, IUnknown) -{ - // IUnknown methods - STDMETHOD(QueryInterface) (THIS_ __in REFIID, __deref_out LPVOID*) PURE; - STDMETHOD_(ULONG,AddRef) (THIS) PURE; - STDMETHOD_(ULONG,Release) (THIS) PURE; - - // IDirectSoundFXWavesReverb methods - STDMETHOD(SetAllParameters) (THIS_ __in LPCDSFXWavesReverb pcDsFxWavesReverb) PURE; - STDMETHOD(GetAllParameters) (THIS_ __out LPDSFXWavesReverb pDsFxWavesReverb) PURE; -}; - -#define IDirectSoundFXWavesReverb_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) -#define IDirectSoundFXWavesReverb_AddRef(p) IUnknown_AddRef(p) -#define IDirectSoundFXWavesReverb_Release(p) IUnknown_Release(p) - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundFXWavesReverb_SetAllParameters(p,a) (p)->lpVtbl->SetAllParameters(p,a) -#define IDirectSoundFXWavesReverb_GetAllParameters(p,a) (p)->lpVtbl->GetAllParameters(p,a) -#else // !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundFXWavesReverb_SetAllParameters(p,a) (p)->SetAllParameters(a) -#define IDirectSoundFXWavesReverb_GetAllParameters(p,a) (p)->GetAllParameters(a) -#endif // !defined(__cplusplus) || defined(CINTERFACE) - -// -// IDirectSoundCaptureFXAec -// - -DEFINE_GUID(IID_IDirectSoundCaptureFXAec, 0xad74143d, 0x903d, 0x4ab7, 0x80, 0x66, 0x28, 0xd3, 0x63, 0x03, 0x6d, 0x65); - -typedef struct _DSCFXAec -{ - BOOL fEnable; - BOOL fNoiseFill; - DWORD dwMode; -} DSCFXAec, *LPDSCFXAec; - -typedef const DSCFXAec *LPCDSCFXAec; - -// These match the AEC_MODE_* constants in the DDK's ksmedia.h file -#define DSCFX_AEC_MODE_PASS_THROUGH 0x0 -#define DSCFX_AEC_MODE_HALF_DUPLEX 0x1 -#define DSCFX_AEC_MODE_FULL_DUPLEX 0x2 - -// These match the AEC_STATUS_* constants in ksmedia.h -#define DSCFX_AEC_STATUS_HISTORY_UNINITIALIZED 0x0 -#define DSCFX_AEC_STATUS_HISTORY_CONTINUOUSLY_CONVERGED 0x1 -#define DSCFX_AEC_STATUS_HISTORY_PREVIOUSLY_DIVERGED 0x2 -#define DSCFX_AEC_STATUS_CURRENTLY_CONVERGED 0x8 - -#undef INTERFACE -#define INTERFACE IDirectSoundCaptureFXAec - -DECLARE_INTERFACE_(IDirectSoundCaptureFXAec, IUnknown) -{ - // IUnknown methods - STDMETHOD(QueryInterface) (THIS_ __in REFIID, __deref_out LPVOID*) PURE; - STDMETHOD_(ULONG,AddRef) (THIS) PURE; - STDMETHOD_(ULONG,Release) (THIS) PURE; - - // IDirectSoundCaptureFXAec methods - STDMETHOD(SetAllParameters) (THIS_ __in LPCDSCFXAec pDscFxAec) PURE; - STDMETHOD(GetAllParameters) (THIS_ __out LPDSCFXAec pDscFxAec) PURE; - STDMETHOD(GetStatus) (THIS_ __out LPDWORD pdwStatus) PURE; - STDMETHOD(Reset) (THIS) PURE; -}; - -#define IDirectSoundCaptureFXAec_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) -#define IDirectSoundCaptureFXAec_AddRef(p) IUnknown_AddRef(p) -#define IDirectSoundCaptureFXAec_Release(p) IUnknown_Release(p) - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundCaptureFXAec_SetAllParameters(p,a) (p)->lpVtbl->SetAllParameters(p,a) -#define IDirectSoundCaptureFXAec_GetAllParameters(p,a) (p)->lpVtbl->GetAllParameters(p,a) -#else // !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundCaptureFXAec_SetAllParameters(p,a) (p)->SetAllParameters(a) -#define IDirectSoundCaptureFXAec_GetAllParameters(p,a) (p)->GetAllParameters(a) -#endif // !defined(__cplusplus) || defined(CINTERFACE) - - -// -// IDirectSoundCaptureFXNoiseSuppress -// - -DEFINE_GUID(IID_IDirectSoundCaptureFXNoiseSuppress, 0xed311e41, 0xfbae, 0x4175, 0x96, 0x25, 0xcd, 0x8, 0x54, 0xf6, 0x93, 0xca); - -typedef struct _DSCFXNoiseSuppress -{ - BOOL fEnable; -} DSCFXNoiseSuppress, *LPDSCFXNoiseSuppress; - -typedef const DSCFXNoiseSuppress *LPCDSCFXNoiseSuppress; - -#undef INTERFACE -#define INTERFACE IDirectSoundCaptureFXNoiseSuppress - -DECLARE_INTERFACE_(IDirectSoundCaptureFXNoiseSuppress, IUnknown) -{ - // IUnknown methods - STDMETHOD(QueryInterface) (THIS_ __in REFIID, __deref_out LPVOID*) PURE; - STDMETHOD_(ULONG,AddRef) (THIS) PURE; - STDMETHOD_(ULONG,Release) (THIS) PURE; - - // IDirectSoundCaptureFXNoiseSuppress methods - STDMETHOD(SetAllParameters) (THIS_ __in LPCDSCFXNoiseSuppress pcDscFxNoiseSuppress) PURE; - STDMETHOD(GetAllParameters) (THIS_ __out LPDSCFXNoiseSuppress pDscFxNoiseSuppress) PURE; - STDMETHOD(Reset) (THIS) PURE; -}; - -#define IDirectSoundCaptureFXNoiseSuppress_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) -#define IDirectSoundCaptureFXNoiseSuppress_AddRef(p) IUnknown_AddRef(p) -#define IDirectSoundCaptureFXNoiseSuppress_Release(p) IUnknown_Release(p) - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundCaptureFXNoiseSuppress_SetAllParameters(p,a) (p)->lpVtbl->SetAllParameters(p,a) -#define IDirectSoundCaptureFXNoiseSuppress_GetAllParameters(p,a) (p)->lpVtbl->GetAllParameters(p,a) -#else // !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundCaptureFXNoiseSuppress_SetAllParameters(p,a) (p)->SetAllParameters(a) -#define IDirectSoundCaptureFXNoiseSuppress_GetAllParameters(p,a) (p)->GetAllParameters(a) -#endif // !defined(__cplusplus) || defined(CINTERFACE) - - -// -// IDirectSoundFullDuplex -// - -#ifndef _IDirectSoundFullDuplex_ -#define _IDirectSoundFullDuplex_ - -#ifdef __cplusplus -// 'struct' not 'class' per the way DECLARE_INTERFACE_ is defined -struct IDirectSoundFullDuplex; -#endif // __cplusplus - -typedef struct IDirectSoundFullDuplex *LPDIRECTSOUNDFULLDUPLEX; - -DEFINE_GUID(IID_IDirectSoundFullDuplex, 0xedcb4c7a, 0xdaab, 0x4216, 0xa4, 0x2e, 0x6c, 0x50, 0x59, 0x6d, 0xdc, 0x1d); - -#undef INTERFACE -#define INTERFACE IDirectSoundFullDuplex - -DECLARE_INTERFACE_(IDirectSoundFullDuplex, IUnknown) -{ - // IUnknown methods - STDMETHOD(QueryInterface) (THIS_ __in REFIID, __deref_out LPVOID*) PURE; - STDMETHOD_(ULONG,AddRef) (THIS) PURE; - STDMETHOD_(ULONG,Release) (THIS) PURE; - - // IDirectSoundFullDuplex methods - STDMETHOD(Initialize) (THIS_ __in LPCGUID pCaptureGuid, __in LPCGUID pRenderGuid, __in LPCDSCBUFFERDESC lpDscBufferDesc, __in LPCDSBUFFERDESC lpDsBufferDesc, HWND hWnd, DWORD dwLevel, - __deref_out LPLPDIRECTSOUNDCAPTUREBUFFER8 lplpDirectSoundCaptureBuffer8, __deref_out LPLPDIRECTSOUNDBUFFER8 lplpDirectSoundBuffer8) PURE; -}; - -#define IDirectSoundFullDuplex_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b) -#define IDirectSoundFullDuplex_AddRef(p) IUnknown_AddRef(p) -#define IDirectSoundFullDuplex_Release(p) IUnknown_Release(p) - -#if !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundFullDuplex_Initialize(p,a,b,c,d,e,f,g,h) (p)->lpVtbl->Initialize(p,a,b,c,d,e,f,g,h) -#else // !defined(__cplusplus) || defined(CINTERFACE) -#define IDirectSoundFullDuplex_Initialize(p,a,b,c,d,e,f,g,h) (p)->Initialize(a,b,c,d,e,f,g,h) -#endif // !defined(__cplusplus) || defined(CINTERFACE) - -#endif // _IDirectSoundFullDuplex_ - -#endif // DIRECTSOUND_VERSION >= 0x0800 - -// -// Return Codes -// - -// The function completed successfully -#define DS_OK S_OK - -// The call succeeded, but we had to substitute the 3D algorithm -#define DS_NO_VIRTUALIZATION MAKE_HRESULT(0, _FACDS, 10) - -// The call failed because resources (such as a priority level) -// were already being used by another caller -#define DSERR_ALLOCATED MAKE_DSHRESULT(10) - -// The control (vol, pan, etc.) requested by the caller is not available -#define DSERR_CONTROLUNAVAIL MAKE_DSHRESULT(30) - -// An invalid parameter was passed to the returning function -#define DSERR_INVALIDPARAM E_INVALIDARG - -// This call is not valid for the current state of this object -#define DSERR_INVALIDCALL MAKE_DSHRESULT(50) - -// An undetermined error occurred inside the DirectSound subsystem -#define DSERR_GENERIC E_FAIL - -// The caller does not have the priority level required for the function to -// succeed -#define DSERR_PRIOLEVELNEEDED MAKE_DSHRESULT(70) - -// Not enough free memory is available to complete the operation -#define DSERR_OUTOFMEMORY E_OUTOFMEMORY - -// The specified WAVE format is not supported -#define DSERR_BADFORMAT MAKE_DSHRESULT(100) - -// The function called is not supported at this time -#define DSERR_UNSUPPORTED E_NOTIMPL - -// No sound driver is available for use -#define DSERR_NODRIVER MAKE_DSHRESULT(120) - -// This object is already initialized -#define DSERR_ALREADYINITIALIZED MAKE_DSHRESULT(130) - -// This object does not support aggregation -#define DSERR_NOAGGREGATION CLASS_E_NOAGGREGATION - -// The buffer memory has been lost, and must be restored -#define DSERR_BUFFERLOST MAKE_DSHRESULT(150) - -// Another app has a higher priority level, preventing this call from -// succeeding -#define DSERR_OTHERAPPHASPRIO MAKE_DSHRESULT(160) - -// This object has not been initialized -#define DSERR_UNINITIALIZED MAKE_DSHRESULT(170) - -// The requested COM interface is not available -#define DSERR_NOINTERFACE E_NOINTERFACE - -// Access is denied -#define DSERR_ACCESSDENIED E_ACCESSDENIED - -// Tried to create a DSBCAPS_CTRLFX buffer shorter than DSBSIZE_FX_MIN milliseconds -#define DSERR_BUFFERTOOSMALL MAKE_DSHRESULT(180) - -// Attempt to use DirectSound 8 functionality on an older DirectSound object -#define DSERR_DS8_REQUIRED MAKE_DSHRESULT(190) - -// A circular loop of send effects was detected -#define DSERR_SENDLOOP MAKE_DSHRESULT(200) - -// The GUID specified in an audiopath file does not match a valid MIXIN buffer -#define DSERR_BADSENDBUFFERGUID MAKE_DSHRESULT(210) - -// The object requested was not found (numerically equal to DMUS_E_NOT_FOUND) -#define DSERR_OBJECTNOTFOUND MAKE_DSHRESULT(4449) - -// The effects requested could not be found on the system, or they were found -// but in the wrong order, or in the wrong hardware/software locations. -#define DSERR_FXUNAVAILABLE MAKE_DSHRESULT(220) - -// -// Flags -// - -#define DSCAPS_PRIMARYMONO 0x00000001 -#define DSCAPS_PRIMARYSTEREO 0x00000002 -#define DSCAPS_PRIMARY8BIT 0x00000004 -#define DSCAPS_PRIMARY16BIT 0x00000008 -#define DSCAPS_CONTINUOUSRATE 0x00000010 -#define DSCAPS_EMULDRIVER 0x00000020 -#define DSCAPS_CERTIFIED 0x00000040 -#define DSCAPS_SECONDARYMONO 0x00000100 -#define DSCAPS_SECONDARYSTEREO 0x00000200 -#define DSCAPS_SECONDARY8BIT 0x00000400 -#define DSCAPS_SECONDARY16BIT 0x00000800 - -#define DSSCL_NORMAL 0x00000001 -#define DSSCL_PRIORITY 0x00000002 -#define DSSCL_EXCLUSIVE 0x00000003 -#define DSSCL_WRITEPRIMARY 0x00000004 - -#define DSSPEAKER_DIRECTOUT 0x00000000 -#define DSSPEAKER_HEADPHONE 0x00000001 -#define DSSPEAKER_MONO 0x00000002 -#define DSSPEAKER_QUAD 0x00000003 -#define DSSPEAKER_STEREO 0x00000004 -#define DSSPEAKER_SURROUND 0x00000005 -#define DSSPEAKER_5POINT1 0x00000006 // obsolete 5.1 setting -#define DSSPEAKER_7POINT1 0x00000007 // obsolete 7.1 setting -#define DSSPEAKER_7POINT1_SURROUND 0x00000008 // correct 7.1 Home Theater setting -#define DSSPEAKER_5POINT1_SURROUND 0x00000009 // correct 5.1 setting -#define DSSPEAKER_7POINT1_WIDE DSSPEAKER_7POINT1 -#define DSSPEAKER_5POINT1_BACK DSSPEAKER_5POINT1 - -#define DSSPEAKER_GEOMETRY_MIN 0x00000005 // 5 degrees -#define DSSPEAKER_GEOMETRY_NARROW 0x0000000A // 10 degrees -#define DSSPEAKER_GEOMETRY_WIDE 0x00000014 // 20 degrees -#define DSSPEAKER_GEOMETRY_MAX 0x000000B4 // 180 degrees - -#define DSSPEAKER_COMBINED(c, g) ((DWORD)(((BYTE)(c)) | ((DWORD)((BYTE)(g))) << 16)) -#define DSSPEAKER_CONFIG(a) ((BYTE)(a)) -#define DSSPEAKER_GEOMETRY(a) ((BYTE)(((DWORD)(a) >> 16) & 0x00FF)) - -#define DSBCAPS_PRIMARYBUFFER 0x00000001 -#define DSBCAPS_STATIC 0x00000002 -#define DSBCAPS_LOCHARDWARE 0x00000004 -#define DSBCAPS_LOCSOFTWARE 0x00000008 -#define DSBCAPS_CTRL3D 0x00000010 -#define DSBCAPS_CTRLFREQUENCY 0x00000020 -#define DSBCAPS_CTRLPAN 0x00000040 -#define DSBCAPS_CTRLVOLUME 0x00000080 -#define DSBCAPS_CTRLPOSITIONNOTIFY 0x00000100 -#define DSBCAPS_CTRLFX 0x00000200 -#define DSBCAPS_STICKYFOCUS 0x00004000 -#define DSBCAPS_GLOBALFOCUS 0x00008000 -#define DSBCAPS_GETCURRENTPOSITION2 0x00010000 -#define DSBCAPS_MUTE3DATMAXDISTANCE 0x00020000 -#define DSBCAPS_LOCDEFER 0x00040000 -#define DSBCAPS_TRUEPLAYPOSITION 0x00080000 - -#define DSBPLAY_LOOPING 0x00000001 -#define DSBPLAY_LOCHARDWARE 0x00000002 -#define DSBPLAY_LOCSOFTWARE 0x00000004 -#define DSBPLAY_TERMINATEBY_TIME 0x00000008 -#define DSBPLAY_TERMINATEBY_DISTANCE 0x000000010 -#define DSBPLAY_TERMINATEBY_PRIORITY 0x000000020 - -#define DSBSTATUS_PLAYING 0x00000001 -#define DSBSTATUS_BUFFERLOST 0x00000002 -#define DSBSTATUS_LOOPING 0x00000004 -#define DSBSTATUS_LOCHARDWARE 0x00000008 -#define DSBSTATUS_LOCSOFTWARE 0x00000010 -#define DSBSTATUS_TERMINATED 0x00000020 - -#define DSBLOCK_FROMWRITECURSOR 0x00000001 -#define DSBLOCK_ENTIREBUFFER 0x00000002 - -#define DSBFREQUENCY_ORIGINAL 0 -#define DSBFREQUENCY_MIN 100 -#if DIRECTSOUND_VERSION >= 0x0900 -#define DSBFREQUENCY_MAX 200000 -#else -#define DSBFREQUENCY_MAX 100000 -#endif - -#define DSBPAN_LEFT -10000 -#define DSBPAN_CENTER 0 -#define DSBPAN_RIGHT 10000 - -#define DSBVOLUME_MIN -10000 -#define DSBVOLUME_MAX 0 - -#define DSBSIZE_MIN 4 -#define DSBSIZE_MAX 0x0FFFFFFF -#define DSBSIZE_FX_MIN 150 // NOTE: Milliseconds, not bytes - -#define DSBNOTIFICATIONS_MAX 100000UL - -#define DS3DMODE_NORMAL 0x00000000 -#define DS3DMODE_HEADRELATIVE 0x00000001 -#define DS3DMODE_DISABLE 0x00000002 - -#define DS3D_IMMEDIATE 0x00000000 -#define DS3D_DEFERRED 0x00000001 - -#define DS3D_MINDISTANCEFACTOR FLT_MIN -#define DS3D_MAXDISTANCEFACTOR FLT_MAX -#define DS3D_DEFAULTDISTANCEFACTOR 1.0f - -#define DS3D_MINROLLOFFFACTOR 0.0f -#define DS3D_MAXROLLOFFFACTOR 10.0f -#define DS3D_DEFAULTROLLOFFFACTOR 1.0f - -#define DS3D_MINDOPPLERFACTOR 0.0f -#define DS3D_MAXDOPPLERFACTOR 10.0f -#define DS3D_DEFAULTDOPPLERFACTOR 1.0f - -#define DS3D_DEFAULTMINDISTANCE 1.0f -#define DS3D_DEFAULTMAXDISTANCE 1000000000.0f - -#define DS3D_MINCONEANGLE 0 -#define DS3D_MAXCONEANGLE 360 -#define DS3D_DEFAULTCONEANGLE 360 - -#define DS3D_DEFAULTCONEOUTSIDEVOLUME DSBVOLUME_MAX - -// IDirectSoundCapture attributes - -#define DSCCAPS_EMULDRIVER DSCAPS_EMULDRIVER -#define DSCCAPS_CERTIFIED DSCAPS_CERTIFIED -#define DSCCAPS_MULTIPLECAPTURE 0x00000001 - -// IDirectSoundCaptureBuffer attributes - -#define DSCBCAPS_WAVEMAPPED 0x80000000 -#if DIRECTSOUND_VERSION >= 0x0800 -#define DSCBCAPS_CTRLFX 0x00000200 -#endif - -#define DSCBLOCK_ENTIREBUFFER 0x00000001 - -#define DSCBSTATUS_CAPTURING 0x00000001 -#define DSCBSTATUS_LOOPING 0x00000002 - -#define DSCBSTART_LOOPING 0x00000001 - -#define DSBPN_OFFSETSTOP 0xFFFFFFFF - -#define DS_CERTIFIED 0x00000000 -#define DS_UNCERTIFIED 0x00000001 - -// -// Flags for the I3DL2 effects -// - -// -// I3DL2 Material Presets -// - -enum -{ - DSFX_I3DL2_MATERIAL_PRESET_SINGLEWINDOW, - DSFX_I3DL2_MATERIAL_PRESET_DOUBLEWINDOW, - DSFX_I3DL2_MATERIAL_PRESET_THINDOOR, - DSFX_I3DL2_MATERIAL_PRESET_THICKDOOR, - DSFX_I3DL2_MATERIAL_PRESET_WOODWALL, - DSFX_I3DL2_MATERIAL_PRESET_BRICKWALL, - DSFX_I3DL2_MATERIAL_PRESET_STONEWALL, - DSFX_I3DL2_MATERIAL_PRESET_CURTAIN -}; - -#define I3DL2_MATERIAL_PRESET_SINGLEWINDOW -2800,0.71f -#define I3DL2_MATERIAL_PRESET_DOUBLEWINDOW -5000,0.40f -#define I3DL2_MATERIAL_PRESET_THINDOOR -1800,0.66f -#define I3DL2_MATERIAL_PRESET_THICKDOOR -4400,0.64f -#define I3DL2_MATERIAL_PRESET_WOODWALL -4000,0.50f -#define I3DL2_MATERIAL_PRESET_BRICKWALL -5000,0.60f -#define I3DL2_MATERIAL_PRESET_STONEWALL -6000,0.68f -#define I3DL2_MATERIAL_PRESET_CURTAIN -1200,0.15f - -enum -{ - DSFX_I3DL2_ENVIRONMENT_PRESET_DEFAULT, - DSFX_I3DL2_ENVIRONMENT_PRESET_GENERIC, - DSFX_I3DL2_ENVIRONMENT_PRESET_PADDEDCELL, - DSFX_I3DL2_ENVIRONMENT_PRESET_ROOM, - DSFX_I3DL2_ENVIRONMENT_PRESET_BATHROOM, - DSFX_I3DL2_ENVIRONMENT_PRESET_LIVINGROOM, - DSFX_I3DL2_ENVIRONMENT_PRESET_STONEROOM, - DSFX_I3DL2_ENVIRONMENT_PRESET_AUDITORIUM, - DSFX_I3DL2_ENVIRONMENT_PRESET_CONCERTHALL, - DSFX_I3DL2_ENVIRONMENT_PRESET_CAVE, - DSFX_I3DL2_ENVIRONMENT_PRESET_ARENA, - DSFX_I3DL2_ENVIRONMENT_PRESET_HANGAR, - DSFX_I3DL2_ENVIRONMENT_PRESET_CARPETEDHALLWAY, - DSFX_I3DL2_ENVIRONMENT_PRESET_HALLWAY, - DSFX_I3DL2_ENVIRONMENT_PRESET_STONECORRIDOR, - DSFX_I3DL2_ENVIRONMENT_PRESET_ALLEY, - DSFX_I3DL2_ENVIRONMENT_PRESET_FOREST, - DSFX_I3DL2_ENVIRONMENT_PRESET_CITY, - DSFX_I3DL2_ENVIRONMENT_PRESET_MOUNTAINS, - DSFX_I3DL2_ENVIRONMENT_PRESET_QUARRY, - DSFX_I3DL2_ENVIRONMENT_PRESET_PLAIN, - DSFX_I3DL2_ENVIRONMENT_PRESET_PARKINGLOT, - DSFX_I3DL2_ENVIRONMENT_PRESET_SEWERPIPE, - DSFX_I3DL2_ENVIRONMENT_PRESET_UNDERWATER, - DSFX_I3DL2_ENVIRONMENT_PRESET_SMALLROOM, - DSFX_I3DL2_ENVIRONMENT_PRESET_MEDIUMROOM, - DSFX_I3DL2_ENVIRONMENT_PRESET_LARGEROOM, - DSFX_I3DL2_ENVIRONMENT_PRESET_MEDIUMHALL, - DSFX_I3DL2_ENVIRONMENT_PRESET_LARGEHALL, - DSFX_I3DL2_ENVIRONMENT_PRESET_PLATE -}; - -// -// I3DL2 Reverberation Presets Values -// - -#define I3DL2_ENVIRONMENT_PRESET_DEFAULT -1000, -100, 0.0f, 1.49f, 0.83f, -2602, 0.007f, 200, 0.011f, 100.0f, 100.0f, 5000.0f -#define I3DL2_ENVIRONMENT_PRESET_GENERIC -1000, -100, 0.0f, 1.49f, 0.83f, -2602, 0.007f, 200, 0.011f, 100.0f, 100.0f, 5000.0f -#define I3DL2_ENVIRONMENT_PRESET_PADDEDCELL -1000,-6000, 0.0f, 0.17f, 0.10f, -1204, 0.001f, 207, 0.002f, 100.0f, 100.0f, 5000.0f -#define I3DL2_ENVIRONMENT_PRESET_ROOM -1000, -454, 0.0f, 0.40f, 0.83f, -1646, 0.002f, 53, 0.003f, 100.0f, 100.0f, 5000.0f -#define I3DL2_ENVIRONMENT_PRESET_BATHROOM -1000,-1200, 0.0f, 1.49f, 0.54f, -370, 0.007f, 1030, 0.011f, 100.0f, 60.0f, 5000.0f -#define I3DL2_ENVIRONMENT_PRESET_LIVINGROOM -1000,-6000, 0.0f, 0.50f, 0.10f, -1376, 0.003f, -1104, 0.004f, 100.0f, 100.0f, 5000.0f -#define I3DL2_ENVIRONMENT_PRESET_STONEROOM -1000, -300, 0.0f, 2.31f, 0.64f, -711, 0.012f, 83, 0.017f, 100.0f, 100.0f, 5000.0f -#define I3DL2_ENVIRONMENT_PRESET_AUDITORIUM -1000, -476, 0.0f, 4.32f, 0.59f, -789, 0.020f, -289, 0.030f, 100.0f, 100.0f, 5000.0f -#define I3DL2_ENVIRONMENT_PRESET_CONCERTHALL -1000, -500, 0.0f, 3.92f, 0.70f, -1230, 0.020f, -2, 0.029f, 100.0f, 100.0f, 5000.0f -#define I3DL2_ENVIRONMENT_PRESET_CAVE -1000, 0, 0.0f, 2.91f, 1.30f, -602, 0.015f, -302, 0.022f, 100.0f, 100.0f, 5000.0f -#define I3DL2_ENVIRONMENT_PRESET_ARENA -1000, -698, 0.0f, 7.24f, 0.33f, -1166, 0.020f, 16, 0.030f, 100.0f, 100.0f, 5000.0f -#define I3DL2_ENVIRONMENT_PRESET_HANGAR -1000,-1000, 0.0f,10.05f, 0.23f, -602, 0.020f, 198, 0.030f, 100.0f, 100.0f, 5000.0f -#define I3DL2_ENVIRONMENT_PRESET_CARPETEDHALLWAY -1000,-4000, 0.0f, 0.30f, 0.10f, -1831, 0.002f, -1630, 0.030f, 100.0f, 100.0f, 5000.0f -#define I3DL2_ENVIRONMENT_PRESET_HALLWAY -1000, -300, 0.0f, 1.49f, 0.59f, -1219, 0.007f, 441, 0.011f, 100.0f, 100.0f, 5000.0f -#define I3DL2_ENVIRONMENT_PRESET_STONECORRIDOR -1000, -237, 0.0f, 2.70f, 0.79f, -1214, 0.013f, 395, 0.020f, 100.0f, 100.0f, 5000.0f -#define I3DL2_ENVIRONMENT_PRESET_ALLEY -1000, -270, 0.0f, 1.49f, 0.86f, -1204, 0.007f, -4, 0.011f, 100.0f, 100.0f, 5000.0f -#define I3DL2_ENVIRONMENT_PRESET_FOREST -1000,-3300, 0.0f, 1.49f, 0.54f, -2560, 0.162f, -613, 0.088f, 79.0f, 100.0f, 5000.0f -#define I3DL2_ENVIRONMENT_PRESET_CITY -1000, -800, 0.0f, 1.49f, 0.67f, -2273, 0.007f, -2217, 0.011f, 50.0f, 100.0f, 5000.0f -#define I3DL2_ENVIRONMENT_PRESET_MOUNTAINS -1000,-2500, 0.0f, 1.49f, 0.21f, -2780, 0.300f, -2014, 0.100f, 27.0f, 100.0f, 5000.0f -#define I3DL2_ENVIRONMENT_PRESET_QUARRY -1000,-1000, 0.0f, 1.49f, 0.83f,-10000, 0.061f, 500, 0.025f, 100.0f, 100.0f, 5000.0f -#define I3DL2_ENVIRONMENT_PRESET_PLAIN -1000,-2000, 0.0f, 1.49f, 0.50f, -2466, 0.179f, -2514, 0.100f, 21.0f, 100.0f, 5000.0f -#define I3DL2_ENVIRONMENT_PRESET_PARKINGLOT -1000, 0, 0.0f, 1.65f, 1.50f, -1363, 0.008f, -1153, 0.012f, 100.0f, 100.0f, 5000.0f -#define I3DL2_ENVIRONMENT_PRESET_SEWERPIPE -1000,-1000, 0.0f, 2.81f, 0.14f, 429, 0.014f, 648, 0.021f, 80.0f, 60.0f, 5000.0f -#define I3DL2_ENVIRONMENT_PRESET_UNDERWATER -1000,-4000, 0.0f, 1.49f, 0.10f, -449, 0.007f, 1700, 0.011f, 100.0f, 100.0f, 5000.0f - -// -// Examples simulating 'musical' reverb presets -// -// Name Decay time Description -// Small Room 1.1s A small size room with a length of 5m or so. -// Medium Room 1.3s A medium size room with a length of 10m or so. -// Large Room 1.5s A large size room suitable for live performances. -// Medium Hall 1.8s A medium size concert hall. -// Large Hall 1.8s A large size concert hall suitable for a full orchestra. -// Plate 1.3s A plate reverb simulation. -// - -#define I3DL2_ENVIRONMENT_PRESET_SMALLROOM -1000, -600, 0.0f, 1.10f, 0.83f, -400, 0.005f, 500, 0.010f, 100.0f, 100.0f, 5000.0f -#define I3DL2_ENVIRONMENT_PRESET_MEDIUMROOM -1000, -600, 0.0f, 1.30f, 0.83f, -1000, 0.010f, -200, 0.020f, 100.0f, 100.0f, 5000.0f -#define I3DL2_ENVIRONMENT_PRESET_LARGEROOM -1000, -600, 0.0f, 1.50f, 0.83f, -1600, 0.020f, -1000, 0.040f, 100.0f, 100.0f, 5000.0f -#define I3DL2_ENVIRONMENT_PRESET_MEDIUMHALL -1000, -600, 0.0f, 1.80f, 0.70f, -1300, 0.015f, -800, 0.030f, 100.0f, 100.0f, 5000.0f -#define I3DL2_ENVIRONMENT_PRESET_LARGEHALL -1000, -600, 0.0f, 1.80f, 0.70f, -2000, 0.030f, -1400, 0.060f, 100.0f, 100.0f, 5000.0f -#define I3DL2_ENVIRONMENT_PRESET_PLATE -1000, -200, 0.0f, 1.30f, 0.90f, 0, 0.002f, 0, 0.010f, 100.0f, 75.0f, 5000.0f - -// -// DirectSound3D Algorithms -// - -// Default DirectSound3D algorithm {00000000-0000-0000-0000-000000000000} -#define DS3DALG_DEFAULT GUID_NULL - -// No virtualization (Pan3D) {C241333F-1C1B-11d2-94F5-00C04FC28ACA} -DEFINE_GUID(DS3DALG_NO_VIRTUALIZATION, 0xc241333f, 0x1c1b, 0x11d2, 0x94, 0xf5, 0x0, 0xc0, 0x4f, 0xc2, 0x8a, 0xca); - -// High-quality HRTF algorithm {C2413340-1C1B-11d2-94F5-00C04FC28ACA} -DEFINE_GUID(DS3DALG_HRTF_FULL, 0xc2413340, 0x1c1b, 0x11d2, 0x94, 0xf5, 0x0, 0xc0, 0x4f, 0xc2, 0x8a, 0xca); - -// Lower-quality HRTF algorithm {C2413342-1C1B-11d2-94F5-00C04FC28ACA} -DEFINE_GUID(DS3DALG_HRTF_LIGHT, 0xc2413342, 0x1c1b, 0x11d2, 0x94, 0xf5, 0x0, 0xc0, 0x4f, 0xc2, 0x8a, 0xca); - - -#if DIRECTSOUND_VERSION >= 0x0800 - -// -// DirectSound Internal Effect Algorithms -// - - -// Gargle {DAFD8210-5711-4B91-9FE3-F75B7AE279BF} -DEFINE_GUID(GUID_DSFX_STANDARD_GARGLE, 0xdafd8210, 0x5711, 0x4b91, 0x9f, 0xe3, 0xf7, 0x5b, 0x7a, 0xe2, 0x79, 0xbf); - -// Chorus {EFE6629C-81F7-4281-BD91-C9D604A95AF6} -DEFINE_GUID(GUID_DSFX_STANDARD_CHORUS, 0xefe6629c, 0x81f7, 0x4281, 0xbd, 0x91, 0xc9, 0xd6, 0x04, 0xa9, 0x5a, 0xf6); - -// Flanger {EFCA3D92-DFD8-4672-A603-7420894BAD98} -DEFINE_GUID(GUID_DSFX_STANDARD_FLANGER, 0xefca3d92, 0xdfd8, 0x4672, 0xa6, 0x03, 0x74, 0x20, 0x89, 0x4b, 0xad, 0x98); - -// Echo/Delay {EF3E932C-D40B-4F51-8CCF-3F98F1B29D5D} -DEFINE_GUID(GUID_DSFX_STANDARD_ECHO, 0xef3e932c, 0xd40b, 0x4f51, 0x8c, 0xcf, 0x3f, 0x98, 0xf1, 0xb2, 0x9d, 0x5d); - -// Distortion {EF114C90-CD1D-484E-96E5-09CFAF912A21} -DEFINE_GUID(GUID_DSFX_STANDARD_DISTORTION, 0xef114c90, 0xcd1d, 0x484e, 0x96, 0xe5, 0x09, 0xcf, 0xaf, 0x91, 0x2a, 0x21); - -// Compressor/Limiter {EF011F79-4000-406D-87AF-BFFB3FC39D57} -DEFINE_GUID(GUID_DSFX_STANDARD_COMPRESSOR, 0xef011f79, 0x4000, 0x406d, 0x87, 0xaf, 0xbf, 0xfb, 0x3f, 0xc3, 0x9d, 0x57); - -// Parametric Equalization {120CED89-3BF4-4173-A132-3CB406CF3231} -DEFINE_GUID(GUID_DSFX_STANDARD_PARAMEQ, 0x120ced89, 0x3bf4, 0x4173, 0xa1, 0x32, 0x3c, 0xb4, 0x06, 0xcf, 0x32, 0x31); - -// I3DL2 Environmental Reverberation: Reverb (Listener) Effect {EF985E71-D5C7-42D4-BA4D-2D073E2E96F4} -DEFINE_GUID(GUID_DSFX_STANDARD_I3DL2REVERB, 0xef985e71, 0xd5c7, 0x42d4, 0xba, 0x4d, 0x2d, 0x07, 0x3e, 0x2e, 0x96, 0xf4); - -// Waves Reverberation {87FC0268-9A55-4360-95AA-004A1D9DE26C} -DEFINE_GUID(GUID_DSFX_WAVES_REVERB, 0x87fc0268, 0x9a55, 0x4360, 0x95, 0xaa, 0x00, 0x4a, 0x1d, 0x9d, 0xe2, 0x6c); - -// -// DirectSound Capture Effect Algorithms -// - - -// Acoustic Echo Canceller {BF963D80-C559-11D0-8A2B-00A0C9255AC1} -// Matches KSNODETYPE_ACOUSTIC_ECHO_CANCEL in ksmedia.h -DEFINE_GUID(GUID_DSCFX_CLASS_AEC, 0xBF963D80L, 0xC559, 0x11D0, 0x8A, 0x2B, 0x00, 0xA0, 0xC9, 0x25, 0x5A, 0xC1); - -// Microsoft AEC {CDEBB919-379A-488a-8765-F53CFD36DE40} -DEFINE_GUID(GUID_DSCFX_MS_AEC, 0xcdebb919, 0x379a, 0x488a, 0x87, 0x65, 0xf5, 0x3c, 0xfd, 0x36, 0xde, 0x40); - -// System AEC {1C22C56D-9879-4f5b-A389-27996DDC2810} -DEFINE_GUID(GUID_DSCFX_SYSTEM_AEC, 0x1c22c56d, 0x9879, 0x4f5b, 0xa3, 0x89, 0x27, 0x99, 0x6d, 0xdc, 0x28, 0x10); - -// Noise Supression {E07F903F-62FD-4e60-8CDD-DEA7236665B5} -// Matches KSNODETYPE_NOISE_SUPPRESS in post Windows ME DDK's ksmedia.h -DEFINE_GUID(GUID_DSCFX_CLASS_NS, 0xe07f903f, 0x62fd, 0x4e60, 0x8c, 0xdd, 0xde, 0xa7, 0x23, 0x66, 0x65, 0xb5); - -// Microsoft Noise Suppresion {11C5C73B-66E9-4ba1-A0BA-E814C6EED92D} -DEFINE_GUID(GUID_DSCFX_MS_NS, 0x11c5c73b, 0x66e9, 0x4ba1, 0xa0, 0xba, 0xe8, 0x14, 0xc6, 0xee, 0xd9, 0x2d); - -// System Noise Suppresion {5AB0882E-7274-4516-877D-4EEE99BA4FD0} -DEFINE_GUID(GUID_DSCFX_SYSTEM_NS, 0x5ab0882e, 0x7274, 0x4516, 0x87, 0x7d, 0x4e, 0xee, 0x99, 0xba, 0x4f, 0xd0); - -#endif // DIRECTSOUND_VERSION >= 0x0800 - -#endif // __DSOUND_INCLUDED__ - - - -#ifdef __cplusplus -}; -#endif // __cplusplus - diff --git a/SDK/Include/dxdiag.h b/SDK/Include/dxdiag.h deleted file mode 100644 index 602c88f..0000000 --- a/SDK/Include/dxdiag.h +++ /dev/null @@ -1,187 +0,0 @@ -/*==========================================================================; - * - * Copyright (C) Microsoft Corporation. All Rights Reserved. - * - * File: dxdiag.h - * Content: DirectX Diagnostic Tool include file - * - ****************************************************************************/ - -#ifndef _DXDIAG_H_ -#define _DXDIAG_H_ - -#include // for DECLARE_INTERFACE_ and HRESULT - -// This identifier is passed to IDxDiagProvider::Initialize in order to ensure that an -// application was built against the correct header files. This number is -// incremented whenever a header (or other) change would require applications -// to be rebuilt. If the version doesn't match, IDxDiagProvider::Initialize will fail. -// (The number itself has no meaning.) -#define DXDIAG_DX9_SDK_VERSION 111 - -#ifdef __cplusplus -extern "C" { -#endif - - -/**************************************************************************** - * - * DxDiag Errors - * - ****************************************************************************/ -#define DXDIAG_E_INSUFFICIENT_BUFFER ((HRESULT)0x8007007AL) // HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER) - - -/**************************************************************************** - * - * DxDiag CLSIDs - * - ****************************************************************************/ - -// {A65B8071-3BFE-4213-9A5B-491DA4461CA7} -DEFINE_GUID(CLSID_DxDiagProvider, -0xA65B8071, 0x3BFE, 0x4213, 0x9A, 0x5B, 0x49, 0x1D, 0xA4, 0x46, 0x1C, 0xA7); - - -/**************************************************************************** - * - * DxDiag Interface IIDs - * - ****************************************************************************/ - -// {9C6B4CB0-23F8-49CC-A3ED-45A55000A6D2} -DEFINE_GUID(IID_IDxDiagProvider, -0x9C6B4CB0, 0x23F8, 0x49CC, 0xA3, 0xED, 0x45, 0xA5, 0x50, 0x00, 0xA6, 0xD2); - -// {0x7D0F462F-0x4064-0x4862-BC7F-933E5058C10F} -DEFINE_GUID(IID_IDxDiagContainer, -0x7D0F462F, 0x4064, 0x4862, 0xBC, 0x7F, 0x93, 0x3E, 0x50, 0x58, 0xC1, 0x0F); - - -/**************************************************************************** - * - * DxDiag Interface Pointer definitions - * - ****************************************************************************/ - -typedef struct IDxDiagProvider *LPDXDIAGPROVIDER, *PDXDIAGPROVIDER; - -typedef struct IDxDiagContainer *LPDXDIAGCONTAINER, *PDXDIAGCONTAINER; - - -/**************************************************************************** - * - * DxDiag Structures - * - ****************************************************************************/ - -typedef struct _DXDIAG_INIT_PARAMS -{ - DWORD dwSize; // Size of this structure. - DWORD dwDxDiagHeaderVersion; // Pass in DXDIAG_DX9_SDK_VERSION. This verifies - // the header and dll are correctly matched. - BOOL bAllowWHQLChecks; // If true, allow dxdiag to check if drivers are - // digital signed as logo'd by WHQL which may - // connect via internet to update WHQL certificates. - VOID* pReserved; // Reserved. Must be NULL. -} DXDIAG_INIT_PARAMS; - - -/**************************************************************************** - * - * DxDiag Application Interfaces - * - ****************************************************************************/ - -// -// COM definition for IDxDiagProvider -// -#undef INTERFACE // External COM Implementation -#define INTERFACE IDxDiagProvider -DECLARE_INTERFACE_(IDxDiagProvider,IUnknown) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface) (THIS_ REFIID riid, LPVOID *ppvObj) PURE; - STDMETHOD_(ULONG,AddRef) (THIS) PURE; - STDMETHOD_(ULONG,Release) (THIS) PURE; - - /*** IDxDiagProvider methods ***/ - STDMETHOD(Initialize) (THIS_ DXDIAG_INIT_PARAMS* pParams) PURE; - STDMETHOD(GetRootContainer) (THIS_ IDxDiagContainer **ppInstance) PURE; -}; - - -// -// COM definition for IDxDiagContainer -// -#undef INTERFACE // External COM Implementation -#define INTERFACE IDxDiagContainer -DECLARE_INTERFACE_(IDxDiagContainer,IUnknown) -{ - /*** IUnknown methods ***/ - STDMETHOD(QueryInterface) (THIS_ REFIID riid, LPVOID *ppvObj) PURE; - STDMETHOD_(ULONG,AddRef) (THIS) PURE; - STDMETHOD_(ULONG,Release) (THIS) PURE; - - /*** IDxDiagContainer methods ***/ - STDMETHOD(GetNumberOfChildContainers) (THIS_ DWORD *pdwCount) PURE; - STDMETHOD(EnumChildContainerNames) (THIS_ DWORD dwIndex, LPWSTR pwszContainer, DWORD cchContainer) PURE; - STDMETHOD(GetChildContainer) (THIS_ LPCWSTR pwszContainer, IDxDiagContainer **ppInstance) PURE; - STDMETHOD(GetNumberOfProps) (THIS_ DWORD *pdwCount) PURE; - STDMETHOD(EnumPropNames) (THIS_ DWORD dwIndex, LPWSTR pwszPropName, DWORD cchPropName) PURE; - STDMETHOD(GetProp) (THIS_ LPCWSTR pwszPropName, VARIANT *pvarProp) PURE; -}; - - -/**************************************************************************** - * - * DxDiag application interface macros - * - ****************************************************************************/ - -#if !defined(__cplusplus) || defined(CINTERFACE) - -#define IDxDiagProvider_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDxDiagProvider_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDxDiagProvider_Release(p) (p)->lpVtbl->Release(p) -#define IDxDiagProvider_Initialize(p,a,b) (p)->lpVtbl->Initialize(p,a,b) -#define IDxDiagProvider_GetRootContainer(p,a) (p)->lpVtbl->GetRootContainer(p,a) - -#define IDxDiagContainer_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) -#define IDxDiagContainer_AddRef(p) (p)->lpVtbl->AddRef(p) -#define IDxDiagContainer_Release(p) (p)->lpVtbl->Release(p) -#define IDxDiagContainer_GetNumberOfChildContainers(p,a) (p)->lpVtbl->GetNumberOfChildContainers(p,a) -#define IDxDiagContainer_EnumChildContainerNames(p,a,b,c) (p)->lpVtbl->EnumChildContainerNames(p,a,b,c) -#define IDxDiagContainer_GetChildContainer(p,a,b) (p)->lpVtbl->GetChildContainer(p,a,b) -#define IDxDiagContainer_GetNumberOfProps(p,a) (p)->lpVtbl->GetNumberOfProps(p,a) -#define IDxDiagContainer_EnumProps(p,a,b) (p)->lpVtbl->EnumProps(p,a,b,c) -#define IDxDiagContainer_GetProp(p,a,b) (p)->lpVtbl->GetProp(p,a,b) - -#else /* C++ */ - -#define IDxDiagProvider_QueryInterface(p,a,b) (p)->QueryInterface(p,a,b) -#define IDxDiagProvider_AddRef(p) (p)->AddRef(p) -#define IDxDiagProvider_Release(p) (p)->Release(p) -#define IDxDiagProvider_Initialize(p,a,b) (p)->Initialize(p,a,b) -#define IDxDiagProvider_GetRootContainer(p,a) (p)->GetRootContainer(p,a) - -#define IDxDiagContainer_QueryInterface(p,a,b) (p)->QueryInterface(p,a,b) -#define IDxDiagContainer_AddRef(p) (p)->AddRef(p) -#define IDxDiagContainer_Release(p) (p)->Release(p) -#define IDxDiagContainer_GetNumberOfChildContainers(p,a) (p)->GetNumberOfChildContainers(p,a) -#define IDxDiagContainer_EnumChildContainerNames(p,a,b,c) (p)->EnumChildContainerNames(p,a,b,c) -#define IDxDiagContainer_GetChildContainer(p,a,b) (p)->GetChildContainer(p,a,b) -#define IDxDiagContainer_GetNumberOfProps(p,a) (p)->GetNumberOfProps(p,a) -#define IDxDiagContainer_EnumProps(p,a,b) (p)->EnumProps(p,a,b,c) -#define IDxDiagContainer_GetProp(p,a,b) (p)->GetProp(p,a,b) - -#endif - - -#ifdef __cplusplus -} -#endif - -#endif /* _DXDIAG_H_ */ - - diff --git a/SDK/Include/dxfile.h b/SDK/Include/dxfile.h deleted file mode 100644 index 74e80e5..0000000 --- a/SDK/Include/dxfile.h +++ /dev/null @@ -1,239 +0,0 @@ -/*************************************************************************** - * - * Copyright (C) 1998-1999 Microsoft Corporation. All Rights Reserved. - * - * File: dxfile.h - * - * Content: DirectX File public header file - * - ***************************************************************************/ - -#ifndef __DXFILE_H__ -#define __DXFILE_H__ - -#ifdef __cplusplus -extern "C" { -#endif - -typedef DWORD DXFILEFORMAT; - -#define DXFILEFORMAT_BINARY 0 -#define DXFILEFORMAT_TEXT 1 -#define DXFILEFORMAT_COMPRESSED 2 - -typedef DWORD DXFILELOADOPTIONS; - -#define DXFILELOAD_FROMFILE 0x00L -#define DXFILELOAD_FROMRESOURCE 0x01L -#define DXFILELOAD_FROMMEMORY 0x02L -#define DXFILELOAD_FROMSTREAM 0x04L -#define DXFILELOAD_FROMURL 0x08L - -typedef struct _DXFILELOADRESOURCE { - HMODULE hModule; - LPCTSTR lpName; - LPCTSTR lpType; -}DXFILELOADRESOURCE, *LPDXFILELOADRESOURCE; - -typedef struct _DXFILELOADMEMORY { - LPVOID lpMemory; - DWORD dSize; -}DXFILELOADMEMORY, *LPDXFILELOADMEMORY; - -/* - * DirectX File object types. - */ - -#ifndef WIN_TYPES -#define WIN_TYPES(itype, ptype) typedef interface itype *LP##ptype, **LPLP##ptype -#endif - -WIN_TYPES(IDirectXFile, DIRECTXFILE); -WIN_TYPES(IDirectXFileEnumObject, DIRECTXFILEENUMOBJECT); -WIN_TYPES(IDirectXFileSaveObject, DIRECTXFILESAVEOBJECT); -WIN_TYPES(IDirectXFileObject, DIRECTXFILEOBJECT); -WIN_TYPES(IDirectXFileData, DIRECTXFILEDATA); -WIN_TYPES(IDirectXFileDataReference, DIRECTXFILEDATAREFERENCE); -WIN_TYPES(IDirectXFileBinary, DIRECTXFILEBINARY); - -/* - * API for creating IDirectXFile interface. - */ - -STDAPI DirectXFileCreate(LPDIRECTXFILE *lplpDirectXFile); - -/* - * The methods for IUnknown - */ - -#define IUNKNOWN_METHODS(kind) \ - STDMETHOD(QueryInterface) (THIS_ REFIID riid, LPVOID *ppvObj) kind; \ - STDMETHOD_(ULONG, AddRef) (THIS) kind; \ - STDMETHOD_(ULONG, Release) (THIS) kind - -/* - * The methods for IDirectXFileObject - */ - -#define IDIRECTXFILEOBJECT_METHODS(kind) \ - STDMETHOD(GetName) (THIS_ LPSTR, LPDWORD) kind; \ - STDMETHOD(GetId) (THIS_ LPGUID) kind - -/* - * DirectX File interfaces. - */ - -#undef INTERFACE -#define INTERFACE IDirectXFile - -DECLARE_INTERFACE_(IDirectXFile, IUnknown) -{ - IUNKNOWN_METHODS(PURE); - STDMETHOD(CreateEnumObject) (THIS_ LPVOID, DXFILELOADOPTIONS, - LPDIRECTXFILEENUMOBJECT *) PURE; - STDMETHOD(CreateSaveObject) (THIS_ LPCSTR, DXFILEFORMAT, - LPDIRECTXFILESAVEOBJECT *) PURE; - STDMETHOD(RegisterTemplates) (THIS_ LPVOID, DWORD) PURE; -}; - -#undef INTERFACE -#define INTERFACE IDirectXFileEnumObject - -DECLARE_INTERFACE_(IDirectXFileEnumObject, IUnknown) -{ - IUNKNOWN_METHODS(PURE); - STDMETHOD(GetNextDataObject) (THIS_ LPDIRECTXFILEDATA *) PURE; - STDMETHOD(GetDataObjectById) (THIS_ REFGUID, LPDIRECTXFILEDATA *) PURE; - STDMETHOD(GetDataObjectByName) (THIS_ LPCSTR, LPDIRECTXFILEDATA *) PURE; -}; - -#undef INTERFACE -#define INTERFACE IDirectXFileSaveObject - -DECLARE_INTERFACE_(IDirectXFileSaveObject, IUnknown) -{ - IUNKNOWN_METHODS(PURE); - STDMETHOD(SaveTemplates) (THIS_ DWORD, const GUID **) PURE; - STDMETHOD(CreateDataObject) (THIS_ REFGUID, LPCSTR, const GUID *, - DWORD, LPVOID, LPDIRECTXFILEDATA *) PURE; - STDMETHOD(SaveData) (THIS_ LPDIRECTXFILEDATA) PURE; -}; - - -#undef INTERFACE -#define INTERFACE IDirectXFileObject - -DECLARE_INTERFACE_(IDirectXFileObject, IUnknown) -{ - IUNKNOWN_METHODS(PURE); - IDIRECTXFILEOBJECT_METHODS(PURE); -}; - -#undef INTERFACE -#define INTERFACE IDirectXFileData - -DECLARE_INTERFACE_(IDirectXFileData, IDirectXFileObject) -{ - IUNKNOWN_METHODS(PURE); - IDIRECTXFILEOBJECT_METHODS(PURE); - - STDMETHOD(GetData) (THIS_ LPCSTR, DWORD *, void **) PURE; - STDMETHOD(GetType) (THIS_ const GUID **) PURE; - STDMETHOD(GetNextObject) (THIS_ LPDIRECTXFILEOBJECT *) PURE; - STDMETHOD(AddDataObject) (THIS_ LPDIRECTXFILEDATA) PURE; - STDMETHOD(AddDataReference) (THIS_ LPCSTR, const GUID *) PURE; - STDMETHOD(AddBinaryObject) (THIS_ LPCSTR, const GUID *, LPCSTR, LPVOID, DWORD) PURE; -}; - -#undef INTERFACE -#define INTERFACE IDirectXFileDataReference - -DECLARE_INTERFACE_(IDirectXFileDataReference, IDirectXFileObject) -{ - IUNKNOWN_METHODS(PURE); - IDIRECTXFILEOBJECT_METHODS(PURE); - - STDMETHOD(Resolve) (THIS_ LPDIRECTXFILEDATA *) PURE; -}; - -#undef INTERFACE -#define INTERFACE IDirectXFileBinary - -DECLARE_INTERFACE_(IDirectXFileBinary, IDirectXFileObject) -{ - IUNKNOWN_METHODS(PURE); - IDIRECTXFILEOBJECT_METHODS(PURE); - - STDMETHOD(GetSize) (THIS_ DWORD *) PURE; - STDMETHOD(GetMimeType) (THIS_ LPCSTR *) PURE; - STDMETHOD(Read) (THIS_ LPVOID, DWORD, LPDWORD) PURE; -}; - -/* - * DirectXFile Object Class Id (for CoCreateInstance()) - */ - -DEFINE_GUID(CLSID_CDirectXFile, 0x4516ec43, 0x8f20, 0x11d0, 0x9b, 0x6d, 0x00, 0x00, 0xc0, 0x78, 0x1b, 0xc3); - -/* - * DirectX File Interface GUIDs. - */ - -DEFINE_GUID(IID_IDirectXFile, 0x3d82ab40, 0x62da, 0x11cf, 0xab, 0x39, 0x0, 0x20, 0xaf, 0x71, 0xe4, 0x33); -DEFINE_GUID(IID_IDirectXFileEnumObject, 0x3d82ab41, 0x62da, 0x11cf, 0xab, 0x39, 0x0, 0x20, 0xaf, 0x71, 0xe4, 0x33); -DEFINE_GUID(IID_IDirectXFileSaveObject, 0x3d82ab42, 0x62da, 0x11cf, 0xab, 0x39, 0x0, 0x20, 0xaf, 0x71, 0xe4, 0x33); -DEFINE_GUID(IID_IDirectXFileObject, 0x3d82ab43, 0x62da, 0x11cf, 0xab, 0x39, 0x0, 0x20, 0xaf, 0x71, 0xe4, 0x33); -DEFINE_GUID(IID_IDirectXFileData, 0x3d82ab44, 0x62da, 0x11cf, 0xab, 0x39, 0x0, 0x20, 0xaf, 0x71, 0xe4, 0x33); -DEFINE_GUID(IID_IDirectXFileDataReference, 0x3d82ab45, 0x62da, 0x11cf, 0xab, 0x39, 0x0, 0x20, 0xaf, 0x71, 0xe4, 0x33); -DEFINE_GUID(IID_IDirectXFileBinary, 0x3d82ab46, 0x62da, 0x11cf, 0xab, 0x39, 0x0, 0x20, 0xaf, 0x71, 0xe4, 0x33); - -/* - * DirectX File Header template's GUID. - */ - -DEFINE_GUID(TID_DXFILEHeader, 0x3d82ab43, 0x62da, 0x11cf, 0xab, 0x39, 0x0, 0x20, 0xaf, 0x71, 0xe4, 0x33); - - -/* - * DirectX File errors. - */ - -#define _FACDD 0x876 -#define MAKE_DDHRESULT( code ) MAKE_HRESULT( 1, _FACDD, code ) - -#define DXFILE_OK 0 - -#define DXFILEERR_BADOBJECT MAKE_DDHRESULT(850) -#define DXFILEERR_BADVALUE MAKE_DDHRESULT(851) -#define DXFILEERR_BADTYPE MAKE_DDHRESULT(852) -#define DXFILEERR_BADSTREAMHANDLE MAKE_DDHRESULT(853) -#define DXFILEERR_BADALLOC MAKE_DDHRESULT(854) -#define DXFILEERR_NOTFOUND MAKE_DDHRESULT(855) -#define DXFILEERR_NOTDONEYET MAKE_DDHRESULT(856) -#define DXFILEERR_FILENOTFOUND MAKE_DDHRESULT(857) -#define DXFILEERR_RESOURCENOTFOUND MAKE_DDHRESULT(858) -#define DXFILEERR_URLNOTFOUND MAKE_DDHRESULT(859) -#define DXFILEERR_BADRESOURCE MAKE_DDHRESULT(860) -#define DXFILEERR_BADFILETYPE MAKE_DDHRESULT(861) -#define DXFILEERR_BADFILEVERSION MAKE_DDHRESULT(862) -#define DXFILEERR_BADFILEFLOATSIZE MAKE_DDHRESULT(863) -#define DXFILEERR_BADFILECOMPRESSIONTYPE MAKE_DDHRESULT(864) -#define DXFILEERR_BADFILE MAKE_DDHRESULT(865) -#define DXFILEERR_PARSEERROR MAKE_DDHRESULT(866) -#define DXFILEERR_NOTEMPLATE MAKE_DDHRESULT(867) -#define DXFILEERR_BADARRAYSIZE MAKE_DDHRESULT(868) -#define DXFILEERR_BADDATAREFERENCE MAKE_DDHRESULT(869) -#define DXFILEERR_INTERNALERROR MAKE_DDHRESULT(870) -#define DXFILEERR_NOMOREOBJECTS MAKE_DDHRESULT(871) -#define DXFILEERR_BADINTRINSICS MAKE_DDHRESULT(872) -#define DXFILEERR_NOMORESTREAMHANDLES MAKE_DDHRESULT(873) -#define DXFILEERR_NOMOREDATA MAKE_DDHRESULT(874) -#define DXFILEERR_BADCACHEFILE MAKE_DDHRESULT(875) -#define DXFILEERR_NOINTERNET MAKE_DDHRESULT(876) - - -#ifdef __cplusplus -}; -#endif - -#endif /* _DXFILE_H_ */ diff --git a/SDK/Include/dxsdkver.h b/SDK/Include/dxsdkver.h deleted file mode 100644 index 7d88bbb..0000000 --- a/SDK/Include/dxsdkver.h +++ /dev/null @@ -1,18 +0,0 @@ -/*==========================================================================; - * - * - * File: dxsdkver.h - * Content: DirectX SDK Version Include File - * - ****************************************************************************/ - -#ifndef _DXSDKVER_H_ -#define _DXSDKVER_H_ - -#define _DXSDK_PRODUCT_MAJOR 9 -#define _DXSDK_PRODUCT_MINOR 29 -#define _DXSDK_BUILD_MAJOR 1962 -#define _DXSDK_BUILD_MINOR 0 - -#endif // _DXSDKVER_H_ - diff --git a/SDK/Include/gameux.h b/SDK/Include/gameux.h deleted file mode 100644 index 19e2f95..0000000 --- a/SDK/Include/gameux.h +++ /dev/null @@ -1,719 +0,0 @@ - - -/* this ALWAYS GENERATED file contains the definitions for the interfaces */ - - - /* File created by MIDL compiler version 7.00.0550 */ -/* Compiler settings for gameux.idl: - Oicf, W1, Zp8, env=Win32 (32b run), target_arch=X86 7.00.0550 - protocol : dce , ms_ext, c_ext, robust - error checks: allocation ref bounds_check enum stub_data - VC __declspec() decoration level: - __declspec(uuid()), __declspec(selectany), __declspec(novtable) - DECLSPEC_UUID(), MIDL_INTERFACE() -*/ -/* @@MIDL_FILE_HEADING( ) */ - -#pragma warning( disable: 4049 ) /* more than 64k source lines */ - - -/* verify that the version is high enough to compile this file*/ -#ifndef __REQUIRED_RPCNDR_H_VERSION__ -#define __REQUIRED_RPCNDR_H_VERSION__ 475 -#endif - -/* verify that the version is high enough to compile this file*/ -#ifndef __REQUIRED_RPCSAL_H_VERSION__ -#define __REQUIRED_RPCSAL_H_VERSION__ 100 -#endif - -#include "rpc.h" -#include "rpcndr.h" - -#ifndef __RPCNDR_H_VERSION__ -#error this stub requires an updated version of -#endif // __RPCNDR_H_VERSION__ - -#ifndef COM_NO_WINDOWS_H -#include "windows.h" -#include "ole2.h" -#endif /*COM_NO_WINDOWS_H*/ - -#ifndef __gameux_h__ -#define __gameux_h__ - -#if defined(_MSC_VER) && (_MSC_VER >= 1020) -#pragma once -#endif - -/* Forward Declarations */ - -#ifndef __IGameExplorer_FWD_DEFINED__ -#define __IGameExplorer_FWD_DEFINED__ -typedef interface IGameExplorer IGameExplorer; -#endif /* __IGameExplorer_FWD_DEFINED__ */ - - -#ifndef __IGameStatistics_FWD_DEFINED__ -#define __IGameStatistics_FWD_DEFINED__ -typedef interface IGameStatistics IGameStatistics; -#endif /* __IGameStatistics_FWD_DEFINED__ */ - - -#ifndef __IGameStatisticsMgr_FWD_DEFINED__ -#define __IGameStatisticsMgr_FWD_DEFINED__ -typedef interface IGameStatisticsMgr IGameStatisticsMgr; -#endif /* __IGameStatisticsMgr_FWD_DEFINED__ */ - - -#ifndef __IGameExplorer2_FWD_DEFINED__ -#define __IGameExplorer2_FWD_DEFINED__ -typedef interface IGameExplorer2 IGameExplorer2; -#endif /* __IGameExplorer2_FWD_DEFINED__ */ - - -#ifndef __GameExplorer_FWD_DEFINED__ -#define __GameExplorer_FWD_DEFINED__ - -#ifdef __cplusplus -typedef class GameExplorer GameExplorer; -#else -typedef struct GameExplorer GameExplorer; -#endif /* __cplusplus */ - -#endif /* __GameExplorer_FWD_DEFINED__ */ - - -#ifndef __GameStatistics_FWD_DEFINED__ -#define __GameStatistics_FWD_DEFINED__ - -#ifdef __cplusplus -typedef class GameStatistics GameStatistics; -#else -typedef struct GameStatistics GameStatistics; -#endif /* __cplusplus */ - -#endif /* __GameStatistics_FWD_DEFINED__ */ - - -/* header files for imported files */ -#include "oaidl.h" -#include "ocidl.h" -#include "shobjidl.h" - -#ifdef __cplusplus -extern "C"{ -#endif - - -/* interface __MIDL_itf_gameux_0000_0000 */ -/* [local] */ - -#define ID_GDF_XML __GDF_XML -#define ID_GDF_THUMBNAIL __GDF_THUMBNAIL -#define ID_ICON_ICO __ICON_ICO -#define ID_GDF_XML_STR L"__GDF_XML" -#define ID_GDF_THUMBNAIL_STR L"__GDF_THUMBNAIL" -typedef /* [v1_enum] */ -enum GAME_INSTALL_SCOPE - { GIS_NOT_INSTALLED = 1, - GIS_CURRENT_USER = 2, - GIS_ALL_USERS = 3 - } GAME_INSTALL_SCOPE; - - - -extern RPC_IF_HANDLE __MIDL_itf_gameux_0000_0000_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_gameux_0000_0000_v0_0_s_ifspec; - -#ifndef __IGameExplorer_INTERFACE_DEFINED__ -#define __IGameExplorer_INTERFACE_DEFINED__ - -/* interface IGameExplorer */ -/* [unique][helpstring][uuid][object] */ - - -EXTERN_C const IID IID_IGameExplorer; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("E7B2FB72-D728-49B3-A5F2-18EBF5F1349E") - IGameExplorer : public IUnknown - { - public: - virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE AddGame( - /* [in] */ __RPC__in BSTR bstrGDFBinaryPath, - /* [in] */ __RPC__in BSTR bstrGameInstallDirectory, - /* [in] */ GAME_INSTALL_SCOPE installScope, - /* [out][in] */ __RPC__inout GUID *pguidInstanceID) = 0; - - virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE RemoveGame( - /* [in] */ GUID guidInstanceID) = 0; - - virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE UpdateGame( - /* [in] */ GUID guidInstanceID) = 0; - - virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE VerifyAccess( - /* [in] */ __RPC__in BSTR bstrGDFBinaryPath, - /* [out] */ __RPC__out BOOL *pfHasAccess) = 0; - - }; - -#else /* C style interface */ - - typedef struct IGameExplorerVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - __RPC__in IGameExplorer * This, - /* [in] */ __RPC__in REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - __RPC__in IGameExplorer * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - __RPC__in IGameExplorer * This); - - /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *AddGame )( - __RPC__in IGameExplorer * This, - /* [in] */ __RPC__in BSTR bstrGDFBinaryPath, - /* [in] */ __RPC__in BSTR bstrGameInstallDirectory, - /* [in] */ GAME_INSTALL_SCOPE installScope, - /* [out][in] */ __RPC__inout GUID *pguidInstanceID); - - /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *RemoveGame )( - __RPC__in IGameExplorer * This, - /* [in] */ GUID guidInstanceID); - - /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *UpdateGame )( - __RPC__in IGameExplorer * This, - /* [in] */ GUID guidInstanceID); - - /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *VerifyAccess )( - __RPC__in IGameExplorer * This, - /* [in] */ __RPC__in BSTR bstrGDFBinaryPath, - /* [out] */ __RPC__out BOOL *pfHasAccess); - - END_INTERFACE - } IGameExplorerVtbl; - - interface IGameExplorer - { - CONST_VTBL struct IGameExplorerVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define IGameExplorer_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define IGameExplorer_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define IGameExplorer_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define IGameExplorer_AddGame(This,bstrGDFBinaryPath,bstrGameInstallDirectory,installScope,pguidInstanceID) \ - ( (This)->lpVtbl -> AddGame(This,bstrGDFBinaryPath,bstrGameInstallDirectory,installScope,pguidInstanceID) ) - -#define IGameExplorer_RemoveGame(This,guidInstanceID) \ - ( (This)->lpVtbl -> RemoveGame(This,guidInstanceID) ) - -#define IGameExplorer_UpdateGame(This,guidInstanceID) \ - ( (This)->lpVtbl -> UpdateGame(This,guidInstanceID) ) - -#define IGameExplorer_VerifyAccess(This,bstrGDFBinaryPath,pfHasAccess) \ - ( (This)->lpVtbl -> VerifyAccess(This,bstrGDFBinaryPath,pfHasAccess) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __IGameExplorer_INTERFACE_DEFINED__ */ - - -/* interface __MIDL_itf_gameux_0000_0001 */ -/* [local] */ - -typedef /* [v1_enum] */ -enum GAMESTATS_OPEN_TYPE - { GAMESTATS_OPEN_OPENORCREATE = 0, - GAMESTATS_OPEN_OPENONLY = 1 - } GAMESTATS_OPEN_TYPE; - -typedef /* [v1_enum] */ -enum GAMESTATS_OPEN_RESULT - { GAMESTATS_OPEN_CREATED = 0, - GAMESTATS_OPEN_OPENED = 1 - } GAMESTATS_OPEN_RESULT; - - - -extern RPC_IF_HANDLE __MIDL_itf_gameux_0000_0001_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_gameux_0000_0001_v0_0_s_ifspec; - -#ifndef __IGameStatistics_INTERFACE_DEFINED__ -#define __IGameStatistics_INTERFACE_DEFINED__ - -/* interface IGameStatistics */ -/* [unique][helpstring][uuid][object] */ - - -EXTERN_C const IID IID_IGameStatistics; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("3887C9CA-04A0-42ae-BC4C-5FA6C7721145") - IGameStatistics : public IUnknown - { - public: - virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE GetMaxCategoryLength( - /* [retval][out] */ __RPC__out UINT *cch) = 0; - - virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE GetMaxNameLength( - /* [retval][out] */ __RPC__out UINT *cch) = 0; - - virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE GetMaxValueLength( - /* [retval][out] */ __RPC__out UINT *cch) = 0; - - virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE GetMaxCategories( - /* [retval][out] */ __RPC__out WORD *pMax) = 0; - - virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE GetMaxStatsPerCategory( - /* [retval][out] */ __RPC__out WORD *pMax) = 0; - - virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE SetCategoryTitle( - /* [in] */ WORD categoryIndex, - /* [string][in] */ __RPC__in_string LPCWSTR title) = 0; - - virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE GetCategoryTitle( - /* [in] */ WORD categoryIndex, - /* [retval][string][out] */ __RPC__deref_out_opt_string LPWSTR *pTitle) = 0; - - virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE GetStatistic( - /* [in] */ WORD categoryIndex, - /* [in] */ WORD statIndex, - /* [string][unique][out][in] */ __RPC__deref_opt_inout_opt_string LPWSTR *pName, - /* [string][unique][out][in] */ __RPC__deref_opt_inout_opt_string LPWSTR *pValue) = 0; - - virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE SetStatistic( - /* [in] */ WORD categoryIndex, - /* [in] */ WORD statIndex, - /* [string][in] */ __RPC__in_string LPCWSTR name, - /* [string][in] */ __RPC__in_string LPCWSTR value) = 0; - - virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE Save( - /* [in] */ BOOL trackChanges) = 0; - - virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE SetLastPlayedCategory( - /* [in] */ UINT categoryIndex) = 0; - - virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE GetLastPlayedCategory( - /* [retval][out] */ __RPC__out UINT *pCategoryIndex) = 0; - - }; - -#else /* C style interface */ - - typedef struct IGameStatisticsVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - __RPC__in IGameStatistics * This, - /* [in] */ __RPC__in REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - __RPC__in IGameStatistics * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - __RPC__in IGameStatistics * This); - - /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *GetMaxCategoryLength )( - __RPC__in IGameStatistics * This, - /* [retval][out] */ __RPC__out UINT *cch); - - /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *GetMaxNameLength )( - __RPC__in IGameStatistics * This, - /* [retval][out] */ __RPC__out UINT *cch); - - /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *GetMaxValueLength )( - __RPC__in IGameStatistics * This, - /* [retval][out] */ __RPC__out UINT *cch); - - /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *GetMaxCategories )( - __RPC__in IGameStatistics * This, - /* [retval][out] */ __RPC__out WORD *pMax); - - /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *GetMaxStatsPerCategory )( - __RPC__in IGameStatistics * This, - /* [retval][out] */ __RPC__out WORD *pMax); - - /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *SetCategoryTitle )( - __RPC__in IGameStatistics * This, - /* [in] */ WORD categoryIndex, - /* [string][in] */ __RPC__in_string LPCWSTR title); - - /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *GetCategoryTitle )( - __RPC__in IGameStatistics * This, - /* [in] */ WORD categoryIndex, - /* [retval][string][out] */ __RPC__deref_out_opt_string LPWSTR *pTitle); - - /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *GetStatistic )( - __RPC__in IGameStatistics * This, - /* [in] */ WORD categoryIndex, - /* [in] */ WORD statIndex, - /* [string][unique][out][in] */ __RPC__deref_opt_inout_opt_string LPWSTR *pName, - /* [string][unique][out][in] */ __RPC__deref_opt_inout_opt_string LPWSTR *pValue); - - /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *SetStatistic )( - __RPC__in IGameStatistics * This, - /* [in] */ WORD categoryIndex, - /* [in] */ WORD statIndex, - /* [string][in] */ __RPC__in_string LPCWSTR name, - /* [string][in] */ __RPC__in_string LPCWSTR value); - - /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *Save )( - __RPC__in IGameStatistics * This, - /* [in] */ BOOL trackChanges); - - /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *SetLastPlayedCategory )( - __RPC__in IGameStatistics * This, - /* [in] */ UINT categoryIndex); - - /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *GetLastPlayedCategory )( - __RPC__in IGameStatistics * This, - /* [retval][out] */ __RPC__out UINT *pCategoryIndex); - - END_INTERFACE - } IGameStatisticsVtbl; - - interface IGameStatistics - { - CONST_VTBL struct IGameStatisticsVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define IGameStatistics_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define IGameStatistics_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define IGameStatistics_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define IGameStatistics_GetMaxCategoryLength(This,cch) \ - ( (This)->lpVtbl -> GetMaxCategoryLength(This,cch) ) - -#define IGameStatistics_GetMaxNameLength(This,cch) \ - ( (This)->lpVtbl -> GetMaxNameLength(This,cch) ) - -#define IGameStatistics_GetMaxValueLength(This,cch) \ - ( (This)->lpVtbl -> GetMaxValueLength(This,cch) ) - -#define IGameStatistics_GetMaxCategories(This,pMax) \ - ( (This)->lpVtbl -> GetMaxCategories(This,pMax) ) - -#define IGameStatistics_GetMaxStatsPerCategory(This,pMax) \ - ( (This)->lpVtbl -> GetMaxStatsPerCategory(This,pMax) ) - -#define IGameStatistics_SetCategoryTitle(This,categoryIndex,title) \ - ( (This)->lpVtbl -> SetCategoryTitle(This,categoryIndex,title) ) - -#define IGameStatistics_GetCategoryTitle(This,categoryIndex,pTitle) \ - ( (This)->lpVtbl -> GetCategoryTitle(This,categoryIndex,pTitle) ) - -#define IGameStatistics_GetStatistic(This,categoryIndex,statIndex,pName,pValue) \ - ( (This)->lpVtbl -> GetStatistic(This,categoryIndex,statIndex,pName,pValue) ) - -#define IGameStatistics_SetStatistic(This,categoryIndex,statIndex,name,value) \ - ( (This)->lpVtbl -> SetStatistic(This,categoryIndex,statIndex,name,value) ) - -#define IGameStatistics_Save(This,trackChanges) \ - ( (This)->lpVtbl -> Save(This,trackChanges) ) - -#define IGameStatistics_SetLastPlayedCategory(This,categoryIndex) \ - ( (This)->lpVtbl -> SetLastPlayedCategory(This,categoryIndex) ) - -#define IGameStatistics_GetLastPlayedCategory(This,pCategoryIndex) \ - ( (This)->lpVtbl -> GetLastPlayedCategory(This,pCategoryIndex) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __IGameStatistics_INTERFACE_DEFINED__ */ - - -#ifndef __IGameStatisticsMgr_INTERFACE_DEFINED__ -#define __IGameStatisticsMgr_INTERFACE_DEFINED__ - -/* interface IGameStatisticsMgr */ -/* [unique][helpstring][uuid][object] */ - - -EXTERN_C const IID IID_IGameStatisticsMgr; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("AFF3EA11-E70E-407d-95DD-35E612C41CE2") - IGameStatisticsMgr : public IUnknown - { - public: - virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE GetGameStatistics( - /* [string][in] */ __RPC__in_string LPCWSTR GDFBinaryPath, - /* [in] */ GAMESTATS_OPEN_TYPE openType, - /* [out] */ __RPC__out GAMESTATS_OPEN_RESULT *pOpenResult, - /* [retval][out] */ __RPC__deref_out_opt IGameStatistics **ppiStats) = 0; - - virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE RemoveGameStatistics( - /* [string][in] */ __RPC__in_string LPCWSTR GDFBinaryPath) = 0; - - }; - -#else /* C style interface */ - - typedef struct IGameStatisticsMgrVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - __RPC__in IGameStatisticsMgr * This, - /* [in] */ __RPC__in REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - __RPC__in IGameStatisticsMgr * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - __RPC__in IGameStatisticsMgr * This); - - /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *GetGameStatistics )( - __RPC__in IGameStatisticsMgr * This, - /* [string][in] */ __RPC__in_string LPCWSTR GDFBinaryPath, - /* [in] */ GAMESTATS_OPEN_TYPE openType, - /* [out] */ __RPC__out GAMESTATS_OPEN_RESULT *pOpenResult, - /* [retval][out] */ __RPC__deref_out_opt IGameStatistics **ppiStats); - - /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *RemoveGameStatistics )( - __RPC__in IGameStatisticsMgr * This, - /* [string][in] */ __RPC__in_string LPCWSTR GDFBinaryPath); - - END_INTERFACE - } IGameStatisticsMgrVtbl; - - interface IGameStatisticsMgr - { - CONST_VTBL struct IGameStatisticsMgrVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define IGameStatisticsMgr_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define IGameStatisticsMgr_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define IGameStatisticsMgr_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define IGameStatisticsMgr_GetGameStatistics(This,GDFBinaryPath,openType,pOpenResult,ppiStats) \ - ( (This)->lpVtbl -> GetGameStatistics(This,GDFBinaryPath,openType,pOpenResult,ppiStats) ) - -#define IGameStatisticsMgr_RemoveGameStatistics(This,GDFBinaryPath) \ - ( (This)->lpVtbl -> RemoveGameStatistics(This,GDFBinaryPath) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __IGameStatisticsMgr_INTERFACE_DEFINED__ */ - - -#ifndef __IGameExplorer2_INTERFACE_DEFINED__ -#define __IGameExplorer2_INTERFACE_DEFINED__ - -/* interface IGameExplorer2 */ -/* [unique][helpstring][uuid][object] */ - - -EXTERN_C const IID IID_IGameExplorer2; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("86874AA7-A1ED-450d-A7EB-B89E20B2FFF3") - IGameExplorer2 : public IUnknown - { - public: - virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE InstallGame( - /* [string][in] */ __RPC__in_string LPCWSTR binaryGDFPath, - /* [unique][in] */ __RPC__in_opt LPCWSTR installDirectory, - /* [in] */ GAME_INSTALL_SCOPE installScope) = 0; - - virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE UninstallGame( - /* [string][in] */ __RPC__in_string LPCWSTR binaryGDFPath) = 0; - - virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE CheckAccess( - /* [string][in] */ __RPC__in_string LPCWSTR binaryGDFPath, - /* [retval][out] */ __RPC__out BOOL *pHasAccess) = 0; - - }; - -#else /* C style interface */ - - typedef struct IGameExplorer2Vtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - __RPC__in IGameExplorer2 * This, - /* [in] */ __RPC__in REFIID riid, - /* [annotation][iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - __RPC__in IGameExplorer2 * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - __RPC__in IGameExplorer2 * This); - - /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *InstallGame )( - __RPC__in IGameExplorer2 * This, - /* [string][in] */ __RPC__in_string LPCWSTR binaryGDFPath, - /* [unique][in] */ __RPC__in_opt LPCWSTR installDirectory, - /* [in] */ GAME_INSTALL_SCOPE installScope); - - /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *UninstallGame )( - __RPC__in IGameExplorer2 * This, - /* [string][in] */ __RPC__in_string LPCWSTR binaryGDFPath); - - /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *CheckAccess )( - __RPC__in IGameExplorer2 * This, - /* [string][in] */ __RPC__in_string LPCWSTR binaryGDFPath, - /* [retval][out] */ __RPC__out BOOL *pHasAccess); - - END_INTERFACE - } IGameExplorer2Vtbl; - - interface IGameExplorer2 - { - CONST_VTBL struct IGameExplorer2Vtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define IGameExplorer2_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define IGameExplorer2_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define IGameExplorer2_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define IGameExplorer2_InstallGame(This,binaryGDFPath,installDirectory,installScope) \ - ( (This)->lpVtbl -> InstallGame(This,binaryGDFPath,installDirectory,installScope) ) - -#define IGameExplorer2_UninstallGame(This,binaryGDFPath) \ - ( (This)->lpVtbl -> UninstallGame(This,binaryGDFPath) ) - -#define IGameExplorer2_CheckAccess(This,binaryGDFPath,pHasAccess) \ - ( (This)->lpVtbl -> CheckAccess(This,binaryGDFPath,pHasAccess) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __IGameExplorer2_INTERFACE_DEFINED__ */ - - - -#ifndef __gameuxLib_LIBRARY_DEFINED__ -#define __gameuxLib_LIBRARY_DEFINED__ - -/* library gameuxLib */ -/* [helpstring][version][uuid] */ - - -EXTERN_C const IID LIBID_gameuxLib; - -EXTERN_C const CLSID CLSID_GameExplorer; - -#ifdef __cplusplus - -class DECLSPEC_UUID("9A5EA990-3034-4D6F-9128-01F3C61022BC") -GameExplorer; -#endif - -EXTERN_C const CLSID CLSID_GameStatistics; - -#ifdef __cplusplus - -class DECLSPEC_UUID("DBC85A2C-C0DC-4961-B6E2-D28B62C11AD4") -GameStatistics; -#endif -#endif /* __gameuxLib_LIBRARY_DEFINED__ */ - -/* Additional Prototypes for ALL interfaces */ - -unsigned long __RPC_USER BSTR_UserSize( __RPC__in unsigned long *, unsigned long , __RPC__in BSTR * ); -unsigned char * __RPC_USER BSTR_UserMarshal( __RPC__in unsigned long *, __RPC__inout_xcount(0) unsigned char *, __RPC__in BSTR * ); -unsigned char * __RPC_USER BSTR_UserUnmarshal(__RPC__in unsigned long *, __RPC__in_xcount(0) unsigned char *, __RPC__out BSTR * ); -void __RPC_USER BSTR_UserFree( __RPC__in unsigned long *, __RPC__in BSTR * ); - -unsigned long __RPC_USER BSTR_UserSize64( __RPC__in unsigned long *, unsigned long , __RPC__in BSTR * ); -unsigned char * __RPC_USER BSTR_UserMarshal64( __RPC__in unsigned long *, __RPC__inout_xcount(0) unsigned char *, __RPC__in BSTR * ); -unsigned char * __RPC_USER BSTR_UserUnmarshal64(__RPC__in unsigned long *, __RPC__in_xcount(0) unsigned char *, __RPC__out BSTR * ); -void __RPC_USER BSTR_UserFree64( __RPC__in unsigned long *, __RPC__in BSTR * ); - -/* end of Additional Prototypes */ - -#ifdef __cplusplus -} -#endif - -#endif - - - diff --git a/SDK/Include/rmxfguid.h b/SDK/Include/rmxfguid.h deleted file mode 100644 index d3326cc..0000000 --- a/SDK/Include/rmxfguid.h +++ /dev/null @@ -1,223 +0,0 @@ -/*************************************************************************** - * - * Copyright (C) 1998-1999 Microsoft Corporation. All Rights Reserved. - * - * File: rmxfguid.h - * - * Content: Defines GUIDs of D3DRM's templates. - * - ***************************************************************************/ - -#ifndef __RMXFGUID_H_ -#define __RMXFGUID_H_ - -/* {2B957100-9E9A-11cf-AB39-0020AF71E433} */ -DEFINE_GUID(TID_D3DRMInfo, -0x2b957100, 0x9e9a, 0x11cf, 0xab, 0x39, 0x0, 0x20, 0xaf, 0x71, 0xe4, 0x33); - -/* {3D82AB44-62DA-11cf-AB39-0020AF71E433} */ -DEFINE_GUID(TID_D3DRMMesh, -0x3d82ab44, 0x62da, 0x11cf, 0xab, 0x39, 0x0, 0x20, 0xaf, 0x71, 0xe4, 0x33); - -/* {3D82AB5E-62DA-11cf-AB39-0020AF71E433} */ -DEFINE_GUID(TID_D3DRMVector, -0x3d82ab5e, 0x62da, 0x11cf, 0xab, 0x39, 0x0, 0x20, 0xaf, 0x71, 0xe4, 0x33); - -/* {3D82AB5F-62DA-11cf-AB39-0020AF71E433} */ -DEFINE_GUID(TID_D3DRMMeshFace, -0x3d82ab5f, 0x62da, 0x11cf, 0xab, 0x39, 0x0, 0x20, 0xaf, 0x71, 0xe4, 0x33); - -/* {3D82AB4D-62DA-11cf-AB39-0020AF71E433} */ -DEFINE_GUID(TID_D3DRMMaterial, -0x3d82ab4d, 0x62da, 0x11cf, 0xab, 0x39, 0x0, 0x20, 0xaf, 0x71, 0xe4, 0x33); - -/* {35FF44E1-6C7C-11cf-8F52-0040333594A3} */ -DEFINE_GUID(TID_D3DRMMaterialArray, -0x35ff44e1, 0x6c7c, 0x11cf, 0x8F, 0x52, 0x0, 0x40, 0x33, 0x35, 0x94, 0xa3); - -/* {3D82AB46-62DA-11cf-AB39-0020AF71E433} */ -DEFINE_GUID(TID_D3DRMFrame, -0x3d82ab46, 0x62da, 0x11cf, 0xab, 0x39, 0x0, 0x20, 0xaf, 0x71, 0xe4, 0x33); - -/* {F6F23F41-7686-11cf-8F52-0040333594A3} */ -DEFINE_GUID(TID_D3DRMFrameTransformMatrix, -0xf6f23f41, 0x7686, 0x11cf, 0x8f, 0x52, 0x0, 0x40, 0x33, 0x35, 0x94, 0xa3); - -/* {F6F23F42-7686-11cf-8F52-0040333594A3} */ -DEFINE_GUID(TID_D3DRMMeshMaterialList, -0xf6f23f42, 0x7686, 0x11cf, 0x8f, 0x52, 0x0, 0x40, 0x33, 0x35, 0x94, 0xa3); - -/* {F6F23F40-7686-11cf-8F52-0040333594A3} */ -DEFINE_GUID(TID_D3DRMMeshTextureCoords, -0xf6f23f40, 0x7686, 0x11cf, 0x8f, 0x52, 0x0, 0x40, 0x33, 0x35, 0x94, 0xa3); - -/* {F6F23F43-7686-11cf-8F52-0040333594A3} */ -DEFINE_GUID(TID_D3DRMMeshNormals, -0xf6f23f43, 0x7686, 0x11cf, 0x8f, 0x52, 0x0, 0x40, 0x33, 0x35, 0x94, 0xa3); - -/* {F6F23F44-7686-11cf-8F52-0040333594A3} */ -DEFINE_GUID(TID_D3DRMCoords2d, -0xf6f23f44, 0x7686, 0x11cf, 0x8f, 0x52, 0x0, 0x40, 0x33, 0x35, 0x94, 0xa3); - -/* {F6F23F45-7686-11cf-8F52-0040333594A3} */ -DEFINE_GUID(TID_D3DRMMatrix4x4, -0xf6f23f45, 0x7686, 0x11cf, 0x8f, 0x52, 0x0, 0x40, 0x33, 0x35, 0x94, 0xa3); - -/* {3D82AB4F-62DA-11cf-AB39-0020AF71E433} */ -DEFINE_GUID(TID_D3DRMAnimation, -0x3d82ab4f, 0x62da, 0x11cf, 0xab, 0x39, 0x0, 0x20, 0xaf, 0x71, 0xe4, 0x33); - -/* {3D82AB50-62DA-11cf-AB39-0020AF71E433} */ -DEFINE_GUID(TID_D3DRMAnimationSet, -0x3d82ab50, 0x62da, 0x11cf, 0xab, 0x39, 0x0, 0x20, 0xaf, 0x71, 0xe4, 0x33); - -/* {10DD46A8-775B-11cf-8F52-0040333594A3} */ -DEFINE_GUID(TID_D3DRMAnimationKey, -0x10dd46a8, 0x775b, 0x11cf, 0x8f, 0x52, 0x0, 0x40, 0x33, 0x35, 0x94, 0xA3); - -/* {10DD46A9-775B-11cf-8F52-0040333594A3} */ -DEFINE_GUID(TID_D3DRMFloatKeys, -0x10dd46a9, 0x775b, 0x11cf, 0x8f, 0x52, 0x0, 0x40, 0x33, 0x35, 0x94, 0xA3); - -/* {01411840-7786-11cf-8F52-0040333594A3} */ -DEFINE_GUID(TID_D3DRMMaterialAmbientColor, -0x01411840, 0x7786, 0x11cf, 0x8f, 0x52, 0x0, 0x40, 0x33, 0x35, 0x94, 0xA3); - -/* {01411841-7786-11cf-8F52-0040333594A3} */ -DEFINE_GUID(TID_D3DRMMaterialDiffuseColor, -0x01411841, 0x7786, 0x11cf, 0x8f, 0x52, 0x0, 0x40, 0x33, 0x35, 0x94, 0xA3); - -/* {01411842-7786-11cf-8F52-0040333594A3} */ -DEFINE_GUID(TID_D3DRMMaterialSpecularColor, -0x01411842, 0x7786, 0x11cf, 0x8f, 0x52, 0x0, 0x40, 0x33, 0x35, 0x94, 0xA3); - -/* {D3E16E80-7835-11cf-8F52-0040333594A3} */ -DEFINE_GUID(TID_D3DRMMaterialEmissiveColor, -0xd3e16e80, 0x7835, 0x11cf, 0x8f, 0x52, 0x0, 0x40, 0x33, 0x35, 0x94, 0xa3); - -/* {01411843-7786-11cf-8F52-0040333594A3} */ -DEFINE_GUID(TID_D3DRMMaterialPower, -0x01411843, 0x7786, 0x11cf, 0x8f, 0x52, 0x0, 0x40, 0x33, 0x35, 0x94, 0xA3); - -/* {35FF44E0-6C7C-11cf-8F52-0040333594A3} */ -DEFINE_GUID(TID_D3DRMColorRGBA, -0x35ff44e0, 0x6c7c, 0x11cf, 0x8f, 0x52, 0x0, 0x40, 0x33, 0x35, 0x94, 0xA3); - -/* {D3E16E81-7835-11cf-8F52-0040333594A3} */ -DEFINE_GUID(TID_D3DRMColorRGB, -0xd3e16e81, 0x7835, 0x11cf, 0x8f, 0x52, 0x0, 0x40, 0x33, 0x35, 0x94, 0xa3); - -/* {A42790E0-7810-11cf-8F52-0040333594A3} */ -DEFINE_GUID(TID_D3DRMGuid, -0xa42790e0, 0x7810, 0x11cf, 0x8f, 0x52, 0x0, 0x40, 0x33, 0x35, 0x94, 0xa3); - -/* {A42790E1-7810-11cf-8F52-0040333594A3} */ -DEFINE_GUID(TID_D3DRMTextureFilename, -0xa42790e1, 0x7810, 0x11cf, 0x8f, 0x52, 0x0, 0x40, 0x33, 0x35, 0x94, 0xa3); - -/* {A42790E2-7810-11cf-8F52-0040333594A3} */ -DEFINE_GUID(TID_D3DRMTextureReference, -0xa42790e2, 0x7810, 0x11cf, 0x8f, 0x52, 0x0, 0x40, 0x33, 0x35, 0x94, 0xa3); - -/* {1630B820-7842-11cf-8F52-0040333594A3} */ -DEFINE_GUID(TID_D3DRMIndexedColor, -0x1630b820, 0x7842, 0x11cf, 0x8f, 0x52, 0x0, 0x40, 0x33, 0x35, 0x94, 0xa3); - -/* {1630B821-7842-11cf-8F52-0040333594A3} */ -DEFINE_GUID(TID_D3DRMMeshVertexColors, -0x1630b821, 0x7842, 0x11cf, 0x8f, 0x52, 0x0, 0x40, 0x33, 0x35, 0x94, 0xa3); - -/* {4885AE60-78E8-11cf-8F52-0040333594A3} */ -DEFINE_GUID(TID_D3DRMMaterialWrap, -0x4885ae60, 0x78e8, 0x11cf, 0x8f, 0x52, 0x0, 0x40, 0x33, 0x35, 0x94, 0xa3); - -/* {537DA6A0-CA37-11d0-941C-0080C80CFA7B} */ -DEFINE_GUID(TID_D3DRMBoolean, -0x537da6a0, 0xca37, 0x11d0, 0x94, 0x1c, 0x0, 0x80, 0xc8, 0xc, 0xfa, 0x7b); - -/* {ED1EC5C0-C0A8-11d0-941C-0080C80CFA7B} */ -DEFINE_GUID(TID_D3DRMMeshFaceWraps, -0xed1ec5c0, 0xc0a8, 0x11d0, 0x94, 0x1c, 0x0, 0x80, 0xc8, 0xc, 0xfa, 0x7b); - -/* {4885AE63-78E8-11cf-8F52-0040333594A3} */ -DEFINE_GUID(TID_D3DRMBoolean2d, -0x4885ae63, 0x78e8, 0x11cf, 0x8f, 0x52, 0x0, 0x40, 0x33, 0x35, 0x94, 0xa3); - -/* {F406B180-7B3B-11cf-8F52-0040333594A3} */ -DEFINE_GUID(TID_D3DRMTimedFloatKeys, -0xf406b180, 0x7b3b, 0x11cf, 0x8f, 0x52, 0x0, 0x40, 0x33, 0x35, 0x94, 0xa3); - -/* {E2BF56C0-840F-11cf-8F52-0040333594A3} */ -DEFINE_GUID(TID_D3DRMAnimationOptions, -0xe2bf56c0, 0x840f, 0x11cf, 0x8f, 0x52, 0x0, 0x40, 0x33, 0x35, 0x94, 0xa3); - -/* {E2BF56C1-840F-11cf-8F52-0040333594A3} */ -DEFINE_GUID(TID_D3DRMFramePosition, -0xe2bf56c1, 0x840f, 0x11cf, 0x8f, 0x52, 0x0, 0x40, 0x33, 0x35, 0x94, 0xa3); - -/* {E2BF56C2-840F-11cf-8F52-0040333594A3} */ -DEFINE_GUID(TID_D3DRMFrameVelocity, -0xe2bf56c2, 0x840f, 0x11cf, 0x8f, 0x52, 0x0, 0x40, 0x33, 0x35, 0x94, 0xa3); - -/* {E2BF56C3-840F-11cf-8F52-0040333594A3} */ -DEFINE_GUID(TID_D3DRMFrameRotation, -0xe2bf56c3, 0x840f, 0x11cf, 0x8f, 0x52, 0x0, 0x40, 0x33, 0x35, 0x94, 0xa3); - -/* {3D82AB4A-62DA-11cf-AB39-0020AF71E433} */ -DEFINE_GUID(TID_D3DRMLight, -0x3d82ab4a, 0x62da, 0x11cf, 0xab, 0x39, 0x0, 0x20, 0xaf, 0x71, 0xe4, 0x33); - -/* {3D82AB51-62DA-11cf-AB39-0020AF71E433} */ -DEFINE_GUID(TID_D3DRMCamera, -0x3d82ab51, 0x62da, 0x11cf, 0xab, 0x39, 0x0, 0x20, 0xaf, 0x71, 0xe4, 0x33); - -/* {E5745280-B24F-11cf-9DD5-00AA00A71A2F} */ -DEFINE_GUID(TID_D3DRMAppData, -0xe5745280, 0xb24f, 0x11cf, 0x9d, 0xd5, 0x0, 0xaa, 0x0, 0xa7, 0x1a, 0x2f); - -/* {AED22740-B31F-11cf-9DD5-00AA00A71A2F} */ -DEFINE_GUID(TID_D3DRMLightUmbra, -0xaed22740, 0xb31f, 0x11cf, 0x9d, 0xd5, 0x0, 0xaa, 0x0, 0xa7, 0x1a, 0x2f); - -/* {AED22742-B31F-11cf-9DD5-00AA00A71A2F} */ -DEFINE_GUID(TID_D3DRMLightRange, -0xaed22742, 0xb31f, 0x11cf, 0x9d, 0xd5, 0x0, 0xaa, 0x0, 0xa7, 0x1a, 0x2f); - -/* {AED22741-B31F-11cf-9DD5-00AA00A71A2F} */ -DEFINE_GUID(TID_D3DRMLightPenumbra, -0xaed22741, 0xb31f, 0x11cf, 0x9d, 0xd5, 0x0, 0xaa, 0x0, 0xa7, 0x1a, 0x2f); - -/* {A8A98BA0-C5E5-11cf-B941-0080C80CFA7B} */ -DEFINE_GUID(TID_D3DRMLightAttenuation, -0xa8a98ba0, 0xc5e5, 0x11cf, 0xb9, 0x41, 0x0, 0x80, 0xc8, 0xc, 0xfa, 0x7b); - -/* {3A23EEA0-94B1-11d0-AB39-0020AF71E433} */ -DEFINE_GUID(TID_D3DRMInlineData, -0x3a23eea0, 0x94b1, 0x11d0, 0xab, 0x39, 0x0, 0x20, 0xaf, 0x71, 0xe4, 0x33); - -/* {3A23EEA1-94B1-11d0-AB39-0020AF71E433} */ -DEFINE_GUID(TID_D3DRMUrl, -0x3a23eea1, 0x94b1, 0x11d0, 0xab, 0x39, 0x0, 0x20, 0xaf, 0x71, 0xe4, 0x33); - -/* {8A63C360-997D-11d0-941C-0080C80CFA7B} */ -DEFINE_GUID(TID_D3DRMProgressiveMesh, -0x8A63C360, 0x997D, 0x11d0, 0x94, 0x1C, 0x0, 0x80, 0xC8, 0x0C, 0xFA, 0x7B); - -/* {98116AA0-BDBA-11d1-82C0-00A0C9697271} */ -DEFINE_GUID(TID_D3DRMExternalVisual, -0x98116AA0, 0xBDBA, 0x11d1, 0x82, 0xC0, 0x00, 0xA0, 0xC9, 0x69, 0x72, 0x71); - -/* {7F0F21E0-BFE1-11d1-82C0-00A0C9697271} */ -DEFINE_GUID(TID_D3DRMStringProperty, -0x7f0f21e0, 0xbfe1, 0x11d1, 0x82, 0xc0, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x71); - -/* {7F0F21E1-BFE1-11d1-82C0-00A0C9697271} */ -DEFINE_GUID(TID_D3DRMPropertyBag, -0x7f0f21e1, 0xbfe1, 0x11d1, 0x82, 0xc0, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x71); - -// {7F5D5EA0-D53A-11d1-82C0-00A0C9697271} -DEFINE_GUID(TID_D3DRMRightHanded, -0x7f5d5ea0, 0xd53a, 0x11d1, 0x82, 0xc0, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x71); - -#endif /* __RMXFGUID_H_ */ - diff --git a/SDK/Include/rmxftmpl.h b/SDK/Include/rmxftmpl.h deleted file mode 100644 index e0018d0..0000000 --- a/SDK/Include/rmxftmpl.h +++ /dev/null @@ -1,339 +0,0 @@ -/* D3DRM XFile templates in binary form */ - -#ifndef _RMXFTMPL_H_ -#define _RMXFTMPL_H_ - -unsigned char D3DRM_XTEMPLATES[] = { - 0x78, 0x6f, 0x66, 0x20, 0x30, 0x33, 0x30, 0x32, 0x62, - 0x69, 0x6e, 0x20, 0x30, 0x30, 0x36, 0x34, 0x1f, 0, 0x1, - 0, 0x6, 0, 0, 0, 0x48, 0x65, 0x61, 0x64, 0x65, - 0x72, 0xa, 0, 0x5, 0, 0x43, 0xab, 0x82, 0x3d, 0xda, - 0x62, 0xcf, 0x11, 0xab, 0x39, 0, 0x20, 0xaf, 0x71, 0xe4, - 0x33, 0x28, 0, 0x1, 0, 0x5, 0, 0, 0, 0x6d, - 0x61, 0x6a, 0x6f, 0x72, 0x14, 0, 0x28, 0, 0x1, 0, - 0x5, 0, 0, 0, 0x6d, 0x69, 0x6e, 0x6f, 0x72, 0x14, - 0, 0x29, 0, 0x1, 0, 0x5, 0, 0, 0, 0x66, - 0x6c, 0x61, 0x67, 0x73, 0x14, 0, 0xb, 0, 0x1f, 0, - 0x1, 0, 0x6, 0, 0, 0, 0x56, 0x65, 0x63, 0x74, - 0x6f, 0x72, 0xa, 0, 0x5, 0, 0x5e, 0xab, 0x82, 0x3d, - 0xda, 0x62, 0xcf, 0x11, 0xab, 0x39, 0, 0x20, 0xaf, 0x71, - 0xe4, 0x33, 0x2a, 0, 0x1, 0, 0x1, 0, 0, 0, - 0x78, 0x14, 0, 0x2a, 0, 0x1, 0, 0x1, 0, 0, - 0, 0x79, 0x14, 0, 0x2a, 0, 0x1, 0, 0x1, 0, - 0, 0, 0x7a, 0x14, 0, 0xb, 0, 0x1f, 0, 0x1, - 0, 0x8, 0, 0, 0, 0x43, 0x6f, 0x6f, 0x72, 0x64, - 0x73, 0x32, 0x64, 0xa, 0, 0x5, 0, 0x44, 0x3f, 0xf2, - 0xf6, 0x86, 0x76, 0xcf, 0x11, 0x8f, 0x52, 0, 0x40, 0x33, - 0x35, 0x94, 0xa3, 0x2a, 0, 0x1, 0, 0x1, 0, 0, - 0, 0x75, 0x14, 0, 0x2a, 0, 0x1, 0, 0x1, 0, - 0, 0, 0x76, 0x14, 0, 0xb, 0, 0x1f, 0, 0x1, - 0, 0x9, 0, 0, 0, 0x4d, 0x61, 0x74, 0x72, 0x69, - 0x78, 0x34, 0x78, 0x34, 0xa, 0, 0x5, 0, 0x45, 0x3f, - 0xf2, 0xf6, 0x86, 0x76, 0xcf, 0x11, 0x8f, 0x52, 0, 0x40, - 0x33, 0x35, 0x94, 0xa3, 0x34, 0, 0x2a, 0, 0x1, 0, - 0x6, 0, 0, 0, 0x6d, 0x61, 0x74, 0x72, 0x69, 0x78, - 0xe, 0, 0x3, 0, 0x10, 0, 0, 0, 0xf, 0, - 0x14, 0, 0xb, 0, 0x1f, 0, 0x1, 0, 0x9, 0, - 0, 0, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x52, 0x47, 0x42, - 0x41, 0xa, 0, 0x5, 0, 0xe0, 0x44, 0xff, 0x35, 0x7c, - 0x6c, 0xcf, 0x11, 0x8f, 0x52, 0, 0x40, 0x33, 0x35, 0x94, - 0xa3, 0x2a, 0, 0x1, 0, 0x3, 0, 0, 0, 0x72, - 0x65, 0x64, 0x14, 0, 0x2a, 0, 0x1, 0, 0x5, 0, - 0, 0, 0x67, 0x72, 0x65, 0x65, 0x6e, 0x14, 0, 0x2a, - 0, 0x1, 0, 0x4, 0, 0, 0, 0x62, 0x6c, 0x75, - 0x65, 0x14, 0, 0x2a, 0, 0x1, 0, 0x5, 0, 0, - 0, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x14, 0, 0xb, 0, - 0x1f, 0, 0x1, 0, 0x8, 0, 0, 0, 0x43, 0x6f, - 0x6c, 0x6f, 0x72, 0x52, 0x47, 0x42, 0xa, 0, 0x5, 0, - 0x81, 0x6e, 0xe1, 0xd3, 0x35, 0x78, 0xcf, 0x11, 0x8f, 0x52, - 0, 0x40, 0x33, 0x35, 0x94, 0xa3, 0x2a, 0, 0x1, 0, - 0x3, 0, 0, 0, 0x72, 0x65, 0x64, 0x14, 0, 0x2a, - 0, 0x1, 0, 0x5, 0, 0, 0, 0x67, 0x72, 0x65, - 0x65, 0x6e, 0x14, 0, 0x2a, 0, 0x1, 0, 0x4, 0, - 0, 0, 0x62, 0x6c, 0x75, 0x65, 0x14, 0, 0xb, 0, - 0x1f, 0, 0x1, 0, 0xc, 0, 0, 0, 0x49, 0x6e, - 0x64, 0x65, 0x78, 0x65, 0x64, 0x43, 0x6f, 0x6c, 0x6f, 0x72, - 0xa, 0, 0x5, 0, 0x20, 0xb8, 0x30, 0x16, 0x42, 0x78, - 0xcf, 0x11, 0x8f, 0x52, 0, 0x40, 0x33, 0x35, 0x94, 0xa3, - 0x29, 0, 0x1, 0, 0x5, 0, 0, 0, 0x69, 0x6e, - 0x64, 0x65, 0x78, 0x14, 0, 0x1, 0, 0x9, 0, 0, - 0, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x52, 0x47, 0x42, 0x41, - 0x1, 0, 0xa, 0, 0, 0, 0x69, 0x6e, 0x64, 0x65, - 0x78, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x14, 0, 0xb, 0, - 0x1f, 0, 0x1, 0, 0x7, 0, 0, 0, 0x42, 0x6f, - 0x6f, 0x6c, 0x65, 0x61, 0x6e, 0xa, 0, 0x5, 0, 0xa0, - 0xa6, 0x7d, 0x53, 0x37, 0xca, 0xd0, 0x11, 0x94, 0x1c, 0, - 0x80, 0xc8, 0xc, 0xfa, 0x7b, 0x29, 0, 0x1, 0, 0x9, - 0, 0, 0, 0x74, 0x72, 0x75, 0x65, 0x66, 0x61, 0x6c, - 0x73, 0x65, 0x14, 0, 0xb, 0, 0x1f, 0, 0x1, 0, - 0x9, 0, 0, 0, 0x42, 0x6f, 0x6f, 0x6c, 0x65, 0x61, - 0x6e, 0x32, 0x64, 0xa, 0, 0x5, 0, 0x63, 0xae, 0x85, - 0x48, 0xe8, 0x78, 0xcf, 0x11, 0x8f, 0x52, 0, 0x40, 0x33, - 0x35, 0x94, 0xa3, 0x1, 0, 0x7, 0, 0, 0, 0x42, - 0x6f, 0x6f, 0x6c, 0x65, 0x61, 0x6e, 0x1, 0, 0x1, 0, - 0, 0, 0x75, 0x14, 0, 0x1, 0, 0x7, 0, 0, - 0, 0x42, 0x6f, 0x6f, 0x6c, 0x65, 0x61, 0x6e, 0x1, 0, - 0x1, 0, 0, 0, 0x76, 0x14, 0, 0xb, 0, 0x1f, - 0, 0x1, 0, 0xc, 0, 0, 0, 0x4d, 0x61, 0x74, - 0x65, 0x72, 0x69, 0x61, 0x6c, 0x57, 0x72, 0x61, 0x70, 0xa, - 0, 0x5, 0, 0x60, 0xae, 0x85, 0x48, 0xe8, 0x78, 0xcf, - 0x11, 0x8f, 0x52, 0, 0x40, 0x33, 0x35, 0x94, 0xa3, 0x1, - 0, 0x7, 0, 0, 0, 0x42, 0x6f, 0x6f, 0x6c, 0x65, - 0x61, 0x6e, 0x1, 0, 0x1, 0, 0, 0, 0x75, 0x14, - 0, 0x1, 0, 0x7, 0, 0, 0, 0x42, 0x6f, 0x6f, - 0x6c, 0x65, 0x61, 0x6e, 0x1, 0, 0x1, 0, 0, 0, - 0x76, 0x14, 0, 0xb, 0, 0x1f, 0, 0x1, 0, 0xf, - 0, 0, 0, 0x54, 0x65, 0x78, 0x74, 0x75, 0x72, 0x65, - 0x46, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0xa, 0, - 0x5, 0, 0xe1, 0x90, 0x27, 0xa4, 0x10, 0x78, 0xcf, 0x11, - 0x8f, 0x52, 0, 0x40, 0x33, 0x35, 0x94, 0xa3, 0x31, 0, - 0x1, 0, 0x8, 0, 0, 0, 0x66, 0x69, 0x6c, 0x65, - 0x6e, 0x61, 0x6d, 0x65, 0x14, 0, 0xb, 0, 0x1f, 0, - 0x1, 0, 0x8, 0, 0, 0, 0x4d, 0x61, 0x74, 0x65, - 0x72, 0x69, 0x61, 0x6c, 0xa, 0, 0x5, 0, 0x4d, 0xab, - 0x82, 0x3d, 0xda, 0x62, 0xcf, 0x11, 0xab, 0x39, 0, 0x20, - 0xaf, 0x71, 0xe4, 0x33, 0x1, 0, 0x9, 0, 0, 0, - 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x52, 0x47, 0x42, 0x41, 0x1, - 0, 0x9, 0, 0, 0, 0x66, 0x61, 0x63, 0x65, 0x43, - 0x6f, 0x6c, 0x6f, 0x72, 0x14, 0, 0x2a, 0, 0x1, 0, - 0x5, 0, 0, 0, 0x70, 0x6f, 0x77, 0x65, 0x72, 0x14, - 0, 0x1, 0, 0x8, 0, 0, 0, 0x43, 0x6f, 0x6c, - 0x6f, 0x72, 0x52, 0x47, 0x42, 0x1, 0, 0xd, 0, 0, - 0, 0x73, 0x70, 0x65, 0x63, 0x75, 0x6c, 0x61, 0x72, 0x43, - 0x6f, 0x6c, 0x6f, 0x72, 0x14, 0, 0x1, 0, 0x8, 0, - 0, 0, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x52, 0x47, 0x42, - 0x1, 0, 0xd, 0, 0, 0, 0x65, 0x6d, 0x69, 0x73, - 0x73, 0x69, 0x76, 0x65, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x14, - 0, 0xe, 0, 0x12, 0, 0x12, 0, 0x12, 0, 0xf, - 0, 0xb, 0, 0x1f, 0, 0x1, 0, 0x8, 0, 0, - 0, 0x4d, 0x65, 0x73, 0x68, 0x46, 0x61, 0x63, 0x65, 0xa, - 0, 0x5, 0, 0x5f, 0xab, 0x82, 0x3d, 0xda, 0x62, 0xcf, - 0x11, 0xab, 0x39, 0, 0x20, 0xaf, 0x71, 0xe4, 0x33, 0x29, - 0, 0x1, 0, 0x12, 0, 0, 0, 0x6e, 0x46, 0x61, - 0x63, 0x65, 0x56, 0x65, 0x72, 0x74, 0x65, 0x78, 0x49, 0x6e, - 0x64, 0x69, 0x63, 0x65, 0x73, 0x14, 0, 0x34, 0, 0x29, - 0, 0x1, 0, 0x11, 0, 0, 0, 0x66, 0x61, 0x63, - 0x65, 0x56, 0x65, 0x72, 0x74, 0x65, 0x78, 0x49, 0x6e, 0x64, - 0x69, 0x63, 0x65, 0x73, 0xe, 0, 0x1, 0, 0x12, 0, - 0, 0, 0x6e, 0x46, 0x61, 0x63, 0x65, 0x56, 0x65, 0x72, - 0x74, 0x65, 0x78, 0x49, 0x6e, 0x64, 0x69, 0x63, 0x65, 0x73, - 0xf, 0, 0x14, 0, 0xb, 0, 0x1f, 0, 0x1, 0, - 0xd, 0, 0, 0, 0x4d, 0x65, 0x73, 0x68, 0x46, 0x61, - 0x63, 0x65, 0x57, 0x72, 0x61, 0x70, 0x73, 0xa, 0, 0x5, - 0, 0xc0, 0xc5, 0x1e, 0xed, 0xa8, 0xc0, 0xd0, 0x11, 0x94, - 0x1c, 0, 0x80, 0xc8, 0xc, 0xfa, 0x7b, 0x29, 0, 0x1, - 0, 0xf, 0, 0, 0, 0x6e, 0x46, 0x61, 0x63, 0x65, - 0x57, 0x72, 0x61, 0x70, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, - 0x14, 0, 0x34, 0, 0x1, 0, 0x9, 0, 0, 0, - 0x42, 0x6f, 0x6f, 0x6c, 0x65, 0x61, 0x6e, 0x32, 0x64, 0x1, - 0, 0xe, 0, 0, 0, 0x66, 0x61, 0x63, 0x65, 0x57, - 0x72, 0x61, 0x70, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0xe, - 0, 0x1, 0, 0xf, 0, 0, 0, 0x6e, 0x46, 0x61, - 0x63, 0x65, 0x57, 0x72, 0x61, 0x70, 0x56, 0x61, 0x6c, 0x75, - 0x65, 0x73, 0xf, 0, 0x14, 0, 0xb, 0, 0x1f, 0, - 0x1, 0, 0x11, 0, 0, 0, 0x4d, 0x65, 0x73, 0x68, - 0x54, 0x65, 0x78, 0x74, 0x75, 0x72, 0x65, 0x43, 0x6f, 0x6f, - 0x72, 0x64, 0x73, 0xa, 0, 0x5, 0, 0x40, 0x3f, 0xf2, - 0xf6, 0x86, 0x76, 0xcf, 0x11, 0x8f, 0x52, 0, 0x40, 0x33, - 0x35, 0x94, 0xa3, 0x29, 0, 0x1, 0, 0xe, 0, 0, - 0, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x75, 0x72, 0x65, 0x43, - 0x6f, 0x6f, 0x72, 0x64, 0x73, 0x14, 0, 0x34, 0, 0x1, - 0, 0x8, 0, 0, 0, 0x43, 0x6f, 0x6f, 0x72, 0x64, - 0x73, 0x32, 0x64, 0x1, 0, 0xd, 0, 0, 0, 0x74, - 0x65, 0x78, 0x74, 0x75, 0x72, 0x65, 0x43, 0x6f, 0x6f, 0x72, - 0x64, 0x73, 0xe, 0, 0x1, 0, 0xe, 0, 0, 0, - 0x6e, 0x54, 0x65, 0x78, 0x74, 0x75, 0x72, 0x65, 0x43, 0x6f, - 0x6f, 0x72, 0x64, 0x73, 0xf, 0, 0x14, 0, 0xb, 0, - 0x1f, 0, 0x1, 0, 0x10, 0, 0, 0, 0x4d, 0x65, - 0x73, 0x68, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, - 0x4c, 0x69, 0x73, 0x74, 0xa, 0, 0x5, 0, 0x42, 0x3f, - 0xf2, 0xf6, 0x86, 0x76, 0xcf, 0x11, 0x8f, 0x52, 0, 0x40, - 0x33, 0x35, 0x94, 0xa3, 0x29, 0, 0x1, 0, 0xa, 0, - 0, 0, 0x6e, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, - 0x6c, 0x73, 0x14, 0, 0x29, 0, 0x1, 0, 0xc, 0, - 0, 0, 0x6e, 0x46, 0x61, 0x63, 0x65, 0x49, 0x6e, 0x64, - 0x65, 0x78, 0x65, 0x73, 0x14, 0, 0x34, 0, 0x29, 0, - 0x1, 0, 0xb, 0, 0, 0, 0x66, 0x61, 0x63, 0x65, - 0x49, 0x6e, 0x64, 0x65, 0x78, 0x65, 0x73, 0xe, 0, 0x1, - 0, 0xc, 0, 0, 0, 0x6e, 0x46, 0x61, 0x63, 0x65, - 0x49, 0x6e, 0x64, 0x65, 0x78, 0x65, 0x73, 0xf, 0, 0x14, - 0, 0xe, 0, 0x1, 0, 0x8, 0, 0, 0, 0x4d, - 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0xf, 0, 0xb, - 0, 0x1f, 0, 0x1, 0, 0xb, 0, 0, 0, 0x4d, - 0x65, 0x73, 0x68, 0x4e, 0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x73, - 0xa, 0, 0x5, 0, 0x43, 0x3f, 0xf2, 0xf6, 0x86, 0x76, - 0xcf, 0x11, 0x8f, 0x52, 0, 0x40, 0x33, 0x35, 0x94, 0xa3, - 0x29, 0, 0x1, 0, 0x8, 0, 0, 0, 0x6e, 0x4e, - 0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x73, 0x14, 0, 0x34, 0, - 0x1, 0, 0x6, 0, 0, 0, 0x56, 0x65, 0x63, 0x74, - 0x6f, 0x72, 0x1, 0, 0x7, 0, 0, 0, 0x6e, 0x6f, - 0x72, 0x6d, 0x61, 0x6c, 0x73, 0xe, 0, 0x1, 0, 0x8, - 0, 0, 0, 0x6e, 0x4e, 0x6f, 0x72, 0x6d, 0x61, 0x6c, - 0x73, 0xf, 0, 0x14, 0, 0x29, 0, 0x1, 0, 0xc, - 0, 0, 0, 0x6e, 0x46, 0x61, 0x63, 0x65, 0x4e, 0x6f, - 0x72, 0x6d, 0x61, 0x6c, 0x73, 0x14, 0, 0x34, 0, 0x1, - 0, 0x8, 0, 0, 0, 0x4d, 0x65, 0x73, 0x68, 0x46, - 0x61, 0x63, 0x65, 0x1, 0, 0xb, 0, 0, 0, 0x66, - 0x61, 0x63, 0x65, 0x4e, 0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x73, - 0xe, 0, 0x1, 0, 0xc, 0, 0, 0, 0x6e, 0x46, - 0x61, 0x63, 0x65, 0x4e, 0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x73, - 0xf, 0, 0x14, 0, 0xb, 0, 0x1f, 0, 0x1, 0, - 0x10, 0, 0, 0, 0x4d, 0x65, 0x73, 0x68, 0x56, 0x65, - 0x72, 0x74, 0x65, 0x78, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x73, - 0xa, 0, 0x5, 0, 0x21, 0xb8, 0x30, 0x16, 0x42, 0x78, - 0xcf, 0x11, 0x8f, 0x52, 0, 0x40, 0x33, 0x35, 0x94, 0xa3, - 0x29, 0, 0x1, 0, 0xd, 0, 0, 0, 0x6e, 0x56, - 0x65, 0x72, 0x74, 0x65, 0x78, 0x43, 0x6f, 0x6c, 0x6f, 0x72, - 0x73, 0x14, 0, 0x34, 0, 0x1, 0, 0xc, 0, 0, - 0, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x65, 0x64, 0x43, 0x6f, - 0x6c, 0x6f, 0x72, 0x1, 0, 0xc, 0, 0, 0, 0x76, - 0x65, 0x72, 0x74, 0x65, 0x78, 0x43, 0x6f, 0x6c, 0x6f, 0x72, - 0x73, 0xe, 0, 0x1, 0, 0xd, 0, 0, 0, 0x6e, - 0x56, 0x65, 0x72, 0x74, 0x65, 0x78, 0x43, 0x6f, 0x6c, 0x6f, - 0x72, 0x73, 0xf, 0, 0x14, 0, 0xb, 0, 0x1f, 0, - 0x1, 0, 0x4, 0, 0, 0, 0x4d, 0x65, 0x73, 0x68, - 0xa, 0, 0x5, 0, 0x44, 0xab, 0x82, 0x3d, 0xda, 0x62, - 0xcf, 0x11, 0xab, 0x39, 0, 0x20, 0xaf, 0x71, 0xe4, 0x33, - 0x29, 0, 0x1, 0, 0x9, 0, 0, 0, 0x6e, 0x56, - 0x65, 0x72, 0x74, 0x69, 0x63, 0x65, 0x73, 0x14, 0, 0x34, - 0, 0x1, 0, 0x6, 0, 0, 0, 0x56, 0x65, 0x63, - 0x74, 0x6f, 0x72, 0x1, 0, 0x8, 0, 0, 0, 0x76, - 0x65, 0x72, 0x74, 0x69, 0x63, 0x65, 0x73, 0xe, 0, 0x1, - 0, 0x9, 0, 0, 0, 0x6e, 0x56, 0x65, 0x72, 0x74, - 0x69, 0x63, 0x65, 0x73, 0xf, 0, 0x14, 0, 0x29, 0, - 0x1, 0, 0x6, 0, 0, 0, 0x6e, 0x46, 0x61, 0x63, - 0x65, 0x73, 0x14, 0, 0x34, 0, 0x1, 0, 0x8, 0, - 0, 0, 0x4d, 0x65, 0x73, 0x68, 0x46, 0x61, 0x63, 0x65, - 0x1, 0, 0x5, 0, 0, 0, 0x66, 0x61, 0x63, 0x65, - 0x73, 0xe, 0, 0x1, 0, 0x6, 0, 0, 0, 0x6e, - 0x46, 0x61, 0x63, 0x65, 0x73, 0xf, 0, 0x14, 0, 0xe, - 0, 0x12, 0, 0x12, 0, 0x12, 0, 0xf, 0, 0xb, - 0, 0x1f, 0, 0x1, 0, 0x14, 0, 0, 0, 0x46, - 0x72, 0x61, 0x6d, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, - 0x6f, 0x72, 0x6d, 0x4d, 0x61, 0x74, 0x72, 0x69, 0x78, 0xa, - 0, 0x5, 0, 0x41, 0x3f, 0xf2, 0xf6, 0x86, 0x76, 0xcf, - 0x11, 0x8f, 0x52, 0, 0x40, 0x33, 0x35, 0x94, 0xa3, 0x1, - 0, 0x9, 0, 0, 0, 0x4d, 0x61, 0x74, 0x72, 0x69, - 0x78, 0x34, 0x78, 0x34, 0x1, 0, 0xb, 0, 0, 0, - 0x66, 0x72, 0x61, 0x6d, 0x65, 0x4d, 0x61, 0x74, 0x72, 0x69, - 0x78, 0x14, 0, 0xb, 0, 0x1f, 0, 0x1, 0, 0x5, - 0, 0, 0, 0x46, 0x72, 0x61, 0x6d, 0x65, 0xa, 0, - 0x5, 0, 0x46, 0xab, 0x82, 0x3d, 0xda, 0x62, 0xcf, 0x11, - 0xab, 0x39, 0, 0x20, 0xaf, 0x71, 0xe4, 0x33, 0xe, 0, - 0x12, 0, 0x12, 0, 0x12, 0, 0xf, 0, 0xb, 0, - 0x1f, 0, 0x1, 0, 0x9, 0, 0, 0, 0x46, 0x6c, - 0x6f, 0x61, 0x74, 0x4b, 0x65, 0x79, 0x73, 0xa, 0, 0x5, - 0, 0xa9, 0x46, 0xdd, 0x10, 0x5b, 0x77, 0xcf, 0x11, 0x8f, - 0x52, 0, 0x40, 0x33, 0x35, 0x94, 0xa3, 0x29, 0, 0x1, - 0, 0x7, 0, 0, 0, 0x6e, 0x56, 0x61, 0x6c, 0x75, - 0x65, 0x73, 0x14, 0, 0x34, 0, 0x2a, 0, 0x1, 0, - 0x6, 0, 0, 0, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, - 0xe, 0, 0x1, 0, 0x7, 0, 0, 0, 0x6e, 0x56, - 0x61, 0x6c, 0x75, 0x65, 0x73, 0xf, 0, 0x14, 0, 0xb, - 0, 0x1f, 0, 0x1, 0, 0xe, 0, 0, 0, 0x54, - 0x69, 0x6d, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x4b, - 0x65, 0x79, 0x73, 0xa, 0, 0x5, 0, 0x80, 0xb1, 0x6, - 0xf4, 0x3b, 0x7b, 0xcf, 0x11, 0x8f, 0x52, 0, 0x40, 0x33, - 0x35, 0x94, 0xa3, 0x29, 0, 0x1, 0, 0x4, 0, 0, - 0, 0x74, 0x69, 0x6d, 0x65, 0x14, 0, 0x1, 0, 0x9, - 0, 0, 0, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x4b, 0x65, - 0x79, 0x73, 0x1, 0, 0x6, 0, 0, 0, 0x74, 0x66, - 0x6b, 0x65, 0x79, 0x73, 0x14, 0, 0xb, 0, 0x1f, 0, - 0x1, 0, 0xc, 0, 0, 0, 0x41, 0x6e, 0x69, 0x6d, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4b, 0x65, 0x79, 0xa, 0, - 0x5, 0, 0xa8, 0x46, 0xdd, 0x10, 0x5b, 0x77, 0xcf, 0x11, - 0x8f, 0x52, 0, 0x40, 0x33, 0x35, 0x94, 0xa3, 0x29, 0, - 0x1, 0, 0x7, 0, 0, 0, 0x6b, 0x65, 0x79, 0x54, - 0x79, 0x70, 0x65, 0x14, 0, 0x29, 0, 0x1, 0, 0x5, - 0, 0, 0, 0x6e, 0x4b, 0x65, 0x79, 0x73, 0x14, 0, - 0x34, 0, 0x1, 0, 0xe, 0, 0, 0, 0x54, 0x69, - 0x6d, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x4b, 0x65, - 0x79, 0x73, 0x1, 0, 0x4, 0, 0, 0, 0x6b, 0x65, - 0x79, 0x73, 0xe, 0, 0x1, 0, 0x5, 0, 0, 0, - 0x6e, 0x4b, 0x65, 0x79, 0x73, 0xf, 0, 0x14, 0, 0xb, - 0, 0x1f, 0, 0x1, 0, 0x10, 0, 0, 0, 0x41, - 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, - 0x74, 0x69, 0x6f, 0x6e, 0x73, 0xa, 0, 0x5, 0, 0xc0, - 0x56, 0xbf, 0xe2, 0xf, 0x84, 0xcf, 0x11, 0x8f, 0x52, 0, - 0x40, 0x33, 0x35, 0x94, 0xa3, 0x29, 0, 0x1, 0, 0xa, - 0, 0, 0, 0x6f, 0x70, 0x65, 0x6e, 0x63, 0x6c, 0x6f, - 0x73, 0x65, 0x64, 0x14, 0, 0x29, 0, 0x1, 0, 0xf, - 0, 0, 0, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, - 0x6e, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x14, 0, - 0xb, 0, 0x1f, 0, 0x1, 0, 0x9, 0, 0, 0, - 0x41, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0xa, - 0, 0x5, 0, 0x4f, 0xab, 0x82, 0x3d, 0xda, 0x62, 0xcf, - 0x11, 0xab, 0x39, 0, 0x20, 0xaf, 0x71, 0xe4, 0x33, 0xe, - 0, 0x12, 0, 0x12, 0, 0x12, 0, 0xf, 0, 0xb, - 0, 0x1f, 0, 0x1, 0, 0xc, 0, 0, 0, 0x41, - 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, - 0x74, 0xa, 0, 0x5, 0, 0x50, 0xab, 0x82, 0x3d, 0xda, - 0x62, 0xcf, 0x11, 0xab, 0x39, 0, 0x20, 0xaf, 0x71, 0xe4, - 0x33, 0xe, 0, 0x1, 0, 0x9, 0, 0, 0, 0x41, - 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0xf, 0, - 0xb, 0, 0x1f, 0, 0x1, 0, 0xa, 0, 0, 0, - 0x49, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x44, 0x61, 0x74, 0x61, - 0xa, 0, 0x5, 0, 0xa0, 0xee, 0x23, 0x3a, 0xb1, 0x94, - 0xd0, 0x11, 0xab, 0x39, 0, 0x20, 0xaf, 0x71, 0xe4, 0x33, - 0xe, 0, 0x1, 0, 0x6, 0, 0, 0, 0x42, 0x49, - 0x4e, 0x41, 0x52, 0x59, 0xf, 0, 0xb, 0, 0x1f, 0, - 0x1, 0, 0x3, 0, 0, 0, 0x55, 0x72, 0x6c, 0xa, - 0, 0x5, 0, 0xa1, 0xee, 0x23, 0x3a, 0xb1, 0x94, 0xd0, - 0x11, 0xab, 0x39, 0, 0x20, 0xaf, 0x71, 0xe4, 0x33, 0x29, - 0, 0x1, 0, 0x5, 0, 0, 0, 0x6e, 0x55, 0x72, - 0x6c, 0x73, 0x14, 0, 0x34, 0, 0x31, 0, 0x1, 0, - 0x4, 0, 0, 0, 0x75, 0x72, 0x6c, 0x73, 0xe, 0, - 0x1, 0, 0x5, 0, 0, 0, 0x6e, 0x55, 0x72, 0x6c, - 0x73, 0xf, 0, 0x14, 0, 0xb, 0, 0x1f, 0, 0x1, - 0, 0xf, 0, 0, 0, 0x50, 0x72, 0x6f, 0x67, 0x72, - 0x65, 0x73, 0x73, 0x69, 0x76, 0x65, 0x4d, 0x65, 0x73, 0x68, - 0xa, 0, 0x5, 0, 0x60, 0xc3, 0x63, 0x8a, 0x7d, 0x99, - 0xd0, 0x11, 0x94, 0x1c, 0, 0x80, 0xc8, 0xc, 0xfa, 0x7b, - 0xe, 0, 0x1, 0, 0x3, 0, 0, 0, 0x55, 0x72, - 0x6c, 0x13, 0, 0x1, 0, 0xa, 0, 0, 0, 0x49, - 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x44, 0x61, 0x74, 0x61, 0xf, - 0, 0xb, 0, 0x1f, 0, 0x1, 0, 0x4, 0, 0, - 0, 0x47, 0x75, 0x69, 0x64, 0xa, 0, 0x5, 0, 0xe0, - 0x90, 0x27, 0xa4, 0x10, 0x78, 0xcf, 0x11, 0x8f, 0x52, 0, - 0x40, 0x33, 0x35, 0x94, 0xa3, 0x29, 0, 0x1, 0, 0x5, - 0, 0, 0, 0x64, 0x61, 0x74, 0x61, 0x31, 0x14, 0, - 0x28, 0, 0x1, 0, 0x5, 0, 0, 0, 0x64, 0x61, - 0x74, 0x61, 0x32, 0x14, 0, 0x28, 0, 0x1, 0, 0x5, - 0, 0, 0, 0x64, 0x61, 0x74, 0x61, 0x33, 0x14, 0, - 0x34, 0, 0x2d, 0, 0x1, 0, 0x5, 0, 0, 0, - 0x64, 0x61, 0x74, 0x61, 0x34, 0xe, 0, 0x3, 0, 0x8, - 0, 0, 0, 0xf, 0, 0x14, 0, 0xb, 0, 0x1f, - 0, 0x1, 0, 0xe, 0, 0, 0, 0x53, 0x74, 0x72, - 0x69, 0x6e, 0x67, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, - 0x79, 0xa, 0, 0x5, 0, 0xe0, 0x21, 0xf, 0x7f, 0xe1, - 0xbf, 0xd1, 0x11, 0x82, 0xc0, 0, 0xa0, 0xc9, 0x69, 0x72, - 0x71, 0x31, 0, 0x1, 0, 0x3, 0, 0, 0, 0x6b, - 0x65, 0x79, 0x14, 0, 0x31, 0, 0x1, 0, 0x5, 0, - 0, 0, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x14, 0, 0xb, - 0, 0x1f, 0, 0x1, 0, 0xb, 0, 0, 0, 0x50, - 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x42, 0x61, 0x67, - 0xa, 0, 0x5, 0, 0xe1, 0x21, 0xf, 0x7f, 0xe1, 0xbf, - 0xd1, 0x11, 0x82, 0xc0, 0, 0xa0, 0xc9, 0x69, 0x72, 0x71, - 0xe, 0, 0x1, 0, 0xe, 0, 0, 0, 0x53, 0x74, - 0x72, 0x69, 0x6e, 0x67, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, - 0x74, 0x79, 0xf, 0, 0xb, 0, 0x1f, 0, 0x1, 0, - 0xe, 0, 0, 0, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, - 0x61, 0x6c, 0x56, 0x69, 0x73, 0x75, 0x61, 0x6c, 0xa, 0, - 0x5, 0, 0xa0, 0x6a, 0x11, 0x98, 0xba, 0xbd, 0xd1, 0x11, - 0x82, 0xc0, 0, 0xa0, 0xc9, 0x69, 0x72, 0x71, 0x1, 0, - 0x4, 0, 0, 0, 0x47, 0x75, 0x69, 0x64, 0x1, 0, - 0x12, 0, 0, 0, 0x67, 0x75, 0x69, 0x64, 0x45, 0x78, - 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x56, 0x69, 0x73, 0x75, - 0x61, 0x6c, 0x14, 0, 0xe, 0, 0x12, 0, 0x12, 0, - 0x12, 0, 0xf, 0, 0xb, 0, 0x1f, 0, 0x1, 0, - 0xb, 0, 0, 0, 0x52, 0x69, 0x67, 0x68, 0x74, 0x48, - 0x61, 0x6e, 0x64, 0x65, 0x64, 0xa, 0, 0x5, 0, 0xa0, - 0x5e, 0x5d, 0x7f, 0x3a, 0xd5, 0xd1, 0x11, 0x82, 0xc0, 0, - 0xa0, 0xc9, 0x69, 0x72, 0x71, 0x29, 0, 0x1, 0, 0xc, - 0, 0, 0, 0x62, 0x52, 0x69, 0x67, 0x68, 0x74, 0x48, - 0x61, 0x6e, 0x64, 0x65, 0x64, 0x14, 0, 0xb, 0 -}; - -#define D3DRM_XTEMPLATE_BYTES 3278 - -#endif /* _RMXFTMPL_H_ */ diff --git a/SDK/Include/rpcsal.h b/SDK/Include/rpcsal.h deleted file mode 100644 index 484ddc9..0000000 --- a/SDK/Include/rpcsal.h +++ /dev/null @@ -1,499 +0,0 @@ -/****************************************************************\ -* * -* rpcsal.h - markers for documenting the semantics of RPC APIs * -* * -* Version 1.0 * -* * -* Copyright (c) 2004 Microsoft Corporation. All rights reserved. * -* * -\****************************************************************/ - -// ------------------------------------------------------------------------------- -// Introduction -// -// rpcsal.h provides a set of annotations to describe how RPC functions use their -// parameters - the assumptions it makes about them, adn the guarantees it makes -// upon finishing. These annotations are similar to those found in specstrings.h, -// but are designed to be used by the MIDL compiler when it generates annotations -// enabled header files. -// -// IDL authors do not need to annotate their functions declarations. The MIDL compiler -// will interpret the IDL directives and use one of the annotations contained -// in this header. This documentation is intended to help those trying to understand -// the MIDL-generated header files or those who maintain their own copies of these files. -// -// ------------------------------------------------------------------------------- -// Differences between rpcsal.h and specstrings.h -// -// There are a few important differences between the annotations found in rpcsal.h and -// those in specstrings.h: -// -// 1. [in] parameters are not marked as read-only. They may be used for scratch space -// at the server and changes will not affect the client. -// 2. String versions of each macro alleviates the need for a special type definition -// -// ------------------------------------------------------------------------------- -// Interpreting RPC Annotations -// -// These annotations are interpreted precisely in the same way as those in specstrings.h. -// Please refer to that header for information related to general usage in annotations. -// -// To construct an RPC annotation, concatenate the appropriate value from each category -// along with a leading __RPC_. A typical annotation looks like "__RPC__in_string". -// -// |----------------------------------------------------------------------------------| -// | RPC Annotations | -// |------------|------------|---------|--------|----------|----------|---------------| -// | Level | Usage | Size | Output | Optional | String | Parameters | -// |------------|------------|---------|--------|----------|----------|---------------| -// | <> | <> | <> | <> | <> | <> | <> | -// | _deref | _in | _ecount | _full | _opt | _string | (size) | -// | _deref_opt | _out | _bcount | _part | | | (size,length) | -// | | _inout | | | | | | -// | | | | | | | | -// |------------|------------|---------|--------|----------|----------|---------------| -// -// Level: Describes the buffer pointer's level of indirection from the parameter or -// return value 'p'. -// -// <> : p is the buffer pointer. -// _deref : *p is the buffer pointer. p must not be NULL. -// _deref_opt : *p may be the buffer pointer. p may be NULL, in which case the rest of -// the annotation is ignored. -// -// Usage: Describes how the function uses the buffer. -// -// <> : The buffer is not accessed. If used on the return value or with _deref, the -// function will provide the buffer, and it will be uninitialized at exit. -// Otherwise, the caller must provide the buffer. This should only be used -// for alloc and free functions. -// _in : The function will only read from the buffer. The caller must provide the -// buffer and initialize it. Cannot be used with _deref. -// _out : The function will only write to the buffer. If used on the return value or -// with _deref, the function will provide the buffer and initialize it. -// Otherwise, the caller must provide the buffer, and the function will -// initialize it. -// _inout : The function may freely read from and write to the buffer. The caller must -// provide the buffer and initialize it. If used with _deref, the buffer may -// be reallocated by the function. -// -// Size: Describes the total size of the buffer. This may be less than the space actually -// allocated for the buffer, in which case it describes the accessible amount. -// -// <> : No buffer size is given. If the type specifies the buffer size (such as -// with LPSTR and LPWSTR), that amount is used. Otherwise, the buffer is one -// element long. Must be used with _in, _out, or _inout. -// _ecount : The buffer size is an explicit element count. -// _bcount : The buffer size is an explicit byte count. -// -// Output: Describes how much of the buffer will be initialized by the function. For -// _inout buffers, this also describes how much is initialized at entry. Omit this -// category for _in buffers; they must be fully initialized by the caller. -// -// <> : The type specifies how much is initialized. For instance, a function initializing -// an LPWSTR must NULL-terminate the string. -// _full : The function initializes the entire buffer. -// _part : The function initializes part of the buffer, and explicitly indicates how much. -// -// Optional: Describes if the buffer itself is optional. -// -// <> : The pointer to the buffer must not be NULL. -// _opt : The pointer to the buffer might be NULL. It will be checked before being dereferenced. -// -// String: Describes if the buffer is NULL terminated -// -// <> : The buffer is not assumed to be NULL terminated -// _string : The buffer is assumed to be NULL terminated once it has been initialized -// -// Parameters: Gives explicit counts for the size and length of the buffer. -// -// <> : There is no explicit count. Use when neither _ecount nor _bcount is used. -// (size) : Only the buffer's total size is given. Use with _ecount or _bcount but not _part. -// (size,length) : The buffer's total size and initialized length are given. Use with _ecount_part -// and _bcount_part. -// -// Notes: -// -// 1. Specifying two buffer annotations on a single parameter results in unspecified behavior -// (e.g. __RPC__in_bcount(5) __RPC__out_bcount(6) -// -// 2. The size of the buffer and the amount that has been initialized are separate concepts. -// Specify the size using _ecount or _bcount. Specify the amount that is initialized using -// _full, _part, or _string. As a special case, a single element buffer does not need -// _ecount, _bcount, _full, or _part -// -// 3. The count may be less than the total size of the buffer in which case it describes the -// accessible portion. -// -// 4. "__RPC__opt" and "__RPC_deref" are not valid annotations. -// -// 5. The placement of _opt when using _deref is important: -// __RPC__deref_opt_... : Input may be NULL -// __RPC__deref_..._opt : Output may be NULL -// __RPC__deref_opt_..._opt : Both input and output may be NULL -// - -#pragma once - -#include - -#ifndef __RPCSAL_H_VERSION__ -#define __RPCSAL_H_VERSION__ ( 100 ) -#endif // __RPCSAL_H_VERSION__ - -#ifdef __REQUIRED_RPCSAL_H_VERSION__ - #if ( __RPCSAL_H_VERSION__ < __REQUIRED_RPCSAL_H_VERSION__ ) - #error incorrect version. Use the header that matches with the MIDL compiler. - #endif -#endif - - -#ifdef __cplusplus -extern "C" { -#endif // #ifdef __cplusplus - -#if (_MSC_VER >= 1000) && !defined(__midl) && defined(_PREFAST_) - - -// [in] -#define __RPC__in __pre __valid -#define __RPC__in_string __RPC__in __pre __nullterminated -#define __RPC__in_ecount(size) __RPC__in __pre __elem_readableTo(size) -#define __RPC__in_ecount_full(size) __RPC__in_ecount(size) -#define __RPC__in_ecount_full_string(size) __RPC__in_ecount_full(size) __pre __nullterminated -#define __RPC__in_ecount_part(size, length) __RPC__in_ecount(length) __pre __elem_writableTo(size) -#define __RPC__in_ecount_full_opt(size) __RPC__in_ecount_full(size) __pre __exceptthat __maybenull -#define __RPC__in_ecount_full_opt_string(size) __RPC__in_ecount_full_opt(size) __pre __nullterminated -#define __RPC__in_ecount_part_opt(size, length) __RPC__in_ecount_part(size, length) __pre __exceptthat __maybenull -#define __RPC__in_xcount(size) __RPC__in __pre __elem_readableTo(size) -#define __RPC__in_xcount_full(size) __RPC__in_ecount(size) -#define __RPC__in_xcount_full_string(size) __RPC__in_ecount_full(size) __pre __nullterminated -#define __RPC__in_xcount_part(size, length) __RPC__in_ecount(length) __pre __elem_writableTo(size) -#define __RPC__in_xcount_full_opt(size) __RPC__in_ecount_full(size) __pre __exceptthat __maybenull -#define __RPC__in_xcount_full_opt_string(size) __RPC__in_ecount_full_opt(size) __pre __nullterminated -#define __RPC__in_xcount_part_opt(size, length) __RPC__in_ecount_part(size, length) __pre __exceptthat __maybenull - - -#define __RPC__deref_in __RPC__in __deref __notnull -#define __RPC__deref_in_string __RPC__in __pre __deref __nullterminated -#define __RPC__deref_in_opt __RPC__deref_in __deref __exceptthat __maybenull -#define __RPC__deref_in_opt_string __RPC__deref_in_opt __pre __deref __nullterminated -#define __RPC__deref_opt_in __RPC__in __exceptthat __maybenull -#define __RPC__deref_opt_in_string __RPC__deref_opt_in __pre __deref __nullterminated -#define __RPC__deref_opt_in_opt __RPC__deref_opt_in __pre __deref __exceptthat __maybenull -#define __RPC__deref_opt_in_opt_string __RPC__deref_opt_in_opt __pre __deref __nullterminated -#define __RPC__deref_in_ecount(size) __RPC__in __pre __deref __elem_readableTo(size) -#define __RPC__deref_in_ecount_part(size, length) __RPC__deref_in_ecount(size) __pre __deref __elem_readableTo(length) -#define __RPC__deref_in_ecount_full(size) __RPC__deref_in_ecount_part(size, size) -#define __RPC__deref_in_ecount_full_opt(size) __RPC__deref_in_ecount_full(size) __pre __deref __exceptthat __maybenull -#define __RPC__deref_in_ecount_full_opt_string(size) __RPC__deref_in_ecount_full_opt(size) __pre __deref __nullterminated -#define __RPC__deref_in_ecount_full_string(size) __RPC__deref_in_ecount_full(size) __pre __deref __nullterminated -#define __RPC__deref_in_ecount_opt(size) __RPC__deref_in_ecount(size) __pre __deref __exceptthat __maybenull -#define __RPC__deref_in_ecount_opt_string(size) __RPC__deref_in_ecount_opt(size) __pre __deref __nullterminated -#define __RPC__deref_in_ecount_part_opt(size, length) __RPC__deref_in_ecount_opt(size) __pre __deref __elem_readableTo(length) -#define __RPC__deref_in_xcount(size) __RPC__in __pre __deref __elem_readableTo(size) -#define __RPC__deref_in_xcount_part(size, length) __RPC__deref_in_ecount(size) __pre __deref __elem_readableTo(length) -#define __RPC__deref_in_xcount_full(size) __RPC__deref_in_ecount_part(size, size) -#define __RPC__deref_in_xcount_full_opt(size) __RPC__deref_in_ecount_full(size) __pre __deref __exceptthat __maybenull -#define __RPC__deref_in_xcount_full_opt_string(size) __RPC__deref_in_ecount_full_opt(size) __pre __deref __nullterminated -#define __RPC__deref_in_xcount_full_string(size) __RPC__deref_in_ecount_full(size) __pre __deref __nullterminated -#define __RPC__deref_in_xcount_opt(size) __RPC__deref_in_ecount(size) __pre __deref __exceptthat __maybenull -#define __RPC__deref_in_xcount_opt_string(size) __RPC__deref_in_ecount_opt(size) __pre __deref __nullterminated -#define __RPC__deref_in_xcount_part_opt(size, length) __RPC__deref_in_ecount_opt(size) __pre __deref __elem_readableTo(length) - -// [out] -#define __RPC__out __out -#define __RPC__out_ecount(size) __out_ecount(size) __post __elem_writableTo(size) -#define __RPC__out_ecount_string(size) __RPC__out_ecount(size) __post __nullterminated -#define __RPC__out_ecount_part(size, length) __RPC__out_ecount(size) __post __elem_readableTo(length) -#define __RPC__out_ecount_full(size) __RPC__out_ecount_part(size, size) -#define __RPC__out_ecount_full_string(size) __RPC__out_ecount_full(size) __post __nullterminated -#define __RPC__out_xcount(size) __out -#define __RPC__out_xcount_string(size) __RPC__out __post __nullterminated -#define __RPC__out_xcount_part(size, length) __RPC__out -#define __RPC__out_xcount_full(size) __RPC__out -#define __RPC__out_xcount_full_string(size) __RPC__out __post __nullterminated - -// [in,out] -#define __RPC__inout __inout -#define __RPC__inout_string __RPC__inout __pre __nullterminated __post __nullterminated -#define __RPC__inout_ecount(size) __inout_ecount(size) -#define __RPC__inout_ecount_part(size, length) __inout_ecount_part(size, length) -#define __RPC__inout_ecount_full(size) __RPC__inout_ecount_part(size, size) -#define __RPC__inout_ecount_full_string(size) __RPC__inout_ecount_full(size) __pre __nullterminated __post __nullterminated -#define __RPC__inout_xcount(size) __inout -#define __RPC__inout_xcount_part(size, length) __inout -#define __RPC__inout_xcount_full(size) __RPC__inout -#define __RPC__inout_xcount_full_string(size) __RPC__inout __pre __nullterminated __post __nullterminated - -// [in,unique] -#define __RPC__in_opt __RPC__in __pre __exceptthat __maybenull -#define __RPC__in_opt_string __RPC__in_opt __pre __nullterminated -#define __RPC__in_ecount_opt(size) __RPC__in_ecount(size) __pre __exceptthat __maybenull -#define __RPC__in_ecount_opt_string(size) __RPC__in_ecount_opt(size) __pre __nullterminated -#define __RPC__in_xcount_opt(size) __RPC__in_ecount(size) __pre __exceptthat __maybenull -#define __RPC__in_xcount_opt_string(size) __RPC__in_ecount_opt(size) __pre __nullterminated - -// [in,out,unique] -#define __RPC__inout_opt __inout_opt -#define __RPC__inout_opt_string __RPC__inout_opt __pre __nullterminated -#define __RPC__inout_ecount_opt(size) __inout_ecount_opt(size) -#define __RPC__inout_ecount_part_opt(size, length) __inout_ecount_part_opt(size, length) -#define __RPC__inout_ecount_full_opt(size) __RPC__inout_ecount_part_opt(size, size) -#define __RPC__inout_ecount_full_opt_string(size) __RPC__inout_ecount_full_opt(size) __pre __nullterminated __post __nullterminated -#define __RPC__inout_xcount_opt(size) __inout_opt -#define __RPC__inout_xcount_part_opt(size, length) __inout_opt -#define __RPC__inout_xcount_full_opt(size) __RPC__inout_opt -#define __RPC__inout_xcount_full_opt_string(size) __RPC__inout_opt __pre __nullterminated __post __nullterminated - -// [out] ** -#define __RPC__deref_out __deref_out -#define __RPC__deref_out_string __RPC__deref_out __post __deref __nullterminated -// Removed "__post __deref __exceptthat __maybenull" so return values from QueryInterface and the like can be trusted without an explicit NULL check. -// This is a temporary fix until midl.exe can be rev'd to produce more accurate annotations. -#define __RPC__deref_out_opt __RPC__deref_out -#define __RPC__deref_out_opt_string __RPC__deref_out_opt __post __deref __nullterminated __pre __deref __null -#define __RPC__deref_out_ecount(size) __deref_out_ecount(size) __post __deref __elem_writableTo(size) -#define __RPC__deref_out_ecount_part(size, length) __RPC__deref_out_ecount(size) __post __deref __elem_readableTo(length) -#define __RPC__deref_out_ecount_full(size) __RPC__deref_out_ecount_part(size,size) -#define __RPC__deref_out_ecount_full_string(size) __RPC__deref_out_ecount_full(size) __post __deref __nullterminated -#define __RPC__deref_out_xcount(size) __deref_out __post __deref -#define __RPC__deref_out_xcount_part(size, length) __RPC__deref_out __post __deref -#define __RPC__deref_out_xcount_full(size) __RPC__deref_out -#define __RPC__deref_out_xcount_full_string(size) __RPC__deref_out __post __deref __nullterminated - -// [in,out] **, second pointer decoration. -#define __RPC__deref_inout __deref_inout -#define __RPC__deref_inout_string __RPC__deref_inout __pre __deref __nullterminated __post __deref __nullterminated -#define __RPC__deref_inout_opt __deref_inout_opt -#define __RPC__deref_inout_opt_string __RPC__deref_inout_opt __deref __nullterminated -#define __RPC__deref_inout_ecount_opt(size) __deref_inout_ecount_opt(size) -#define __RPC__deref_inout_ecount_part_opt(size, length) __deref_inout_ecount_part_opt(size , length) -#define __RPC__deref_inout_ecount_full_opt(size) __RPC__deref_inout_ecount_part_opt(size, size) -#define __RPC__deref_inout_ecount_full(size) __deref_inout_ecount_full(size) -#define __RPC__deref_inout_ecount_full_string(size) __RPC__deref_inout_ecount_full(size) __post __deref __nullterminated -#define __RPC__deref_inout_ecount_full_opt_string(size) __RPC__deref_inout_ecount_full_opt(size) __pre __deref __nullterminated __post __deref __nullterminated -#define __RPC__deref_inout_xcount_opt(size) __deref_inout_opt -#define __RPC__deref_inout_xcount_part_opt(size, length) __deref_inout_opt -#define __RPC__deref_inout_xcount_full_opt(size) __RPC__deref_inout_opt -#define __RPC__deref_inout_xcount_full(size) __deref_inout -#define __RPC__deref_inout_xcount_full_string(size) __RPC__deref_inout __post __deref __nullterminated -#define __RPC__deref_inout_xcount_full_opt_string(size) __RPC__deref_inout_opt __pre __deref __nullterminated __post __deref __nullterminated - - -// #define __RPC_out_opt out_opt is not allowed in rpc - -// [in,out,unique] -#define __RPC__deref_opt_inout __deref_opt_inout -#define __RPC__deref_opt_inout_ecount(size) __deref_opt_inout_ecount(size) -#define __RPC__deref_opt_inout_string __RPC__deref_opt_inout __pre __deref __nullterminated __post __deref __nullterminated -#define __RPC__deref_opt_inout_ecount_part(size, length) __deref_opt_inout_ecount_part(size, length) -#define __RPC__deref_opt_inout_ecount_full(size) __deref_opt_inout_ecount_full(size) -#define __RPC__deref_opt_inout_ecount_full_string(size) __RPC__deref_opt_inout_ecount_full(size) __pre __deref __nullterminated __post __deref __nullterminated -#define __RPC__deref_opt_inout_xcount_part(size, length) __deref_opt_inout -#define __RPC__deref_opt_inout_xcount_full(size) __deref_opt_inout -#define __RPC__deref_opt_inout_xcount_full_string(size) __RPC__deref_opt_inout __pre __deref __nullterminated __post __deref __nullterminated - - -// We don't need to specify __pre __deref __exceptthat __maybenull : this is default behavior. While this might not hold in SAL 1.1 syntax, SAL team -// believes it's OK. We can revisit if SAL 1.1 can survive. -#define __RPC__deref_out_ecount_opt(size) __RPC__out_ecount(size) __post __deref __exceptthat __maybenull __pre __deref __null -#define __RPC__deref_out_ecount_part_opt(size, length) __RPC__deref_out_ecount_part(size, length) __post __deref __exceptthat __maybenull __pre __deref __null -#define __RPC__deref_out_ecount_full_opt(size) __RPC__deref_out_ecount_part_opt(size, size) __pre __deref __null -#define __RPC__deref_out_ecount_full_opt_string(size) __RPC__deref_out_ecount_part_opt(size, size) __post __deref __nullterminated __pre __deref __null -#define __RPC__deref_out_xcount_opt(size) __RPC__out __post __deref __exceptthat __maybenull __pre __deref __null -#define __RPC__deref_out_xcount_part_opt(size, length) __RPC__deref_out __post __deref __exceptthat __maybenull __pre __deref __null -#define __RPC__deref_out_xcount_full_opt(size) __RPC__deref_out_opt __pre __deref __null -#define __RPC__deref_out_xcount_full_opt_string(size) __RPC__deref_out_opt __post __deref __nullterminated __pre __deref __null - -#define __RPC__deref_opt_inout_opt __deref_opt_inout_opt -#define __RPC__deref_opt_inout_opt_string __RPC__deref_opt_inout_opt __pre __deref __nullterminated __post __deref __nullterminated -#define __RPC__deref_opt_inout_ecount_opt(size) __deref_opt_inout_ecount_opt(size) -#define __RPC__deref_opt_inout_ecount_part_opt(size, length) __deref_opt_inout_ecount_part_opt(size, length) -#define __RPC__deref_opt_inout_ecount_full_opt(size) __RPC__deref_opt_inout_ecount_part_opt(size, size) -#define __RPC__deref_opt_inout_ecount_full_opt_string(size) __RPC__deref_opt_inout_ecount_full_opt(size) __pre __deref __nullterminated __post __deref __nullterminated -#define __RPC__deref_opt_inout_xcount_opt(size) __deref_opt_inout_opt -#define __RPC__deref_opt_inout_xcount_part_opt(size, length) __deref_opt_inout_opt -#define __RPC__deref_opt_inout_xcount_full_opt(size) __RPC__deref_opt_inout_opt -#define __RPC__deref_opt_inout_xcount_full_opt_string(size) __RPC__deref_opt_inout_opt __pre __deref __nullterminated __post __deref __nullterminated - -#define __RPC_full_pointer __maybenull -#define __RPC_unique_pointer __maybenull -#define __RPC_ref_pointer __notnull -#define __RPC_string __nullterminated - -#define __RPC__range(min,max) __range(min,max) -#define __RPC__in_range(min,max) __in_range(min,max) - -#else // not prefast - -#define __RPC__range(min,max) -#define __RPC__in_range(min,max) - -#define __RPC__in -#define __RPC__in_string -#define __RPC__in_opt_string -#define __RPC__in_ecount(size) -#define __RPC__in_ecount_full(size) -#define __RPC__in_ecount_full_string(size) -#define __RPC__in_ecount_part(size, length) -#define __RPC__in_ecount_full_opt(size) -#define __RPC__in_ecount_full_opt_string(size) -#define __RPC__inout_ecount_full_opt_string(size) -#define __RPC__in_ecount_part_opt(size, length) -#define __RPC__in_xcount(size) -#define __RPC__in_xcount_full(size) -#define __RPC__in_xcount_full_string(size) -#define __RPC__in_xcount_part(size, length) -#define __RPC__in_xcount_full_opt(size) -#define __RPC__in_xcount_full_opt_string(size) -#define __RPC__inout_xcount_full_opt_string(size) -#define __RPC__in_xcount_part_opt(size, length) - -#define __RPC__deref_in -#define __RPC__deref_in_string -#define __RPC__deref_in_opt -#define __RPC__deref_in_opt_string -#define __RPC__deref_opt_in -#define __RPC__deref_opt_in_string -#define __RPC__deref_opt_in_opt -#define __RPC__deref_opt_in_opt_string -#define __RPC__deref_in_ecount(size) -#define __RPC__deref_in_ecount_part(size, length) -#define __RPC__deref_in_ecount_full(size) -#define __RPC__deref_in_ecount_full_opt(size) -#define __RPC__deref_in_ecount_full_string(size) -#define __RPC__deref_in_ecount_full_opt_string(size) -#define __RPC__deref_in_ecount_opt(size) -#define __RPC__deref_in_ecount_opt_string(size) -#define __RPC__deref_in_ecount_part_opt(size, length) -#define __RPC__deref_in_xcount(size) -#define __RPC__deref_in_xcount_part(size, length) -#define __RPC__deref_in_xcount_full(size) -#define __RPC__deref_in_xcount_full_opt(size) -#define __RPC__deref_in_xcount_full_string(size) -#define __RPC__deref_in_xcount_full_opt_string(size) -#define __RPC__deref_in_xcount_opt(size) -#define __RPC__deref_in_xcount_opt_string(size) -#define __RPC__deref_in_xcount_part_opt(size, length) - -// [out] -#define __RPC__out -#define __RPC__out_ecount(size) -#define __RPC__out_ecount_part(size, length) -#define __RPC__out_ecount_full(size) -#define __RPC__out_ecount_full_string(size) -#define __RPC__out_xcount(size) -#define __RPC__out_xcount_part(size, length) -#define __RPC__out_xcount_full(size) -#define __RPC__out_xcount_full_string(size) - -// [in,out] -#define __RPC__inout -#define __RPC__inout_string -#define __RPC__opt_inout -#define __RPC__inout_ecount(size) -#define __RPC__inout_ecount_part(size, length) -#define __RPC__inout_ecount_full(size) -#define __RPC__inout_ecount_full_string(size) -#define __RPC__inout_xcount(size) -#define __RPC__inout_xcount_part(size, length) -#define __RPC__inout_xcount_full(size) -#define __RPC__inout_xcount_full_string(size) - -// [in,unique] -#define __RPC__in_opt -#define __RPC__in_ecount_opt(size) -#define __RPC__in_xcount_opt(size) - - -// [in,out,unique] -#define __RPC__inout_opt -#define __RPC__inout_opt_string -#define __RPC__inout_ecount_opt(size) -#define __RPC__inout_ecount_part_opt(size, length) -#define __RPC__inout_ecount_full_opt(size) -#define __RPC__inout_ecount_full_string(size) -#define __RPC__inout_xcount_opt(size) -#define __RPC__inout_xcount_part_opt(size, length) -#define __RPC__inout_xcount_full_opt(size) -#define __RPC__inout_xcount_full_string(size) - -// [out] ** -#define __RPC__deref_out -#define __RPC__deref_out_string -#define __RPC__deref_out_opt -#define __RPC__deref_out_opt_string -#define __RPC__deref_out_ecount(size) -#define __RPC__deref_out_ecount_part(size, length) -#define __RPC__deref_out_ecount_full(size) -#define __RPC__deref_out_ecount_full_string(size) -#define __RPC__deref_out_xcount(size) -#define __RPC__deref_out_xcount_part(size, length) -#define __RPC__deref_out_xcount_full(size) -#define __RPC__deref_out_xcount_full_string(size) - - -// [in,out] **, second pointer decoration. -#define __RPC__deref_inout -#define __RPC__deref_inout_string -#define __RPC__deref_inout_opt -#define __RPC__deref_inout_opt_string -#define __RPC__deref_inout_ecount_full(size) -#define __RPC__deref_inout_ecount_full_string(size) -#define __RPC__deref_inout_ecount_opt(size) -#define __RPC__deref_inout_ecount_part_opt(size, length) -#define __RPC__deref_inout_ecount_full_opt(size) -#define __RPC__deref_inout_ecount_full_opt_string(size) -#define __RPC__deref_inout_xcount_full(size) -#define __RPC__deref_inout_xcount_full_string(size) -#define __RPC__deref_inout_xcount_opt(size) -#define __RPC__deref_inout_xcount_part_opt(size, length) -#define __RPC__deref_inout_xcount_full_opt(size) -#define __RPC__deref_inout_xcount_full_opt_string(size) - -// #define __RPC_out_opt out_opt is not allowed in rpc - -// [in,out,unique] -#define __RPC__deref_opt_inout -#define __RPC__deref_opt_inout_string -#define __RPC__deref_opt_inout_ecount(size) -#define __RPC__deref_opt_inout_ecount_part(size, length) -#define __RPC__deref_opt_inout_ecount_full(size) -#define __RPC__deref_opt_inout_ecount_full_string(size) -#define __RPC__deref_opt_inout_xcount(size) -#define __RPC__deref_opt_inout_xcount_part(size, length) -#define __RPC__deref_opt_inout_xcount_full(size) -#define __RPC__deref_opt_inout_xcount_full_string(size) - -#define __RPC__deref_out_ecount_opt(size) -#define __RPC__deref_out_ecount_part_opt(size, length) -#define __RPC__deref_out_ecount_full_opt(size) -#define __RPC__deref_out_ecount_full_opt_string(size) -#define __RPC__deref_out_xcount_opt(size) -#define __RPC__deref_out_xcount_part_opt(size, length) -#define __RPC__deref_out_xcount_full_opt(size) -#define __RPC__deref_out_xcount_full_opt_string(size) - -#define __RPC__deref_opt_inout_opt -#define __RPC__deref_opt_inout_opt_string -#define __RPC__deref_opt_inout_ecount_opt(size) -#define __RPC__deref_opt_inout_ecount_part_opt(size, length) -#define __RPC__deref_opt_inout_ecount_full_opt(size) -#define __RPC__deref_opt_inout_ecount_full_opt_string(size) -#define __RPC__deref_opt_inout_xcount_opt(size) -#define __RPC__deref_opt_inout_xcount_part_opt(size, length) -#define __RPC__deref_opt_inout_xcount_full_opt(size) -#define __RPC__deref_opt_inout_xcount_full_opt_string(size) - -#define __RPC_full_pointer -#define __RPC_unique_pointer -#define __RPC_ref_pointer -#define __RPC_string - - -#endif - -#ifdef __cplusplus -} -#endif diff --git a/SDK/Include/xact3.h b/SDK/Include/xact3.h deleted file mode 100644 index c27d563..0000000 --- a/SDK/Include/xact3.h +++ /dev/null @@ -1,1551 +0,0 @@ -/************************************************************************** - * - * Copyright (c) Microsoft Corporation. All rights reserved. - * - * Module Name: - * - * xact3.h - * - * Abstract: - * - * XACT public interfaces, functions and data types - * - **************************************************************************/ - -#pragma once - -#ifndef _XACT3_H_ -#define _XACT3_H_ - -//------------------------------------------------------------------------------ -// XACT class and interface IDs (Version 3.7) -//------------------------------------------------------------------------------ -#ifndef _XBOX // XACT COM support only exists on Windows - #include // For DEFINE_CLSID, DEFINE_IID and DECLARE_INTERFACE - DEFINE_CLSID(XACTEngine, bcc782bc, 6492, 4c22, 8c, 35, f5, d7, 2f, e7, 3c, 6e); - DEFINE_CLSID(XACTAuditionEngine, 9ecdd80d, 0e81, 40d8, 89, 03, 2b, f7, b1, 31, ac, 43); - DEFINE_CLSID(XACTDebugEngine, 02860630, bf3b, 42a8, b1, 4e, 91, ed, a2, f5, 1e, a5); - DEFINE_IID(IXACT3Engine, b1ee676a, d9cd, 4d2a, 89, a8, fa, 53, eb, 9e, 48, 0b); -#endif - -// Ignore the rest of this header if only the GUID definitions were requested: -#ifndef GUID_DEFS_ONLY - -//------------------------------------------------------------------------------ -// Includes -//------------------------------------------------------------------------------ - -#ifndef _XBOX - #include - #include - #include -#endif -#include -#include -#include - -//------------------------------------------------------------------------------ -// Forward Declarations -//------------------------------------------------------------------------------ - -typedef struct IXACT3SoundBank IXACT3SoundBank; -typedef struct IXACT3WaveBank IXACT3WaveBank; -typedef struct IXACT3Cue IXACT3Cue; -typedef struct IXACT3Wave IXACT3Wave; -typedef struct IXACT3Engine IXACT3Engine; -typedef struct XACT_NOTIFICATION XACT_NOTIFICATION; - - -//------------------------------------------------------------------------------ -// Typedefs -//------------------------------------------------------------------------------ - -typedef WORD XACTINDEX; // All normal indices -typedef BYTE XACTNOTIFICATIONTYPE; // Notification type -typedef FLOAT XACTVARIABLEVALUE; // Variable value -typedef WORD XACTVARIABLEINDEX; // Variable index -typedef WORD XACTCATEGORY; // Sound category -typedef BYTE XACTCHANNEL; // Audio channel -typedef FLOAT XACTVOLUME; // Volume value -typedef LONG XACTTIME; // Time (in ms) -typedef SHORT XACTPITCH; // Pitch value -typedef BYTE XACTLOOPCOUNT; // For all loops / recurrences -typedef BYTE XACTVARIATIONWEIGHT; // Variation weight -typedef BYTE XACTPRIORITY; // Sound priority -typedef BYTE XACTINSTANCELIMIT; // Instance limitations - -//------------------------------------------------------------------------------ -// Standard win32 multimedia definitions -//------------------------------------------------------------------------------ -#ifndef WAVE_FORMAT_IEEE_FLOAT - #define WAVE_FORMAT_IEEE_FLOAT 0x0003 -#endif - -#ifndef WAVE_FORMAT_EXTENSIBLE - #define WAVE_FORMAT_EXTENSIBLE 0xFFFE -#endif - -#ifndef _WAVEFORMATEX_ -#define _WAVEFORMATEX_ - #pragma pack(push, 1) - typedef struct tWAVEFORMATEX - { - WORD wFormatTag; // format type - WORD nChannels; // number of channels (i.e. mono, stereo...) - DWORD nSamplesPerSec; // sample rate - DWORD nAvgBytesPerSec; // for buffer estimation - WORD nBlockAlign; // block size of data - WORD wBitsPerSample; // Number of bits per sample of mono data - WORD cbSize; // The count in bytes of the size of extra information (after cbSize) - - } WAVEFORMATEX, *PWAVEFORMATEX; - typedef WAVEFORMATEX NEAR *NPWAVEFORMATEX; - typedef WAVEFORMATEX FAR *LPWAVEFORMATEX; - #pragma pack(pop) -#endif - -#ifndef _WAVEFORMATEXTENSIBLE_ -#define _WAVEFORMATEXTENSIBLE_ - #pragma pack(push, 1) - typedef struct - { - WAVEFORMATEX Format; // WAVEFORMATEX data - - union - { - WORD wValidBitsPerSample; // Bits of precision - WORD wSamplesPerBlock; // Samples per block of audio data, valid if wBitsPerSample==0 - WORD wReserved; // Unused -- If neither applies, set to zero. - } Samples; - - DWORD dwChannelMask; // Speaker usage bitmask - GUID SubFormat; // Sub-format identifier - } WAVEFORMATEXTENSIBLE, *PWAVEFORMATEXTENSIBLE; - #pragma pack(pop) -#endif - -//------------------------------------------------------------------------------ -// Constants -//------------------------------------------------------------------------------ -static const XACTTIME XACTTIME_MIN = LONG_MIN; -static const XACTTIME XACTTIME_MAX = LONG_MAX; // 24 days 20:31:23.647 -static const XACTTIME XACTTIME_INFINITE = LONG_MAX; -static const XACTINSTANCELIMIT XACTINSTANCELIMIT_INFINITE = 0xff; -static const XACTINSTANCELIMIT XACTINSTANCELIMIT_MIN = 0x00; // == 1 instance total (0 additional instances) -static const XACTINSTANCELIMIT XACTINSTANCELIMIT_MAX = 0xfe; // == 255 instances total (254 additional instances) -static const XACTINDEX XACTINDEX_MIN = 0x0; -static const XACTINDEX XACTINDEX_MAX = 0xfffe; -static const XACTINDEX XACTINDEX_INVALID = 0xffff; -static const XACTNOTIFICATIONTYPE XACTNOTIFICATIONTYPE_MIN = 0x00; -static const XACTNOTIFICATIONTYPE XACTNOTIFICATIONTYPE_MAX = 0xff; -static const XACTVARIABLEVALUE XACTVARIABLEVALUE_MIN = -FLT_MAX; -static const XACTVARIABLEVALUE XACTVARIABLEVALUE_MAX = FLT_MAX; -static const XACTVARIABLEINDEX XACTVARIABLEINDEX_MIN = 0x0000; -static const XACTVARIABLEINDEX XACTVARIABLEINDEX_MAX = 0xfffe; -static const XACTVARIABLEINDEX XACTVARIABLEINDEX_INVALID = 0xffff; -static const XACTCATEGORY XACTCATEGORY_MIN = 0x0; -static const XACTCATEGORY XACTCATEGORY_MAX = 0xfffe; -static const XACTCATEGORY XACTCATEGORY_INVALID = 0xffff; -static const XACTCHANNEL XACTCHANNEL_MIN = 0; -static const XACTCHANNEL XACTCHANNEL_MAX = 0xFF; -static const XACTPITCH XACTPITCH_MIN = -1200; // pitch change allowable per individual content field -static const XACTPITCH XACTPITCH_MAX = 1200; -static const XACTPITCH XACTPITCH_MIN_TOTAL = -2400; // total allowable pitch change, use with IXACTWave.SetPitch() -static const XACTPITCH XACTPITCH_MAX_TOTAL = 2400; -static const XACTVOLUME XACTVOLUME_MIN = 0.0f; -static const XACTVOLUME XACTVOLUME_MAX = 16777216.0f; // Maximum acceptable volume level (2^24) - matches XAudio2 max volume -static const XACTVARIABLEVALUE XACTPARAMETERVALUE_MIN = -FLT_MAX; -static const XACTVARIABLEVALUE XACTPARAMETERVALUE_MAX = FLT_MAX; -static const XACTLOOPCOUNT XACTLOOPCOUNT_MIN = 0x0; -static const XACTLOOPCOUNT XACTLOOPCOUNT_MAX = 0xfe; -static const XACTLOOPCOUNT XACTLOOPCOUNT_INFINITE = 0xff; -static const DWORD XACTWAVEALIGNMENT_MIN = 2048; -#ifdef _XBOX -static const BYTE XACTMAXOUTPUTVOICECOUNT = 3; -#endif // _XBOX - - -// ----------------------------------------------------------------------------- -// Cue friendly name length -// ----------------------------------------------------------------------------- -#define XACT_CUE_NAME_LENGTH 0xFF - -// ----------------------------------------------------------------------------- -// Current Content Tool Version -// ----------------------------------------------------------------------------- -#define XACT_CONTENT_VERSION 46 - -// ----------------------------------------------------------------------------- -// XACT Stop Flags -// ----------------------------------------------------------------------------- -static const DWORD XACT_FLAG_STOP_RELEASE = 0x00000000; // Stop with release envelope (or as authored), for looping waves this acts as break loop. -static const DWORD XACT_FLAG_STOP_IMMEDIATE = 0x00000001; // Stop immediately - -// ----------------------------------------------------------------------------- -// XACT Manage Data Flag - XACT will manage the lifetime of this data -// ----------------------------------------------------------------------------- -static const DWORD XACT_FLAG_MANAGEDATA = 0x00000001; - -// ----------------------------------------------------------------------------- -// XACT Content Preparation Flags -// ----------------------------------------------------------------------------- -static const DWORD XACT_FLAG_BACKGROUND_MUSIC = 0x00000002; // Marks the waves as background music. -static const DWORD XACT_FLAG_UNITS_MS = 0x00000004; // Indicates that the units passed in are in milliseconds. -static const DWORD XACT_FLAG_UNITS_SAMPLES = 0x00000008; // Indicates that the units passed in are in samples. - -// ----------------------------------------------------------------------------- -// XACT State flags -// ----------------------------------------------------------------------------- -static const DWORD XACT_STATE_CREATED = 0x00000001; // Created, but nothing else -static const DWORD XACT_STATE_PREPARING = 0x00000002; // In the middle of preparing -static const DWORD XACT_STATE_PREPARED = 0x00000004; // Prepared, but not yet played -static const DWORD XACT_STATE_PLAYING = 0x00000008; // Playing (though could be paused) -static const DWORD XACT_STATE_STOPPING = 0x00000010; // Stopping -static const DWORD XACT_STATE_STOPPED = 0x00000020; // Stopped -static const DWORD XACT_STATE_PAUSED = 0x00000040; // Paused (Can be combined with some of the other state flags above) -static const DWORD XACT_STATE_INUSE = 0x00000080; // Object is in use (used by wavebanks and soundbanks). -static const DWORD XACT_STATE_PREPAREFAILED = 0x80000000; // Object preparation failed. - -//------------------------------------------------------------------------------ -// XACT Parameters -//------------------------------------------------------------------------------ - -#define XACT_FLAG_GLOBAL_SETTINGS_MANAGEDATA XACT_FLAG_MANAGEDATA - -// ----------------------------------------------------------------------------- -// File IO Callbacks -// ----------------------------------------------------------------------------- -typedef BOOL (__stdcall * XACT_READFILE_CALLBACK)(__in HANDLE hFile, __out_bcount(nNumberOfBytesToRead) LPVOID lpBuffer, DWORD nNumberOfBytesToRead, __out LPDWORD lpNumberOfBytesRead, __inout LPOVERLAPPED lpOverlapped); -typedef BOOL (__stdcall * XACT_GETOVERLAPPEDRESULT_CALLBACK)(__in HANDLE hFile, __inout LPOVERLAPPED lpOverlapped, __out LPDWORD lpNumberOfBytesTransferred, BOOL bWait); - -typedef struct XACT_FILEIO_CALLBACKS -{ - XACT_READFILE_CALLBACK readFileCallback; - XACT_GETOVERLAPPEDRESULT_CALLBACK getOverlappedResultCallback; - -} XACT_FILEIO_CALLBACKS, *PXACT_FILEIO_CALLBACKS; -typedef const XACT_FILEIO_CALLBACKS *PCXACT_FILEIO_CALLBACKS; - -// ----------------------------------------------------------------------------- -// Notification Callback -// ----------------------------------------------------------------------------- -typedef void (__stdcall * XACT_NOTIFICATION_CALLBACK)(__in const XACT_NOTIFICATION* pNotification); - -#define XACT_RENDERER_ID_LENGTH 0xff // Maximum number of characters allowed in the renderer ID -#define XACT_RENDERER_NAME_LENGTH 0xff // Maximum number of characters allowed in the renderer display name. - -// ----------------------------------------------------------------------------- -// Renderer Details -// ----------------------------------------------------------------------------- -typedef struct XACT_RENDERER_DETAILS -{ - WCHAR rendererID[XACT_RENDERER_ID_LENGTH]; // The string ID for the rendering device. - WCHAR displayName[XACT_RENDERER_NAME_LENGTH]; // A friendly name suitable for display to a human. - BOOL defaultDevice; // Set to TRUE if this device is the primary audio device on the system. - -} XACT_RENDERER_DETAILS, *LPXACT_RENDERER_DETAILS; - -// ----------------------------------------------------------------------------- -// Engine Look-Ahead Time -// ----------------------------------------------------------------------------- -#define XACT_ENGINE_LOOKAHEAD_DEFAULT 250 // Default look-ahead time of 250ms can be used during XACT engine initialization. - -// ----------------------------------------------------------------------------- -// Runtime (engine) parameters -// ----------------------------------------------------------------------------- -typedef struct XACT_RUNTIME_PARAMETERS -{ - DWORD lookAheadTime; // Time in ms - void* pGlobalSettingsBuffer; // Buffer containing the global settings file - DWORD globalSettingsBufferSize; // Size of global settings buffer - DWORD globalSettingsFlags; // Flags for global settings - DWORD globalSettingsAllocAttributes; // Global settings buffer allocation attributes (see XMemAlloc) - XACT_FILEIO_CALLBACKS fileIOCallbacks; // File I/O callbacks - XACT_NOTIFICATION_CALLBACK fnNotificationCallback; // Callback that receives notifications. - PWSTR pRendererID; // Ptr to the ID for the audio renderer the engine should connect to. - IXAudio2* pXAudio2; // XAudio2 object to be used by the engine (NULL if one needs to be created) - IXAudio2MasteringVoice* pMasteringVoice; // Mastering voice to be used by the engine, if pXAudio2 is not NULL. - -} XACT_RUNTIME_PARAMETERS, *LPXACT_RUNTIME_PARAMETERS; -typedef const XACT_RUNTIME_PARAMETERS *LPCXACT_RUNTIME_PARAMETERS; - -//------------------------------------------------------------------------------ -// Streaming Parameters -//------------------------------------------------------------------------------ - -typedef struct XACT_STREAMING_PARAMETERS -{ - HANDLE file; // File handle associated with wavebank data - DWORD offset; // Offset within file of wavebank header (must be sector aligned) - DWORD flags; // Flags (none currently) - WORD packetSize; // Stream packet size (in sectors) to use for each stream (min = 2) - // number of sectors (DVD = 2048 bytes: 2 = 4096, 3 = 6144, 4 = 8192 etc.) - // optimal DVD size is a multiple of 16 (DVD block = 16 DVD sectors) - -} XACT_WAVEBANK_STREAMING_PARAMETERS, *LPXACT_WAVEBANK_STREAMING_PARAMETERS, XACT_STREAMING_PARAMETERS, *LPXACT_STREAMING_PARAMETERS; -typedef const XACT_STREAMING_PARAMETERS *LPCXACT_STREAMING_PARAMETERS; -typedef const XACT_WAVEBANK_STREAMING_PARAMETERS *LPCXACT_WAVEBANK_STREAMING_PARAMETERS; - -// Structure used to report cue properties back to the client. -typedef struct XACT_CUE_PROPERTIES -{ - CHAR friendlyName[XACT_CUE_NAME_LENGTH]; // Empty if the soundbank doesn't contain any friendly names - BOOL interactive; // TRUE if an IA cue; FALSE otherwise - XACTINDEX iaVariableIndex; // Only valid for IA cues; XACTINDEX_INVALID otherwise - XACTINDEX numVariations; // Number of variations in the cue - XACTINSTANCELIMIT maxInstances; // Number of maximum instances for this cue - XACTINSTANCELIMIT currentInstances; // Current active instances of this cue - -} XACT_CUE_PROPERTIES, *LPXACT_CUE_PROPERTIES; - -// Strucutre used to return the track properties. -typedef struct XACT_TRACK_PROPERTIES -{ - XACTTIME duration; // Duration of the track in ms - XACTINDEX numVariations; // Number of wave variations in the track - XACTCHANNEL numChannels; // Number of channels for the active wave variation on this track - XACTINDEX waveVariation; // Index of the active wave variation - XACTLOOPCOUNT loopCount; // Current loop count on this track - -} XACT_TRACK_PROPERTIES, *LPXACT_TRACK_PROPERTIES; - -// Structure used to return the properties of a variation. -typedef struct XACT_VARIATION_PROPERTIES -{ - XACTINDEX index; // Index of the variation in the cue's variation list - XACTVARIATIONWEIGHT weight; // Weight for the active variation. Valid only for complex cues - XACTVARIABLEVALUE iaVariableMin; // Valid only for IA cues - XACTVARIABLEVALUE iaVariableMax; // Valid only for IA cues - BOOL linger; // Valid only for IA cues - -} XACT_VARIATION_PROPERTIES, *LPXACT_VARIATION_PROPERTIES; - -// Structure used to return the properties of the sound referenced by a variation. -typedef struct XACT_SOUND_PROPERTIES -{ - XACTCATEGORY category; // Category this sound belongs to - BYTE priority; // Priority of this variation - XACTPITCH pitch; // Current pitch set on the active variation - XACTVOLUME volume; // Current volume set on the active variation - XACTINDEX numTracks; // Number of tracks in the active variation - XACT_TRACK_PROPERTIES arrTrackProperties[1]; // Array of active track properties (has numTracks number of elements) - -} XACT_SOUND_PROPERTIES, *LPXACT_SOUND_PROPERTIES; - -// Structure used to return the properties of the active variation and the sound referenced. -typedef struct XACT_SOUND_VARIATION_PROPERTIES -{ - XACT_VARIATION_PROPERTIES variationProperties;// Properties for this variation - XACT_SOUND_PROPERTIES soundProperties; // Proeprties for the sound referenced by this variation - -} XACT_SOUND_VARIATION_PROPERTIES, *LPXACT_SOUND_VARIATION_PROPERTIES; - -// Structure used to return the properties of an active cue instance. -typedef struct XACT_CUE_INSTANCE_PROPERTIES -{ - DWORD allocAttributes; // Buffer allocation attributes (see XMemAlloc) - XACT_CUE_PROPERTIES cueProperties; // Properties of the cue that are shared by all instances. - XACT_SOUND_VARIATION_PROPERTIES activeVariationProperties; // Properties if the currently active variation. - -} XACT_CUE_INSTANCE_PROPERTIES, *LPXACT_CUE_INSTANCE_PROPERTIES; - -// Structure used to return the common wave properties. -typedef struct XACT_WAVE_PROPERTIES -{ - char friendlyName[WAVEBANK_ENTRYNAME_LENGTH]; // Friendly name for the wave; empty if the wavebank doesn't contain friendly names. - WAVEBANKMINIWAVEFORMAT format; // Format for the wave. - DWORD durationInSamples; // Duration of the wave in units of one sample - WAVEBANKSAMPLEREGION loopRegion; // Loop region defined in samples. - BOOL streaming; // Set to TRUE if the wave is streaming; FALSE otherwise. - -} XACT_WAVE_PROPERTIES, *LPXACT_WAVE_PROPERTIES; -typedef const XACT_WAVE_PROPERTIES* LPCXACT_WAVE_PROPERTIES; - -// Structure used to return the properties specific to a wave instance. -typedef struct XACT_WAVE_INSTANCE_PROPERTIES -{ - XACT_WAVE_PROPERTIES properties; // Static properties common to all the wave instances. - BOOL backgroundMusic; // Set to TRUE if the wave is tagged as background music; FALSE otherwise. - -} XACT_WAVE_INSTANCE_PROPERTIES, *LPXACT_WAVE_INSTANCE_PROPERTIES; -typedef const XACT_WAVE_INSTANCE_PROPERTIES* LPCXACT_WAVE_INSTANCE_PROPERTIES; - -//------------------------------------------------------------------------------ -// Channel Mapping / Speaker Panning -//------------------------------------------------------------------------------ - -typedef struct XACTCHANNELMAPENTRY -{ - XACTCHANNEL InputChannel; - XACTCHANNEL OutputChannel; - XACTVOLUME Volume; - -} XACTCHANNELMAPENTRY, *LPXACTCHANNELMAPENTRY; -typedef const XACTCHANNELMAPENTRY *LPCXACTCHANNELMAPENTRY; - -typedef struct XACTCHANNELMAP -{ - XACTCHANNEL EntryCount; - XACTCHANNELMAPENTRY* paEntries; - -} XACTCHANNELMAP, *LPXACTCHANNELMAP; -typedef const XACTCHANNELMAP *LPCXACTCHANNELMAP; - -typedef struct XACTCHANNELVOLUMEENTRY -{ - XACTCHANNEL EntryIndex; - XACTVOLUME Volume; - -} XACTCHANNELVOLUMEENTRY, *LPXACTCHANNELVOLUMEENTRY; -typedef const XACTCHANNELVOLUMEENTRY *LPCXACTCHANNELVOLUMEENTRY; - -typedef struct XACTCHANNELVOLUME -{ - XACTCHANNEL EntryCount; - XACTCHANNELVOLUMEENTRY* paEntries; - -} XACTCHANNELVOLUME, *LPXACTCHANNELVOLUME; -typedef const XACTCHANNELVOLUME *LPCXACTCHANNELVOLUME; - -//------------------------------------------------------------------------------ -// Notifications -//------------------------------------------------------------------------------ - -static const XACTNOTIFICATIONTYPE XACTNOTIFICATIONTYPE_CUEPREPARED = 1; // None, SoundBank, SoundBank & cue index, cue instance -static const XACTNOTIFICATIONTYPE XACTNOTIFICATIONTYPE_CUEPLAY = 2; // None, SoundBank, SoundBank & cue index, cue instance -static const XACTNOTIFICATIONTYPE XACTNOTIFICATIONTYPE_CUESTOP = 3; // None, SoundBank, SoundBank & cue index, cue instance -static const XACTNOTIFICATIONTYPE XACTNOTIFICATIONTYPE_CUEDESTROYED = 4; // None, SoundBank, SoundBank & cue index, cue instance -static const XACTNOTIFICATIONTYPE XACTNOTIFICATIONTYPE_MARKER = 5; // None, SoundBank, SoundBank & cue index, cue instance -static const XACTNOTIFICATIONTYPE XACTNOTIFICATIONTYPE_SOUNDBANKDESTROYED = 6; // None, SoundBank -static const XACTNOTIFICATIONTYPE XACTNOTIFICATIONTYPE_WAVEBANKDESTROYED = 7; // None, WaveBank -static const XACTNOTIFICATIONTYPE XACTNOTIFICATIONTYPE_LOCALVARIABLECHANGED = 8; // None, SoundBank, SoundBank & cue index, cue instance -static const XACTNOTIFICATIONTYPE XACTNOTIFICATIONTYPE_GLOBALVARIABLECHANGED = 9; // None -static const XACTNOTIFICATIONTYPE XACTNOTIFICATIONTYPE_GUICONNECTED = 10; // None -static const XACTNOTIFICATIONTYPE XACTNOTIFICATIONTYPE_GUIDISCONNECTED = 11; // None -static const XACTNOTIFICATIONTYPE XACTNOTIFICATIONTYPE_WAVEPREPARED = 12; // None, WaveBank & wave index, wave instance. -static const XACTNOTIFICATIONTYPE XACTNOTIFICATIONTYPE_WAVEPLAY = 13; // None, SoundBank, SoundBank & cue index, cue instance, WaveBank, wave instance -static const XACTNOTIFICATIONTYPE XACTNOTIFICATIONTYPE_WAVESTOP = 14; // None, SoundBank, SoundBank & cue index, cue instance, WaveBank, wave instance -static const XACTNOTIFICATIONTYPE XACTNOTIFICATIONTYPE_WAVELOOPED = 15; // None, SoundBank, SoundBank & cue index, cue instance, WaveBank, wave instance -static const XACTNOTIFICATIONTYPE XACTNOTIFICATIONTYPE_WAVEDESTROYED = 16; // None, WaveBank & wave index, wave instance. -static const XACTNOTIFICATIONTYPE XACTNOTIFICATIONTYPE_WAVEBANKPREPARED = 17; // None, WaveBank -static const XACTNOTIFICATIONTYPE XACTNOTIFICATIONTYPE_WAVEBANKSTREAMING_INVALIDCONTENT = 18; // None, WaveBank - -static const BYTE XACT_FLAG_NOTIFICATION_PERSIST = 0x01; - -// Pack the notification structures -#pragma pack(push, 1) - -// Notification description used for registering, un-registering and flushing notifications -typedef struct XACT_NOTIFICATION_DESCRIPTION -{ - XACTNOTIFICATIONTYPE type; // Notification type - BYTE flags; // Flags - IXACT3SoundBank* pSoundBank; // SoundBank instance - IXACT3WaveBank* pWaveBank; // WaveBank instance - IXACT3Cue* pCue; // Cue instance - IXACT3Wave* pWave; // Wave instance - XACTINDEX cueIndex; // Cue index - XACTINDEX waveIndex; // Wave index - PVOID pvContext; // User context (optional) - -} XACT_NOTIFICATION_DESCRIPTION, *LPXACT_NOTIFICATION_DESCRIPTION; -typedef const XACT_NOTIFICATION_DESCRIPTION *LPCXACT_NOTIFICATION_DESCRIPTION; - -// Notification structure for all XACTNOTIFICATIONTYPE_CUE* notifications -typedef struct XACT_NOTIFICATION_CUE -{ - XACTINDEX cueIndex; // Cue index - IXACT3SoundBank* pSoundBank; // SoundBank instance - IXACT3Cue* pCue; // Cue instance - -} XACT_NOTIFICATION_CUE, *LPXACT_NOTIFICATION_CUE; -typedef const XACT_NOTIFICATION_CUE *LPCXACT_NOTIFICATION_CUE; - -// Notification structure for all XACTNOTIFICATIONTYPE_MARKER* notifications -typedef struct XACT_NOTIFICATION_MARKER -{ - XACTINDEX cueIndex; // Cue index - IXACT3SoundBank* pSoundBank; // SoundBank instance - IXACT3Cue* pCue; // Cue instance - DWORD marker; // Marker value - -} XACT_NOTIFICATION_MARKER, *LPXACT_NOTIFICATION_MARKER; -typedef const XACT_NOTIFICATION_MARKER *LPCXACT_NOTIFICATION_MARKER; - -// Notification structure for all XACTNOTIFICATIONTYPE_SOUNDBANK* notifications -typedef struct XACT_NOTIFICATION_SOUNDBANK -{ - IXACT3SoundBank* pSoundBank; // SoundBank instance - -} XACT_NOTIFICATION_SOUNDBANK, *LPXACT_NOTIFICATION_SOUNDBANK; -typedef const XACT_NOTIFICATION_SOUNDBANK *LPCXACT_NOTIFICATION_SOUNDBANK; - -// Notification structure for all XACTNOTIFICATIONTYPE_WAVEBANK* notifications -typedef struct XACT_NOTIFICATION_WAVEBANK -{ - IXACT3WaveBank* pWaveBank; // WaveBank instance - -} XACT_NOTIFICATION_WAVEBANK, *LPXACT_NOTIFICATION_WAVEBANK; -typedef const XACT_NOTIFICATION_WAVEBANK *LPCXACT_NOTIFICATION_WAVEBANK; - -// Notification structure for all XACTNOTIFICATIONTYPE_*VARIABLE* notifications -typedef struct XACT_NOTIFICATION_VARIABLE -{ - XACTINDEX cueIndex; // Cue index - IXACT3SoundBank* pSoundBank; // SoundBank instance - IXACT3Cue* pCue; // Cue instance - XACTVARIABLEINDEX variableIndex; // Variable index - XACTVARIABLEVALUE variableValue; // Variable value - BOOL local; // TRUE if a local variable - -} XACT_NOTIFICATION_VARIABLE, *LPXACT_NOTIFICATION_VARIABLE; -typedef const XACT_NOTIFICATION_VARIABLE *LPCXACT_NOTIFICATION_VARIABLE; - -// Notification structure for all XACTNOTIFICATIONTYPE_GUI* notifications -typedef struct XACT_NOTIFICATION_GUI -{ - DWORD reserved; // Reserved -} XACT_NOTIFICATION_GUI, *LPXACT_NOTIFICATION_GUI; -typedef const XACT_NOTIFICATION_GUI *LPCXACT_NOTIFICATION_GUI; - -// Notification structure for all XACTNOTIFICATIONTYPE_WAVE* notifications -typedef struct XACT_NOTIFICATION_WAVE -{ - IXACT3WaveBank* pWaveBank; // WaveBank - XACTINDEX waveIndex; // Wave index - XACTINDEX cueIndex; // Cue index - IXACT3SoundBank* pSoundBank; // SoundBank instance - IXACT3Cue* pCue; // Cue instance - IXACT3Wave* pWave; // Wave instance - -} XACT_NOTIFICATION_WAVE, *LPXACT_NOTIFICATION_WAVE; -typedef const XACT_NOTIFICATION_WAVE *LPCXACT_NOTIFICATION_WAVE; - -// General notification structure -typedef struct XACT_NOTIFICATION -{ - XACTNOTIFICATIONTYPE type; // Notification type - LONG timeStamp; // Timestamp of notification (milliseconds) - PVOID pvContext; // User context (optional) - union - { - XACT_NOTIFICATION_CUE cue; // XACTNOTIFICATIONTYPE_CUE* - XACT_NOTIFICATION_MARKER marker; // XACTNOTIFICATIONTYPE_MARKER* - XACT_NOTIFICATION_SOUNDBANK soundBank; // XACTNOTIFICATIONTYPE_SOUNDBANK* - XACT_NOTIFICATION_WAVEBANK waveBank; // XACTNOTIFICATIONTYPE_WAVEBANK* - XACT_NOTIFICATION_VARIABLE variable; // XACTNOTIFICATIONTYPE_VARIABLE* - XACT_NOTIFICATION_GUI gui; // XACTNOTIFICATIONTYPE_GUI* - XACT_NOTIFICATION_WAVE wave; // XACTNOTIFICATIONTYPE_WAVE* - }; - -} XACT_NOTIFICATION, *LPXACT_NOTIFICATION; -typedef const XACT_NOTIFICATION *LPCXACT_NOTIFICATION; - -#pragma pack(pop) - -//------------------------------------------------------------------------------ -// IXACT3SoundBank -//------------------------------------------------------------------------------ - -#define XACT_FLAG_SOUNDBANK_STOP_IMMEDIATE XACT_FLAG_STOP_IMMEDIATE -#define XACT_SOUNDBANKSTATE_INUSE XACT_STATE_INUSE - -STDAPI_(XACTINDEX) IXACT3SoundBank_GetCueIndex(__in IXACT3SoundBank* pSoundBank, __in PCSTR szFriendlyName); -STDAPI IXACT3SoundBank_GetNumCues(__in IXACT3SoundBank* pSoundBank, __out XACTINDEX* pnNumCues); -STDAPI IXACT3SoundBank_GetCueProperties(__in IXACT3SoundBank* pSoundBank, XACTINDEX nCueIndex, __out LPXACT_CUE_PROPERTIES pProperties); -STDAPI IXACT3SoundBank_Prepare(__in IXACT3SoundBank* pSoundBank, XACTINDEX nCueIndex, DWORD dwFlags, XACTTIME timeOffset, __deref_out IXACT3Cue** ppCue); -STDAPI IXACT3SoundBank_Play(__in IXACT3SoundBank* pSoundBank, XACTINDEX nCueIndex, DWORD dwFlags, XACTTIME timeOffset, __deref_opt_out IXACT3Cue** ppCue); -STDAPI IXACT3SoundBank_Stop(__in IXACT3SoundBank* pSoundBank, XACTINDEX nCueIndex, DWORD dwFlags); -STDAPI IXACT3SoundBank_Destroy(__in IXACT3SoundBank* pSoundBank); -STDAPI IXACT3SoundBank_GetState(__in IXACT3SoundBank* pSoundBank, __out DWORD* pdwState); - -#undef INTERFACE -#define INTERFACE IXACT3SoundBank - -DECLARE_INTERFACE(IXACT3SoundBank) -{ - STDMETHOD_(XACTINDEX, GetCueIndex)(THIS_ __in PCSTR szFriendlyName) PURE; - STDMETHOD(GetNumCues)(THIS_ __out XACTINDEX* pnNumCues) PURE; - STDMETHOD(GetCueProperties)(THIS_ XACTINDEX nCueIndex, __out LPXACT_CUE_PROPERTIES pProperties) PURE; - STDMETHOD(Prepare)(THIS_ XACTINDEX nCueIndex, DWORD dwFlags, XACTTIME timeOffset, __deref_out IXACT3Cue** ppCue) PURE; - STDMETHOD(Play)(THIS_ XACTINDEX nCueIndex, DWORD dwFlags, XACTTIME timeOffset, __deref_opt_out IXACT3Cue** ppCue) PURE; - STDMETHOD(Stop)(THIS_ XACTINDEX nCueIndex, DWORD dwFlags) PURE; - STDMETHOD(Destroy)(THIS) PURE; - STDMETHOD(GetState)(THIS_ __out DWORD* pdwState) PURE; -}; - -#ifdef __cplusplus - -__inline HRESULT __stdcall IXACT3SoundBank_Destroy(__in IXACT3SoundBank* pSoundBank) -{ - return pSoundBank->Destroy(); -} - -__inline XACTINDEX __stdcall IXACT3SoundBank_GetCueIndex(__in IXACT3SoundBank* pSoundBank, __in PCSTR szFriendlyName) -{ - return pSoundBank->GetCueIndex(szFriendlyName); -} - -__inline HRESULT __stdcall IXACT3SoundBank_GetNumCues(__in IXACT3SoundBank* pSoundBank, __out XACTINDEX* pnNumCues) -{ - return pSoundBank->GetNumCues(pnNumCues); -} - -__inline HRESULT __stdcall IXACT3SoundBank_GetCueProperties(__in IXACT3SoundBank* pSoundBank, XACTINDEX nCueIndex, __out LPXACT_CUE_PROPERTIES pProperties) -{ - return pSoundBank->GetCueProperties(nCueIndex, pProperties); -} - -__inline HRESULT __stdcall IXACT3SoundBank_Prepare(__in IXACT3SoundBank* pSoundBank, XACTINDEX nCueIndex, DWORD dwFlags, XACTTIME timeOffset, __deref_out IXACT3Cue** ppCue) -{ - return pSoundBank->Prepare(nCueIndex, dwFlags, timeOffset, ppCue); -} - -__inline HRESULT __stdcall IXACT3SoundBank_Play(__in IXACT3SoundBank* pSoundBank, XACTINDEX nCueIndex, DWORD dwFlags, XACTTIME timeOffset, __deref_opt_out IXACT3Cue** ppCue) -{ - return pSoundBank->Play(nCueIndex, dwFlags, timeOffset, ppCue); -} - -__inline HRESULT __stdcall IXACT3SoundBank_Stop(__in IXACT3SoundBank* pSoundBank, XACTINDEX nCueIndex, DWORD dwFlags) -{ - return pSoundBank->Stop(nCueIndex, dwFlags); -} - -__inline HRESULT __stdcall IXACT3SoundBank_GetState(__in IXACT3SoundBank* pSoundBank, __out DWORD* pdwState) -{ - return pSoundBank->GetState(pdwState); -} - -#else // __cplusplus - -__inline HRESULT __stdcall IXACT3SoundBank_Destroy(__in IXACT3SoundBank* pSoundBank) -{ - return pSoundBank->lpVtbl->Destroy(pSoundBank); -} - -__inline XACTINDEX __stdcall IXACT3SoundBank_GetCueIndex(__in IXACT3SoundBank* pSoundBank, __in PCSTR szFriendlyName) -{ - return pSoundBank->lpVtbl->GetCueIndex(pSoundBank, szFriendlyName); -} - -__inline HRESULT __stdcall IXACT3SoundBank_GetNumCues(__in IXACT3SoundBank* pSoundBank, __out XACTINDEX* pnNumCues) -{ - return pSoundBank->lpVtbl->GetNumCues(pSoundBank, pnNumCues); -} - -__inline HRESULT __stdcall IXACT3SoundBank_GetCueProperties(__in IXACT3SoundBank* pSoundBank, XACTINDEX nCueIndex, __out LPXACT_CUE_PROPERTIES pProperties) -{ - return pSoundBank->lpVtbl->GetCueProperties(pSoundBank, nCueIndex, pProperties); -} - -__inline HRESULT __stdcall IXACT3SoundBank_Prepare(__in IXACT3SoundBank* pSoundBank, XACTINDEX nCueIndex, DWORD dwFlags, XACTTIME timeOffset, __deref_out IXACT3Cue** ppCue) -{ - return pSoundBank->lpVtbl->Prepare(pSoundBank, nCueIndex, dwFlags, timeOffset, ppCue); -} - -__inline HRESULT __stdcall IXACT3SoundBank_Play(__in IXACT3SoundBank* pSoundBank, XACTINDEX nCueIndex, DWORD dwFlags, XACTTIME timeOffset, __deref_opt_out IXACT3Cue** ppCue) -{ - return pSoundBank->lpVtbl->Play(pSoundBank, nCueIndex, dwFlags, timeOffset, ppCue); -} - -__inline HRESULT __stdcall IXACT3SoundBank_Stop(__in IXACT3SoundBank* pSoundBank, XACTINDEX nCueIndex, DWORD dwFlags) -{ - return pSoundBank->lpVtbl->Stop(pSoundBank, nCueIndex, dwFlags); -} - -__inline HRESULT __stdcall IXACT3SoundBank_GetState(__in IXACT3SoundBank* pSoundBank, __out DWORD* pdwState) -{ - return pSoundBank->lpVtbl->GetState(pSoundBank, pdwState); -} - -#endif // __cplusplus - -//------------------------------------------------------------------------------ -// IXACT3WaveBank -//------------------------------------------------------------------------------ -#define XACT_WAVEBANKSTATE_INUSE XACT_STATE_INUSE // Currently in-use -#define XACT_WAVEBANKSTATE_PREPARED XACT_STATE_PREPARED // Prepared -#define XACT_WAVEBANKSTATE_PREPAREFAILED XACT_STATE_PREPAREFAILED // Prepare failed. - - -STDAPI IXACT3WaveBank_Destroy(__in IXACT3WaveBank* pWaveBank); -STDAPI IXACT3WaveBank_GetState(__in IXACT3WaveBank* pWaveBank, __out DWORD* pdwState); -STDAPI IXACT3WaveBank_GetNumWaves(__in IXACT3WaveBank* pWaveBank, __out XACTINDEX* pnNumWaves); -STDAPI_(XACTINDEX) IXACT3WaveBank_GetWaveIndex(__in IXACT3WaveBank* pWaveBank, __in PCSTR szFriendlyName); -STDAPI IXACT3WaveBank_GetWaveProperties(__in IXACT3WaveBank* pWaveBank, XACTINDEX nWaveIndex, __out LPXACT_WAVE_PROPERTIES pWaveProperties); -STDAPI IXACT3WaveBank_Prepare(__in IXACT3WaveBank* pWaveBank, XACTINDEX nWaveIndex, DWORD dwFlags, DWORD dwPlayOffset, XACTLOOPCOUNT nLoopCount, __deref_out IXACT3Wave** ppWave); -STDAPI IXACT3WaveBank_Play(__in IXACT3WaveBank* pWaveBank, XACTINDEX nWaveIndex, DWORD dwFlags, DWORD dwPlayOffset, XACTLOOPCOUNT nLoopCount, __deref_out IXACT3Wave** ppWave); -STDAPI IXACT3WaveBank_Stop(__in IXACT3WaveBank* pWaveBank, XACTINDEX nWaveIndex, DWORD dwFlags); - -#undef INTERFACE -#define INTERFACE IXACT3WaveBank - -DECLARE_INTERFACE(IXACT3WaveBank) -{ - STDMETHOD(Destroy)(THIS) PURE; - STDMETHOD(GetNumWaves)(THIS_ __out XACTINDEX* pnNumWaves) PURE; - STDMETHOD_(XACTINDEX, GetWaveIndex)(THIS_ __in PCSTR szFriendlyName) PURE; - STDMETHOD(GetWaveProperties)(THIS_ XACTINDEX nWaveIndex, __out LPXACT_WAVE_PROPERTIES pWaveProperties) PURE; - STDMETHOD(Prepare)(THIS_ XACTINDEX nWaveIndex, DWORD dwFlags, DWORD dwPlayOffset, XACTLOOPCOUNT nLoopCount, __deref_out IXACT3Wave** ppWave) PURE; - STDMETHOD(Play)(THIS_ XACTINDEX nWaveIndex, DWORD dwFlags, DWORD dwPlayOffset, XACTLOOPCOUNT nLoopCount, __deref_out IXACT3Wave** ppWave) PURE; - STDMETHOD(Stop)(THIS_ XACTINDEX nWaveIndex, DWORD dwFlags) PURE; - STDMETHOD(GetState)(THIS_ __out DWORD* pdwState) PURE; -}; - -#ifdef __cplusplus - -__inline HRESULT __stdcall IXACT3WaveBank_Destroy(__in IXACT3WaveBank* pWaveBank) -{ - return pWaveBank->Destroy(); -} - -__inline HRESULT __stdcall IXACT3WaveBank_GetNumWaves(__in IXACT3WaveBank* pWaveBank, __out XACTINDEX* pnNumWaves) -{ - return pWaveBank->GetNumWaves(pnNumWaves); -} - -__inline XACTINDEX __stdcall IXACT3WaveBank_GetWaveIndex(__in IXACT3WaveBank* pWaveBank, __in PCSTR szFriendlyName) -{ - return pWaveBank->GetWaveIndex(szFriendlyName); -} - -__inline HRESULT __stdcall IXACT3WaveBank_GetWaveProperties(__in IXACT3WaveBank* pWaveBank, XACTINDEX nWaveIndex, __out LPXACT_WAVE_PROPERTIES pWaveProperties) -{ - return pWaveBank->GetWaveProperties(nWaveIndex, pWaveProperties); -} - -__inline HRESULT __stdcall IXACT3WaveBank_Prepare(__in IXACT3WaveBank* pWaveBank, XACTINDEX nWaveIndex, DWORD dwFlags, DWORD dwPlayOffset, XACTLOOPCOUNT nLoopCount, __deref_out IXACT3Wave** ppWave) -{ - return pWaveBank->Prepare(nWaveIndex, dwFlags, dwPlayOffset, nLoopCount, ppWave); -} - -__inline HRESULT __stdcall IXACT3WaveBank_Play(__in IXACT3WaveBank* pWaveBank, XACTINDEX nWaveIndex, DWORD dwFlags, DWORD dwPlayOffset, XACTLOOPCOUNT nLoopCount, __deref_out IXACT3Wave** ppWave) -{ - return pWaveBank->Play(nWaveIndex, dwFlags, dwPlayOffset, nLoopCount, ppWave); -} - -__inline HRESULT __stdcall IXACT3WaveBank_Stop(__in IXACT3WaveBank* pWaveBank, XACTINDEX nWaveIndex, DWORD dwFlags) -{ - return pWaveBank->Stop(nWaveIndex, dwFlags); -} - -__inline HRESULT __stdcall IXACT3WaveBank_GetState(__in IXACT3WaveBank* pWaveBank, __out DWORD* pdwState) -{ - return pWaveBank->GetState(pdwState); -} - -#else // __cplusplus - -__inline HRESULT __stdcall IXACT3WaveBank_Destroy(__in IXACT3WaveBank* pWaveBank) -{ - return pWaveBank->lpVtbl->Destroy(pWaveBank); -} - -__inline HRESULT __stdcall IXACT3WaveBank_GetNumWaves(__in IXACT3WaveBank* pWaveBank, __out XACTINDEX* pnNumWaves) -{ - return pWaveBank->lpVtbl->GetNumWaves(pWaveBank, pnNumWaves); -} - -__inline XACTINDEX __stdcall IXACT3WaveBank_GetWaveIndex(__in IXACT3WaveBank* pWaveBank, __in PCSTR szFriendlyName) -{ - return pWaveBank->lpVtbl->GetWaveIndex(pWaveBank, szFriendlyName); -} - -__inline HRESULT __stdcall IXACT3WaveBank_GetWaveProperties(__in IXACT3WaveBank* pWaveBank, XACTINDEX nWaveIndex, __out LPXACT_WAVE_PROPERTIES pWaveProperties) -{ - return pWaveBank->lpVtbl->GetWaveProperties(pWaveBank, nWaveIndex, pWaveProperties); -} - -__inline HRESULT __stdcall IXACT3WaveBank_Prepare(__in IXACT3WaveBank* pWaveBank, XACTINDEX nWaveIndex, DWORD dwFlags, DWORD dwPlayOffset, XACTLOOPCOUNT nLoopCount, __deref_out IXACT3Wave** ppWave) -{ - return pWaveBank->lpVtbl->Prepare(pWaveBank, nWaveIndex, dwFlags, dwPlayOffset, nLoopCount, ppWave); -} - -__inline HRESULT __stdcall IXACT3WaveBank_Play(__in IXACT3WaveBank* pWaveBank, XACTINDEX nWaveIndex, DWORD dwFlags, DWORD dwPlayOffset, XACTLOOPCOUNT nLoopCount, __deref_out IXACT3Wave** ppWave) -{ - return pWaveBank->lpVtbl->Play(pWaveBank, nWaveIndex, dwFlags, dwPlayOffset, nLoopCount, ppWave); -} - -__inline HRESULT __stdcall IXACT3WaveBank_Stop(__in IXACT3WaveBank* pWaveBank, XACTINDEX nWaveIndex, DWORD dwFlags) -{ - return pWaveBank->lpVtbl->Stop(pWaveBank, nWaveIndex, dwFlags); -} - -__inline HRESULT __stdcall IXACT3WaveBank_GetState(__in IXACT3WaveBank* pWaveBank, __out DWORD* pdwState) -{ - return pWaveBank->lpVtbl->GetState(pWaveBank, pdwState); -} -#endif // __cplusplus - - -//------------------------------------------------------------------------------ -// IXACT3Wave -//------------------------------------------------------------------------------ - -STDAPI IXACT3Wave_Destroy(__in IXACT3Wave* pWave); -STDAPI IXACT3Wave_Play(__in IXACT3Wave* pWave); -STDAPI IXACT3Wave_Stop(__in IXACT3Wave* pWave, DWORD dwFlags); -STDAPI IXACT3Wave_Pause(__in IXACT3Wave* pWave, BOOL fPause); -STDAPI IXACT3Wave_GetState(__in IXACT3Wave* pWave, __out DWORD* pdwState); -STDAPI IXACT3Wave_SetPitch(__in IXACT3Wave* pWave, XACTPITCH pitch); -STDAPI IXACT3Wave_SetVolume(__in IXACT3Wave* pWave, XACTVOLUME volume); -STDAPI IXACT3Wave_SetMatrixCoefficients(__in IXACT3Wave* pWave, UINT32 uSrcChannelCount, UINT32 uDstChannelCount, __in float* pMatrixCoefficients); -STDAPI IXACT3Wave_GetProperties(__in IXACT3Wave* pWave, __out LPXACT_WAVE_INSTANCE_PROPERTIES pProperties); - -#undef INTERFACE -#define INTERFACE IXACT3Wave - -DECLARE_INTERFACE(IXACT3Wave) -{ - STDMETHOD(Destroy)(THIS) PURE; - STDMETHOD(Play)(THIS) PURE; - STDMETHOD(Stop)(THIS_ DWORD dwFlags) PURE; - STDMETHOD(Pause)(THIS_ BOOL fPause) PURE; - STDMETHOD(GetState)(THIS_ __out DWORD* pdwState) PURE; - STDMETHOD(SetPitch)(THIS_ XACTPITCH pitch) PURE; - STDMETHOD(SetVolume)(THIS_ XACTVOLUME volume) PURE; - STDMETHOD(SetMatrixCoefficients)(THIS_ UINT32 uSrcChannelCount, UINT32 uDstChannelCount, __in float* pMatrixCoefficients) PURE; - STDMETHOD(GetProperties)(THIS_ __out LPXACT_WAVE_INSTANCE_PROPERTIES pProperties) PURE; -}; - -#ifdef __cplusplus - -__inline HRESULT __stdcall IXACT3Wave_Destroy(__in IXACT3Wave* pWave) -{ - return pWave->Destroy(); -} - -__inline HRESULT __stdcall IXACT3Wave_Play(__in IXACT3Wave* pWave) -{ - return pWave->Play(); -} - -__inline HRESULT __stdcall IXACT3Wave_Stop(__in IXACT3Wave* pWave, DWORD dwFlags) -{ - return pWave->Stop(dwFlags); -} - -__inline HRESULT __stdcall IXACT3Wave_Pause(__in IXACT3Wave* pWave, BOOL fPause) -{ - return pWave->Pause(fPause); -} - -__inline HRESULT __stdcall IXACT3Wave_GetState(__in IXACT3Wave* pWave, __out DWORD* pdwState) -{ - return pWave->GetState(pdwState); -} - -__inline HRESULT __stdcall IXACT3Wave_SetPitch(__in IXACT3Wave* pWave, XACTPITCH pitch) -{ - return pWave->SetPitch(pitch); -} - -__inline HRESULT __stdcall IXACT3Wave_SetVolume(__in IXACT3Wave* pWave, XACTVOLUME volume) -{ - return pWave->SetVolume(volume); -} - -__inline HRESULT __stdcall IXACT3Wave_SetMatrixCoefficients(__in IXACT3Wave* pWave, UINT32 uSrcChannelCount, UINT32 uDstChannelCount, __in float* pMatrixCoefficients) -{ - return pWave->SetMatrixCoefficients(uSrcChannelCount, uDstChannelCount, pMatrixCoefficients); -} - -__inline HRESULT __stdcall IXACT3Wave_GetProperties(__in IXACT3Wave* pWave, __out LPXACT_WAVE_INSTANCE_PROPERTIES pProperties) -{ - return pWave->GetProperties(pProperties); -} - -#else // __cplusplus - -__inline HRESULT __stdcall IXACT3Wave_Destroy(__in IXACT3Wave* pWave) -{ - return pWave->lpVtbl->Destroy(pWave); -} - -__inline HRESULT __stdcall IXACT3Wave_Play(__in IXACT3Wave* pWave) -{ - return pWave->lpVtbl->Play(pWave); -} - -__inline HRESULT __stdcall IXACT3Wave_Stop(__in IXACT3Wave* pWave, DWORD dwFlags) -{ - return pWave->lpVtbl->Stop(pWave, dwFlags); -} - -__inline HRESULT __stdcall IXACT3Wave_Pause(__in IXACT3Wave* pWave, BOOL fPause) -{ - return pWave->lpVtbl->Pause(pWave, fPause); -} - -__inline HRESULT __stdcall IXACT3Wave_GetState(__in IXACT3Wave* pWave, __out DWORD* pdwState) -{ - return pWave->lpVtbl->GetState(pWave, pdwState); -} - -__inline HRESULT __stdcall IXACT3Wave_SetPitch(__in IXACT3Wave* pWave, XACTPITCH pitch) -{ - return pWave->lpVtbl->SetPitch(pWave, pitch); -} - -__inline HRESULT __stdcall IXACT3Wave_SetVolume(__in IXACT3Wave* pWave, XACTVOLUME volume) -{ - return pWave->lpVtbl->SetVolume(pWave, volume); -} - -__inline HRESULT __stdcall IXACT3Wave_SetMatrixCoefficients(__in IXACT3Wave* pWave, UINT32 uSrcChannelCount, UINT32 uDstChannelCount, __in float* pMatrixCoefficients) -{ - return pWave->lpVtbl->SetMatrixCoefficients(pWave, uSrcChannelCount, uDstChannelCount, pMatrixCoefficients); -} - -__inline HRESULT __stdcall IXACT3Wave_GetProperties(__in IXACT3Wave* pWave, __out LPXACT_WAVE_INSTANCE_PROPERTIES pProperties) -{ - return pWave->lpVtbl->GetProperties(pWave, pProperties); -} -#endif // __cplusplus - -//------------------------------------------------------------------------------ -// IXACT3Cue -//------------------------------------------------------------------------------ - -// Cue Flags -#define XACT_FLAG_CUE_STOP_RELEASE XACT_FLAG_STOP_RELEASE -#define XACT_FLAG_CUE_STOP_IMMEDIATE XACT_FLAG_STOP_IMMEDIATE - -// Mutually exclusive states -#define XACT_CUESTATE_CREATED XACT_STATE_CREATED // Created, but nothing else -#define XACT_CUESTATE_PREPARING XACT_STATE_PREPARING // In the middle of preparing -#define XACT_CUESTATE_PREPARED XACT_STATE_PREPARED // Prepared, but not yet played -#define XACT_CUESTATE_PLAYING XACT_STATE_PLAYING // Playing (though could be paused) -#define XACT_CUESTATE_STOPPING XACT_STATE_STOPPING // Stopping -#define XACT_CUESTATE_STOPPED XACT_STATE_STOPPED // Stopped -#define XACT_CUESTATE_PAUSED XACT_STATE_PAUSED // Paused (can be combined with other states) - -STDAPI IXACT3Cue_Destroy(__in IXACT3Cue* pCue); -STDAPI IXACT3Cue_Play(__in IXACT3Cue* pCue); -STDAPI IXACT3Cue_Stop(__in IXACT3Cue* pCue, DWORD dwFlags); -STDAPI IXACT3Cue_GetState(__in IXACT3Cue* pCue, __out DWORD* pdwState); -STDAPI IXACT3Cue_SetMatrixCoefficients(__in IXACT3Cue*, UINT32 uSrcChannelCount, UINT32 uDstChannelCount, __in float* pMatrixCoefficients); -STDAPI_(XACTVARIABLEINDEX) IXACT3Cue_GetVariableIndex(__in IXACT3Cue* pCue, __in PCSTR szFriendlyName); -STDAPI IXACT3Cue_SetVariable(__in IXACT3Cue* pCue, XACTVARIABLEINDEX nIndex, XACTVARIABLEVALUE nValue); -STDAPI IXACT3Cue_GetVariable(__in IXACT3Cue* pCue, XACTVARIABLEINDEX nIndex, __out XACTVARIABLEVALUE* nValue); -STDAPI IXACT3Cue_Pause(__in IXACT3Cue* pCue, BOOL fPause); -STDAPI IXACT3Cue_GetProperties(__in IXACT3Cue* pCue, __out LPXACT_CUE_INSTANCE_PROPERTIES* ppProperties); -STDAPI IXACT3Cue_SetOutputVoices(__in IXACT3Cue* pCue, __in_opt const XAUDIO2_VOICE_SENDS* pSendList); -STDAPI IXACT3Cue_SetOutputVoiceMatrix(__in IXACT3Cue* pCue, __in_opt IXAudio2Voice* pDestinationVoice, UINT32 SourceChannels, UINT32 DestinationChannels, __in_ecount(SourceChannels * DestinationChannels) const float* pLevelMatrix); - -#undef INTERFACE -#define INTERFACE IXACT3Cue - -DECLARE_INTERFACE(IXACT3Cue) -{ - STDMETHOD(Play)(THIS) PURE; - STDMETHOD(Stop)(THIS_ DWORD dwFlags) PURE; - STDMETHOD(GetState)(THIS_ __out DWORD* pdwState) PURE; - STDMETHOD(Destroy)(THIS) PURE; - STDMETHOD(SetMatrixCoefficients)(THIS_ UINT32 uSrcChannelCount, UINT32 uDstChannelCount, __in float* pMatrixCoefficients) PURE; - STDMETHOD_(XACTVARIABLEINDEX, GetVariableIndex)(THIS_ __in PCSTR szFriendlyName) PURE; - STDMETHOD(SetVariable)(THIS_ XACTVARIABLEINDEX nIndex, XACTVARIABLEVALUE nValue) PURE; - STDMETHOD(GetVariable)(THIS_ XACTVARIABLEINDEX nIndex, __out XACTVARIABLEVALUE* nValue) PURE; - STDMETHOD(Pause)(THIS_ BOOL fPause) PURE; - STDMETHOD(GetProperties)(THIS_ __out LPXACT_CUE_INSTANCE_PROPERTIES* ppProperties) PURE; - STDMETHOD(SetOutputVoices)(THIS_ __in_opt const XAUDIO2_VOICE_SENDS* pSendList) PURE; - STDMETHOD(SetOutputVoiceMatrix)(THIS_ __in_opt IXAudio2Voice* pDestinationVoice, UINT32 SourceChannels, UINT32 DestinationChannels, __in_ecount(SourceChannels * DestinationChannels) const float* pLevelMatrix) PURE; -}; - -#ifdef __cplusplus - -__inline HRESULT __stdcall IXACT3Cue_Play(__in IXACT3Cue* pCue) -{ - return pCue->Play(); -} - -__inline HRESULT __stdcall IXACT3Cue_Stop(__in IXACT3Cue* pCue, DWORD dwFlags) -{ - return pCue->Stop(dwFlags); -} - -__inline HRESULT __stdcall IXACT3Cue_GetState(__in IXACT3Cue* pCue, __out DWORD* pdwState) -{ - return pCue->GetState(pdwState); -} - -__inline HRESULT __stdcall IXACT3Cue_Destroy(__in IXACT3Cue* pCue) -{ - return pCue->Destroy(); -} - -__inline HRESULT __stdcall IXACT3Cue_SetMatrixCoefficients(__in IXACT3Cue* pCue, UINT32 uSrcChannelCount, UINT32 uDstChannelCount, __in float* pMatrixCoefficients) -{ - return pCue->SetMatrixCoefficients(uSrcChannelCount, uDstChannelCount, pMatrixCoefficients); -} - -__inline XACTVARIABLEINDEX __stdcall IXACT3Cue_GetVariableIndex(__in IXACT3Cue* pCue, __in PCSTR szFriendlyName) -{ - return pCue->GetVariableIndex(szFriendlyName); -} - -__inline HRESULT __stdcall IXACT3Cue_SetVariable(__in IXACT3Cue* pCue, XACTVARIABLEINDEX nIndex, XACTVARIABLEVALUE nValue) -{ - return pCue->SetVariable(nIndex, nValue); -} - -__inline HRESULT __stdcall IXACT3Cue_GetVariable(__in IXACT3Cue* pCue, XACTVARIABLEINDEX nIndex, __out XACTVARIABLEVALUE* pnValue) -{ - return pCue->GetVariable(nIndex, pnValue); -} - -__inline HRESULT __stdcall IXACT3Cue_Pause(__in IXACT3Cue* pCue, BOOL fPause) -{ - return pCue->Pause(fPause); -} - -__inline HRESULT __stdcall IXACT3Cue_GetProperties(__in IXACT3Cue* pCue, __out LPXACT_CUE_INSTANCE_PROPERTIES* ppProperties) -{ - return pCue->GetProperties(ppProperties); -} - -__inline HRESULT __stdcall IXACT3Cue_SetOutputVoices(__in IXACT3Cue* pCue, __in_opt const XAUDIO2_VOICE_SENDS* pSendList) -{ - return pCue->SetOutputVoices(pSendList); -} - -__inline HRESULT __stdcall IXACT3Cue_SetOutputVoiceMatrix(__in IXACT3Cue* pCue, __in_opt IXAudio2Voice* pDestinationVoice, UINT32 SourceChannels, UINT32 DestinationChannels, __in_ecount(SourceChannels * DestinationChannels) const float* pLevelMatrix) -{ - return pCue->SetOutputVoiceMatrix(pDestinationVoice, SourceChannels, DestinationChannels, pLevelMatrix); -} - -#else // __cplusplus - -__inline HRESULT __stdcall IXACT3Cue_Play(__in IXACT3Cue* pCue) -{ - return pCue->lpVtbl->Play(pCue); -} - -__inline HRESULT __stdcall IXACT3Cue_Stop(__in IXACT3Cue* pCue, DWORD dwFlags) -{ - return pCue->lpVtbl->Stop(pCue, dwFlags); -} - -__inline HRESULT __stdcall IXACT3Cue_GetState(__in IXACT3Cue* pCue, __out DWORD* pdwState) -{ - return pCue->lpVtbl->GetState(pCue, pdwState); -} - -__inline HRESULT __stdcall IXACT3Cue_Destroy(__in IXACT3Cue* pCue) -{ - return pCue->lpVtbl->Destroy(pCue); -} - -__inline HRESULT __stdcall IXACT3Cue_SetMatrixCoefficients(__in IXACT3Cue* pCue, UINT32 uSrcChannelCount, UINT32 uDstChannelCount, __in float* pMatrixCoefficients) -{ - return pCue->lpVtbl->SetMatrixCoefficients(pCue, uSrcChannelCount, uDstChannelCount, pMatrixCoefficients); -} - -__inline XACTVARIABLEINDEX __stdcall IXACT3Cue_GetVariableIndex(__in IXACT3Cue* pCue, __in PCSTR szFriendlyName) -{ - return pCue->lpVtbl->GetVariableIndex(pCue, szFriendlyName); -} - -__inline HRESULT __stdcall IXACT3Cue_SetVariable(__in IXACT3Cue* pCue, XACTVARIABLEINDEX nIndex, XACTVARIABLEVALUE nValue) -{ - return pCue->lpVtbl->SetVariable(pCue, nIndex, nValue); -} - -__inline HRESULT __stdcall IXACT3Cue_GetVariable(__in IXACT3Cue* pCue, XACTVARIABLEINDEX nIndex, __out XACTVARIABLEVALUE* pnValue) -{ - return pCue->lpVtbl->GetVariable(pCue, nIndex, pnValue); -} - -__inline HRESULT __stdcall IXACT3Cue_Pause(__in IXACT3Cue* pCue, BOOL fPause) -{ - return pCue->lpVtbl->Pause(pCue, fPause); -} - -__inline HRESULT __stdcall IXACT3Cue_GetProperties(__in IXACT3Cue* pCue, __out LPXACT_CUE_INSTANCE_PROPERTIES* ppProperties) -{ - return pCue->lpVtbl->GetProperties(pCue, ppProperties); -} - -__inline HRESULT __stdcall IXACT3Cue_SetOutputVoices(__in IXACT3Cue* pCue, __in_opt const XAUDIO2_VOICE_SENDS* pSendList) -{ - return pCue->lpVtbl->SetOutputVoices(pSendList); -} - -__inline HRESULT __stdcall IXACT3Cue_SetOutputVoiceMatrix(__in IXACT3Cue* pCue, __in_opt IXAudio2Voice* pDestinationVoice, UINT32 SourceChannels, UINT32 DestinationChannels, __in_ecount(SourceChannels * DestinationChannels) const float* pLevelMatrix) -{ - return pCue->lpVtbl->SetOutputVoiceMatrix(pDestinationVoice, SourceChannels, DestinationChannels, pLevelMatrix); -} - -#endif // __cplusplus - -//------------------------------------------------------------------------------ -// IXACT3Engine -//------------------------------------------------------------------------------ - -// Engine flags -#define XACT_FLAG_ENGINE_CREATE_MANAGEDATA XACT_FLAG_MANAGEDATA -#define XACT_FLAG_ENGINE_STOP_IMMEDIATE XACT_FLAG_STOP_IMMEDIATE - -STDAPI_(ULONG) IXACT3Engine_AddRef(__in IXACT3Engine* pEngine); -STDAPI_(ULONG) IXACT3Engine_Release(__in IXACT3Engine* pEngine); -STDAPI IXACT3Engine_GetRendererCount(__in IXACT3Engine* pEngine, __out XACTINDEX* pnRendererCount); -STDAPI IXACT3Engine_GetRendererDetails(__in IXACT3Engine* pEngine, XACTINDEX nRendererIndex, __out LPXACT_RENDERER_DETAILS pRendererDetails); -STDAPI IXACT3Engine_GetFinalMixFormat(__in IXACT3Engine* pEngine, __out WAVEFORMATEXTENSIBLE* pFinalMixFormat); -STDAPI IXACT3Engine_Initialize(__in IXACT3Engine* pEngine, __in const XACT_RUNTIME_PARAMETERS* pParams); -STDAPI IXACT3Engine_ShutDown(__in IXACT3Engine* pEngine); -STDAPI IXACT3Engine_DoWork(__in IXACT3Engine* pEngine); -STDAPI IXACT3Engine_CreateSoundBank(__in IXACT3Engine* pEngine, __in const void* pvBuffer, DWORD dwSize, DWORD dwFlags, DWORD dwAllocAttributes, __deref_out IXACT3SoundBank** ppSoundBank); -STDAPI IXACT3Engine_CreateInMemoryWaveBank(__in IXACT3Engine* pEngine, __in const void* pvBuffer, DWORD dwSize, DWORD dwFlags, DWORD dwAllocAttributes, __deref_out IXACT3WaveBank** ppWaveBank); -STDAPI IXACT3Engine_CreateStreamingWaveBank(__in IXACT3Engine* pEngine, __in const XACT_WAVEBANK_STREAMING_PARAMETERS* pParms, __deref_out IXACT3WaveBank** ppWaveBank); -STDAPI IXACT3Engine_PrepareWave(__in IXACT3Engine* pEngine, DWORD dwFlags, __in PCSTR szWavePath, WORD wStreamingPacketSize, DWORD dwAlignment, DWORD dwPlayOffset, XACTLOOPCOUNT nLoopCount, __deref_out IXACT3Wave** ppWave); -STDAPI IXACT3Engine_PrepareInMemoryWave(__in IXACT3Engine* pEngine, DWORD dwFlags, WAVEBANKENTRY entry, __in_opt DWORD* pdwSeekTable, __in_opt BYTE* pbWaveData, DWORD dwPlayOffset, XACTLOOPCOUNT nLoopCount, __deref_out IXACT3Wave** ppWave); -STDAPI IXACT3Engine_PrepareStreamingWave(__in IXACT3Engine* pEngine, DWORD dwFlags, WAVEBANKENTRY entry, XACT_STREAMING_PARAMETERS streamingParams, DWORD dwAlignment, __in_opt DWORD* pdwSeekTable, DWORD dwPlayOffset, XACTLOOPCOUNT nLoopCount, __deref_out IXACT3Wave** ppWave); -STDAPI IXACT3Engine_RegisterNotification(__in IXACT3Engine* pEngine, __in const XACT_NOTIFICATION_DESCRIPTION* pNotificationDesc); -STDAPI IXACT3Engine_UnRegisterNotification(__in IXACT3Engine* pEngine, __in const XACT_NOTIFICATION_DESCRIPTION* pNotificationDesc); -STDAPI_(XACTCATEGORY) IXACT3Engine_GetCategory(__in IXACT3Engine* pEngine, __in PCSTR szFriendlyName); -STDAPI IXACT3Engine_Stop(__in IXACT3Engine* pEngine, XACTCATEGORY nCategory, DWORD dwFlags); -STDAPI IXACT3Engine_SetVolume(__in IXACT3Engine* pEngine, XACTCATEGORY nCategory, XACTVOLUME nVolume); -STDAPI IXACT3Engine_Pause(__in IXACT3Engine* pEngine, XACTCATEGORY nCategory, BOOL fPause); -STDAPI_(XACTVARIABLEINDEX) IXACT3Engine_GetGlobalVariableIndex(__in IXACT3Engine* pEngine, __in PCSTR szFriendlyName); -STDAPI IXACT3Engine_SetGlobalVariable(__in IXACT3Engine* pEngine, XACTVARIABLEINDEX nIndex, XACTVARIABLEVALUE nValue); -STDAPI IXACT3Engine_GetGlobalVariable(__in IXACT3Engine* pEngine, XACTVARIABLEINDEX nIndex, __out XACTVARIABLEVALUE* pnValue); - -#undef INTERFACE -#define INTERFACE IXACT3Engine - -#ifdef _XBOX -DECLARE_INTERFACE(IXACT3Engine) -{ -#else -DECLARE_INTERFACE_(IXACT3Engine, IUnknown) -{ - STDMETHOD(QueryInterface)(THIS_ __in REFIID riid, __deref_out void** ppvObj) PURE; -#endif - - STDMETHOD_(ULONG, AddRef)(THIS) PURE; - STDMETHOD_(ULONG, Release)(THIS) PURE; - - STDMETHOD(GetRendererCount)(THIS_ __out XACTINDEX* pnRendererCount) PURE; - STDMETHOD(GetRendererDetails)(THIS_ XACTINDEX nRendererIndex, __out LPXACT_RENDERER_DETAILS pRendererDetails) PURE; - - STDMETHOD(GetFinalMixFormat)(THIS_ __out WAVEFORMATEXTENSIBLE* pFinalMixFormat) PURE; - STDMETHOD(Initialize)(THIS_ __in const XACT_RUNTIME_PARAMETERS* pParams) PURE; - STDMETHOD(ShutDown)(THIS) PURE; - - STDMETHOD(DoWork)(THIS) PURE; - - STDMETHOD(CreateSoundBank)(THIS_ __in const void* pvBuffer, DWORD dwSize, DWORD dwFlags, DWORD dwAllocAttributes, __deref_out IXACT3SoundBank** ppSoundBank) PURE; - STDMETHOD(CreateInMemoryWaveBank)(THIS_ __in const void* pvBuffer, DWORD dwSize, DWORD dwFlags, DWORD dwAllocAttributes, __deref_out IXACT3WaveBank** ppWaveBank) PURE; - STDMETHOD(CreateStreamingWaveBank)(THIS_ __in const XACT_WAVEBANK_STREAMING_PARAMETERS* pParms, __deref_out IXACT3WaveBank** ppWaveBank) PURE; - - STDMETHOD(PrepareWave)(THIS_ DWORD dwFlags, __in PCSTR szWavePath, WORD wStreamingPacketSize, DWORD dwAlignment, DWORD dwPlayOffset, XACTLOOPCOUNT nLoopCount, __deref_out IXACT3Wave** ppWave) PURE; - STDMETHOD(PrepareInMemoryWave)(THIS_ DWORD dwFlags, WAVEBANKENTRY entry, __in_opt DWORD* pdwSeekTable, __in_opt BYTE* pbWaveData, DWORD dwPlayOffset, XACTLOOPCOUNT nLoopCount, __deref_out IXACT3Wave** ppWave) PURE; - STDMETHOD(PrepareStreamingWave)(THIS_ DWORD dwFlags, WAVEBANKENTRY entry, XACT_STREAMING_PARAMETERS streamingParams, DWORD dwAlignment, __in_opt DWORD* pdwSeekTable, DWORD dwPlayOffset, XACTLOOPCOUNT nLoopCount, __deref_out IXACT3Wave** ppWave) PURE; - - STDMETHOD(RegisterNotification)(THIS_ __in const XACT_NOTIFICATION_DESCRIPTION* pNotificationDesc) PURE; - STDMETHOD(UnRegisterNotification)(THIS_ __in const XACT_NOTIFICATION_DESCRIPTION* pNotificationDesc) PURE; - - STDMETHOD_(XACTCATEGORY, GetCategory)(THIS_ __in PCSTR szFriendlyName) PURE; - STDMETHOD(Stop)(THIS_ XACTCATEGORY nCategory, DWORD dwFlags) PURE; - STDMETHOD(SetVolume)(THIS_ XACTCATEGORY nCategory, XACTVOLUME nVolume) PURE; - STDMETHOD(Pause)(THIS_ XACTCATEGORY nCategory, BOOL fPause) PURE; - - STDMETHOD_(XACTVARIABLEINDEX, GetGlobalVariableIndex)(THIS_ __in PCSTR szFriendlyName) PURE; - STDMETHOD(SetGlobalVariable)(THIS_ XACTVARIABLEINDEX nIndex, XACTVARIABLEVALUE nValue) PURE; - STDMETHOD(GetGlobalVariable)(THIS_ XACTVARIABLEINDEX nIndex, __out XACTVARIABLEVALUE* nValue) PURE; -}; - -#ifdef __cplusplus - -__inline ULONG __stdcall IXACT3Engine_AddRef(__in IXACT3Engine* pEngine) -{ - return pEngine->AddRef(); -} - -__inline ULONG __stdcall IXACT3Engine_Release(__in IXACT3Engine* pEngine) -{ - return pEngine->Release(); -} - -__inline HRESULT __stdcall IXACT3Engine_GetRendererCount(__in IXACT3Engine* pEngine, __out XACTINDEX* pnRendererCount) -{ - return pEngine->GetRendererCount(pnRendererCount); -} - -__inline HRESULT __stdcall IXACT3Engine_GetRendererDetails(__in IXACT3Engine* pEngine, XACTINDEX nRendererIndex, __out LPXACT_RENDERER_DETAILS pRendererDetails) -{ - return pEngine->GetRendererDetails(nRendererIndex, pRendererDetails); -} - -__inline HRESULT __stdcall IXACT3Engine_GetFinalMixFormat(__in IXACT3Engine* pEngine, __out WAVEFORMATEXTENSIBLE* pFinalMixFormat) -{ - return pEngine->GetFinalMixFormat(pFinalMixFormat); -} - -__inline HRESULT __stdcall IXACT3Engine_Initialize(__in IXACT3Engine* pEngine, __in const XACT_RUNTIME_PARAMETERS* pParams) -{ - return pEngine->Initialize(pParams); -} - -__inline HRESULT __stdcall IXACT3Engine_ShutDown(__in IXACT3Engine* pEngine) -{ - return pEngine->ShutDown(); -} - -__inline HRESULT __stdcall IXACT3Engine_DoWork(__in IXACT3Engine* pEngine) -{ - return pEngine->DoWork(); -} - -__inline HRESULT __stdcall IXACT3Engine_CreateSoundBank(__in IXACT3Engine* pEngine, __in const void* pvBuffer, DWORD dwSize, DWORD dwFlags, DWORD dwAllocAttributes, __deref_out IXACT3SoundBank** ppSoundBank) -{ - return pEngine->CreateSoundBank(pvBuffer, dwSize, dwFlags, dwAllocAttributes, ppSoundBank); -} - -__inline HRESULT __stdcall IXACT3Engine_CreateInMemoryWaveBank(__in IXACT3Engine* pEngine, __in const void* pvBuffer, DWORD dwSize, DWORD dwFlags, DWORD dwAllocAttributes, __deref_out IXACT3WaveBank** ppWaveBank) -{ - return pEngine->CreateInMemoryWaveBank(pvBuffer, dwSize, dwFlags, dwAllocAttributes, ppWaveBank); -} - -__inline HRESULT __stdcall IXACT3Engine_CreateStreamingWaveBank(__in IXACT3Engine* pEngine, __in const XACT_WAVEBANK_STREAMING_PARAMETERS* pParms, __deref_out IXACT3WaveBank** ppWaveBank) -{ - return pEngine->CreateStreamingWaveBank(pParms, ppWaveBank); -} - -__inline HRESULT __stdcall IXACT3Engine_PrepareWave(__in IXACT3Engine* pEngine, DWORD dwFlags, __in PCSTR szWavePath, WORD wStreamingPacketSize, DWORD dwAlignment, DWORD dwPlayOffset, XACTLOOPCOUNT nLoopCount, __deref_out IXACT3Wave** ppWave) -{ - return pEngine->PrepareWave(dwFlags, szWavePath, wStreamingPacketSize, dwAlignment, dwPlayOffset, nLoopCount, ppWave); -} - -__inline HRESULT __stdcall IXACT3Engine_PrepareInMemoryWave(__in IXACT3Engine* pEngine, DWORD dwFlags, WAVEBANKENTRY entry, __in_opt DWORD* pdwSeekTable, __in_opt BYTE* pbWaveData, DWORD dwPlayOffset, XACTLOOPCOUNT nLoopCount, __deref_out IXACT3Wave** ppWave) -{ - return pEngine->PrepareInMemoryWave(dwFlags, entry, pdwSeekTable, pbWaveData, dwPlayOffset, nLoopCount, ppWave); -} - -__inline HRESULT __stdcall IXACT3Engine_PrepareStreamingWave(__in IXACT3Engine* pEngine, DWORD dwFlags, WAVEBANKENTRY entry, XACT_STREAMING_PARAMETERS streamingParams, DWORD dwAlignment, __in_opt DWORD* pdwSeekTable, DWORD dwPlayOffset, XACTLOOPCOUNT nLoopCount, __deref_out IXACT3Wave** ppWave) -{ - return pEngine->PrepareStreamingWave(dwFlags, entry, streamingParams, dwAlignment, pdwSeekTable, dwPlayOffset, nLoopCount, ppWave); -} - -__inline HRESULT __stdcall IXACT3Engine_RegisterNotification(__in IXACT3Engine* pEngine, __in const XACT_NOTIFICATION_DESCRIPTION* pNotificationDesc) -{ - return pEngine->RegisterNotification(pNotificationDesc); -} - -__inline HRESULT __stdcall IXACT3Engine_UnRegisterNotification(__in IXACT3Engine* pEngine, __in const XACT_NOTIFICATION_DESCRIPTION* pNotificationDesc) -{ - return pEngine->UnRegisterNotification(pNotificationDesc); -} - -__inline XACTCATEGORY __stdcall IXACT3Engine_GetCategory(__in IXACT3Engine* pEngine, __in PCSTR szFriendlyName) -{ - return pEngine->GetCategory(szFriendlyName); -} - -__inline HRESULT __stdcall IXACT3Engine_Stop(__in IXACT3Engine* pEngine, XACTCATEGORY nCategory, DWORD dwFlags) -{ - return pEngine->Stop(nCategory, dwFlags); -} - -__inline HRESULT __stdcall IXACT3Engine_SetVolume(__in IXACT3Engine* pEngine, XACTCATEGORY nCategory, XACTVOLUME nVolume) -{ - return pEngine->SetVolume(nCategory, nVolume); -} - -__inline HRESULT __stdcall IXACT3Engine_Pause(__in IXACT3Engine* pEngine, XACTCATEGORY nCategory, BOOL fPause) -{ - return pEngine->Pause(nCategory, fPause); -} - -__inline XACTVARIABLEINDEX __stdcall IXACT3Engine_GetGlobalVariableIndex(__in IXACT3Engine* pEngine, __in PCSTR szFriendlyName) -{ - return pEngine->GetGlobalVariableIndex(szFriendlyName); -} - -__inline HRESULT __stdcall IXACT3Engine_SetGlobalVariable(__in IXACT3Engine* pEngine, XACTVARIABLEINDEX nIndex, XACTVARIABLEVALUE nValue) -{ - return pEngine->SetGlobalVariable(nIndex, nValue); -} - -__inline HRESULT __stdcall IXACT3Engine_GetGlobalVariable(__in IXACT3Engine* pEngine, XACTVARIABLEINDEX nIndex, __out XACTVARIABLEVALUE* nValue) -{ - return pEngine->GetGlobalVariable(nIndex, nValue); -} - -#else // __cplusplus - -__inline ULONG __stdcall IXACT3Engine_AddRef(__in IXACT3Engine* pEngine) -{ - return pEngine->lpVtbl->AddRef(pEngine); -} - -__inline ULONG __stdcall IXACT3Engine_Release(__in IXACT3Engine* pEngine) -{ - return pEngine->lpVtbl->Release(pEngine); -} - -__inline HRESULT __stdcall IXACT3Engine_GetRendererCount(__in IXACT3Engine* pEngine, __out XACTINDEX* pnRendererCount) -{ - return pEngine->lpVtbl->GetRendererCount(pEngine, pnRendererCount); -} - -__inline HRESULT __stdcall IXACT3Engine_GetRendererDetails(__in IXACT3Engine* pEngine, XACTINDEX nRendererIndex, __out LPXACT_RENDERER_DETAILS pRendererDetails) -{ - return pEngine->lpVtbl->GetRendererDetails(pEngine, nRendererIndex, pRendererDetails); -} - -__inline HRESULT __stdcall IXACT3Engine_GetFinalMixFormat(__in IXACT3Engine* pEngine, __out WAVEFORMATEXTENSIBLE* pFinalMixFormat) -{ - return pEngine->lpVtbl->GetFinalMixFormat(pEngine, pFinalMixFormat); -} - -__inline HRESULT __stdcall IXACT3Engine_Initialize(__in IXACT3Engine* pEngine, __in const XACT_RUNTIME_PARAMETERS* pParams) -{ - return pEngine->lpVtbl->Initialize(pEngine, pParams); -} - -__inline HRESULT __stdcall IXACT3Engine_ShutDown(__in IXACT3Engine* pEngine) -{ - return pEngine->lpVtbl->ShutDown(pEngine); -} - -__inline HRESULT __stdcall IXACT3Engine_DoWork(__in IXACT3Engine* pEngine) -{ - return pEngine->lpVtbl->DoWork(pEngine); -} - -__inline HRESULT __stdcall IXACT3Engine_CreateSoundBank(__in IXACT3Engine* pEngine, __in const void* pvBuffer, DWORD dwSize, DWORD dwFlags, DWORD dwAllocAttributes, __deref_out IXACT3SoundBank** ppSoundBank) -{ - return pEngine->lpVtbl->CreateSoundBank(pEngine, pvBuffer, dwSize, dwFlags, dwAllocAttributes, ppSoundBank); -} - -__inline HRESULT __stdcall IXACT3Engine_CreateInMemoryWaveBank(__in IXACT3Engine* pEngine, __in const void* pvBuffer, DWORD dwSize, DWORD dwFlags, DWORD dwAllocAttributes, __deref_out IXACT3WaveBank** ppWaveBank) -{ - return pEngine->lpVtbl->CreateInMemoryWaveBank(pEngine, pvBuffer, dwSize, dwFlags, dwAllocAttributes, ppWaveBank); -} - -__inline HRESULT __stdcall IXACT3Engine_CreateStreamingWaveBank(__in IXACT3Engine* pEngine, __in const XACT_WAVEBANK_STREAMING_PARAMETERS* pParms, __deref_out IXACT3WaveBank** ppWaveBank) -{ - return pEngine->lpVtbl->CreateStreamingWaveBank(pEngine, pParms, ppWaveBank); -} - -__inline HRESULT __stdcall IXACT3Engine_PrepareWave(__in IXACT3Engine* pEngine, DWORD dwFlags, __in PCSTR szWavePath, WORD wStreamingPacketSize, DWORD dwAlignment, DWORD dwPlayOffset, XACTLOOPCOUNT nLoopCount, __deref_out IXACT3Wave** ppWave) -{ - return pEngine->lpVtbl->PrepareWave(pEngine, dwFlags, szWavePath, wStreamingPacketSize, dwAlignment, dwPlayOffset, nLoopCount, ppWave); -} - -__inline HRESULT __stdcall IXACT3Engine_PrepareInMemoryWave(__in IXACT3Engine* pEngine, DWORD dwFlags, WAVEBANKENTRY entry, __in_opt DWORD* pdwSeekTable, __in_opt BYTE* pbWaveData, DWORD dwPlayOffset, XACTLOOPCOUNT nLoopCount, __deref_out IXACT3Wave** ppWave) -{ - return pEngine->lpVtbl->PrepareInMemoryWave(pEngine, dwFlags, entry, pdwSeekTable, pbWaveData, dwPlayOffset, nLoopCount, ppWave); -} - -__inline HRESULT __stdcall IXACT3Engine_PrepareStreamingWave(__in IXACT3Engine* pEngine, DWORD dwFlags, WAVEBANKENTRY entry, XACT_STREAMING_PARAMETERS streamingParams, DWORD dwAlignment, __in_opt DWORD* pdwSeekTable, DWORD dwPlayOffset, XACTLOOPCOUNT nLoopCount, __deref_out IXACT3Wave** ppWave) -{ - return pEngine->lpVtbl->PrepareStreamingWave(pEngine, dwFlags, entry, streamingParams, dwAlignment, pdwSeekTable, dwPlayOffset, nLoopCount, ppWave); -} - - -__inline HRESULT __stdcall IXACT3Engine_RegisterNotification(__in IXACT3Engine* pEngine, __in const XACT_NOTIFICATION_DESCRIPTION* pNotificationDesc) -{ - return pEngine->lpVtbl->RegisterNotification(pEngine, pNotificationDesc); -} - -__inline HRESULT __stdcall IXACT3Engine_UnRegisterNotification(__in IXACT3Engine* pEngine, __in const XACT_NOTIFICATION_DESCRIPTION* pNotificationDesc) -{ - return pEngine->lpVtbl->UnRegisterNotification(pEngine, pNotificationDesc); -} - -__inline XACTCATEGORY __stdcall IXACT3Engine_GetCategory(__in IXACT3Engine* pEngine, __in PCSTR szFriendlyName) -{ - return pEngine->lpVtbl->GetCategory(pEngine, szFriendlyName); -} - -__inline HRESULT __stdcall IXACT3Engine_Stop(__in IXACT3Engine* pEngine, XACTCATEGORY nCategory, DWORD dwFlags) -{ - return pEngine->lpVtbl->Stop(pEngine, nCategory, dwFlags); -} - -__inline HRESULT __stdcall IXACT3Engine_SetVolume(__in IXACT3Engine* pEngine, XACTCATEGORY nCategory, XACTVOLUME nVolume) -{ - return pEngine->lpVtbl->SetVolume(pEngine, nCategory, nVolume); -} - -__inline HRESULT __stdcall IXACT3Engine_Pause(__in IXACT3Engine* pEngine, XACTCATEGORY nCategory, BOOL fPause) -{ - return pEngine->lpVtbl->Pause(pEngine, nCategory, fPause); -} - -__inline XACTVARIABLEINDEX __stdcall IXACT3Engine_GetGlobalVariableIndex(__in IXACT3Engine* pEngine, __in PCSTR szFriendlyName) -{ - return pEngine->lpVtbl->GetGlobalVariableIndex(pEngine, szFriendlyName); -} - -__inline HRESULT __stdcall IXACT3Engine_SetGlobalVariable(__in IXACT3Engine* pEngine, XACTVARIABLEINDEX nIndex, XACTVARIABLEVALUE nValue) -{ - return pEngine->lpVtbl->SetGlobalVariable(pEngine, nIndex, nValue); -} - -__inline HRESULT __stdcall IXACT3Engine_GetGlobalVariable(__in IXACT3Engine* pEngine, XACTVARIABLEINDEX nIndex, __out XACTVARIABLEVALUE* nValue) -{ - return pEngine->lpVtbl->GetGlobalVariable(pEngine, nIndex, nValue); -} - -#endif // __cplusplus - -//------------------------------------------------------------------------------ -// Create Engine -//------------------------------------------------------------------------------ - -// Flags used only in XACT3CreateEngine below. These flags are valid but ignored -// when building for Xbox 360; to enable auditioning on that platform you must -// link explicitly to an auditioning version of the XACT static library. -static const DWORD XACT_FLAG_API_AUDITION_MODE = 0x00000001; -static const DWORD XACT_FLAG_API_DEBUG_MODE = 0x00000002; - -#ifdef _XBOX - -STDAPI XACT3CreateEngine(DWORD dwCreationFlags, __deref_out IXACT3Engine** ppEngine); - -#else // #ifdef _XBOX - -#define XACT_DEBUGENGINE_REGISTRY_KEY TEXT("Software\\Microsoft\\XACT") -#define XACT_DEBUGENGINE_REGISTRY_VALUE TEXT("DebugEngine") - - -#ifdef __cplusplus - -__inline HRESULT __stdcall XACT3CreateEngine(DWORD dwCreationFlags, __deref_out IXACT3Engine** ppEngine) -{ - HRESULT hr; - HKEY key; - DWORD data; - DWORD type = REG_DWORD; - DWORD dataSize = sizeof(DWORD); - BOOL debug = (dwCreationFlags & XACT_FLAG_API_DEBUG_MODE) ? TRUE : FALSE; - BOOL audition = (dwCreationFlags & XACT_FLAG_API_AUDITION_MODE) ? TRUE : FALSE; - - // If neither the debug nor audition flags are set, see if the debug registry key is set - if(!debug && !audition && - (RegOpenKeyEx(HKEY_LOCAL_MACHINE, XACT_DEBUGENGINE_REGISTRY_KEY, 0, KEY_READ, &key) == ERROR_SUCCESS)) - { - if(RegQueryValueEx(key, XACT_DEBUGENGINE_REGISTRY_VALUE, NULL, &type, (LPBYTE)&data, &dataSize) == ERROR_SUCCESS) - { - if(data) - { - debug = TRUE; - } - } - RegCloseKey(key); - } - - // Priority order: Audition, Debug, Retail - hr = CoCreateInstance(audition ? __uuidof(XACTAuditionEngine) - : (debug ? __uuidof(XACTDebugEngine) : __uuidof(XACTEngine)), - NULL, CLSCTX_INPROC_SERVER, __uuidof(IXACT3Engine), (void**)ppEngine); - - // If debug engine does not exist fallback to retail version - if(FAILED(hr) && debug && !audition) - { - hr = CoCreateInstance(__uuidof(XACTEngine), NULL, CLSCTX_INPROC_SERVER, __uuidof(IXACT3Engine), (void**)ppEngine); - } - - return hr; -} - -#else // #ifdef __cplusplus - -__inline HRESULT __stdcall XACT3CreateEngine(DWORD dwCreationFlags, __deref_out IXACT3Engine** ppEngine) -{ - HRESULT hr; - HKEY key; - DWORD data; - DWORD type = REG_DWORD; - DWORD dataSize = sizeof(DWORD); - BOOL debug = (dwCreationFlags & XACT_FLAG_API_DEBUG_MODE) ? TRUE : FALSE; - BOOL audition = (dwCreationFlags & XACT_FLAG_API_AUDITION_MODE) ? TRUE : FALSE; - - // If neither the debug nor audition flags are set, see if the debug registry key is set - if(!debug && !audition && - (RegOpenKeyEx(HKEY_LOCAL_MACHINE, XACT_DEBUGENGINE_REGISTRY_KEY, 0, KEY_READ, &key) == ERROR_SUCCESS)) - { - if(RegQueryValueEx(key, XACT_DEBUGENGINE_REGISTRY_VALUE, NULL, &type, (LPBYTE)&data, &dataSize) == ERROR_SUCCESS) - { - if(data) - { - debug = TRUE; - } - } - RegCloseKey(key); - } - - // Priority order: Audition, Debug, Retail - hr = CoCreateInstance(audition ? &CLSID_XACTAuditionEngine - : (debug ? &CLSID_XACTDebugEngine : &CLSID_XACTEngine), - NULL, CLSCTX_INPROC_SERVER, &IID_IXACT3Engine, (void**)ppEngine); - - // If debug engine does not exist fallback to retail version - if(FAILED(hr) && debug && !audition) - { - hr = CoCreateInstance(&CLSID_XACTEngine, NULL, CLSCTX_INPROC_SERVER, &IID_IXACT3Engine, (void**)ppEngine); - } - - return hr; -} - -#endif // #ifdef __cplusplus - -#endif // #ifdef _XBOX - -//------------------------------------------------------------------------------ -// XACT specific error codes -//------------------------------------------------------------------------------ - -#define FACILITY_XACTENGINE 0xAC7 -#define XACTENGINEERROR(n) MAKE_HRESULT(SEVERITY_ERROR, FACILITY_XACTENGINE, n) - -#define XACTENGINE_E_OUTOFMEMORY E_OUTOFMEMORY // Out of memory -#define XACTENGINE_E_INVALIDARG E_INVALIDARG // Invalid arg -#define XACTENGINE_E_NOTIMPL E_NOTIMPL // Not implemented -#define XACTENGINE_E_FAIL E_FAIL // Unknown error - -#define XACTENGINE_E_ALREADYINITIALIZED XACTENGINEERROR(0x001) // The engine is already initialized -#define XACTENGINE_E_NOTINITIALIZED XACTENGINEERROR(0x002) // The engine has not been initialized -#define XACTENGINE_E_EXPIRED XACTENGINEERROR(0x003) // The engine has expired (demo or pre-release version) -#define XACTENGINE_E_NONOTIFICATIONCALLBACK XACTENGINEERROR(0x004) // No notification callback -#define XACTENGINE_E_NOTIFICATIONREGISTERED XACTENGINEERROR(0x005) // Notification already registered -#define XACTENGINE_E_INVALIDUSAGE XACTENGINEERROR(0x006) // Invalid usage -#define XACTENGINE_E_INVALIDDATA XACTENGINEERROR(0x007) // Invalid data -#define XACTENGINE_E_INSTANCELIMITFAILTOPLAY XACTENGINEERROR(0x008) // Fail to play due to instance limit -#define XACTENGINE_E_NOGLOBALSETTINGS XACTENGINEERROR(0x009) // Global Settings not loaded -#define XACTENGINE_E_INVALIDVARIABLEINDEX XACTENGINEERROR(0x00a) // Invalid variable index -#define XACTENGINE_E_INVALIDCATEGORY XACTENGINEERROR(0x00b) // Invalid category -#define XACTENGINE_E_INVALIDCUEINDEX XACTENGINEERROR(0x00c) // Invalid cue index -#define XACTENGINE_E_INVALIDWAVEINDEX XACTENGINEERROR(0x00d) // Invalid wave index -#define XACTENGINE_E_INVALIDTRACKINDEX XACTENGINEERROR(0x00e) // Invalid track index -#define XACTENGINE_E_INVALIDSOUNDOFFSETORINDEX XACTENGINEERROR(0x00f) // Invalid sound offset or index -#define XACTENGINE_E_READFILE XACTENGINEERROR(0x010) // Error reading a file -#define XACTENGINE_E_UNKNOWNEVENT XACTENGINEERROR(0x011) // Unknown event type -#define XACTENGINE_E_INCALLBACK XACTENGINEERROR(0x012) // Invalid call of method of function from callback -#define XACTENGINE_E_NOWAVEBANK XACTENGINEERROR(0x013) // No wavebank exists for desired operation -#define XACTENGINE_E_SELECTVARIATION XACTENGINEERROR(0x014) // Unable to select a variation -#define XACTENGINE_E_MULTIPLEAUDITIONENGINES XACTENGINEERROR(0x015) // There can be only one audition engine -#define XACTENGINE_E_WAVEBANKNOTPREPARED XACTENGINEERROR(0x016) // The wavebank is not prepared -#define XACTENGINE_E_NORENDERER XACTENGINEERROR(0x017) // No audio device found on. -#define XACTENGINE_E_INVALIDENTRYCOUNT XACTENGINEERROR(0x018) // Invalid entry count for channel maps -#define XACTENGINE_E_SEEKTIMEBEYONDCUEEND XACTENGINEERROR(0x019) // Time offset for seeking is beyond the cue end. -#define XACTENGINE_E_SEEKTIMEBEYONDWAVEEND XACTENGINEERROR(0x01a) // Time offset for seeking is beyond the wave end. -#define XACTENGINE_E_NOFRIENDLYNAMES XACTENGINEERROR(0x01b) // Friendly names are not included in the bank. - -#define XACTENGINE_E_AUDITION_WRITEFILE XACTENGINEERROR(0x101) // Error writing a file during auditioning -#define XACTENGINE_E_AUDITION_NOSOUNDBANK XACTENGINEERROR(0x102) // Missing a soundbank -#define XACTENGINE_E_AUDITION_INVALIDRPCINDEX XACTENGINEERROR(0x103) // Missing an RPC curve -#define XACTENGINE_E_AUDITION_MISSINGDATA XACTENGINEERROR(0x104) // Missing data for an audition command -#define XACTENGINE_E_AUDITION_UNKNOWNCOMMAND XACTENGINEERROR(0x105) // Unknown command -#define XACTENGINE_E_AUDITION_INVALIDDSPINDEX XACTENGINEERROR(0x106) // Missing a DSP parameter -#define XACTENGINE_E_AUDITION_MISSINGWAVE XACTENGINEERROR(0x107) // Wave does not exist in auditioned wavebank -#define XACTENGINE_E_AUDITION_CREATEDIRECTORYFAILED XACTENGINEERROR(0x108) // Failed to create a directory for streaming wavebank data -#define XACTENGINE_E_AUDITION_INVALIDSESSION XACTENGINEERROR(0x109) // Invalid audition session - -#endif // #ifndef GUID_DEFS_ONLY - -#endif // #ifndef _XACT3_H_ diff --git a/SDK/Include/xact3d3.h b/SDK/Include/xact3d3.h deleted file mode 100644 index f17e1e5..0000000 --- a/SDK/Include/xact3d3.h +++ /dev/null @@ -1,275 +0,0 @@ -/*-========================================================================-_ - | - XACT3D3 - | - | Copyright (c) Microsoft Corporation. All rights reserved. | - |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| - |VERSION: 0.1 MODEL: Unmanaged User-mode | - |CONTRACT: N / A EXCEPT: No Exceptions | - |PARENT: N / A MINREQ: Win2000, Xbox360 | - |PROJECT: XACT3D DIALECT: MS Visual C++ 7.0 | - |>------------------------------------------------------------------------<| - | DUTY: XACT 3D support | - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ - NOTES: - 1. See X3DAudio.h for information regarding X3DAudio types. */ - - -#ifndef __XACT3D3_H__ -#define __XACT3D3_H__ - -//---------------------------------------------------// - #include - #include - - #pragma warning(push) - #pragma warning(disable: 4701) // disable "local variable may be used without having been initialized" compile warning - - // Supported speaker positions, represented as azimuth angles. - // - // Here's a picture of the azimuth angles for the 8 cardinal points, - // seen from above. The emitter's base position is at the origin 0. - // - // FRONT - // | 0 <-- azimuth - // | - // 7pi/4 \ | / pi/4 - // \ | / - // LEFT \|/ RIGHT - // 3pi/2-------0-------pi/2 - // /|\ - // / | \ - // 5pi/4 / | \ 3pi/4 - // | - // | pi - // BACK - // - #define LEFT_AZIMUTH (3*X3DAUDIO_PI/2) - #define RIGHT_AZIMUTH (X3DAUDIO_PI/2) - #define FRONT_LEFT_AZIMUTH (7*X3DAUDIO_PI/4) - #define FRONT_RIGHT_AZIMUTH (X3DAUDIO_PI/4) - #define FRONT_CENTER_AZIMUTH 0.0f - #define LOW_FREQUENCY_AZIMUTH X3DAUDIO_2PI - #define BACK_LEFT_AZIMUTH (5*X3DAUDIO_PI/4) - #define BACK_RIGHT_AZIMUTH (3*X3DAUDIO_PI/4) - #define BACK_CENTER_AZIMUTH X3DAUDIO_PI - #define FRONT_LEFT_OF_CENTER_AZIMUTH (15*X3DAUDIO_PI/8) - #define FRONT_RIGHT_OF_CENTER_AZIMUTH (X3DAUDIO_PI/8) - - -//-----------------------------------------------------// - // Supported emitter channel layouts: - static const float aStereoLayout[] = - { - LEFT_AZIMUTH, - RIGHT_AZIMUTH - }; - static const float a2Point1Layout[] = - { - LEFT_AZIMUTH, - RIGHT_AZIMUTH, - LOW_FREQUENCY_AZIMUTH - }; - static const float aQuadLayout[] = - { - FRONT_LEFT_AZIMUTH, - FRONT_RIGHT_AZIMUTH, - BACK_LEFT_AZIMUTH, - BACK_RIGHT_AZIMUTH - }; - static const float a4Point1Layout[] = - { - FRONT_LEFT_AZIMUTH, - FRONT_RIGHT_AZIMUTH, - LOW_FREQUENCY_AZIMUTH, - BACK_LEFT_AZIMUTH, - BACK_RIGHT_AZIMUTH - }; - static const float a5Point1Layout[] = - { - FRONT_LEFT_AZIMUTH, - FRONT_RIGHT_AZIMUTH, - FRONT_CENTER_AZIMUTH, - LOW_FREQUENCY_AZIMUTH, - BACK_LEFT_AZIMUTH, - BACK_RIGHT_AZIMUTH - }; - static const float a7Point1Layout[] = - { - FRONT_LEFT_AZIMUTH, - FRONT_RIGHT_AZIMUTH, - FRONT_CENTER_AZIMUTH, - LOW_FREQUENCY_AZIMUTH, - BACK_LEFT_AZIMUTH, - BACK_RIGHT_AZIMUTH, - LEFT_AZIMUTH, - RIGHT_AZIMUTH - }; - - -//-------------------------------------------------------// - //// - // DESCRIPTION: - // Initializes the 3D API's: - // - // REMARKS: - // This method only needs to be called once. - // X3DAudio will be initialized such that its speaker channel mask - // matches the format of the given XACT engine's final mix. - // - // PARAMETERS: - // pEngine - [in] XACT engine - // X3DInstance - [out] X3DAudio instance handle - // - // RETURN VALUE: - // HResult error code - //// - EXTERN_C HRESULT inline XACT3DInitialize (__in IXACT3Engine* pEngine, __in X3DAUDIO_HANDLE X3DInstance) - { - HRESULT hr = S_OK; - if (pEngine == NULL) { - hr = E_POINTER; - } - - XACTVARIABLEVALUE nSpeedOfSound; - if (SUCCEEDED(hr)) { - XACTVARIABLEINDEX xactSpeedOfSoundID = pEngine->GetGlobalVariableIndex("SpeedOfSound"); - hr = pEngine->GetGlobalVariable(xactSpeedOfSoundID, &nSpeedOfSound); - } - - if (SUCCEEDED(hr)) { - WAVEFORMATEXTENSIBLE wfxFinalMixFormat; - hr = pEngine->GetFinalMixFormat(&wfxFinalMixFormat); - if (SUCCEEDED(hr)) { - X3DAudioInitialize(wfxFinalMixFormat.dwChannelMask, nSpeedOfSound, X3DInstance); - } - } - return hr; - } - - - //// - // DESCRIPTION: - // Calculates DSP settings with respect to 3D parameters: - // - // REMARKS: - // Note the following flags are always specified for XACT3D calculation: - // X3DAUDIO_CALCULATE_MATRIX | X3DAUDIO_CALCULATE_DOPPLER | X3DAUDIO_CALCULATE_EMITTER_ANGLE - // - // This means the caller must set at least the following fields: - // X3DAUDIO_LISTENER.OrientFront - // X3DAUDIO_LISTENER.OrientTop - // X3DAUDIO_LISTENER.Position - // X3DAUDIO_LISTENER.Velocity - // - // X3DAUDIO_EMITTER.OrientFront - // X3DAUDIO_EMITTER.OrientTop, if emitter is multi-channel - // X3DAUDIO_EMITTER.Position - // X3DAUDIO_EMITTER.Velocity - // X3DAUDIO_EMITTER.InnerRadius - // X3DAUDIO_EMITTER.InnerRadiusAngle - // X3DAUDIO_EMITTER.ChannelCount - // X3DAUDIO_EMITTER.CurveDistanceScaler - // X3DAUDIO_EMITTER.DopplerScaler - // - // X3DAUDIO_DSP_SETTINGS.pMatrixCoefficients, the caller need only allocate space for SrcChannelCount*DstChannelCount elements - // X3DAUDIO_DSP_SETTINGS.SrcChannelCount - // X3DAUDIO_DSP_SETTINGS.DstChannelCount - // - // If X3DAUDIO_EMITTER.pChannelAzimuths is left NULL for multi-channel emitters, - // a default channel radius and channel azimuth array will be applied below. - // Distance curves such as X3DAUDIO_EMITTER.pVolumeCurve should be - // left NULL as XACT's native RPCs will be used to define DSP behaviour - // with respect to normalized distance. - // - // See X3DAudio.h for information regarding X3DAudio types. - // - // PARAMETERS: - // X3DInstance - [in] X3DAudio instance handle, returned from XACT3DInitialize() - // pListener - [in] point of 3D audio reception - // pEmitter - [in] 3D audio source - // pDSPSettings - [out] receives calculation results, applied to an XACT cue via XACT3DApply() - // - // RETURN VALUE: - // HResult error code - //// - EXTERN_C HRESULT inline XACT3DCalculate (__in X3DAUDIO_HANDLE X3DInstance, __in const X3DAUDIO_LISTENER* pListener, __inout X3DAUDIO_EMITTER* pEmitter, __inout X3DAUDIO_DSP_SETTINGS* pDSPSettings) - { - HRESULT hr = S_OK; - if (pListener == NULL || pEmitter == NULL || pDSPSettings == NULL) { - hr = E_POINTER; - } - - if (SUCCEEDED(hr)) { - if (pEmitter->ChannelCount > 1 && pEmitter->pChannelAzimuths == NULL) { - pEmitter->ChannelRadius = 1.0f; - - switch (pEmitter->ChannelCount) { - case 2: pEmitter->pChannelAzimuths = (float*)&aStereoLayout[0]; break; - case 3: pEmitter->pChannelAzimuths = (float*)&a2Point1Layout[0]; break; - case 4: pEmitter->pChannelAzimuths = (float*)&aQuadLayout[0]; break; - case 5: pEmitter->pChannelAzimuths = (float*)&a4Point1Layout[0]; break; - case 6: pEmitter->pChannelAzimuths = (float*)&a5Point1Layout[0]; break; - case 8: pEmitter->pChannelAzimuths = (float*)&a7Point1Layout[0]; break; - default: hr = E_FAIL; break; - } - } - } - - if (SUCCEEDED(hr)) { - static X3DAUDIO_DISTANCE_CURVE_POINT DefaultCurvePoints[2] = { 0.0f, 1.0f, 1.0f, 1.0f }; - static X3DAUDIO_DISTANCE_CURVE DefaultCurve = { (X3DAUDIO_DISTANCE_CURVE_POINT*)&DefaultCurvePoints[0], 2 }; - if (pEmitter->pVolumeCurve == NULL) { - pEmitter->pVolumeCurve = &DefaultCurve; - } - if (pEmitter->pLFECurve == NULL) { - pEmitter->pLFECurve = &DefaultCurve; - } - - X3DAudioCalculate(X3DInstance, pListener, pEmitter, (X3DAUDIO_CALCULATE_MATRIX | X3DAUDIO_CALCULATE_DOPPLER | X3DAUDIO_CALCULATE_EMITTER_ANGLE), pDSPSettings); - } - - return hr; - } - - - //// - // DESCRIPTION: - // Applies results from a call to XACT3DCalculate() to a cue. - // - // PARAMETERS: - // pDSPSettings - [in] calculation results generated by XACT3DCalculate() - // pCue - [in] cue to which to apply pDSPSettings - // - // RETURN VALUE: - // HResult error code - //// - EXTERN_C HRESULT inline XACT3DApply (__in const X3DAUDIO_DSP_SETTINGS* pDSPSettings, __in IXACT3Cue* pCue) - { - HRESULT hr = S_OK; - if (pDSPSettings == NULL || pCue == NULL) { - hr = E_POINTER; - } - - if (SUCCEEDED(hr)) { - hr = pCue->SetMatrixCoefficients(pDSPSettings->SrcChannelCount, pDSPSettings->DstChannelCount, pDSPSettings->pMatrixCoefficients); - } - if (SUCCEEDED(hr)) { - XACTVARIABLEINDEX xactDistanceID = pCue->GetVariableIndex("Distance"); - hr = pCue->SetVariable(xactDistanceID, pDSPSettings->EmitterToListenerDistance); - } - if (SUCCEEDED(hr)) { - XACTVARIABLEINDEX xactDopplerID = pCue->GetVariableIndex("DopplerPitchScalar"); - hr = pCue->SetVariable(xactDopplerID, pDSPSettings->DopplerFactor); - } - if (SUCCEEDED(hr)) { - XACTVARIABLEINDEX xactOrientationID = pCue->GetVariableIndex("OrientationAngle"); - hr = pCue->SetVariable(xactOrientationID, pDSPSettings->EmitterToListenerAngle * (180.0f / X3DAUDIO_PI)); - } - - return hr; - } - - - #pragma warning(pop) - -#endif // __XACT3D3_H__ -//---------------------------------<-EOF->----------------------------------// diff --git a/SDK/Include/xact3wb.h b/SDK/Include/xact3wb.h deleted file mode 100644 index 521667b..0000000 --- a/SDK/Include/xact3wb.h +++ /dev/null @@ -1,598 +0,0 @@ -/*************************************************************************** - * - * Copyright (c) Microsoft Corporation. All rights reserved. - * - * File: xact3wb.h - * Content: XACT 3 wave bank definitions. - * - ****************************************************************************/ - -#ifndef __XACT3WB_H__ -#define __XACT3WB_H__ - -#ifdef _XBOX -# include -#else -# include -#endif - -#include -#include - -#pragma warning(push) -#pragma warning(disable:4201) -#pragma warning(disable:4214) // nonstandard extension used : bit field types other than int - -#pragma pack(push, 1) -#if !defined(_X86_) - #define XACTUNALIGNED __unaligned -#else - #define XACTUNALIGNED -#endif - -#ifdef _M_PPCBE -#pragma bitfield_order(push, lsb_to_msb) -#endif - -#define WAVEBANK_HEADER_SIGNATURE 'DNBW' // WaveBank RIFF chunk signature -#define WAVEBANK_HEADER_VERSION 44 // Current wavebank file version - -#define WAVEBANK_BANKNAME_LENGTH 64 // Wave bank friendly name length, in characters -#define WAVEBANK_ENTRYNAME_LENGTH 64 // Wave bank entry friendly name length, in characters - -#define WAVEBANK_MAX_DATA_SEGMENT_SIZE 0xFFFFFFFF // Maximum wave bank data segment size, in bytes -#define WAVEBANK_MAX_COMPACT_DATA_SEGMENT_SIZE 0x001FFFFF // Maximum compact wave bank data segment size, in bytes - -typedef DWORD WAVEBANKOFFSET; - -// -// Bank flags -// - -#define WAVEBANK_TYPE_BUFFER 0x00000000 // In-memory buffer -#define WAVEBANK_TYPE_STREAMING 0x00000001 // Streaming -#define WAVEBANK_TYPE_MASK 0x00000001 - -#define WAVEBANK_FLAGS_ENTRYNAMES 0x00010000 // Bank includes entry names -#define WAVEBANK_FLAGS_COMPACT 0x00020000 // Bank uses compact format -#define WAVEBANK_FLAGS_SYNC_DISABLED 0x00040000 // Bank is disabled for audition sync -#define WAVEBANK_FLAGS_SEEKTABLES 0x00080000 // Bank includes seek tables. -#define WAVEBANK_FLAGS_MASK 0x000F0000 - -// -// Entry flags -// - -#define WAVEBANKENTRY_FLAGS_READAHEAD 0x00000001 // Enable stream read-ahead -#define WAVEBANKENTRY_FLAGS_LOOPCACHE 0x00000002 // One or more looping sounds use this wave -#define WAVEBANKENTRY_FLAGS_REMOVELOOPTAIL 0x00000004 // Remove data after the end of the loop region -#define WAVEBANKENTRY_FLAGS_IGNORELOOP 0x00000008 // Used internally when the loop region can't be used -#define WAVEBANKENTRY_FLAGS_MASK 0x00000008 - -// -// Entry wave format identifiers -// - -#define WAVEBANKMINIFORMAT_TAG_PCM 0x0 // PCM data -#define WAVEBANKMINIFORMAT_TAG_XMA 0x1 // XMA data -#define WAVEBANKMINIFORMAT_TAG_ADPCM 0x2 // ADPCM data -#define WAVEBANKMINIFORMAT_TAG_WMA 0x3 // WMA data - -#define WAVEBANKMINIFORMAT_BITDEPTH_8 0x0 // 8-bit data (PCM only) -#define WAVEBANKMINIFORMAT_BITDEPTH_16 0x1 // 16-bit data (PCM only) - -// -// Arbitrary fixed sizes -// -#define WAVEBANKENTRY_XMASTREAMS_MAX 3 // enough for 5.1 channel audio -#define WAVEBANKENTRY_XMACHANNELS_MAX 6 // enough for 5.1 channel audio (cf. XAUDIOCHANNEL_SOURCEMAX) - -// -// DVD data sizes -// - -#define WAVEBANK_DVD_SECTOR_SIZE 2048 -#define WAVEBANK_DVD_BLOCK_SIZE (WAVEBANK_DVD_SECTOR_SIZE * 16) - -// -// Bank alignment presets -// - -#define WAVEBANK_ALIGNMENT_MIN 4 // Minimum alignment -#define WAVEBANK_ALIGNMENT_DVD WAVEBANK_DVD_SECTOR_SIZE // DVD-optimized alignment - -// -// Wave bank segment identifiers -// - -typedef enum WAVEBANKSEGIDX -{ - WAVEBANK_SEGIDX_BANKDATA = 0, // Bank data - WAVEBANK_SEGIDX_ENTRYMETADATA, // Entry meta-data - WAVEBANK_SEGIDX_SEEKTABLES, // Storage for seek tables for the encoded waves. - WAVEBANK_SEGIDX_ENTRYNAMES, // Entry friendly names - WAVEBANK_SEGIDX_ENTRYWAVEDATA, // Entry wave data - WAVEBANK_SEGIDX_COUNT -} WAVEBANKSEGIDX, *LPWAVEBANKSEGIDX; - -typedef const WAVEBANKSEGIDX *LPCWAVEBANKSEGIDX; - -// -// Endianness -// - -#ifdef __cplusplus - -namespace XACTWaveBank -{ - __inline void SwapBytes(XACTUNALIGNED DWORD &dw) - { - -#ifdef _X86_ - - __asm - { - mov edi, dw - mov eax, [edi] - bswap eax - mov [edi], eax - } - -#else // _X86_ - - dw = _byteswap_ulong(dw); - -#endif // _X86_ - - } - - __inline void SwapBytes(XACTUNALIGNED WORD &w) - { - -#ifdef _X86_ - - __asm - { - mov edi, w - mov ax, [edi] - xchg ah, al - mov [edi], ax - } - -#else // _X86_ - - w = _byteswap_ushort(w); - -#endif // _X86_ - - } - -} - -#endif // __cplusplus - -// -// Wave bank region in bytes. -// - -typedef struct WAVEBANKREGION -{ - DWORD dwOffset; // Region offset, in bytes. - DWORD dwLength; // Region length, in bytes. - -#ifdef __cplusplus - - void SwapBytes(void) - { - XACTWaveBank::SwapBytes(dwOffset); - XACTWaveBank::SwapBytes(dwLength); - } - -#endif // __cplusplus - -} WAVEBANKREGION, *LPWAVEBANKREGION; - -typedef const WAVEBANKREGION *LPCWAVEBANKREGION; - - -// -// Wave bank region in samples. -// - -typedef struct WAVEBANKSAMPLEREGION -{ - DWORD dwStartSample; // Start sample for the region. - DWORD dwTotalSamples; // Region length in samples. - -#ifdef __cplusplus - - void SwapBytes(void) - { - XACTWaveBank::SwapBytes(dwStartSample); - XACTWaveBank::SwapBytes(dwTotalSamples); - } - -#endif // __cplusplus - -} WAVEBANKSAMPLEREGION, *LPWAVEBANKSAMPLEREGION; - -typedef const WAVEBANKSAMPLEREGION *LPCWAVEBANKSAMPLEREGION; - - -// -// Wave bank file header -// - -typedef struct WAVEBANKHEADER -{ - DWORD dwSignature; // File signature - DWORD dwVersion; // Version of the tool that created the file - DWORD dwHeaderVersion; // Version of the file format - WAVEBANKREGION Segments[WAVEBANK_SEGIDX_COUNT]; // Segment lookup table - -#ifdef __cplusplus - - void SwapBytes(void) - { - XACTWaveBank::SwapBytes(dwSignature); - XACTWaveBank::SwapBytes(dwVersion); - XACTWaveBank::SwapBytes(dwHeaderVersion); - - for(int i = 0; i < WAVEBANK_SEGIDX_COUNT; i++) - { - Segments[i].SwapBytes(); - } - } - -#endif // __cplusplus - -} WAVEBANKHEADER, *LPWAVEBANKHEADER; - -typedef const WAVEBANKHEADER *LPCWAVEBANKHEADER; - -// -// Table for converting WMA Average Bytes per Second values to the WAVEBANKMINIWAVEFORMAT wBlockAlign field -// NOTE: There can be a max of 8 values in the table. -// - -#define MAX_WMA_AVG_BYTES_PER_SEC_ENTRIES 7 - -static const DWORD aWMAAvgBytesPerSec[] = -{ - 12000, - 24000, - 4000, - 6000, - 8000, - 20000, - 2500 -}; -// bitrate = entry * 8 - -// -// Table for converting WMA Block Align values to the WAVEBANKMINIWAVEFORMAT wBlockAlign field -// NOTE: There can be a max of 32 values in the table. -// - -#define MAX_WMA_BLOCK_ALIGN_ENTRIES 17 - -static const DWORD aWMABlockAlign[] = -{ - 929, - 1487, - 1280, - 2230, - 8917, - 8192, - 4459, - 5945, - 2304, - 1536, - 1485, - 1008, - 2731, - 4096, - 6827, - 5462, - 1280 -}; - -struct WAVEBANKENTRY; - -// -// Entry compressed data format -// - -typedef union WAVEBANKMINIWAVEFORMAT -{ - struct - { - DWORD wFormatTag : 2; // Format tag - DWORD nChannels : 3; // Channel count (1 - 6) - DWORD nSamplesPerSec : 18; // Sampling rate - DWORD wBlockAlign : 8; // Block alignment. For WMA, lower 6 bits block alignment index, upper 2 bits bytes-per-second index. - DWORD wBitsPerSample : 1; // Bits per sample (8 vs. 16, PCM only); WMAudio2/WMAudio3 (for WMA) - }; - - DWORD dwValue; - -#ifdef __cplusplus - - void SwapBytes(void) - { - XACTWaveBank::SwapBytes(dwValue); - } - - WORD BitsPerSample() const - { - if (wFormatTag == WAVEBANKMINIFORMAT_TAG_XMA) - return XMA_OUTPUT_SAMPLE_BITS; // First, because most common on Xbox 360 - if (wFormatTag == WAVEBANKMINIFORMAT_TAG_WMA) - return 16; - if (wFormatTag == WAVEBANKMINIFORMAT_TAG_ADPCM) - return 4; // MSADPCM_BITS_PER_SAMPLE == 4 - - // wFormatTag must be WAVEBANKMINIFORMAT_TAG_PCM (2 bits can only represent 4 different values) - return (wBitsPerSample == WAVEBANKMINIFORMAT_BITDEPTH_16) ? 16 : 8; - } - - #define ADPCM_MINIWAVEFORMAT_BLOCKALIGN_CONVERSION_OFFSET 22 - DWORD BlockAlign() const - { - DWORD dwReturn = 0; - - switch (wFormatTag) - { - case WAVEBANKMINIFORMAT_TAG_PCM: - dwReturn = wBlockAlign; - break; - - case WAVEBANKMINIFORMAT_TAG_XMA: - dwReturn = nChannels * XMA_OUTPUT_SAMPLE_BITS / 8; - break; - - case WAVEBANKMINIFORMAT_TAG_ADPCM: - dwReturn = (wBlockAlign + ADPCM_MINIWAVEFORMAT_BLOCKALIGN_CONVERSION_OFFSET) * nChannels; - break; - - case WAVEBANKMINIFORMAT_TAG_WMA: - { - DWORD dwBlockAlignIndex = wBlockAlign & 0x1F; - if (dwBlockAlignIndex < MAX_WMA_BLOCK_ALIGN_ENTRIES) - dwReturn = aWMABlockAlign[dwBlockAlignIndex]; - } - break; - } - - return dwReturn; - } - - DWORD AvgBytesPerSec() const - { - DWORD dwReturn = 0; - - switch (wFormatTag) - { - case WAVEBANKMINIFORMAT_TAG_PCM: - case WAVEBANKMINIFORMAT_TAG_XMA: - dwReturn = nSamplesPerSec * wBlockAlign; - break; - - case WAVEBANKMINIFORMAT_TAG_ADPCM: - { - DWORD blockAlign = BlockAlign(); - DWORD samplesPerAdpcmBlock = AdpcmSamplesPerBlock(); - dwReturn = blockAlign * nSamplesPerSec / samplesPerAdpcmBlock; - } - break; - - case WAVEBANKMINIFORMAT_TAG_WMA: - { - DWORD dwBytesPerSecIndex = wBlockAlign >> 5; - if (dwBytesPerSecIndex < MAX_WMA_AVG_BYTES_PER_SEC_ENTRIES) - dwReturn = aWMAAvgBytesPerSec[dwBytesPerSecIndex]; - } - break; - } - - return dwReturn; - } - - DWORD EncodeWMABlockAlign(DWORD dwBlockAlign, DWORD dwAvgBytesPerSec) const - { - DWORD dwReturn = 0; - DWORD dwBlockAlignIndex = 0; - DWORD dwBytesPerSecIndex = 0; - - for (; dwBlockAlignIndex < MAX_WMA_BLOCK_ALIGN_ENTRIES && dwBlockAlign != aWMABlockAlign[dwBlockAlignIndex]; dwBlockAlignIndex++); - - if (dwBlockAlignIndex < MAX_WMA_BLOCK_ALIGN_ENTRIES) - { - for (; dwBytesPerSecIndex < MAX_WMA_AVG_BYTES_PER_SEC_ENTRIES && dwAvgBytesPerSec != aWMAAvgBytesPerSec[dwBytesPerSecIndex]; dwBytesPerSecIndex++); - - if (dwBytesPerSecIndex < MAX_WMA_AVG_BYTES_PER_SEC_ENTRIES) - { - dwReturn = dwBlockAlignIndex | (dwBytesPerSecIndex << 5); - } - } - - return dwReturn; - } - - - void XMA2FillFormatEx(XMA2WAVEFORMATEX *fmt, WORD blockCount, const struct WAVEBANKENTRY* entry) const; - - DWORD AdpcmSamplesPerBlock() const - { - DWORD nBlockAlign = (wBlockAlign + ADPCM_MINIWAVEFORMAT_BLOCKALIGN_CONVERSION_OFFSET) * nChannels; - return nBlockAlign * 2 / (DWORD)nChannels - 12; - } - - void AdpcmFillCoefficientTable(ADPCMWAVEFORMAT *fmt) const - { - // These are fixed since we are always using MS ADPCM - fmt->wNumCoef = 7; /* MSADPCM_NUM_COEFFICIENTS */ - - static ADPCMCOEFSET aCoef[7] = { { 256, 0}, {512, -256}, {0,0}, {192,64}, {240,0}, {460, -208}, {392,-232} }; - memcpy( &fmt->aCoef, aCoef, sizeof(aCoef) ); - } - -#endif // __cplusplus - -} WAVEBANKMINIWAVEFORMAT, *LPWAVEBANKMINIWAVEFORMAT; - -typedef const WAVEBANKMINIWAVEFORMAT *LPCWAVEBANKMINIWAVEFORMAT; - -// -// Entry meta-data -// - -typedef struct WAVEBANKENTRY -{ - union - { - struct - { - // Entry flags - DWORD dwFlags : 4; - - // Duration of the wave, in units of one sample. - // For instance, a ten second long wave sampled - // at 48KHz would have a duration of 480,000. - // This value is not affected by the number of - // channels, the number of bits per sample, or the - // compression format of the wave. - DWORD Duration : 28; - }; - DWORD dwFlagsAndDuration; - }; - - WAVEBANKMINIWAVEFORMAT Format; // Entry format. - WAVEBANKREGION PlayRegion; // Region within the wave data segment that contains this entry. - WAVEBANKSAMPLEREGION LoopRegion; // Region within the wave data (in samples) that should loop. - -#ifdef __cplusplus - - void SwapBytes(void) - { - XACTWaveBank::SwapBytes(dwFlagsAndDuration); - Format.SwapBytes(); - PlayRegion.SwapBytes(); - LoopRegion.SwapBytes(); - } - -#endif // __cplusplus - -} WAVEBANKENTRY, *LPWAVEBANKENTRY; - -typedef const WAVEBANKENTRY *LPCWAVEBANKENTRY; - -// -// Compact entry meta-data -// - -typedef struct WAVEBANKENTRYCOMPACT -{ - DWORD dwOffset : 21; // Data offset, in sectors - DWORD dwLengthDeviation : 11; // Data length deviation, in bytes - -#ifdef __cplusplus - - void SwapBytes(void) - { - XACTWaveBank::SwapBytes(*(LPDWORD)this); - } - -#endif // __cplusplus - -} WAVEBANKENTRYCOMPACT, *LPWAVEBANKENTRYCOMPACT; - -typedef const WAVEBANKENTRYCOMPACT *LPCWAVEBANKENTRYCOMPACT; - -// -// Bank data segment -// - -typedef struct WAVEBANKDATA -{ - DWORD dwFlags; // Bank flags - DWORD dwEntryCount; // Number of entries in the bank - CHAR szBankName[WAVEBANK_BANKNAME_LENGTH]; // Bank friendly name - DWORD dwEntryMetaDataElementSize; // Size of each entry meta-data element, in bytes - DWORD dwEntryNameElementSize; // Size of each entry name element, in bytes - DWORD dwAlignment; // Entry alignment, in bytes - WAVEBANKMINIWAVEFORMAT CompactFormat; // Format data for compact bank - FILETIME BuildTime; // Build timestamp - -#ifdef __cplusplus - - void SwapBytes(void) - { - XACTWaveBank::SwapBytes(dwFlags); - XACTWaveBank::SwapBytes(dwEntryCount); - XACTWaveBank::SwapBytes(dwEntryMetaDataElementSize); - XACTWaveBank::SwapBytes(dwEntryNameElementSize); - XACTWaveBank::SwapBytes(dwAlignment); - CompactFormat.SwapBytes(); - XACTWaveBank::SwapBytes(BuildTime.dwLowDateTime); - XACTWaveBank::SwapBytes(BuildTime.dwHighDateTime); - } - -#endif // __cplusplus - -} WAVEBANKDATA, *LPWAVEBANKDATA; - -typedef const WAVEBANKDATA *LPCWAVEBANKDATA; - -inline void WAVEBANKMINIWAVEFORMAT::XMA2FillFormatEx(XMA2WAVEFORMATEX *fmt, WORD blockCount, const WAVEBANKENTRY* entry) const -{ - // Note caller is responsbile for filling out fmt->wfx with other helper functions. - - fmt->NumStreams = (WORD)( (nChannels + 1) / 2 ); - - switch (nChannels) - { - case 1: fmt->ChannelMask = SPEAKER_MONO; break; - case 2: fmt->ChannelMask = SPEAKER_STEREO; break; - case 3: fmt->ChannelMask = SPEAKER_2POINT1; break; - case 4: fmt->ChannelMask = SPEAKER_QUAD; break; - case 5: fmt->ChannelMask = SPEAKER_4POINT1; break; - case 6: fmt->ChannelMask = SPEAKER_5POINT1; break; - case 7: fmt->ChannelMask = SPEAKER_5POINT1 | SPEAKER_BACK_CENTER; break; - case 8: fmt->ChannelMask = SPEAKER_7POINT1; break; - default: fmt->ChannelMask = 0; break; - } - - fmt->SamplesEncoded = entry->Duration; - fmt->BytesPerBlock = 65536; /* XACT_FIXED_XMA_BLOCK_SIZE */ - - fmt->PlayBegin = entry->PlayRegion.dwOffset; - fmt->PlayLength = entry->PlayRegion.dwLength; - - if (entry->LoopRegion.dwTotalSamples > 0) - { - fmt->LoopBegin = entry->LoopRegion.dwStartSample; - fmt->LoopLength = entry->LoopRegion.dwTotalSamples; - fmt->LoopCount = 0xff; /* XACTLOOPCOUNT_INFINITE */ - } - else - { - fmt->LoopBegin = 0; - fmt->LoopLength = 0; - fmt->LoopCount = 0; - } - - fmt->EncoderVersion = 4; // XMAENCODER_VERSION_XMA2 - - fmt->BlockCount = blockCount; -} - -#ifdef _M_PPCBE -#pragma bitfield_order(pop) -#endif - -#pragma warning(pop) -#pragma pack(pop) - -#endif // __XACTWB_H__ - diff --git a/SDK/Include/xma2defs.h b/SDK/Include/xma2defs.h deleted file mode 100644 index 13a4306..0000000 --- a/SDK/Include/xma2defs.h +++ /dev/null @@ -1,718 +0,0 @@ -/*************************************************************************** - * - * Copyright (c) Microsoft Corporation. All rights reserved. - * - * File: xma2defs.h - * Content: Constants, data types and functions for XMA2 compressed audio. - * - ***************************************************************************/ - -#ifndef __XMA2DEFS_INCLUDED__ -#define __XMA2DEFS_INCLUDED__ - -#include // Markers for documenting API semantics -#include // For S_OK, E_FAIL -#include // Basic data types and constants for audio work - - -/*************************************************************************** - * Overview - ***************************************************************************/ - -// A typical XMA2 file contains these RIFF chunks: -// -// 'fmt' or 'XMA2' chunk (or both): A description of the XMA data's structure -// and characteristics (length, channels, sample rate, loops, block size, etc). -// -// 'seek' chunk: A seek table to help navigate the XMA data. -// -// 'data' chunk: The encoded XMA2 data. -// -// The encoded XMA2 data is structured as a set of BLOCKS, which contain PACKETS, -// which contain FRAMES, which contain SUBFRAMES (roughly speaking). The frames -// in a file may also be divided into several subsets, called STREAMS. -// -// FRAME: A variable-sized segment of XMA data that decodes to exactly 512 mono -// or stereo PCM samples. This is the smallest unit of XMA data that can -// be decoded in isolation. Frames are an arbitrary number of bits in -// length, and need not be byte-aligned. See "XMA frame structure" below. -// -// SUBFRAME: A region of bits in an XMA frame that decodes to 128 mono or stereo -// samples. The XMA decoder cannot decode a subframe in isolation; it needs -// a whole frame to work with. However, it can begin emitting the frame's -// decoded samples at any one of the four subframe boundaries. Subframes -// can be addressed for seeking and looping purposes. -// -// PACKET: A 2Kb region containing a 32-bit header and some XMA frames. Frames -// can (and usually do) span packets. A packet's header includes the offset -// in bits of the first frame that begins within that packet. All of the -// frames that begin in a given packet belong to the same "stream" (see the -// Multichannel Audio section below). -// -// STREAM: A set of packets within an XMA file that all contain data for the -// same mono or stereo component of a PCM file with more than two channels. -// The packets comprising a given stream may be interleaved with each other -// more or less arbitrarily; see Multichannel Audio. -// -// BLOCK: An array of XMA packets; or, to break it down differently, a series of -// consecutive XMA frames, padded at the end with reserved data. A block -// must contain at least one 2Kb packet per stream, and it can hold up to -// 4095 packets (8190Kb), but its size is typically in the 32Kb-128Kb range. -// (The size chosen involves a trade-off between memory use and efficiency -// of reading from permanent storage.) -// -// XMA frames do not span blocks, so a block is guaranteed to begin with a -// set of complete frames, one per stream. Also, a block in a multi-stream -// XMA2 file always contains the same number of samples for each stream; -// see Multichannel Audio. -// -// The 'data' chunk in an XMA2 file is an array of XMA2WAVEFORMAT.BlockCount XMA -// blocks, all the same size (as specified in XMA2WAVEFORMAT.BlockSizeInBytes) -// except for the last one, which may be shorter. - - -// MULTICHANNEL AUDIO: the XMA decoder can only decode raw XMA data into either -// mono or stereo PCM data. In order to encode a 6-channel file (say), the file -// must be deinterleaved into 3 stereo streams that are encoded independently, -// producing 3 encoded XMA data streams. Then the packets in these 3 streams -// are interleaved to produce a single XMA2 file, and some information is added -// to the file so that the original 6-channel audio can be reconstructed at -// decode time. This works using the concept of an XMA stream (see above). -// -// The frames for all the streams in an XMA file are interleaved in an arbitrary -// order. To locate a frame that belongs to a given stream in a given XMA block, -// you must examine the first few packets in the block. Here (and only here) the -// packets are guaranteed to be presented in stream order, so that all frames -// beginning in packet 0 belong to stream 0 (the first stereo pair), etc. -// -// (This means that when decoding multi-stream XMA files, only entire XMA blocks -// should be submitted to the decoder; otherwise it cannot know which frames -// belong to which stream.) -// -// Once you have one frame that belongs to a given stream, you can find the next -// one by looking at the frame's 'NextFrameOffsetBits' value (which is stored in -// its first 15 bits; see XMAFRAME below). The GetXmaFrameBitPosition function -// uses this technique. - - -// SEEKING IN XMA2 FILES: Here is some pseudocode to find the byte position and -// subframe in an XMA2 file which will contain sample S when decoded. -// -// 1. Traverse the seek table to find the XMA2 block containing sample S. The -// seek table is an array of big-endian DWORDs, one per block in the file. -// The Nth DWORD is the total number of PCM samples that would be obtained -// by decoding the entire XMA file up to the end of block N. Hence, the -// block we want is the first one whose seek table entry is greater than S. -// (See the GetXmaBlockContainingSample helper function.) -// -// 2. Calculate which frame F within the block found above contains sample S. -// Since each frame decodes to 512 samples, this is straightforward. The -// first frame in the block produces samples X to X + 512, where X is the -// seek table entry for the prior block. So F is (S - X) / 512. -// -// 3. Find the bit offset within the block where frame F starts. Since frames -// are variable-sized, this can only be done by traversing all the frames in -// the block until we reach frame F. (See GetXmaFrameBitPosition.) -// -// 4. Frame F has four 128-sample subframes. To find the subframe containing S, -// we can use the formula (S % 512) / 128. -// -// In the case of multi-stream XMA files, sample S is a multichannel sample with -// parts coming from several frames, one per stream. To find all these frames, -// steps 2-4 need to be repeated for each stream N, using the knowledge that the -// first packets in a block are presented in stream order. The frame traversal -// in step 3 must be started at the first frame in the Nth packet of the block, -// which will be the first frame for stream N. (And the packet header will tell -// you the first frame's start position within the packet.) -// -// Step 1 can be performed using the GetXmaBlockContainingSample function below, -// and steps 2-4 by calling GetXmaDecodePositionForSample once for each stream. - - - -/*************************************************************************** - * XMA constants - ***************************************************************************/ - -// Size of the PCM samples produced by the XMA decoder -#define XMA_OUTPUT_SAMPLE_BYTES 2u -#define XMA_OUTPUT_SAMPLE_BITS (XMA_OUTPUT_SAMPLE_BYTES * 8u) - -// Size of an XMA packet -#define XMA_BYTES_PER_PACKET 2048u -#define XMA_BITS_PER_PACKET (XMA_BYTES_PER_PACKET * 8u) - -// Size of an XMA packet header -#define XMA_PACKET_HEADER_BYTES 4u -#define XMA_PACKET_HEADER_BITS (XMA_PACKET_HEADER_BYTES * 8u) - -// Sample blocks in a decoded XMA frame -#define XMA_SAMPLES_PER_FRAME 512u - -// Sample blocks in a decoded XMA subframe -#define XMA_SAMPLES_PER_SUBFRAME 128u - -// Maximum encoded data that can be submitted to the XMA decoder at a time -#define XMA_READBUFFER_MAX_PACKETS 4095u -#define XMA_READBUFFER_MAX_BYTES (XMA_READBUFFER_MAX_PACKETS * XMA_BYTES_PER_PACKET) - -// Maximum size allowed for the XMA decoder's output buffers -#define XMA_WRITEBUFFER_MAX_BYTES (31u * 256u) - -// Required byte alignment of the XMA decoder's output buffers -#define XMA_WRITEBUFFER_BYTE_ALIGNMENT 256u - -// Decode chunk sizes for the XMA_PLAYBACK_INIT.subframesToDecode field -#define XMA_MIN_SUBFRAMES_TO_DECODE 1u -#define XMA_MAX_SUBFRAMES_TO_DECODE 8u -#define XMA_OPTIMAL_SUBFRAMES_TO_DECODE 4u - -// LoopCount<255 means finite repetitions; LoopCount=255 means infinite looping -#define XMA_MAX_LOOPCOUNT 254u -#define XMA_INFINITE_LOOP 255u - - - -/*************************************************************************** - * XMA format structures - ***************************************************************************/ - -// The currently recommended way to express format information for XMA2 files -// is the XMA2WAVEFORMATEX structure. This structure is fully compliant with -// the WAVEFORMATEX standard and contains all the information needed to parse -// and manage XMA2 files in a compact way. - -#define WAVE_FORMAT_XMA2 0x166 - -typedef struct XMA2WAVEFORMATEX -{ - WAVEFORMATEX wfx; - // Meaning of the WAVEFORMATEX fields here: - // wFormatTag; // Audio format type; always WAVE_FORMAT_XMA2 - // nChannels; // Channel count of the decoded audio - // nSamplesPerSec; // Sample rate of the decoded audio - // nAvgBytesPerSec; // Used internally by the XMA encoder - // nBlockAlign; // Decoded sample size; channels * wBitsPerSample / 8 - // wBitsPerSample; // Bits per decoded mono sample; always 16 for XMA - // cbSize; // Size in bytes of the rest of this structure (34) - - WORD NumStreams; // Number of audio streams (1 or 2 channels each) - DWORD ChannelMask; // Spatial positions of the channels in this file, - // stored as SPEAKER_xxx values (see audiodefs.h) - DWORD SamplesEncoded; // Total number of PCM samples the file decodes to - DWORD BytesPerBlock; // XMA block size (but the last one may be shorter) - DWORD PlayBegin; // First valid sample in the decoded audio - DWORD PlayLength; // Length of the valid part of the decoded audio - DWORD LoopBegin; // Beginning of the loop region in decoded sample terms - DWORD LoopLength; // Length of the loop region in decoded sample terms - BYTE LoopCount; // Number of loop repetitions; 255 = infinite - BYTE EncoderVersion; // Version of XMA encoder that generated the file - WORD BlockCount; // XMA blocks in file (and entries in its seek table) -} XMA2WAVEFORMATEX, *PXMA2WAVEFORMATEX; - - -// The legacy XMA format structures are described here for reference, but they -// should not be used in new content. XMAWAVEFORMAT was the structure used in -// XMA version 1 files. XMA2WAVEFORMAT was used in early XMA2 files; it is not -// placed in the usual 'fmt' RIFF chunk but in its own 'XMA2' chunk. - -#ifndef WAVE_FORMAT_XMA -#define WAVE_FORMAT_XMA 0x0165 - -// Values used in the ChannelMask fields below. Similar to the SPEAKER_xxx -// values defined in audiodefs.h, but modified to fit in a single byte. -#ifndef XMA_SPEAKER_LEFT - #define XMA_SPEAKER_LEFT 0x01 - #define XMA_SPEAKER_RIGHT 0x02 - #define XMA_SPEAKER_CENTER 0x04 - #define XMA_SPEAKER_LFE 0x08 - #define XMA_SPEAKER_LEFT_SURROUND 0x10 - #define XMA_SPEAKER_RIGHT_SURROUND 0x20 - #define XMA_SPEAKER_LEFT_BACK 0x40 - #define XMA_SPEAKER_RIGHT_BACK 0x80 -#endif - - -// Used in XMAWAVEFORMAT for per-stream data -typedef struct XMASTREAMFORMAT -{ - DWORD PsuedoBytesPerSec; // Used by the XMA encoder (typo preserved for legacy reasons) - DWORD SampleRate; // The stream's decoded sample rate (in XMA2 files, - // this is the same for all streams in the file). - DWORD LoopStart; // Bit offset of the frame containing the loop start - // point, relative to the beginning of the stream. - DWORD LoopEnd; // Bit offset of the frame containing the loop end. - BYTE SubframeData; // Two 4-bit numbers specifying the exact location of - // the loop points within the frames that contain them. - // SubframeEnd: Subframe of the loop end frame where - // the loop ends. Ranges from 0 to 3. - // SubframeSkip: Subframes to skip in the start frame to - // reach the loop. Ranges from 0 to 4. - BYTE Channels; // Number of channels in the stream (1 or 2) - WORD ChannelMask; // Spatial positions of the channels in the stream -} XMASTREAMFORMAT; - -// Legacy XMA1 format structure -typedef struct XMAWAVEFORMAT -{ - WORD FormatTag; // Audio format type (always WAVE_FORMAT_XMA) - WORD BitsPerSample; // Bit depth (currently required to be 16) - WORD EncodeOptions; // Options for XMA encoder/decoder - WORD LargestSkip; // Largest skip used in interleaving streams - WORD NumStreams; // Number of interleaved audio streams - BYTE LoopCount; // Number of loop repetitions; 255 = infinite - BYTE Version; // XMA encoder version that generated the file. - // Always 3 or higher for XMA2 files. - XMASTREAMFORMAT XmaStreams[1]; // Per-stream format information; the actual - // array length is in the NumStreams field. -} XMAWAVEFORMAT; - - -// Used in XMA2WAVEFORMAT for per-stream data -typedef struct XMA2STREAMFORMAT -{ - BYTE Channels; // Number of channels in the stream (1 or 2) - BYTE RESERVED; // Reserved for future use - WORD ChannelMask; // Spatial positions of the channels in the stream -} XMA2STREAMFORMAT; - -// Legacy XMA2 format structure (big-endian byte ordering) -typedef struct XMA2WAVEFORMAT -{ - BYTE Version; // XMA encoder version that generated the file. - // Always 3 or higher for XMA2 files. - BYTE NumStreams; // Number of interleaved audio streams - BYTE RESERVED; // Reserved for future use - BYTE LoopCount; // Number of loop repetitions; 255 = infinite - DWORD LoopBegin; // Loop begin point, in samples - DWORD LoopEnd; // Loop end point, in samples - DWORD SampleRate; // The file's decoded sample rate - DWORD EncodeOptions; // Options for the XMA encoder/decoder - DWORD PsuedoBytesPerSec; // Used internally by the XMA encoder - DWORD BlockSizeInBytes; // Size in bytes of this file's XMA blocks (except - // possibly the last one). Always a multiple of - // 2Kb, since XMA blocks are arrays of 2Kb packets. - DWORD SamplesEncoded; // Total number of PCM samples encoded in this file - DWORD SamplesInSource; // Actual number of PCM samples in the source - // material used to generate this file - DWORD BlockCount; // Number of XMA blocks in this file (and hence - // also the number of entries in its seek table) - XMA2STREAMFORMAT Streams[1]; // Per-stream format information; the actual - // array length is in the NumStreams field. -} XMA2WAVEFORMAT; - -#endif // #ifndef WAVE_FORMAT_XMA - - - -/*************************************************************************** - * XMA packet structure (in big-endian form) - ***************************************************************************/ - -typedef struct XMA2PACKET -{ - int FrameCount : 6; // Number of XMA frames that begin in this packet - int FrameOffsetInBits : 15; // Bit of XmaData where the first complete frame begins - int PacketMetaData : 3; // Metadata stored in the packet (always 1 for XMA2) - int PacketSkipCount : 8; // How many packets belonging to other streams must be - // skipped to find the next packet belonging to this one - BYTE XmaData[XMA_BYTES_PER_PACKET - sizeof(DWORD)]; // XMA encoded data -} XMA2PACKET; - -// E.g. if the first DWORD of a packet is 0x30107902: -// -// 001100 000001000001111 001 00000010 -// | | | |____ Skip 2 packets to find the next one for this stream -// | | |___________ XMA2 signature (always 001) -// | |_____________________ First frame starts 527 bits into packet -// |________________________________ Packet contains 12 frames - - -// Helper functions to extract the fields above from an XMA packet. (Note that -// the bitfields cannot be read directly on little-endian architectures such as -// the Intel x86, as they are laid out in big-endian form.) - -__inline DWORD GetXmaPacketFrameCount(__in_bcount(1) const BYTE* pPacket) -{ - return (DWORD)(pPacket[0] >> 2); -} - -__inline DWORD GetXmaPacketFirstFrameOffsetInBits(__in_bcount(3) const BYTE* pPacket) -{ - return ((DWORD)(pPacket[0] & 0x3) << 13) | - ((DWORD)(pPacket[1]) << 5) | - ((DWORD)(pPacket[2]) >> 3); -} - -__inline DWORD GetXmaPacketMetadata(__in_bcount(3) const BYTE* pPacket) -{ - return (DWORD)(pPacket[2] & 0x7); -} - -__inline DWORD GetXmaPacketSkipCount(__in_bcount(4) const BYTE* pPacket) -{ - return (DWORD)(pPacket[3]); -} - - - -/*************************************************************************** - * XMA frame structure - ***************************************************************************/ - -// There is no way to represent the XMA frame as a C struct, since it is a -// variable-sized string of bits that need not be stored at a byte-aligned -// position in memory. This is the layout: -// -// XMAFRAME -// { -// LengthInBits: A 15-bit number representing the length of this frame. -// XmaData: Encoded XMA data; its size in bits is (LengthInBits - 15). -// } - -// Size in bits of the frame's initial LengthInBits field -#define XMA_BITS_IN_FRAME_LENGTH_FIELD 15 - -// Special LengthInBits value that marks an invalid final frame -#define XMA_FINAL_FRAME_MARKER 0x7FFF - - - -/*************************************************************************** - * XMA helper functions - ***************************************************************************/ - -// We define a local ASSERT macro to equal the global one if it exists. -// You can define XMA2DEFS_ASSERT in advance to override this default. -#ifndef XMA2DEFS_ASSERT - #ifdef ASSERT - #define XMA2DEFS_ASSERT ASSERT - #else - #define XMA2DEFS_ASSERT(a) /* No-op by default */ - #endif -#endif - - -// GetXmaBlockContainingSample: Use a given seek table to find the XMA block -// containing a given decoded sample. Note that the seek table entries in an -// XMA file are stored in big-endian form and may need to be converted prior -// to calling this function. - -__inline HRESULT GetXmaBlockContainingSample -( - DWORD nBlockCount, // Blocks in the file (= seek table entries) - __in_ecount(nBlockCount) const DWORD* pSeekTable, // Pointer to the seek table data - DWORD nDesiredSample, // Decoded sample to locate - __out DWORD* pnBlockContainingSample, // Index of the block containing the sample - __out DWORD* pnSampleOffsetWithinBlock // Position of the sample in this block -) -{ - DWORD nPreviousTotalSamples = 0; - DWORD nBlock; - DWORD nTotalSamplesSoFar; - - XMA2DEFS_ASSERT(pSeekTable); - XMA2DEFS_ASSERT(pnBlockContainingSample); - XMA2DEFS_ASSERT(pnSampleOffsetWithinBlock); - - for (nBlock = 0; nBlock < nBlockCount; ++nBlock) - { - nTotalSamplesSoFar = pSeekTable[nBlock]; - if (nTotalSamplesSoFar > nDesiredSample) - { - *pnBlockContainingSample = nBlock; - *pnSampleOffsetWithinBlock = nDesiredSample - nPreviousTotalSamples; - return S_OK; - } - nPreviousTotalSamples = nTotalSamplesSoFar; - } - - return E_FAIL; -} - - -// GetXmaFrameLengthInBits: Reads a given frame's LengthInBits field. - -__inline DWORD GetXmaFrameLengthInBits -( - __in_bcount(nBitPosition / 8 + 3) - __in const BYTE* pPacket, // Pointer to XMA packet[s] containing the frame - DWORD nBitPosition // Bit offset of the frame within this packet -) -{ - DWORD nRegion; - DWORD nBytePosition = nBitPosition / 8; - DWORD nBitOffset = nBitPosition % 8; - - if (nBitOffset < 2) // Only need to read 2 bytes (and might not be safe to read more) - { - nRegion = (DWORD)(pPacket[nBytePosition+0]) << 8 | - (DWORD)(pPacket[nBytePosition+1]); - return (nRegion >> (1 - nBitOffset)) & 0x7FFF; // Last 15 bits - } - else // Need to read 3 bytes - { - nRegion = (DWORD)(pPacket[nBytePosition+0]) << 16 | - (DWORD)(pPacket[nBytePosition+1]) << 8 | - (DWORD)(pPacket[nBytePosition+2]); - return (nRegion >> (9 - nBitOffset)) & 0x7FFF; // Last 15 bits - } -} - - -// GetXmaFrameBitPosition: Calculates the bit offset of a given frame within -// an XMA block or set of blocks. Returns 0 on failure. - -__inline DWORD GetXmaFrameBitPosition -( - __in_bcount(nXmaDataBytes) const BYTE* pXmaData, // Pointer to XMA block[s] - DWORD nXmaDataBytes, // Size of pXmaData in bytes - DWORD nStreamIndex, // Stream within which to seek - DWORD nDesiredFrame // Frame sought -) -{ - const BYTE* pCurrentPacket; - DWORD nPacketsExamined = 0; - DWORD nFrameCountSoFar = 0; - DWORD nFramesToSkip; - DWORD nFrameBitOffset; - - XMA2DEFS_ASSERT(pXmaData); - XMA2DEFS_ASSERT(nXmaDataBytes % XMA_BYTES_PER_PACKET == 0); - - // Get the first XMA packet belonging to the desired stream, relying on the - // fact that the first packets for each stream are in consecutive order at - // the beginning of an XMA block. - - pCurrentPacket = pXmaData + nStreamIndex * XMA_BYTES_PER_PACKET; - for (;;) - { - // If we have exceeded the size of the XMA data, return failure - if (pCurrentPacket + XMA_BYTES_PER_PACKET > pXmaData + nXmaDataBytes) - { - return 0; - } - - // If the current packet contains the frame we are looking for... - if (nFrameCountSoFar + GetXmaPacketFrameCount(pCurrentPacket) > nDesiredFrame) - { - // See how many frames in this packet we need to skip to get to it - XMA2DEFS_ASSERT(nDesiredFrame >= nFrameCountSoFar); - nFramesToSkip = nDesiredFrame - nFrameCountSoFar; - - // Get the bit offset of the first frame in this packet - nFrameBitOffset = XMA_PACKET_HEADER_BITS + GetXmaPacketFirstFrameOffsetInBits(pCurrentPacket); - - // Advance nFrameBitOffset to the frame of interest - while (nFramesToSkip--) - { - nFrameBitOffset += GetXmaFrameLengthInBits(pCurrentPacket, nFrameBitOffset); - } - - // The bit offset to return is the number of bits from pXmaData to - // pCurrentPacket plus the bit offset of the frame of interest - return (DWORD)(pCurrentPacket - pXmaData) * 8 + nFrameBitOffset; - } - - // If we haven't found the right packet yet, advance our counters - ++nPacketsExamined; - nFrameCountSoFar += GetXmaPacketFrameCount(pCurrentPacket); - - // And skip to the next packet belonging to the same stream - pCurrentPacket += XMA_BYTES_PER_PACKET * (GetXmaPacketSkipCount(pCurrentPacket) + 1); - } -} - - -// GetLastXmaFrameBitPosition: Calculates the bit offset of the last complete -// frame in an XMA block or set of blocks. - -__inline DWORD GetLastXmaFrameBitPosition -( - __in_bcount(nXmaDataBytes) const BYTE* pXmaData, // Pointer to XMA block[s] - DWORD nXmaDataBytes, // Size of pXmaData in bytes - DWORD nStreamIndex // Stream within which to seek -) -{ - const BYTE* pLastPacket; - DWORD nBytesToNextPacket; - DWORD nFrameBitOffset; - DWORD nFramesInLastPacket; - - XMA2DEFS_ASSERT(pXmaData); - XMA2DEFS_ASSERT(nXmaDataBytes % XMA_BYTES_PER_PACKET == 0); - XMA2DEFS_ASSERT(nXmaDataBytes >= XMA_BYTES_PER_PACKET * (nStreamIndex + 1)); - - // Get the first XMA packet belonging to the desired stream, relying on the - // fact that the first packets for each stream are in consecutive order at - // the beginning of an XMA block. - pLastPacket = pXmaData + nStreamIndex * XMA_BYTES_PER_PACKET; - - // Search for the last packet belonging to the desired stream - for (;;) - { - nBytesToNextPacket = XMA_BYTES_PER_PACKET * (GetXmaPacketSkipCount(pLastPacket) + 1); - XMA2DEFS_ASSERT(nBytesToNextPacket); - if (pLastPacket + nBytesToNextPacket + XMA_BYTES_PER_PACKET > pXmaData + nXmaDataBytes) - { - break; // The next packet would extend beyond the end of pXmaData - } - pLastPacket += nBytesToNextPacket; - } - - // The last packet can sometimes have no seekable frames, in which case we - // have to use the previous one - if (GetXmaPacketFrameCount(pLastPacket) == 0) - { - pLastPacket -= nBytesToNextPacket; - } - - // Found the last packet. Get the bit offset of its first frame. - nFrameBitOffset = XMA_PACKET_HEADER_BITS + GetXmaPacketFirstFrameOffsetInBits(pLastPacket); - - // Traverse frames until we reach the last one - nFramesInLastPacket = GetXmaPacketFrameCount(pLastPacket); - while (--nFramesInLastPacket) - { - nFrameBitOffset += GetXmaFrameLengthInBits(pLastPacket, nFrameBitOffset); - } - - // The bit offset to return is the number of bits from pXmaData to - // pLastPacket plus the offset of the last frame in this packet. - return (DWORD)(pLastPacket - pXmaData) * 8 + nFrameBitOffset; -} - - -// GetXmaDecodePositionForSample: Obtains the information needed to make the -// decoder generate audio starting at a given sample position relative to the -// beginning of the given XMA block: the bit offset of the appropriate frame, -// and the right subframe within that frame. This data can be passed directly -// to the XMAPlaybackSetDecodePosition function. - -__inline HRESULT GetXmaDecodePositionForSample -( - __in_bcount(nXmaDataBytes) const BYTE* pXmaData, // Pointer to XMA block[s] - DWORD nXmaDataBytes, // Size of pXmaData in bytes - DWORD nStreamIndex, // Stream within which to seek - DWORD nDesiredSample, // Sample sought - __out DWORD* pnBitOffset, // Returns the bit offset within pXmaData of - // the frame containing the sample sought - __out DWORD* pnSubFrame // Returns the subframe containing the sample -) -{ - DWORD nDesiredFrame = nDesiredSample / XMA_SAMPLES_PER_FRAME; - DWORD nSubFrame = (nDesiredSample % XMA_SAMPLES_PER_FRAME) / XMA_SAMPLES_PER_SUBFRAME; - DWORD nBitOffset = GetXmaFrameBitPosition(pXmaData, nXmaDataBytes, nStreamIndex, nDesiredFrame); - - XMA2DEFS_ASSERT(pnBitOffset); - XMA2DEFS_ASSERT(pnSubFrame); - - if (nBitOffset) - { - *pnBitOffset = nBitOffset; - *pnSubFrame = nSubFrame; - return S_OK; - } - else - { - return E_FAIL; - } -} - - -// GetXmaSampleRate: Obtains the legal XMA sample rate (24, 32, 44.1 or 48Khz) -// corresponding to a generic sample rate. - -__inline DWORD GetXmaSampleRate(DWORD dwGeneralRate) -{ - DWORD dwXmaRate = 48000; // Default XMA rate for all rates above 44100Hz - - if (dwGeneralRate <= 24000) dwXmaRate = 24000; - else if (dwGeneralRate <= 32000) dwXmaRate = 32000; - else if (dwGeneralRate <= 44100) dwXmaRate = 44100; - - return dwXmaRate; -} - - -// Functions to convert between WAVEFORMATEXTENSIBLE channel masks (combinations -// of the SPEAKER_xxx flags defined in audiodefs.h) and XMA channel masks (which -// are limited to eight possible speaker positions: left, right, center, low -// frequency, side left, side right, back left and back right). - -__inline DWORD GetStandardChannelMaskFromXmaMask(BYTE bXmaMask) -{ - DWORD dwStandardMask = 0; - - if (bXmaMask & XMA_SPEAKER_LEFT) dwStandardMask |= SPEAKER_FRONT_LEFT; - if (bXmaMask & XMA_SPEAKER_RIGHT) dwStandardMask |= SPEAKER_FRONT_RIGHT; - if (bXmaMask & XMA_SPEAKER_CENTER) dwStandardMask |= SPEAKER_FRONT_CENTER; - if (bXmaMask & XMA_SPEAKER_LFE) dwStandardMask |= SPEAKER_LOW_FREQUENCY; - if (bXmaMask & XMA_SPEAKER_LEFT_SURROUND) dwStandardMask |= SPEAKER_SIDE_LEFT; - if (bXmaMask & XMA_SPEAKER_RIGHT_SURROUND) dwStandardMask |= SPEAKER_SIDE_RIGHT; - if (bXmaMask & XMA_SPEAKER_LEFT_BACK) dwStandardMask |= SPEAKER_BACK_LEFT; - if (bXmaMask & XMA_SPEAKER_RIGHT_BACK) dwStandardMask |= SPEAKER_BACK_RIGHT; - - return dwStandardMask; -} - -__inline BYTE GetXmaChannelMaskFromStandardMask(DWORD dwStandardMask) -{ - BYTE bXmaMask = 0; - - if (dwStandardMask & SPEAKER_FRONT_LEFT) bXmaMask |= XMA_SPEAKER_LEFT; - if (dwStandardMask & SPEAKER_FRONT_RIGHT) bXmaMask |= XMA_SPEAKER_RIGHT; - if (dwStandardMask & SPEAKER_FRONT_CENTER) bXmaMask |= XMA_SPEAKER_CENTER; - if (dwStandardMask & SPEAKER_LOW_FREQUENCY) bXmaMask |= XMA_SPEAKER_LFE; - if (dwStandardMask & SPEAKER_SIDE_LEFT) bXmaMask |= XMA_SPEAKER_LEFT_SURROUND; - if (dwStandardMask & SPEAKER_SIDE_RIGHT) bXmaMask |= XMA_SPEAKER_RIGHT_SURROUND; - if (dwStandardMask & SPEAKER_BACK_LEFT) bXmaMask |= XMA_SPEAKER_LEFT_BACK; - if (dwStandardMask & SPEAKER_BACK_RIGHT) bXmaMask |= XMA_SPEAKER_RIGHT_BACK; - - return bXmaMask; -} - - -// LocalizeXma2Format: Modifies a XMA2WAVEFORMATEX structure in place to comply -// with the current platform's byte-ordering rules (little- or big-endian). - -__inline HRESULT LocalizeXma2Format(__inout XMA2WAVEFORMATEX* pXma2Format) -{ - #define XMASWAP2BYTES(n) ((WORD)(((n) >> 8) | (((n) & 0xff) << 8))) - #define XMASWAP4BYTES(n) ((DWORD)((n) >> 24 | (n) << 24 | ((n) & 0xff00) << 8 | ((n) & 0xff0000) >> 8)) - - if (pXma2Format->wfx.wFormatTag == WAVE_FORMAT_XMA2) - { - return S_OK; - } - else if (XMASWAP2BYTES(pXma2Format->wfx.wFormatTag) == WAVE_FORMAT_XMA2) - { - pXma2Format->wfx.wFormatTag = XMASWAP2BYTES(pXma2Format->wfx.wFormatTag); - pXma2Format->wfx.nChannels = XMASWAP2BYTES(pXma2Format->wfx.nChannels); - pXma2Format->wfx.nSamplesPerSec = XMASWAP4BYTES(pXma2Format->wfx.nSamplesPerSec); - pXma2Format->wfx.nAvgBytesPerSec = XMASWAP4BYTES(pXma2Format->wfx.nAvgBytesPerSec); - pXma2Format->wfx.nBlockAlign = XMASWAP2BYTES(pXma2Format->wfx.nBlockAlign); - pXma2Format->wfx.wBitsPerSample = XMASWAP2BYTES(pXma2Format->wfx.wBitsPerSample); - pXma2Format->wfx.cbSize = XMASWAP2BYTES(pXma2Format->wfx.cbSize); - pXma2Format->NumStreams = XMASWAP2BYTES(pXma2Format->NumStreams); - pXma2Format->ChannelMask = XMASWAP4BYTES(pXma2Format->ChannelMask); - pXma2Format->SamplesEncoded = XMASWAP4BYTES(pXma2Format->SamplesEncoded); - pXma2Format->BytesPerBlock = XMASWAP4BYTES(pXma2Format->BytesPerBlock); - pXma2Format->PlayBegin = XMASWAP4BYTES(pXma2Format->PlayBegin); - pXma2Format->PlayLength = XMASWAP4BYTES(pXma2Format->PlayLength); - pXma2Format->LoopBegin = XMASWAP4BYTES(pXma2Format->LoopBegin); - pXma2Format->LoopLength = XMASWAP4BYTES(pXma2Format->LoopLength); - pXma2Format->BlockCount = XMASWAP2BYTES(pXma2Format->BlockCount); - return S_OK; - } - else - { - return E_FAIL; // Not a recognizable XMA2 format - } - - #undef XMASWAP2BYTES - #undef XMASWAP4BYTES -} - - -#endif // #ifndef __XMA2DEFS_INCLUDED__ diff --git a/SDK/Include/xnamath.h b/SDK/Include/xnamath.h deleted file mode 100644 index daaba0b..0000000 --- a/SDK/Include/xnamath.h +++ /dev/null @@ -1,2938 +0,0 @@ -/*++ - -Copyright (c) Microsoft Corporation. All rights reserved. - -Module Name: - - xnamath.h - -Abstract: - - XNA math library for Windows and Xbox 360 ---*/ - -#if defined(_MSC_VER) && (_MSC_VER > 1000) -#pragma once -#endif - -#ifndef __XNAMATH_H__ -#define __XNAMATH_H__ - -#ifdef __XBOXMATH_H__ -#error XNAMATH and XBOXMATH are incompatible in the same compilation module. Use one or the other. -#endif - -#define XNAMATH_VERSION 203 - -#if !defined(_XM_X64_) && !defined(_XM_X86_) -#if defined(_M_AMD64) || defined(_AMD64_) -#define _XM_X64_ -#elif defined(_M_IX86) || defined(_X86_) -#define _XM_X86_ -#endif -#endif - -#if !defined(_XM_BIGENDIAN_) && !defined(_XM_LITTLEENDIAN_) -#if defined(_XM_X64_) || defined(_XM_X86_) -#define _XM_LITTLEENDIAN_ -#elif defined(_XBOX_VER) -#define _XM_BIGENDIAN_ -#else -#error xnamath.h only supports x86, x64, or XBox 360 targets -#endif -#endif - -#if defined(_XM_X86_) || defined(_XM_X64_) -#define _XM_SSE_INTRINSICS_ -#if !defined(__cplusplus) && !defined(_XM_NO_INTRINSICS_) -#error xnamath.h only supports C compliation for Xbox 360 targets and no intrinsics cases for x86/x64 -#endif -#elif defined(_XBOX_VER) -#if !defined(__VMX128_SUPPORTED) && !defined(_XM_NO_INTRINSICS_) -#error xnamath.h requires VMX128 compiler support for XBOX 360 -#endif // !__VMX128_SUPPORTED && !_XM_NO_INTRINSICS_ -#define _XM_VMX128_INTRINSICS_ -#else -#error xnamath.h only supports x86, x64, or XBox 360 targets -#endif - - -#if defined(_XM_SSE_INTRINSICS_) -#ifndef _XM_NO_INTRINSICS_ -#include -#include -#endif -#elif defined(_XM_VMX128_INTRINSICS_) -#error This version of xnamath.h is for Windows use only -#endif - -#if defined(_XM_SSE_INTRINSICS_) -#pragma warning(push) -#pragma warning(disable:4985) -#endif -#include -#if defined(_XM_SSE_INTRINSICS_) -#pragma warning(pop) -#endif - -#include - -#if !defined(XMINLINE) -#if !defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#define XMINLINE __inline -#else -#define XMINLINE __forceinline -#endif -#endif - -#if !defined(XMFINLINE) -#define XMFINLINE __forceinline -#endif - -#if !defined(XMDEBUG) -#if defined(_DEBUG) -#define XMDEBUG -#endif -#endif // !XMDEBUG - -#if !defined(XMASSERT) -#if defined(_PREFAST_) -#define XMASSERT(Expression) __analysis_assume((Expression)) -#elif defined(XMDEBUG) // !_PREFAST_ -#define XMASSERT(Expression) ((VOID)((Expression) || (XMAssert(#Expression, __FILE__, __LINE__), 0))) -#else // !XMDEBUG -#define XMASSERT(Expression) ((VOID)0) -#endif // !XMDEBUG -#endif // !XMASSERT - -#if !defined(XM_NO_ALIGNMENT) -#define _DECLSPEC_ALIGN_16_ __declspec(align(16)) -#else -#define _DECLSPEC_ALIGN_16_ -#endif - - -#if defined(_MSC_VER) && (_MSC_VER<1500) && (_MSC_VER>=1400) -#define _XM_ISVS2005_ -#endif - -/**************************************************************************** - * - * Constant definitions - * - ****************************************************************************/ - -#define XM_PI 3.141592654f -#define XM_2PI 6.283185307f -#define XM_1DIVPI 0.318309886f -#define XM_1DIV2PI 0.159154943f -#define XM_PIDIV2 1.570796327f -#define XM_PIDIV4 0.785398163f - -#define XM_SELECT_0 0x00000000 -#define XM_SELECT_1 0xFFFFFFFF - -#define XM_PERMUTE_0X 0x00010203 -#define XM_PERMUTE_0Y 0x04050607 -#define XM_PERMUTE_0Z 0x08090A0B -#define XM_PERMUTE_0W 0x0C0D0E0F -#define XM_PERMUTE_1X 0x10111213 -#define XM_PERMUTE_1Y 0x14151617 -#define XM_PERMUTE_1Z 0x18191A1B -#define XM_PERMUTE_1W 0x1C1D1E1F - -#define XM_CRMASK_CR6 0x000000F0 -#define XM_CRMASK_CR6TRUE 0x00000080 -#define XM_CRMASK_CR6FALSE 0x00000020 -#define XM_CRMASK_CR6BOUNDS XM_CRMASK_CR6FALSE - -#define XM_CACHE_LINE_SIZE 64 - -/**************************************************************************** - * - * Macros - * - ****************************************************************************/ - -// Unit conversion - -XMFINLINE FLOAT XMConvertToRadians(FLOAT fDegrees) { return fDegrees * (XM_PI / 180.0f); } -XMFINLINE FLOAT XMConvertToDegrees(FLOAT fRadians) { return fRadians * (180.0f / XM_PI); } - -// Condition register evaluation proceeding a recording (Rc) comparison - -#define XMComparisonAllTrue(CR) (((CR) & XM_CRMASK_CR6TRUE) == XM_CRMASK_CR6TRUE) -#define XMComparisonAnyTrue(CR) (((CR) & XM_CRMASK_CR6FALSE) != XM_CRMASK_CR6FALSE) -#define XMComparisonAllFalse(CR) (((CR) & XM_CRMASK_CR6FALSE) == XM_CRMASK_CR6FALSE) -#define XMComparisonAnyFalse(CR) (((CR) & XM_CRMASK_CR6TRUE) != XM_CRMASK_CR6TRUE) -#define XMComparisonMixed(CR) (((CR) & XM_CRMASK_CR6) == 0) -#define XMComparisonAllInBounds(CR) (((CR) & XM_CRMASK_CR6BOUNDS) == XM_CRMASK_CR6BOUNDS) -#define XMComparisonAnyOutOfBounds(CR) (((CR) & XM_CRMASK_CR6BOUNDS) != XM_CRMASK_CR6BOUNDS) - - -#define XMMin(a, b) (((a) < (b)) ? (a) : (b)) -#define XMMax(a, b) (((a) > (b)) ? (a) : (b)) - -/**************************************************************************** - * - * Data types - * - ****************************************************************************/ - -#pragma warning(push) -#pragma warning(disable:4201 4365 4324) - -#if !defined (_XM_X86_) && !defined(_XM_X64_) -#pragma bitfield_order(push) -#pragma bitfield_order(lsb_to_msb) -#endif // !_XM_X86_ && !_XM_X64_ - -#if defined(_XM_NO_INTRINSICS_) && !defined(_XBOX_VER) -// The __vector4 structure is an intrinsic on Xbox but must be separately defined -// for x86/x64 -typedef struct __vector4 -{ - union - { - float vector4_f32[4]; - unsigned int vector4_u32[4]; -#ifndef XM_STRICT_VECTOR4 - struct - { - FLOAT x; - FLOAT y; - FLOAT z; - FLOAT w; - }; - FLOAT v[4]; - UINT u[4]; -#endif // !XM_STRICT_VECTOR4 - }; -} __vector4; -#endif // _XM_NO_INTRINSICS_ - -#if (defined (_XM_X86_) || defined(_XM_X64_)) && defined(_XM_NO_INTRINSICS_) -typedef UINT __vector4i[4]; -#else -typedef __declspec(align(16)) UINT __vector4i[4]; -#endif - -// Vector intrinsic: Four 32 bit floating point components aligned on a 16 byte -// boundary and mapped to hardware vector registers -#if defined(_XM_SSE_INTRINSICS_) && !defined(_XM_NO_INTRINSICS_) -typedef __m128 XMVECTOR; -#else -typedef __vector4 XMVECTOR; -#endif - -// Conversion types for constants -typedef _DECLSPEC_ALIGN_16_ struct XMVECTORF32 { - union { - float f[4]; - XMVECTOR v; - }; - -#if defined(__cplusplus) - inline operator XMVECTOR() const { return v; } -#if !defined(_XM_NO_INTRINSICS_) && defined(_XM_SSE_INTRINSICS_) - inline operator __m128i() const { return reinterpret_cast(&v)[0]; } - inline operator __m128d() const { return reinterpret_cast(&v)[0]; } -#endif -#endif // __cplusplus -} XMVECTORF32; - -typedef _DECLSPEC_ALIGN_16_ struct XMVECTORI32 { - union { - INT i[4]; - XMVECTOR v; - }; -#if defined(__cplusplus) - inline operator XMVECTOR() const { return v; } -#if !defined(_XM_NO_INTRINSICS_) && defined(_XM_SSE_INTRINSICS_) - inline operator __m128i() const { return reinterpret_cast(&v)[0]; } - inline operator __m128d() const { return reinterpret_cast(&v)[0]; } -#endif -#endif // __cplusplus -} XMVECTORI32; - -typedef _DECLSPEC_ALIGN_16_ struct XMVECTORU8 { - union { - BYTE u[16]; - XMVECTOR v; - }; -#if defined(__cplusplus) - inline operator XMVECTOR() const { return v; } -#if !defined(_XM_NO_INTRINSICS_) && defined(_XM_SSE_INTRINSICS_) - inline operator __m128i() const { return reinterpret_cast(&v)[0]; } - inline operator __m128d() const { return reinterpret_cast(&v)[0]; } -#endif -#endif // __cplusplus -} XMVECTORU8; - -typedef _DECLSPEC_ALIGN_16_ struct XMVECTORU32 { - union { - UINT u[4]; - XMVECTOR v; - }; -#if defined(__cplusplus) - inline operator XMVECTOR() const { return v; } -#if !defined(_XM_NO_INTRINSICS_) && defined(_XM_SSE_INTRINSICS_) - inline operator __m128i() const { return reinterpret_cast(&v)[0]; } - inline operator __m128d() const { return reinterpret_cast(&v)[0]; } -#endif -#endif // __cplusplus -} XMVECTORU32; - -// Fix-up for (1st-3rd) XMVECTOR parameters that are pass-in-register for x86 and Xbox 360, but not for other targets -#if defined(_XM_VMX128_INTRINSICS_) && !defined(_XM_NO_INTRINSICS_) -typedef const XMVECTOR FXMVECTOR; -#elif defined(_XM_X86_) && !defined(_XM_NO_INTRINSICS_) -typedef const XMVECTOR FXMVECTOR; -#elif defined(__cplusplus) -typedef const XMVECTOR& FXMVECTOR; -#else -typedef const XMVECTOR FXMVECTOR; -#endif - -// Fix-up for (4th+) XMVECTOR parameters to pass in-register for Xbox 360 and by reference otherwise -#if defined(_XM_VMX128_INTRINSICS_) && !defined(_XM_NO_INTRINSICS_) -typedef const XMVECTOR CXMVECTOR; -#elif defined(__cplusplus) -typedef const XMVECTOR& CXMVECTOR; -#else -typedef const XMVECTOR CXMVECTOR; -#endif - -// Vector operators -#if defined(__cplusplus) && !defined(XM_NO_OPERATOR_OVERLOADS) - -XMVECTOR operator+ (FXMVECTOR V); -XMVECTOR operator- (FXMVECTOR V); - -XMVECTOR& operator+= (XMVECTOR& V1, FXMVECTOR V2); -XMVECTOR& operator-= (XMVECTOR& V1, FXMVECTOR V2); -XMVECTOR& operator*= (XMVECTOR& V1, FXMVECTOR V2); -XMVECTOR& operator/= (XMVECTOR& V1, FXMVECTOR V2); -XMVECTOR& operator*= (XMVECTOR& V, FLOAT S); -XMVECTOR& operator/= (XMVECTOR& V, FLOAT S); - -XMVECTOR operator+ (FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR operator- (FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR operator* (FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR operator/ (FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR operator* (FXMVECTOR V, FLOAT S); -XMVECTOR operator* (FLOAT S, FXMVECTOR V); -XMVECTOR operator/ (FXMVECTOR V, FLOAT S); - -#endif // __cplusplus && !XM_NO_OPERATOR_OVERLOADS - -// Matrix type: Sixteen 32 bit floating point components aligned on a -// 16 byte boundary and mapped to four hardware vector registers -#if (defined(_XM_X86_) || defined(_XM_X64_)) && defined(_XM_NO_INTRINSICS_) -typedef struct _XMMATRIX -#else -typedef _DECLSPEC_ALIGN_16_ struct _XMMATRIX -#endif -{ - union - { - XMVECTOR r[4]; - struct - { - FLOAT _11, _12, _13, _14; - FLOAT _21, _22, _23, _24; - FLOAT _31, _32, _33, _34; - FLOAT _41, _42, _43, _44; - }; - FLOAT m[4][4]; - }; - -#ifdef __cplusplus - - _XMMATRIX() {}; - _XMMATRIX(FXMVECTOR R0, FXMVECTOR R1, FXMVECTOR R2, CXMVECTOR R3); - _XMMATRIX(FLOAT m00, FLOAT m01, FLOAT m02, FLOAT m03, - FLOAT m10, FLOAT m11, FLOAT m12, FLOAT m13, - FLOAT m20, FLOAT m21, FLOAT m22, FLOAT m23, - FLOAT m30, FLOAT m31, FLOAT m32, FLOAT m33); - _XMMATRIX(CONST FLOAT *pArray); - - FLOAT operator() (UINT Row, UINT Column) CONST { return m[Row][Column]; } - FLOAT& operator() (UINT Row, UINT Column) { return m[Row][Column]; } - - _XMMATRIX& operator= (CONST _XMMATRIX& M); - -#ifndef XM_NO_OPERATOR_OVERLOADS - _XMMATRIX& operator*= (CONST _XMMATRIX& M); - _XMMATRIX operator* (CONST _XMMATRIX& M) CONST; -#endif // !XM_NO_OPERATOR_OVERLOADS - -#endif // __cplusplus - -} XMMATRIX; - -// Fix-up for XMMATRIX parameters to pass in-register on Xbox 360, by reference otherwise -#if defined(_XM_VMX128_INTRINSICS_) -typedef const XMMATRIX CXMMATRIX; -#elif defined(__cplusplus) -typedef const XMMATRIX& CXMMATRIX; -#else -typedef const XMMATRIX CXMMATRIX; -#endif - -// 16 bit floating point number consisting of a sign bit, a 5 bit biased -// exponent, and a 10 bit mantissa -//typedef WORD HALF; -typedef USHORT HALF; - -// 2D Vector; 32 bit floating point components -typedef struct _XMFLOAT2 -{ - FLOAT x; - FLOAT y; - -#ifdef __cplusplus - - _XMFLOAT2() {}; - _XMFLOAT2(FLOAT _x, FLOAT _y) : x(_x), y(_y) {}; - _XMFLOAT2(CONST FLOAT *pArray); - - _XMFLOAT2& operator= (CONST _XMFLOAT2& Float2); - -#endif // __cplusplus - -} XMFLOAT2; - -// 2D Vector; 32 bit floating point components aligned on a 16 byte boundary -#ifdef __cplusplus -__declspec(align(16)) struct XMFLOAT2A : public XMFLOAT2 -{ - XMFLOAT2A() : XMFLOAT2() {}; - XMFLOAT2A(FLOAT _x, FLOAT _y) : XMFLOAT2(_x, _y) {}; - XMFLOAT2A(CONST FLOAT *pArray) : XMFLOAT2(pArray) {}; - - XMFLOAT2A& operator= (CONST XMFLOAT2A& Float2); -}; -#else -typedef __declspec(align(16)) XMFLOAT2 XMFLOAT2A; -#endif // __cplusplus - -// 2D Vector; 16 bit floating point components -typedef struct _XMHALF2 -{ - HALF x; - HALF y; - -#ifdef __cplusplus - - _XMHALF2() {}; - _XMHALF2(HALF _x, HALF _y) : x(_x), y(_y) {}; - _XMHALF2(CONST HALF *pArray); - _XMHALF2(FLOAT _x, FLOAT _y); - _XMHALF2(CONST FLOAT *pArray); - - _XMHALF2& operator= (CONST _XMHALF2& Half2); - -#endif // __cplusplus - -} XMHALF2; - -// 2D Vector; 16 bit signed normalized integer components -typedef struct _XMSHORTN2 -{ - SHORT x; - SHORT y; - -#ifdef __cplusplus - - _XMSHORTN2() {}; - _XMSHORTN2(SHORT _x, SHORT _y) : x(_x), y(_y) {}; - _XMSHORTN2(CONST SHORT *pArray); - _XMSHORTN2(FLOAT _x, FLOAT _y); - _XMSHORTN2(CONST FLOAT *pArray); - - _XMSHORTN2& operator= (CONST _XMSHORTN2& ShortN2); - -#endif // __cplusplus - -} XMSHORTN2; - -// 2D Vector; 16 bit signed integer components -typedef struct _XMSHORT2 -{ - SHORT x; - SHORT y; - -#ifdef __cplusplus - - _XMSHORT2() {}; - _XMSHORT2(SHORT _x, SHORT _y) : x(_x), y(_y) {}; - _XMSHORT2(CONST SHORT *pArray); - _XMSHORT2(FLOAT _x, FLOAT _y); - _XMSHORT2(CONST FLOAT *pArray); - - _XMSHORT2& operator= (CONST _XMSHORT2& Short2); - -#endif // __cplusplus - -} XMSHORT2; - -// 2D Vector; 16 bit unsigned normalized integer components -typedef struct _XMUSHORTN2 -{ - USHORT x; - USHORT y; - -#ifdef __cplusplus - - _XMUSHORTN2() {}; - _XMUSHORTN2(USHORT _x, USHORT _y) : x(_x), y(_y) {}; - _XMUSHORTN2(CONST USHORT *pArray); - _XMUSHORTN2(FLOAT _x, FLOAT _y); - _XMUSHORTN2(CONST FLOAT *pArray); - - _XMUSHORTN2& operator= (CONST _XMUSHORTN2& UShortN2); - -#endif // __cplusplus - -} XMUSHORTN2; - -// 2D Vector; 16 bit unsigned integer components -typedef struct _XMUSHORT2 -{ - USHORT x; - USHORT y; - -#ifdef __cplusplus - - _XMUSHORT2() {}; - _XMUSHORT2(USHORT _x, USHORT _y) : x(_x), y(_y) {}; - _XMUSHORT2(CONST USHORT *pArray); - _XMUSHORT2(FLOAT _x, FLOAT _y); - _XMUSHORT2(CONST FLOAT *pArray); - - _XMUSHORT2& operator= (CONST _XMUSHORT2& UShort2); - -#endif // __cplusplus - -} XMUSHORT2; - -// 3D Vector; 32 bit floating point components -typedef struct _XMFLOAT3 -{ - FLOAT x; - FLOAT y; - FLOAT z; - -#ifdef __cplusplus - - _XMFLOAT3() {}; - _XMFLOAT3(FLOAT _x, FLOAT _y, FLOAT _z) : x(_x), y(_y), z(_z) {}; - _XMFLOAT3(CONST FLOAT *pArray); - - _XMFLOAT3& operator= (CONST _XMFLOAT3& Float3); - -#endif // __cplusplus - -} XMFLOAT3; - -// 3D Vector; 32 bit floating point components aligned on a 16 byte boundary -#ifdef __cplusplus -__declspec(align(16)) struct XMFLOAT3A : public XMFLOAT3 -{ - XMFLOAT3A() : XMFLOAT3() {}; - XMFLOAT3A(FLOAT _x, FLOAT _y, FLOAT _z) : XMFLOAT3(_x, _y, _z) {}; - XMFLOAT3A(CONST FLOAT *pArray) : XMFLOAT3(pArray) {}; - - XMFLOAT3A& operator= (CONST XMFLOAT3A& Float3); -}; -#else -typedef __declspec(align(16)) XMFLOAT3 XMFLOAT3A; -#endif // __cplusplus - -// 3D Vector; 11-11-10 bit normalized components packed into a 32 bit integer -// The normalized 3D Vector is packed into 32 bits as follows: a 10 bit signed, -// normalized integer for the z component and 11 bit signed, normalized -// integers for the x and y components. The z component is stored in the -// most significant bits and the x component in the least significant bits -// (Z10Y11X11): [32] zzzzzzzz zzyyyyyy yyyyyxxx xxxxxxxx [0] -typedef struct _XMHENDN3 -{ - union - { - struct - { - INT x : 11; // -1023/1023 to 1023/1023 - INT y : 11; // -1023/1023 to 1023/1023 - INT z : 10; // -511/511 to 511/511 - }; - UINT v; - }; - -#ifdef __cplusplus - - _XMHENDN3() {}; - _XMHENDN3(UINT Packed) : v(Packed) {}; - _XMHENDN3(FLOAT _x, FLOAT _y, FLOAT _z); - _XMHENDN3(CONST FLOAT *pArray); - - operator UINT () { return v; } - - _XMHENDN3& operator= (CONST _XMHENDN3& HenDN3); - _XMHENDN3& operator= (CONST UINT Packed); - -#endif // __cplusplus - -} XMHENDN3; - -// 3D Vector; 11-11-10 bit components packed into a 32 bit integer -// The 3D Vector is packed into 32 bits as follows: a 10 bit signed, -// integer for the z component and 11 bit signed integers for the -// x and y components. The z component is stored in the -// most significant bits and the x component in the least significant bits -// (Z10Y11X11): [32] zzzzzzzz zzyyyyyy yyyyyxxx xxxxxxxx [0] -typedef struct _XMHEND3 -{ - union - { - struct - { - INT x : 11; // -1023 to 1023 - INT y : 11; // -1023 to 1023 - INT z : 10; // -511 to 511 - }; - UINT v; - }; - -#ifdef __cplusplus - - _XMHEND3() {}; - _XMHEND3(UINT Packed) : v(Packed) {}; - _XMHEND3(FLOAT _x, FLOAT _y, FLOAT _z); - _XMHEND3(CONST FLOAT *pArray); - - operator UINT () { return v; } - - _XMHEND3& operator= (CONST _XMHEND3& HenD3); - _XMHEND3& operator= (CONST UINT Packed); - -#endif // __cplusplus - -} XMHEND3; - -// 3D Vector; 11-11-10 bit normalized components packed into a 32 bit integer -// The normalized 3D Vector is packed into 32 bits as follows: a 10 bit unsigned, -// normalized integer for the z component and 11 bit unsigned, normalized -// integers for the x and y components. The z component is stored in the -// most significant bits and the x component in the least significant bits -// (Z10Y11X11): [32] zzzzzzzz zzyyyyyy yyyyyxxx xxxxxxxx [0] -typedef struct _XMUHENDN3 -{ - union - { - struct - { - UINT x : 11; // 0/2047 to 2047/2047 - UINT y : 11; // 0/2047 to 2047/2047 - UINT z : 10; // 0/1023 to 1023/1023 - }; - UINT v; - }; - -#ifdef __cplusplus - - _XMUHENDN3() {}; - _XMUHENDN3(UINT Packed) : v(Packed) {}; - _XMUHENDN3(FLOAT _x, FLOAT _y, FLOAT _z); - _XMUHENDN3(CONST FLOAT *pArray); - - operator UINT () { return v; } - - _XMUHENDN3& operator= (CONST _XMUHENDN3& UHenDN3); - _XMUHENDN3& operator= (CONST UINT Packed); - -#endif // __cplusplus - -} XMUHENDN3; - -// 3D Vector; 11-11-10 bit components packed into a 32 bit integer -// The 3D Vector is packed into 32 bits as follows: a 10 bit unsigned -// integer for the z component and 11 bit unsigned integers -// for the x and y components. The z component is stored in the -// most significant bits and the x component in the least significant bits -// (Z10Y11X11): [32] zzzzzzzz zzyyyyyy yyyyyxxx xxxxxxxx [0] -typedef struct _XMUHEND3 -{ - union - { - struct - { - UINT x : 11; // 0 to 2047 - UINT y : 11; // 0 to 2047 - UINT z : 10; // 0 to 1023 - }; - UINT v; - }; - -#ifdef __cplusplus - - _XMUHEND3() {}; - _XMUHEND3(UINT Packed) : v(Packed) {}; - _XMUHEND3(FLOAT _x, FLOAT _y, FLOAT _z); - _XMUHEND3(CONST FLOAT *pArray); - - operator UINT () { return v; } - - _XMUHEND3& operator= (CONST _XMUHEND3& UHenD3); - _XMUHEND3& operator= (CONST UINT Packed); - -#endif // __cplusplus - -} XMUHEND3; - -// 3D Vector; 10-11-11 bit normalized components packed into a 32 bit integer -// The normalized 3D Vector is packed into 32 bits as follows: a 10 bit signed, -// normalized integer for the x component and 11 bit signed, normalized -// integers for the y and z components. The z component is stored in the -// most significant bits and the x component in the least significant bits -// (Z11Y11X10): [32] zzzzzzzz zzzyyyyy yyyyyyxx xxxxxxxx [0] -typedef struct _XMDHENN3 -{ - union - { - struct - { - INT x : 10; // -511/511 to 511/511 - INT y : 11; // -1023/1023 to 1023/1023 - INT z : 11; // -1023/1023 to 1023/1023 - }; - UINT v; - }; - -#ifdef __cplusplus - - _XMDHENN3() {}; - _XMDHENN3(UINT Packed) : v(Packed) {}; - _XMDHENN3(FLOAT _x, FLOAT _y, FLOAT _z); - _XMDHENN3(CONST FLOAT *pArray); - - operator UINT () { return v; } - - _XMDHENN3& operator= (CONST _XMDHENN3& DHenN3); - _XMDHENN3& operator= (CONST UINT Packed); - -#endif // __cplusplus - -} XMDHENN3; - -// 3D Vector; 10-11-11 bit components packed into a 32 bit integer -// The 3D Vector is packed into 32 bits as follows: a 10 bit signed, -// integer for the x component and 11 bit signed integers for the -// y and z components. The w component is stored in the -// most significant bits and the x component in the least significant bits -// (Z11Y11X10): [32] zzzzzzzz zzzyyyyy yyyyyyxx xxxxxxxx [0] -typedef struct _XMDHEN3 -{ - union - { - struct - { - INT x : 10; // -511 to 511 - INT y : 11; // -1023 to 1023 - INT z : 11; // -1023 to 1023 - }; - UINT v; - }; - -#ifdef __cplusplus - - _XMDHEN3() {}; - _XMDHEN3(UINT Packed) : v(Packed) {}; - _XMDHEN3(FLOAT _x, FLOAT _y, FLOAT _z); - _XMDHEN3(CONST FLOAT *pArray); - - operator UINT () { return v; } - - _XMDHEN3& operator= (CONST _XMDHEN3& DHen3); - _XMDHEN3& operator= (CONST UINT Packed); - -#endif // __cplusplus - -} XMDHEN3; - -// 3D Vector; 10-11-11 bit normalized components packed into a 32 bit integer -// The normalized 3D Vector is packed into 32 bits as follows: a 10 bit unsigned, -// normalized integer for the x component and 11 bit unsigned, normalized -// integers for the y and z components. The w component is stored in the -// most significant bits and the x component in the least significant bits -// (Z11Y11X10): [32] zzzzzzzz zzzyyyyy yyyyyyxx xxxxxxxx [0] -typedef struct _XMUDHENN3 -{ - union - { - struct - { - UINT x : 10; // 0/1023 to 1023/1023 - UINT y : 11; // 0/2047 to 2047/2047 - UINT z : 11; // 0/2047 to 2047/2047 - }; - UINT v; - }; - -#ifdef __cplusplus - - _XMUDHENN3() {}; - _XMUDHENN3(UINT Packed) : v(Packed) {}; - _XMUDHENN3(FLOAT _x, FLOAT _y, FLOAT _z); - _XMUDHENN3(CONST FLOAT *pArray); - - operator UINT () { return v; } - - _XMUDHENN3& operator= (CONST _XMUDHENN3& UDHenN3); - _XMUDHENN3& operator= (CONST UINT Packed); - -#endif // __cplusplus - -} XMUDHENN3; - -// 3D Vector; 10-11-11 bit components packed into a 32 bit integer -// The 3D Vector is packed into 32 bits as follows: a 10 bit unsigned, -// integer for the x component and 11 bit unsigned integers -// for the y and z components. The w component is stored in the -// most significant bits and the x component in the least significant bits -// (Z11Y11X10): [32] zzzzzzzz zzzyyyyy yyyyyyxx xxxxxxxx [0] -typedef struct _XMUDHEN3 -{ - union - { - struct - { - UINT x : 10; // 0 to 1023 - UINT y : 11; // 0 to 2047 - UINT z : 11; // 0 to 2047 - }; - UINT v; - }; - -#ifdef __cplusplus - - _XMUDHEN3() {}; - _XMUDHEN3(UINT Packed) : v(Packed) {}; - _XMUDHEN3(FLOAT _x, FLOAT _y, FLOAT _z); - _XMUDHEN3(CONST FLOAT *pArray); - - operator UINT () { return v; } - - _XMUDHEN3& operator= (CONST _XMUDHEN3& UDHen3); - _XMUDHEN3& operator= (CONST UINT Packed); - -#endif // __cplusplus - -} XMUDHEN3; - -// 3D vector: 5/6/5 unsigned integer components -typedef struct _XMU565 -{ - union - { - struct - { - USHORT x : 5; - USHORT y : 6; - USHORT z : 5; - }; - USHORT v; - }; - -#ifdef __cplusplus - - _XMU565() {}; - _XMU565(USHORT Packed) : v(Packed) {}; - _XMU565(CHAR _x, CHAR _y, CHAR _z) : x(_x), y(_y), z(_z) {}; - _XMU565(CONST CHAR *pArray); - _XMU565(FLOAT _x, FLOAT _y, FLOAT _z); - _XMU565(CONST FLOAT *pArray); - - operator USHORT () { return v; } - - _XMU565& operator= (CONST _XMU565& U565); - _XMU565& operator= (CONST USHORT Packed); - -#endif // __cplusplus - -} XMU565; - -// 3D vector: 11/11/10 floating-point components -// The 3D vector is packed into 32 bits as follows: a 5-bit biased exponent -// and 6-bit mantissa for x component, a 5-bit biased exponent and -// 6-bit mantissa for y component, a 5-bit biased exponent and a 5-bit -// mantissa for z. The z component is stored in the most significant bits -// and the x component in the least significant bits. No sign bits so -// all partial-precision numbers are positive. -// (Z10Y11X11): [32] ZZZZZzzz zzzYYYYY yyyyyyXX XXXxxxxx [0] -typedef struct _XMFLOAT3PK -{ - union - { - struct - { - UINT xm : 6; - UINT xe : 5; - UINT ym : 6; - UINT ye : 5; - UINT zm : 5; - UINT ze : 5; - }; - UINT v; - }; - -#ifdef __cplusplus - - _XMFLOAT3PK() {}; - _XMFLOAT3PK(UINT Packed) : v(Packed) {}; - _XMFLOAT3PK(FLOAT _x, FLOAT _y, FLOAT _z); - _XMFLOAT3PK(CONST FLOAT *pArray); - - operator UINT () { return v; } - - _XMFLOAT3PK& operator= (CONST _XMFLOAT3PK& float3pk); - _XMFLOAT3PK& operator= (CONST UINT Packed); - -#endif // __cplusplus - -} XMFLOAT3PK; - -// 3D vector: 9/9/9 floating-point components with shared 5-bit exponent -// The 3D vector is packed into 32 bits as follows: a 5-bit biased exponent -// with 9-bit mantissa for the x, y, and z component. The shared exponent -// is stored in the most significant bits and the x component mantissa is in -// the least significant bits. No sign bits so all partial-precision numbers -// are positive. -// (E5Z9Y9X9): [32] EEEEEzzz zzzzzzyy yyyyyyyx xxxxxxxx [0] -typedef struct _XMFLOAT3SE -{ - union - { - struct - { - UINT xm : 9; - UINT ym : 9; - UINT zm : 9; - UINT e : 5; - }; - UINT v; - }; - -#ifdef __cplusplus - - _XMFLOAT3SE() {}; - _XMFLOAT3SE(UINT Packed) : v(Packed) {}; - _XMFLOAT3SE(FLOAT _x, FLOAT _y, FLOAT _z); - _XMFLOAT3SE(CONST FLOAT *pArray); - - operator UINT () { return v; } - - _XMFLOAT3SE& operator= (CONST _XMFLOAT3SE& float3se); - _XMFLOAT3SE& operator= (CONST UINT Packed); - -#endif // __cplusplus - -} XMFLOAT3SE; - -// 4D Vector; 32 bit floating point components -typedef struct _XMFLOAT4 -{ - FLOAT x; - FLOAT y; - FLOAT z; - FLOAT w; - -#ifdef __cplusplus - - _XMFLOAT4() {}; - _XMFLOAT4(FLOAT _x, FLOAT _y, FLOAT _z, FLOAT _w) : x(_x), y(_y), z(_z), w(_w) {}; - _XMFLOAT4(CONST FLOAT *pArray); - - _XMFLOAT4& operator= (CONST _XMFLOAT4& Float4); - -#endif // __cplusplus - -} XMFLOAT4; - -// 4D Vector; 32 bit floating point components aligned on a 16 byte boundary -#ifdef __cplusplus -__declspec(align(16)) struct XMFLOAT4A : public XMFLOAT4 -{ - XMFLOAT4A() : XMFLOAT4() {}; - XMFLOAT4A(FLOAT _x, FLOAT _y, FLOAT _z, FLOAT _w) : XMFLOAT4(_x, _y, _z, _w) {}; - XMFLOAT4A(CONST FLOAT *pArray) : XMFLOAT4(pArray) {}; - - XMFLOAT4A& operator= (CONST XMFLOAT4A& Float4); -}; -#else -typedef __declspec(align(16)) XMFLOAT4 XMFLOAT4A; -#endif // __cplusplus - -// 4D Vector; 16 bit floating point components -typedef struct _XMHALF4 -{ - HALF x; - HALF y; - HALF z; - HALF w; - -#ifdef __cplusplus - - _XMHALF4() {}; - _XMHALF4(HALF _x, HALF _y, HALF _z, HALF _w) : x(_x), y(_y), z(_z), w(_w) {}; - _XMHALF4(CONST HALF *pArray); - _XMHALF4(FLOAT _x, FLOAT _y, FLOAT _z, FLOAT _w); - _XMHALF4(CONST FLOAT *pArray); - - _XMHALF4& operator= (CONST _XMHALF4& Half4); - -#endif // __cplusplus - -} XMHALF4; - -// 4D Vector; 16 bit signed normalized integer components -typedef struct _XMSHORTN4 -{ - SHORT x; - SHORT y; - SHORT z; - SHORT w; - -#ifdef __cplusplus - - _XMSHORTN4() {}; - _XMSHORTN4(SHORT _x, SHORT _y, SHORT _z, SHORT _w) : x(_x), y(_y), z(_z), w(_w) {}; - _XMSHORTN4(CONST SHORT *pArray); - _XMSHORTN4(FLOAT _x, FLOAT _y, FLOAT _z, FLOAT _w); - _XMSHORTN4(CONST FLOAT *pArray); - - _XMSHORTN4& operator= (CONST _XMSHORTN4& ShortN4); - -#endif // __cplusplus - -} XMSHORTN4; - -// 4D Vector; 16 bit signed integer components -typedef struct _XMSHORT4 -{ - SHORT x; - SHORT y; - SHORT z; - SHORT w; - -#ifdef __cplusplus - - _XMSHORT4() {}; - _XMSHORT4(SHORT _x, SHORT _y, SHORT _z, SHORT _w) : x(_x), y(_y), z(_z), w(_w) {}; - _XMSHORT4(CONST SHORT *pArray); - _XMSHORT4(FLOAT _x, FLOAT _y, FLOAT _z, FLOAT _w); - _XMSHORT4(CONST FLOAT *pArray); - - _XMSHORT4& operator= (CONST _XMSHORT4& Short4); - -#endif // __cplusplus - -} XMSHORT4; - -// 4D Vector; 16 bit unsigned normalized integer components -typedef struct _XMUSHORTN4 -{ - USHORT x; - USHORT y; - USHORT z; - USHORT w; - -#ifdef __cplusplus - - _XMUSHORTN4() {}; - _XMUSHORTN4(USHORT _x, USHORT _y, USHORT _z, USHORT _w) : x(_x), y(_y), z(_z), w(_w) {}; - _XMUSHORTN4(CONST USHORT *pArray); - _XMUSHORTN4(FLOAT _x, FLOAT _y, FLOAT _z, FLOAT _w); - _XMUSHORTN4(CONST FLOAT *pArray); - - _XMUSHORTN4& operator= (CONST _XMUSHORTN4& UShortN4); - -#endif // __cplusplus - -} XMUSHORTN4; - -// 4D Vector; 16 bit unsigned integer components -typedef struct _XMUSHORT4 -{ - USHORT x; - USHORT y; - USHORT z; - USHORT w; - -#ifdef __cplusplus - - _XMUSHORT4() {}; - _XMUSHORT4(USHORT _x, USHORT _y, USHORT _z, USHORT _w) : x(_x), y(_y), z(_z), w(_w) {}; - _XMUSHORT4(CONST USHORT *pArray); - _XMUSHORT4(FLOAT _x, FLOAT _y, FLOAT _z, FLOAT _w); - _XMUSHORT4(CONST FLOAT *pArray); - - _XMUSHORT4& operator= (CONST _XMUSHORT4& UShort4); - -#endif // __cplusplus - -} XMUSHORT4; - -// 4D Vector; 10-10-10-2 bit normalized components packed into a 32 bit integer -// The normalized 4D Vector is packed into 32 bits as follows: a 2 bit unsigned, -// normalized integer for the w component and 10 bit signed, normalized -// integers for the z, y, and x components. The w component is stored in the -// most significant bits and the x component in the least significant bits -// (W2Z10Y10X10): [32] wwzzzzzz zzzzyyyy yyyyyyxx xxxxxxxx [0] -typedef struct _XMXDECN4 -{ - union - { - struct - { - INT x : 10; // -511/511 to 511/511 - INT y : 10; // -511/511 to 511/511 - INT z : 10; // -511/511 to 511/511 - UINT w : 2; // 0/3 to 3/3 - }; - UINT v; - }; - -#ifdef __cplusplus - - _XMXDECN4() {}; - _XMXDECN4(UINT Packed) : v(Packed) {}; - _XMXDECN4(FLOAT _x, FLOAT _y, FLOAT _z, FLOAT _w); - _XMXDECN4(CONST FLOAT *pArray); - - operator UINT () { return v; } - - _XMXDECN4& operator= (CONST _XMXDECN4& XDecN4); - _XMXDECN4& operator= (CONST UINT Packed); - -#endif // __cplusplus - -} XMXDECN4; - -// 4D Vector; 10-10-10-2 bit components packed into a 32 bit integer -// The normalized 4D Vector is packed into 32 bits as follows: a 2 bit unsigned -// integer for the w component and 10 bit signed integers for the -// z, y, and x components. The w component is stored in the -// most significant bits and the x component in the least significant bits -// (W2Z10Y10X10): [32] wwzzzzzz zzzzyyyy yyyyyyxx xxxxxxxx [0] -typedef struct _XMXDEC4 -{ - union - { - struct - { - INT x : 10; // -511 to 511 - INT y : 10; // -511 to 511 - INT z : 10; // -511 to 511 - UINT w : 2; // 0 to 3 - }; - UINT v; - }; - -#ifdef __cplusplus - - _XMXDEC4() {}; - _XMXDEC4(UINT Packed) : v(Packed) {}; - _XMXDEC4(FLOAT _x, FLOAT _y, FLOAT _z, FLOAT _w); - _XMXDEC4(CONST FLOAT *pArray); - - operator UINT () { return v; } - - _XMXDEC4& operator= (CONST _XMXDEC4& XDec4); - _XMXDEC4& operator= (CONST UINT Packed); - -#endif // __cplusplus - -} XMXDEC4; - -// 4D Vector; 10-10-10-2 bit normalized components packed into a 32 bit integer -// The normalized 4D Vector is packed into 32 bits as follows: a 2 bit signed, -// normalized integer for the w component and 10 bit signed, normalized -// integers for the z, y, and x components. The w component is stored in the -// most significant bits and the x component in the least significant bits -// (W2Z10Y10X10): [32] wwzzzzzz zzzzyyyy yyyyyyxx xxxxxxxx [0] -typedef struct _XMDECN4 -{ - union - { - struct - { - INT x : 10; // -511/511 to 511/511 - INT y : 10; // -511/511 to 511/511 - INT z : 10; // -511/511 to 511/511 - INT w : 2; // -1/1 to 1/1 - }; - UINT v; - }; - -#ifdef __cplusplus - - _XMDECN4() {}; - _XMDECN4(UINT Packed) : v(Packed) {}; - _XMDECN4(FLOAT _x, FLOAT _y, FLOAT _z, FLOAT _w); - _XMDECN4(CONST FLOAT *pArray); - - operator UINT () { return v; } - - _XMDECN4& operator= (CONST _XMDECN4& DecN4); - _XMDECN4& operator= (CONST UINT Packed); - -#endif // __cplusplus - -} XMDECN4; - -// 4D Vector; 10-10-10-2 bit components packed into a 32 bit integer -// The 4D Vector is packed into 32 bits as follows: a 2 bit signed, -// integer for the w component and 10 bit signed integers for the -// z, y, and x components. The w component is stored in the -// most significant bits and the x component in the least significant bits -// (W2Z10Y10X10): [32] wwzzzzzz zzzzyyyy yyyyyyxx xxxxxxxx [0] -typedef struct _XMDEC4 -{ - union - { - struct - { - INT x : 10; // -511 to 511 - INT y : 10; // -511 to 511 - INT z : 10; // -511 to 511 - INT w : 2; // -1 to 1 - }; - UINT v; - }; - -#ifdef __cplusplus - - _XMDEC4() {}; - _XMDEC4(UINT Packed) : v(Packed) {}; - _XMDEC4(FLOAT _x, FLOAT _y, FLOAT _z, FLOAT _w); - _XMDEC4(CONST FLOAT *pArray); - - operator UINT () { return v; } - - _XMDEC4& operator= (CONST _XMDEC4& Dec4); - _XMDEC4& operator= (CONST UINT Packed); - -#endif // __cplusplus - -} XMDEC4; - -// 4D Vector; 10-10-10-2 bit normalized components packed into a 32 bit integer -// The normalized 4D Vector is packed into 32 bits as follows: a 2 bit unsigned, -// normalized integer for the w component and 10 bit unsigned, normalized -// integers for the z, y, and x components. The w component is stored in the -// most significant bits and the x component in the least significant bits -// (W2Z10Y10X10): [32] wwzzzzzz zzzzyyyy yyyyyyxx xxxxxxxx [0] -typedef struct _XMUDECN4 -{ - union - { - struct - { - UINT x : 10; // 0/1023 to 1023/1023 - UINT y : 10; // 0/1023 to 1023/1023 - UINT z : 10; // 0/1023 to 1023/1023 - UINT w : 2; // 0/3 to 3/3 - }; - UINT v; - }; - -#ifdef __cplusplus - - _XMUDECN4() {}; - _XMUDECN4(UINT Packed) : v(Packed) {}; - _XMUDECN4(FLOAT _x, FLOAT _y, FLOAT _z, FLOAT _w); - _XMUDECN4(CONST FLOAT *pArray); - - operator UINT () { return v; } - - _XMUDECN4& operator= (CONST _XMUDECN4& UDecN4); - _XMUDECN4& operator= (CONST UINT Packed); - -#endif // __cplusplus - -} XMUDECN4; - -// 4D Vector; 10-10-10-2 bit components packed into a 32 bit integer -// The 4D Vector is packed into 32 bits as follows: a 2 bit unsigned, -// integer for the w component and 10 bit unsigned integers -// for the z, y, and x components. The w component is stored in the -// most significant bits and the x component in the least significant bits -// (W2Z10Y10X10): [32] wwzzzzzz zzzzyyyy yyyyyyxx xxxxxxxx [0] -typedef struct _XMUDEC4 -{ - union - { - struct - { - UINT x : 10; // 0 to 1023 - UINT y : 10; // 0 to 1023 - UINT z : 10; // 0 to 1023 - UINT w : 2; // 0 to 3 - }; - UINT v; - }; - -#ifdef __cplusplus - - _XMUDEC4() {}; - _XMUDEC4(UINT Packed) : v(Packed) {}; - _XMUDEC4(FLOAT _x, FLOAT _y, FLOAT _z, FLOAT _w); - _XMUDEC4(CONST FLOAT *pArray); - - operator UINT () { return v; } - - _XMUDEC4& operator= (CONST _XMUDEC4& UDec4); - _XMUDEC4& operator= (CONST UINT Packed); - -#endif // __cplusplus - -} XMUDEC4; - -// 4D Vector; 20-20-20-4 bit normalized components packed into a 64 bit integer -// The normalized 4D Vector is packed into 64 bits as follows: a 4 bit unsigned, -// normalized integer for the w component and 20 bit signed, normalized -// integers for the z, y, and x components. The w component is stored in the -// most significant bits and the x component in the least significant bits -// (W4Z20Y20X20): [64] wwwwzzzz zzzzzzzz zzzzzzzz yyyyyyyy yyyyyyyy yyyyxxxx xxxxxxxx xxxxxxxx [0] -typedef struct _XMXICON4 -{ - union - { - struct - { - INT64 x : 20; // -524287/524287 to 524287/524287 - INT64 y : 20; // -524287/524287 to 524287/524287 - INT64 z : 20; // -524287/524287 to 524287/524287 - UINT64 w : 4; // 0/15 to 15/15 - }; - UINT64 v; - }; - -#ifdef __cplusplus - - _XMXICON4() {}; - _XMXICON4(UINT64 Packed) : v(Packed) {}; - _XMXICON4(FLOAT _x, FLOAT _y, FLOAT _z, FLOAT _w); - _XMXICON4(CONST FLOAT *pArray); - - operator UINT64 () { return v; } - - _XMXICON4& operator= (CONST _XMXICON4& XIcoN4); - _XMXICON4& operator= (CONST UINT64 Packed); - -#endif // __cplusplus - -} XMXICON4; - -// 4D Vector; 20-20-20-4 bit components packed into a 64 bit integer -// The 4D Vector is packed into 64 bits as follows: a 4 bit unsigned -// integer for the w component and 20 bit signed integers for the -// z, y, and x components. The w component is stored in the -// most significant bits and the x component in the least significant bits -// (W4Z20Y20X20): [64] wwwwzzzz zzzzzzzz zzzzzzzz yyyyyyyy yyyyyyyy yyyyxxxx xxxxxxxx xxxxxxxx [0] -typedef struct _XMXICO4 -{ - union - { - struct - { - INT64 x : 20; // -524287 to 524287 - INT64 y : 20; // -524287 to 524287 - INT64 z : 20; // -524287 to 524287 - UINT64 w : 4; // 0 to 15 - }; - UINT64 v; - }; - -#ifdef __cplusplus - - _XMXICO4() {}; - _XMXICO4(UINT64 Packed) : v(Packed) {}; - _XMXICO4(FLOAT _x, FLOAT _y, FLOAT _z, FLOAT _w); - _XMXICO4(CONST FLOAT *pArray); - - operator UINT64 () { return v; } - - _XMXICO4& operator= (CONST _XMXICO4& XIco4); - _XMXICO4& operator= (CONST UINT64 Packed); - -#endif // __cplusplus - -} XMXICO4; - -// 4D Vector; 20-20-20-4 bit normalized components packed into a 64 bit integer -// The normalized 4D Vector is packed into 64 bits as follows: a 4 bit signed, -// normalized integer for the w component and 20 bit signed, normalized -// integers for the z, y, and x components. The w component is stored in the -// most significant bits and the x component in the least significant bits -// (W4Z20Y20X20): [64] wwwwzzzz zzzzzzzz zzzzzzzz yyyyyyyy yyyyyyyy yyyyxxxx xxxxxxxx xxxxxxxx [0] -typedef struct _XMICON4 -{ - union - { - struct - { - INT64 x : 20; // -524287/524287 to 524287/524287 - INT64 y : 20; // -524287/524287 to 524287/524287 - INT64 z : 20; // -524287/524287 to 524287/524287 - INT64 w : 4; // -7/7 to 7/7 - }; - UINT64 v; - }; - -#ifdef __cplusplus - - _XMICON4() {}; - _XMICON4(UINT64 Packed) : v(Packed) {}; - _XMICON4(FLOAT _x, FLOAT _y, FLOAT _z, FLOAT _w); - _XMICON4(CONST FLOAT *pArray); - - operator UINT64 () { return v; } - - _XMICON4& operator= (CONST _XMICON4& IcoN4); - _XMICON4& operator= (CONST UINT64 Packed); - -#endif // __cplusplus - -} XMICON4; - -// 4D Vector; 20-20-20-4 bit components packed into a 64 bit integer -// The 4D Vector is packed into 64 bits as follows: a 4 bit signed, -// integer for the w component and 20 bit signed integers for the -// z, y, and x components. The w component is stored in the -// most significant bits and the x component in the least significant bits -// (W4Z20Y20X20): [64] wwwwzzzz zzzzzzzz zzzzzzzz yyyyyyyy yyyyyyyy yyyyxxxx xxxxxxxx xxxxxxxx [0] -typedef struct _XMICO4 -{ - union - { - struct - { - INT64 x : 20; // -524287 to 524287 - INT64 y : 20; // -524287 to 524287 - INT64 z : 20; // -524287 to 524287 - INT64 w : 4; // -7 to 7 - }; - UINT64 v; - }; - -#ifdef __cplusplus - - _XMICO4() {}; - _XMICO4(UINT64 Packed) : v(Packed) {}; - _XMICO4(FLOAT _x, FLOAT _y, FLOAT _z, FLOAT _w); - _XMICO4(CONST FLOAT *pArray); - - operator UINT64 () { return v; } - - _XMICO4& operator= (CONST _XMICO4& Ico4); - _XMICO4& operator= (CONST UINT64 Packed); - -#endif // __cplusplus - -} XMICO4; - -// 4D Vector; 20-20-20-4 bit normalized components packed into a 64 bit integer -// The normalized 4D Vector is packed into 64 bits as follows: a 4 bit unsigned, -// normalized integer for the w component and 20 bit unsigned, normalized -// integers for the z, y, and x components. The w component is stored in the -// most significant bits and the x component in the least significant bits -// (W4Z20Y20X20): [64] wwwwzzzz zzzzzzzz zzzzzzzz yyyyyyyy yyyyyyyy yyyyxxxx xxxxxxxx xxxxxxxx [0] -typedef struct _XMUICON4 -{ - union - { - struct - { - UINT64 x : 20; // 0/1048575 to 1048575/1048575 - UINT64 y : 20; // 0/1048575 to 1048575/1048575 - UINT64 z : 20; // 0/1048575 to 1048575/1048575 - UINT64 w : 4; // 0/15 to 15/15 - }; - UINT64 v; - }; - -#ifdef __cplusplus - - _XMUICON4() {}; - _XMUICON4(UINT64 Packed) : v(Packed) {}; - _XMUICON4(FLOAT _x, FLOAT _y, FLOAT _z, FLOAT _w); - _XMUICON4(CONST FLOAT *pArray); - - operator UINT64 () { return v; } - - _XMUICON4& operator= (CONST _XMUICON4& UIcoN4); - _XMUICON4& operator= (CONST UINT64 Packed); - -#endif // __cplusplus - -} XMUICON4; - -// 4D Vector; 20-20-20-4 bit components packed into a 64 bit integer -// The 4D Vector is packed into 64 bits as follows: a 4 bit unsigned -// integer for the w component and 20 bit unsigned integers for the -// z, y, and x components. The w component is stored in the -// most significant bits and the x component in the least significant bits -// (W4Z20Y20X20): [64] wwwwzzzz zzzzzzzz zzzzzzzz yyyyyyyy yyyyyyyy yyyyxxxx xxxxxxxx xxxxxxxx [0] -typedef struct _XMUICO4 -{ - union - { - struct - { - UINT64 x : 20; // 0 to 1048575 - UINT64 y : 20; // 0 to 1048575 - UINT64 z : 20; // 0 to 1048575 - UINT64 w : 4; // 0 to 15 - }; - UINT64 v; - }; - -#ifdef __cplusplus - - _XMUICO4() {}; - _XMUICO4(UINT64 Packed) : v(Packed) {}; - _XMUICO4(FLOAT _x, FLOAT _y, FLOAT _z, FLOAT _w); - _XMUICO4(CONST FLOAT *pArray); - - operator UINT64 () { return v; } - - _XMUICO4& operator= (CONST _XMUICO4& UIco4); - _XMUICO4& operator= (CONST UINT64 Packed); - -#endif // __cplusplus - -} XMUICO4; - -// ARGB Color; 8-8-8-8 bit unsigned normalized integer components packed into -// a 32 bit integer. The normalized color is packed into 32 bits using 8 bit -// unsigned, normalized integers for the alpha, red, green, and blue components. -// The alpha component is stored in the most significant bits and the blue -// component in the least significant bits (A8R8G8B8): -// [32] aaaaaaaa rrrrrrrr gggggggg bbbbbbbb [0] -typedef struct _XMCOLOR -{ - union - { - struct - { - UINT b : 8; // Blue: 0/255 to 255/255 - UINT g : 8; // Green: 0/255 to 255/255 - UINT r : 8; // Red: 0/255 to 255/255 - UINT a : 8; // Alpha: 0/255 to 255/255 - }; - UINT c; - }; - -#ifdef __cplusplus - - _XMCOLOR() {}; - _XMCOLOR(UINT Color) : c(Color) {}; - _XMCOLOR(FLOAT _r, FLOAT _g, FLOAT _b, FLOAT _a); - _XMCOLOR(CONST FLOAT *pArray); - - operator UINT () { return c; } - - _XMCOLOR& operator= (CONST _XMCOLOR& Color); - _XMCOLOR& operator= (CONST UINT Color); - -#endif // __cplusplus - -} XMCOLOR; - -// 4D Vector; 8 bit signed normalized integer components -typedef struct _XMBYTEN4 -{ - union - { - struct - { - CHAR x; - CHAR y; - CHAR z; - CHAR w; - }; - UINT v; - }; - -#ifdef __cplusplus - - _XMBYTEN4() {}; - _XMBYTEN4(CHAR _x, CHAR _y, CHAR _z, CHAR _w) : x(_x), y(_y), z(_z), w(_w) {}; - _XMBYTEN4(UINT Packed) : v(Packed) {}; - _XMBYTEN4(CONST CHAR *pArray); - _XMBYTEN4(FLOAT _x, FLOAT _y, FLOAT _z, FLOAT _w); - _XMBYTEN4(CONST FLOAT *pArray); - - _XMBYTEN4& operator= (CONST _XMBYTEN4& ByteN4); - -#endif // __cplusplus - -} XMBYTEN4; - -// 4D Vector; 8 bit signed integer components -typedef struct _XMBYTE4 -{ - union - { - struct - { - CHAR x; - CHAR y; - CHAR z; - CHAR w; - }; - UINT v; - }; - -#ifdef __cplusplus - - _XMBYTE4() {}; - _XMBYTE4(CHAR _x, CHAR _y, CHAR _z, CHAR _w) : x(_x), y(_y), z(_z), w(_w) {}; - _XMBYTE4(UINT Packed) : v(Packed) {}; - _XMBYTE4(CONST CHAR *pArray); - _XMBYTE4(FLOAT _x, FLOAT _y, FLOAT _z, FLOAT _w); - _XMBYTE4(CONST FLOAT *pArray); - - _XMBYTE4& operator= (CONST _XMBYTE4& Byte4); - -#endif // __cplusplus - -} XMBYTE4; - -// 4D Vector; 8 bit unsigned normalized integer components -typedef struct _XMUBYTEN4 -{ - union - { - struct - { - BYTE x; - BYTE y; - BYTE z; - BYTE w; - }; - UINT v; - }; - -#ifdef __cplusplus - - _XMUBYTEN4() {}; - _XMUBYTEN4(BYTE _x, BYTE _y, BYTE _z, BYTE _w) : x(_x), y(_y), z(_z), w(_w) {}; - _XMUBYTEN4(UINT Packed) : v(Packed) {}; - _XMUBYTEN4(CONST BYTE *pArray); - _XMUBYTEN4(FLOAT _x, FLOAT _y, FLOAT _z, FLOAT _w); - _XMUBYTEN4(CONST FLOAT *pArray); - - _XMUBYTEN4& operator= (CONST _XMUBYTEN4& UByteN4); - -#endif // __cplusplus - -} XMUBYTEN4; - -// 4D Vector; 8 bit unsigned integer components -typedef struct _XMUBYTE4 -{ - union - { - struct - { - BYTE x; - BYTE y; - BYTE z; - BYTE w; - }; - UINT v; - }; - -#ifdef __cplusplus - - _XMUBYTE4() {}; - _XMUBYTE4(BYTE _x, BYTE _y, BYTE _z, BYTE _w) : x(_x), y(_y), z(_z), w(_w) {}; - _XMUBYTE4(UINT Packed) : v(Packed) {}; - _XMUBYTE4(CONST BYTE *pArray); - _XMUBYTE4(FLOAT _x, FLOAT _y, FLOAT _z, FLOAT _w); - _XMUBYTE4(CONST FLOAT *pArray); - - _XMUBYTE4& operator= (CONST _XMUBYTE4& UByte4); - -#endif // __cplusplus - -} XMUBYTE4; - -// 4D vector; 4 bit unsigned integer components -typedef struct _XMUNIBBLE4 -{ - union - { - struct - { - USHORT x : 4; - USHORT y : 4; - USHORT z : 4; - USHORT w : 4; - }; - USHORT v; - }; - -#ifdef __cplusplus - - _XMUNIBBLE4() {}; - _XMUNIBBLE4(USHORT Packed) : v(Packed) {}; - _XMUNIBBLE4(CHAR _x, CHAR _y, CHAR _z, CHAR _w) : x(_x), y(_y), z(_z), w(_w) {}; - _XMUNIBBLE4(CONST CHAR *pArray); - _XMUNIBBLE4(FLOAT _x, FLOAT _y, FLOAT _z, FLOAT _w); - _XMUNIBBLE4(CONST FLOAT *pArray); - - operator USHORT () { return v; } - - _XMUNIBBLE4& operator= (CONST _XMUNIBBLE4& UNibble4); - _XMUNIBBLE4& operator= (CONST USHORT Packed); - -#endif // __cplusplus - -} XMUNIBBLE4; - -// 4D vector: 5/5/5/1 unsigned integer components -typedef struct _XMU555 -{ - union - { - struct - { - USHORT x : 5; - USHORT y : 5; - USHORT z : 5; - USHORT w : 1; - }; - USHORT v; - }; - -#ifdef __cplusplus - - _XMU555() {}; - _XMU555(USHORT Packed) : v(Packed) {}; - _XMU555(CHAR _x, CHAR _y, CHAR _z, BOOL _w) : x(_x), y(_y), z(_z), w(_w ? 0x1 : 0) {}; - _XMU555(CONST CHAR *pArray, BOOL _w); - _XMU555(FLOAT _x, FLOAT _y, FLOAT _z, BOOL _w); - _XMU555(CONST FLOAT *pArray, BOOL _w); - - operator USHORT () { return v; } - - _XMU555& operator= (CONST _XMU555& U555); - _XMU555& operator= (CONST USHORT Packed); - -#endif // __cplusplus - -} XMU555; - -// 3x3 Matrix: 32 bit floating point components -typedef struct _XMFLOAT3X3 -{ - union - { - struct - { - FLOAT _11, _12, _13; - FLOAT _21, _22, _23; - FLOAT _31, _32, _33; - }; - FLOAT m[3][3]; - }; - -#ifdef __cplusplus - - _XMFLOAT3X3() {}; - _XMFLOAT3X3(FLOAT m00, FLOAT m01, FLOAT m02, - FLOAT m10, FLOAT m11, FLOAT m12, - FLOAT m20, FLOAT m21, FLOAT m22); - _XMFLOAT3X3(CONST FLOAT *pArray); - - FLOAT operator() (UINT Row, UINT Column) CONST { return m[Row][Column]; } - FLOAT& operator() (UINT Row, UINT Column) { return m[Row][Column]; } - - _XMFLOAT3X3& operator= (CONST _XMFLOAT3X3& Float3x3); - -#endif // __cplusplus - -} XMFLOAT3X3; - -// 4x3 Matrix: 32 bit floating point components -typedef struct _XMFLOAT4X3 -{ - union - { - struct - { - FLOAT _11, _12, _13; - FLOAT _21, _22, _23; - FLOAT _31, _32, _33; - FLOAT _41, _42, _43; - }; - FLOAT m[4][3]; - }; - -#ifdef __cplusplus - - _XMFLOAT4X3() {}; - _XMFLOAT4X3(FLOAT m00, FLOAT m01, FLOAT m02, - FLOAT m10, FLOAT m11, FLOAT m12, - FLOAT m20, FLOAT m21, FLOAT m22, - FLOAT m30, FLOAT m31, FLOAT m32); - _XMFLOAT4X3(CONST FLOAT *pArray); - - FLOAT operator() (UINT Row, UINT Column) CONST { return m[Row][Column]; } - FLOAT& operator() (UINT Row, UINT Column) { return m[Row][Column]; } - - _XMFLOAT4X3& operator= (CONST _XMFLOAT4X3& Float4x3); - -#endif // __cplusplus - -} XMFLOAT4X3; - -// 4x3 Matrix: 32 bit floating point components aligned on a 16 byte boundary -#ifdef __cplusplus -__declspec(align(16)) struct XMFLOAT4X3A : public XMFLOAT4X3 -{ - XMFLOAT4X3A() : XMFLOAT4X3() {}; - XMFLOAT4X3A(FLOAT m00, FLOAT m01, FLOAT m02, - FLOAT m10, FLOAT m11, FLOAT m12, - FLOAT m20, FLOAT m21, FLOAT m22, - FLOAT m30, FLOAT m31, FLOAT m32) : - XMFLOAT4X3(m00,m01,m02,m10,m11,m12,m20,m21,m22,m30,m31,m32) {}; - XMFLOAT4X3A(CONST FLOAT *pArray) : XMFLOAT4X3(pArray) {} - - FLOAT operator() (UINT Row, UINT Column) CONST { return m[Row][Column]; } - FLOAT& operator() (UINT Row, UINT Column) { return m[Row][Column]; } - - XMFLOAT4X3A& operator= (CONST XMFLOAT4X3A& Float4x3); -}; -#else -typedef __declspec(align(16)) XMFLOAT4X3 XMFLOAT4X3A; -#endif // __cplusplus - -// 4x4 Matrix: 32 bit floating point components -typedef struct _XMFLOAT4X4 -{ - union - { - struct - { - FLOAT _11, _12, _13, _14; - FLOAT _21, _22, _23, _24; - FLOAT _31, _32, _33, _34; - FLOAT _41, _42, _43, _44; - }; - FLOAT m[4][4]; - }; - -#ifdef __cplusplus - - _XMFLOAT4X4() {}; - _XMFLOAT4X4(FLOAT m00, FLOAT m01, FLOAT m02, FLOAT m03, - FLOAT m10, FLOAT m11, FLOAT m12, FLOAT m13, - FLOAT m20, FLOAT m21, FLOAT m22, FLOAT m23, - FLOAT m30, FLOAT m31, FLOAT m32, FLOAT m33); - _XMFLOAT4X4(CONST FLOAT *pArray); - - FLOAT operator() (UINT Row, UINT Column) CONST { return m[Row][Column]; } - FLOAT& operator() (UINT Row, UINT Column) { return m[Row][Column]; } - - _XMFLOAT4X4& operator= (CONST _XMFLOAT4X4& Float4x4); - -#endif // __cplusplus - -} XMFLOAT4X4; - -// 4x4 Matrix: 32 bit floating point components aligned on a 16 byte boundary -#ifdef __cplusplus -__declspec(align(16)) struct XMFLOAT4X4A : public XMFLOAT4X4 -{ - XMFLOAT4X4A() : XMFLOAT4X4() {}; - XMFLOAT4X4A(FLOAT m00, FLOAT m01, FLOAT m02, FLOAT m03, - FLOAT m10, FLOAT m11, FLOAT m12, FLOAT m13, - FLOAT m20, FLOAT m21, FLOAT m22, FLOAT m23, - FLOAT m30, FLOAT m31, FLOAT m32, FLOAT m33) - : XMFLOAT4X4(m00,m01,m02,m03,m10,m11,m12,m13,m20,m21,m22,m23,m30,m31,m32,m33) {}; - XMFLOAT4X4A(CONST FLOAT *pArray) : XMFLOAT4X4(pArray) {} - - FLOAT operator() (UINT Row, UINT Column) CONST { return m[Row][Column]; } - FLOAT& operator() (UINT Row, UINT Column) { return m[Row][Column]; } - - XMFLOAT4X4A& operator= (CONST XMFLOAT4X4A& Float4x4); -}; -#else -typedef __declspec(align(16)) XMFLOAT4X4 XMFLOAT4X4A; -#endif // __cplusplus - -#if !defined(_XM_X86_) && !defined(_XM_X64_) -#pragma bitfield_order(pop) -#endif // !_XM_X86_ && !_XM_X64_ - -#pragma warning(pop) - - -/**************************************************************************** - * - * Data conversion operations - * - ****************************************************************************/ - -#if !defined(_XM_NO_INTRINSICS_) && defined(_XM_VMX128_INTRINSICS_) -#else -XMVECTOR XMConvertVectorIntToFloat(FXMVECTOR VInt, UINT DivExponent); -XMVECTOR XMConvertVectorFloatToInt(FXMVECTOR VFloat, UINT MulExponent); -XMVECTOR XMConvertVectorUIntToFloat(FXMVECTOR VUInt, UINT DivExponent); -XMVECTOR XMConvertVectorFloatToUInt(FXMVECTOR VFloat, UINT MulExponent); -#endif - -FLOAT XMConvertHalfToFloat(HALF Value); -FLOAT* XMConvertHalfToFloatStream(_Out_bytecap_x_(sizeof(FLOAT)+OutputStride*(HalfCount-1)) FLOAT* pOutputStream, - _In_ UINT OutputStride, - _In_bytecount_x_(sizeof(HALF)+InputStride*(HalfCount-1)) CONST HALF* pInputStream, - _In_ UINT InputStride, _In_ UINT HalfCount); -HALF XMConvertFloatToHalf(FLOAT Value); -HALF* XMConvertFloatToHalfStream(_Out_bytecap_x_(sizeof(HALF)+OutputStride*(FloatCount-1)) HALF* pOutputStream, - _In_ UINT OutputStride, - _In_bytecount_x_(sizeof(FLOAT)+InputStride*(FloatCount-1)) CONST FLOAT* pInputStream, - _In_ UINT InputStride, _In_ UINT FloatCount); - -#if !defined(_XM_NO_INTRINSICS_) && defined(_XM_VMX128_INTRINSICS_) -#else -XMVECTOR XMVectorSetBinaryConstant(UINT C0, UINT C1, UINT C2, UINT C3); -XMVECTOR XMVectorSplatConstant(INT IntConstant, UINT DivExponent); -XMVECTOR XMVectorSplatConstantInt(INT IntConstant); -#endif - -/**************************************************************************** - * - * Load operations - * - ****************************************************************************/ - -XMVECTOR XMLoadInt(_In_ CONST UINT* pSource); -XMVECTOR XMLoadFloat(_In_ CONST FLOAT* pSource); - -XMVECTOR XMLoadInt2(_In_count_c_(2) CONST UINT* pSource); -XMVECTOR XMLoadInt2A(_In_count_c_(2) CONST UINT* PSource); -XMVECTOR XMLoadFloat2(_In_ CONST XMFLOAT2* pSource); -XMVECTOR XMLoadFloat2A(_In_ CONST XMFLOAT2A* pSource); -XMVECTOR XMLoadHalf2(_In_ CONST XMHALF2* pSource); -XMVECTOR XMLoadShortN2(_In_ CONST XMSHORTN2* pSource); -XMVECTOR XMLoadShort2(_In_ CONST XMSHORT2* pSource); -XMVECTOR XMLoadUShortN2(_In_ CONST XMUSHORTN2* pSource); -XMVECTOR XMLoadUShort2(_In_ CONST XMUSHORT2* pSource); - -XMVECTOR XMLoadInt3(_In_count_c_(3) CONST UINT* pSource); -XMVECTOR XMLoadInt3A(_In_count_c_(3) CONST UINT* pSource); -XMVECTOR XMLoadFloat3(_In_ CONST XMFLOAT3* pSource); -XMVECTOR XMLoadFloat3A(_In_ CONST XMFLOAT3A* pSource); -XMVECTOR XMLoadHenDN3(_In_ CONST XMHENDN3* pSource); -XMVECTOR XMLoadHenD3(_In_ CONST XMHEND3* pSource); -XMVECTOR XMLoadUHenDN3(_In_ CONST XMUHENDN3* pSource); -XMVECTOR XMLoadUHenD3(_In_ CONST XMUHEND3* pSource); -XMVECTOR XMLoadDHenN3(_In_ CONST XMDHENN3* pSource); -XMVECTOR XMLoadDHen3(_In_ CONST XMDHEN3* pSource); -XMVECTOR XMLoadUDHenN3(_In_ CONST XMUDHENN3* pSource); -XMVECTOR XMLoadUDHen3(_In_ CONST XMUDHEN3* pSource); -XMVECTOR XMLoadU565(_In_ CONST XMU565* pSource); -XMVECTOR XMLoadFloat3PK(_In_ CONST XMFLOAT3PK* pSource); -XMVECTOR XMLoadFloat3SE(_In_ CONST XMFLOAT3SE* pSource); - -XMVECTOR XMLoadInt4(_In_count_c_(4) CONST UINT* pSource); -XMVECTOR XMLoadInt4A(_In_count_c_(4) CONST UINT* pSource); -XMVECTOR XMLoadFloat4(_In_ CONST XMFLOAT4* pSource); -XMVECTOR XMLoadFloat4A(_In_ CONST XMFLOAT4A* pSource); -XMVECTOR XMLoadHalf4(_In_ CONST XMHALF4* pSource); -XMVECTOR XMLoadShortN4(_In_ CONST XMSHORTN4* pSource); -XMVECTOR XMLoadShort4(_In_ CONST XMSHORT4* pSource); -XMVECTOR XMLoadUShortN4(_In_ CONST XMUSHORTN4* pSource); -XMVECTOR XMLoadUShort4(_In_ CONST XMUSHORT4* pSource); -XMVECTOR XMLoadXIcoN4(_In_ CONST XMXICON4* pSource); -XMVECTOR XMLoadXIco4(_In_ CONST XMXICO4* pSource); -XMVECTOR XMLoadIcoN4(_In_ CONST XMICON4* pSource); -XMVECTOR XMLoadIco4(_In_ CONST XMICO4* pSource); -XMVECTOR XMLoadUIcoN4(_In_ CONST XMUICON4* pSource); -XMVECTOR XMLoadUIco4(_In_ CONST XMUICO4* pSource); -XMVECTOR XMLoadXDecN4(_In_ CONST XMXDECN4* pSource); -XMVECTOR XMLoadXDec4(_In_ CONST XMXDEC4* pSource); -XMVECTOR XMLoadDecN4(_In_ CONST XMDECN4* pSource); -XMVECTOR XMLoadDec4(_In_ CONST XMDEC4* pSource); -XMVECTOR XMLoadUDecN4(_In_ CONST XMUDECN4* pSource); -XMVECTOR XMLoadUDec4(_In_ CONST XMUDEC4* pSource); -XMVECTOR XMLoadByteN4(_In_ CONST XMBYTEN4* pSource); -XMVECTOR XMLoadByte4(_In_ CONST XMBYTE4* pSource); -XMVECTOR XMLoadUByteN4(_In_ CONST XMUBYTEN4* pSource); -XMVECTOR XMLoadUByte4(_In_ CONST XMUBYTE4* pSource); -XMVECTOR XMLoadUNibble4(_In_ CONST XMUNIBBLE4* pSource); -XMVECTOR XMLoadU555(_In_ CONST XMU555* pSource); -XMVECTOR XMLoadColor(_In_ CONST XMCOLOR* pSource); - -XMMATRIX XMLoadFloat3x3(_In_ CONST XMFLOAT3X3* pSource); -XMMATRIX XMLoadFloat4x3(_In_ CONST XMFLOAT4X3* pSource); -XMMATRIX XMLoadFloat4x3A(_In_ CONST XMFLOAT4X3A* pSource); -XMMATRIX XMLoadFloat4x4(_In_ CONST XMFLOAT4X4* pSource); -XMMATRIX XMLoadFloat4x4A(_In_ CONST XMFLOAT4X4A* pSource); - -/**************************************************************************** - * - * Store operations - * - ****************************************************************************/ - -VOID XMStoreInt(_Out_ UINT* pDestination, FXMVECTOR V); -VOID XMStoreFloat(_Out_ FLOAT* pDestination, FXMVECTOR V); - -VOID XMStoreInt2(_Out_cap_c_(2) UINT* pDestination, FXMVECTOR V); -VOID XMStoreInt2A(_Out_cap_c_(2) UINT* pDestination, FXMVECTOR V); -VOID XMStoreFloat2(_Out_ XMFLOAT2* pDestination, FXMVECTOR V); -VOID XMStoreFloat2A(_Out_ XMFLOAT2A* pDestination, FXMVECTOR V); -VOID XMStoreHalf2(_Out_ XMHALF2* pDestination, FXMVECTOR V); -VOID XMStoreShortN2(_Out_ XMSHORTN2* pDestination, FXMVECTOR V); -VOID XMStoreShort2(_Out_ XMSHORT2* pDestination, FXMVECTOR V); -VOID XMStoreUShortN2(_Out_ XMUSHORTN2* pDestination, FXMVECTOR V); -VOID XMStoreUShort2(_Out_ XMUSHORT2* pDestination, FXMVECTOR V); - -VOID XMStoreInt3(_Out_cap_c_(3) UINT* pDestination, FXMVECTOR V); -VOID XMStoreInt3A(_Out_cap_c_(3) UINT* pDestination, FXMVECTOR V); -VOID XMStoreFloat3(_Out_ XMFLOAT3* pDestination, FXMVECTOR V); -VOID XMStoreFloat3A(_Out_ XMFLOAT3A* pDestination, FXMVECTOR V); -VOID XMStoreHenDN3(_Out_ XMHENDN3* pDestination, FXMVECTOR V); -VOID XMStoreHenD3(_Out_ XMHEND3* pDestination, FXMVECTOR V); -VOID XMStoreUHenDN3(_Out_ XMUHENDN3* pDestination, FXMVECTOR V); -VOID XMStoreUHenD3(_Out_ XMUHEND3* pDestination, FXMVECTOR V); -VOID XMStoreDHenN3(_Out_ XMDHENN3* pDestination, FXMVECTOR V); -VOID XMStoreDHen3(_Out_ XMDHEN3* pDestination, FXMVECTOR V); -VOID XMStoreUDHenN3(_Out_ XMUDHENN3* pDestination, FXMVECTOR V); -VOID XMStoreUDHen3(_Out_ XMUDHEN3* pDestination, FXMVECTOR V); -VOID XMStoreU565(_Out_ XMU565* pDestination, FXMVECTOR V); -VOID XMStoreFloat3PK(_Out_ XMFLOAT3PK* pDestination, FXMVECTOR V); -VOID XMStoreFloat3SE(_Out_ XMFLOAT3SE* pDestination, FXMVECTOR V); - -VOID XMStoreInt4(_Out_cap_c_(4) UINT* pDestination, FXMVECTOR V); -VOID XMStoreInt4A(_Out_cap_c_(4) UINT* pDestination, FXMVECTOR V); -VOID XMStoreInt4NC(_Out_ UINT* pDestination, FXMVECTOR V); -VOID XMStoreFloat4(_Out_ XMFLOAT4* pDestination, FXMVECTOR V); -VOID XMStoreFloat4A(_Out_ XMFLOAT4A* pDestination, FXMVECTOR V); -VOID XMStoreFloat4NC(_Out_ XMFLOAT4* pDestination, FXMVECTOR V); -VOID XMStoreHalf4(_Out_ XMHALF4* pDestination, FXMVECTOR V); -VOID XMStoreShortN4(_Out_ XMSHORTN4* pDestination, FXMVECTOR V); -VOID XMStoreShort4(_Out_ XMSHORT4* pDestination, FXMVECTOR V); -VOID XMStoreUShortN4(_Out_ XMUSHORTN4* pDestination, FXMVECTOR V); -VOID XMStoreUShort4(_Out_ XMUSHORT4* pDestination, FXMVECTOR V); -VOID XMStoreXIcoN4(_Out_ XMXICON4* pDestination, FXMVECTOR V); -VOID XMStoreXIco4(_Out_ XMXICO4* pDestination, FXMVECTOR V); -VOID XMStoreIcoN4(_Out_ XMICON4* pDestination, FXMVECTOR V); -VOID XMStoreIco4(_Out_ XMICO4* pDestination, FXMVECTOR V); -VOID XMStoreUIcoN4(_Out_ XMUICON4* pDestination, FXMVECTOR V); -VOID XMStoreUIco4(_Out_ XMUICO4* pDestination, FXMVECTOR V); -VOID XMStoreXDecN4(_Out_ XMXDECN4* pDestination, FXMVECTOR V); -VOID XMStoreXDec4(_Out_ XMXDEC4* pDestination, FXMVECTOR V); -VOID XMStoreDecN4(_Out_ XMDECN4* pDestination, FXMVECTOR V); -VOID XMStoreDec4(_Out_ XMDEC4* pDestination, FXMVECTOR V); -VOID XMStoreUDecN4(_Out_ XMUDECN4* pDestination, FXMVECTOR V); -VOID XMStoreUDec4(_Out_ XMUDEC4* pDestination, FXMVECTOR V); -VOID XMStoreByteN4(_Out_ XMBYTEN4* pDestination, FXMVECTOR V); -VOID XMStoreByte4(_Out_ XMBYTE4* pDestination, FXMVECTOR V); -VOID XMStoreUByteN4(_Out_ XMUBYTEN4* pDestination, FXMVECTOR V); -VOID XMStoreUByte4(_Out_ XMUBYTE4* pDestination, FXMVECTOR V); -VOID XMStoreUNibble4(_Out_ XMUNIBBLE4* pDestination, FXMVECTOR V); -VOID XMStoreU555(_Out_ XMU555* pDestination, FXMVECTOR V); -VOID XMStoreColor(_Out_ XMCOLOR* pDestination, FXMVECTOR V); - -VOID XMStoreFloat3x3(_Out_ XMFLOAT3X3* pDestination, CXMMATRIX M); -VOID XMStoreFloat3x3NC(_Out_ XMFLOAT3X3* pDestination, CXMMATRIX M); -VOID XMStoreFloat4x3(_Out_ XMFLOAT4X3* pDestination, CXMMATRIX M); -VOID XMStoreFloat4x3A(_Out_ XMFLOAT4X3A* pDestination, CXMMATRIX M); -VOID XMStoreFloat4x3NC(_Out_ XMFLOAT4X3* pDestination, CXMMATRIX M); -VOID XMStoreFloat4x4(_Out_ XMFLOAT4X4* pDestination, CXMMATRIX M); -VOID XMStoreFloat4x4A(_Out_ XMFLOAT4X4A* pDestination, CXMMATRIX M); -VOID XMStoreFloat4x4NC(_Out_ XMFLOAT4X4* pDestination, CXMMATRIX M); - -/**************************************************************************** - * - * General vector operations - * - ****************************************************************************/ - -XMVECTOR XMVectorZero(); -XMVECTOR XMVectorSet(FLOAT x, FLOAT y, FLOAT z, FLOAT w); -XMVECTOR XMVectorSetInt(UINT x, UINT y, UINT z, UINT w); -XMVECTOR XMVectorReplicate(FLOAT Value); -XMVECTOR XMVectorReplicatePtr(_In_ CONST FLOAT *pValue); -XMVECTOR XMVectorReplicateInt(UINT Value); -XMVECTOR XMVectorReplicateIntPtr(_In_ CONST UINT *pValue); -XMVECTOR XMVectorTrueInt(); -XMVECTOR XMVectorFalseInt(); -XMVECTOR XMVectorSplatX(FXMVECTOR V); -XMVECTOR XMVectorSplatY(FXMVECTOR V); -XMVECTOR XMVectorSplatZ(FXMVECTOR V); -XMVECTOR XMVectorSplatW(FXMVECTOR V); -XMVECTOR XMVectorSplatOne(); -XMVECTOR XMVectorSplatInfinity(); -XMVECTOR XMVectorSplatQNaN(); -XMVECTOR XMVectorSplatEpsilon(); -XMVECTOR XMVectorSplatSignMask(); - -FLOAT XMVectorGetByIndex(FXMVECTOR V,UINT i); -FLOAT XMVectorGetX(FXMVECTOR V); -FLOAT XMVectorGetY(FXMVECTOR V); -FLOAT XMVectorGetZ(FXMVECTOR V); -FLOAT XMVectorGetW(FXMVECTOR V); - -VOID XMVectorGetByIndexPtr(_Out_ FLOAT *f, FXMVECTOR V, UINT i); -VOID XMVectorGetXPtr(_Out_ FLOAT *x, FXMVECTOR V); -VOID XMVectorGetYPtr(_Out_ FLOAT *y, FXMVECTOR V); -VOID XMVectorGetZPtr(_Out_ FLOAT *z, FXMVECTOR V); -VOID XMVectorGetWPtr(_Out_ FLOAT *w, FXMVECTOR V); - -UINT XMVectorGetIntByIndex(FXMVECTOR V,UINT i); -UINT XMVectorGetIntX(FXMVECTOR V); -UINT XMVectorGetIntY(FXMVECTOR V); -UINT XMVectorGetIntZ(FXMVECTOR V); -UINT XMVectorGetIntW(FXMVECTOR V); - -VOID XMVectorGetIntByIndexPtr(_Out_ UINT *x,FXMVECTOR V, UINT i); -VOID XMVectorGetIntXPtr(_Out_ UINT *x, FXMVECTOR V); -VOID XMVectorGetIntYPtr(_Out_ UINT *y, FXMVECTOR V); -VOID XMVectorGetIntZPtr(_Out_ UINT *z, FXMVECTOR V); -VOID XMVectorGetIntWPtr(_Out_ UINT *w, FXMVECTOR V); - -XMVECTOR XMVectorSetByIndex(FXMVECTOR V,FLOAT f,UINT i); -XMVECTOR XMVectorSetX(FXMVECTOR V, FLOAT x); -XMVECTOR XMVectorSetY(FXMVECTOR V, FLOAT y); -XMVECTOR XMVectorSetZ(FXMVECTOR V, FLOAT z); -XMVECTOR XMVectorSetW(FXMVECTOR V, FLOAT w); - -XMVECTOR XMVectorSetByIndexPtr(FXMVECTOR V, _In_ CONST FLOAT *f, UINT i); -XMVECTOR XMVectorSetXPtr(FXMVECTOR V, _In_ CONST FLOAT *x); -XMVECTOR XMVectorSetYPtr(FXMVECTOR V, _In_ CONST FLOAT *y); -XMVECTOR XMVectorSetZPtr(FXMVECTOR V, _In_ CONST FLOAT *z); -XMVECTOR XMVectorSetWPtr(FXMVECTOR V, _In_ CONST FLOAT *w); - -XMVECTOR XMVectorSetIntByIndex(FXMVECTOR V, UINT x,UINT i); -XMVECTOR XMVectorSetIntX(FXMVECTOR V, UINT x); -XMVECTOR XMVectorSetIntY(FXMVECTOR V, UINT y); -XMVECTOR XMVectorSetIntZ(FXMVECTOR V, UINT z); -XMVECTOR XMVectorSetIntW(FXMVECTOR V, UINT w); - -XMVECTOR XMVectorSetIntByIndexPtr(FXMVECTOR V, _In_ CONST UINT *x, UINT i); -XMVECTOR XMVectorSetIntXPtr(FXMVECTOR V, _In_ CONST UINT *x); -XMVECTOR XMVectorSetIntYPtr(FXMVECTOR V, _In_ CONST UINT *y); -XMVECTOR XMVectorSetIntZPtr(FXMVECTOR V, _In_ CONST UINT *z); -XMVECTOR XMVectorSetIntWPtr(FXMVECTOR V, _In_ CONST UINT *w); - -XMVECTOR XMVectorPermuteControl(UINT ElementIndex0, UINT ElementIndex1, UINT ElementIndex2, UINT ElementIndex3); -XMVECTOR XMVectorPermute(FXMVECTOR V1, FXMVECTOR V2, FXMVECTOR Control); -XMVECTOR XMVectorSelectControl(UINT VectorIndex0, UINT VectorIndex1, UINT VectorIndex2, UINT VectorIndex3); -XMVECTOR XMVectorSelect(FXMVECTOR V1, FXMVECTOR V2, FXMVECTOR Control); -XMVECTOR XMVectorMergeXY(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVectorMergeZW(FXMVECTOR V1, FXMVECTOR V2); - -#if !defined(_XM_NO_INTRINSICS_) && defined(_XM_VMX128_INTRINSICS_) -#else -XMVECTOR XMVectorShiftLeft(FXMVECTOR V1, FXMVECTOR V2, UINT Elements); -XMVECTOR XMVectorRotateLeft(FXMVECTOR V, UINT Elements); -XMVECTOR XMVectorRotateRight(FXMVECTOR V, UINT Elements); -XMVECTOR XMVectorSwizzle(FXMVECTOR V, UINT E0, UINT E1, UINT E2, UINT E3); -XMVECTOR XMVectorInsert(FXMVECTOR VD, FXMVECTOR VS, UINT VSLeftRotateElements, - UINT Select0, UINT Select1, UINT Select2, UINT Select3); -#endif - -XMVECTOR XMVectorEqual(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVectorEqualR(_Out_ UINT* pCR, FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVectorEqualInt(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVectorEqualIntR(_Out_ UINT* pCR, FXMVECTOR V, FXMVECTOR V2); -XMVECTOR XMVectorNearEqual(FXMVECTOR V1, FXMVECTOR V2, FXMVECTOR Epsilon); -XMVECTOR XMVectorNotEqual(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVectorNotEqualInt(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVectorGreater(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVectorGreaterR(_Out_ UINT* pCR, FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVectorGreaterOrEqual(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVectorGreaterOrEqualR(_Out_ UINT* pCR, FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVectorLess(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVectorLessOrEqual(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVectorInBounds(FXMVECTOR V, FXMVECTOR Bounds); -XMVECTOR XMVectorInBoundsR(_Out_ UINT* pCR, FXMVECTOR V, FXMVECTOR Bounds); - -XMVECTOR XMVectorIsNaN(FXMVECTOR V); -XMVECTOR XMVectorIsInfinite(FXMVECTOR V); - -XMVECTOR XMVectorMin(FXMVECTOR V1,FXMVECTOR V2); -XMVECTOR XMVectorMax(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVectorRound(FXMVECTOR V); -XMVECTOR XMVectorTruncate(FXMVECTOR V); -XMVECTOR XMVectorFloor(FXMVECTOR V); -XMVECTOR XMVectorCeiling(FXMVECTOR V); -XMVECTOR XMVectorClamp(FXMVECTOR V, FXMVECTOR Min, FXMVECTOR Max); -XMVECTOR XMVectorSaturate(FXMVECTOR V); - -XMVECTOR XMVectorAndInt(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVectorAndCInt(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVectorOrInt(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVectorNorInt(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVectorXorInt(FXMVECTOR V1, FXMVECTOR V2); - -XMVECTOR XMVectorNegate(FXMVECTOR V); -XMVECTOR XMVectorAdd(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVectorAddAngles(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVectorSubtract(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVectorSubtractAngles(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVectorMultiply(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVectorMultiplyAdd(FXMVECTOR V1, FXMVECTOR V2, FXMVECTOR V3); -XMVECTOR XMVectorDivide(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVectorNegativeMultiplySubtract(FXMVECTOR V1, FXMVECTOR V2, FXMVECTOR V3); -XMVECTOR XMVectorScale(FXMVECTOR V, FLOAT ScaleFactor); -XMVECTOR XMVectorReciprocalEst(FXMVECTOR V); -XMVECTOR XMVectorReciprocal(FXMVECTOR V); -XMVECTOR XMVectorSqrtEst(FXMVECTOR V); -XMVECTOR XMVectorSqrt(FXMVECTOR V); -XMVECTOR XMVectorReciprocalSqrtEst(FXMVECTOR V); -XMVECTOR XMVectorReciprocalSqrt(FXMVECTOR V); -XMVECTOR XMVectorExpEst(FXMVECTOR V); -XMVECTOR XMVectorExp(FXMVECTOR V); -XMVECTOR XMVectorLogEst(FXMVECTOR V); -XMVECTOR XMVectorLog(FXMVECTOR V); -XMVECTOR XMVectorPowEst(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVectorPow(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVectorAbs(FXMVECTOR V); -XMVECTOR XMVectorMod(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVectorModAngles(FXMVECTOR Angles); -XMVECTOR XMVectorSin(FXMVECTOR V); -XMVECTOR XMVectorSinEst(FXMVECTOR V); -XMVECTOR XMVectorCos(FXMVECTOR V); -XMVECTOR XMVectorCosEst(FXMVECTOR V); -VOID XMVectorSinCos(_Out_ XMVECTOR* pSin, _Out_ XMVECTOR* pCos, FXMVECTOR V); -VOID XMVectorSinCosEst(_Out_ XMVECTOR* pSin, _Out_ XMVECTOR* pCos, FXMVECTOR V); -XMVECTOR XMVectorTan(FXMVECTOR V); -XMVECTOR XMVectorTanEst(FXMVECTOR V); -XMVECTOR XMVectorSinH(FXMVECTOR V); -XMVECTOR XMVectorSinHEst(FXMVECTOR V); -XMVECTOR XMVectorCosH(FXMVECTOR V); -XMVECTOR XMVectorCosHEst(FXMVECTOR V); -XMVECTOR XMVectorTanH(FXMVECTOR V); -XMVECTOR XMVectorTanHEst(FXMVECTOR V); -XMVECTOR XMVectorASin(FXMVECTOR V); -XMVECTOR XMVectorASinEst(FXMVECTOR V); -XMVECTOR XMVectorACos(FXMVECTOR V); -XMVECTOR XMVectorACosEst(FXMVECTOR V); -XMVECTOR XMVectorATan(FXMVECTOR V); -XMVECTOR XMVectorATanEst(FXMVECTOR V); -XMVECTOR XMVectorATan2(FXMVECTOR Y, FXMVECTOR X); -XMVECTOR XMVectorATan2Est(FXMVECTOR Y, FXMVECTOR X); -XMVECTOR XMVectorLerp(FXMVECTOR V0, FXMVECTOR V1, FLOAT t); -XMVECTOR XMVectorLerpV(FXMVECTOR V0, FXMVECTOR V1, FXMVECTOR T); -XMVECTOR XMVectorHermite(FXMVECTOR Position0, FXMVECTOR Tangent0, FXMVECTOR Position1, CXMVECTOR Tangent1, FLOAT t); -XMVECTOR XMVectorHermiteV(FXMVECTOR Position0, FXMVECTOR Tangent0, FXMVECTOR Position1, CXMVECTOR Tangent1, CXMVECTOR T); -XMVECTOR XMVectorCatmullRom(FXMVECTOR Position0, FXMVECTOR Position1, FXMVECTOR Position2, CXMVECTOR Position3, FLOAT t); -XMVECTOR XMVectorCatmullRomV(FXMVECTOR Position0, FXMVECTOR Position1, FXMVECTOR Position2, CXMVECTOR Position3, CXMVECTOR T); -XMVECTOR XMVectorBaryCentric(FXMVECTOR Position0, FXMVECTOR Position1, FXMVECTOR Position2, FLOAT f, FLOAT g); -XMVECTOR XMVectorBaryCentricV(FXMVECTOR Position0, FXMVECTOR Position1, FXMVECTOR Position2, CXMVECTOR F, CXMVECTOR G); - -/**************************************************************************** - * - * 2D vector operations - * - ****************************************************************************/ - - -BOOL XMVector2Equal(FXMVECTOR V1, FXMVECTOR V2); -UINT XMVector2EqualR(FXMVECTOR V1, FXMVECTOR V2); -BOOL XMVector2EqualInt(FXMVECTOR V1, FXMVECTOR V2); -UINT XMVector2EqualIntR(FXMVECTOR V1, FXMVECTOR V2); -BOOL XMVector2NearEqual(FXMVECTOR V1, FXMVECTOR V2, FXMVECTOR Epsilon); -BOOL XMVector2NotEqual(FXMVECTOR V1, FXMVECTOR V2); -BOOL XMVector2NotEqualInt(FXMVECTOR V1, FXMVECTOR V2); -BOOL XMVector2Greater(FXMVECTOR V1, FXMVECTOR V2); -UINT XMVector2GreaterR(FXMVECTOR V1, FXMVECTOR V2); -BOOL XMVector2GreaterOrEqual(FXMVECTOR V1, FXMVECTOR V2); -UINT XMVector2GreaterOrEqualR(FXMVECTOR V1, FXMVECTOR V2); -BOOL XMVector2Less(FXMVECTOR V1, FXMVECTOR V2); -BOOL XMVector2LessOrEqual(FXMVECTOR V1, FXMVECTOR V2); -BOOL XMVector2InBounds(FXMVECTOR V, FXMVECTOR Bounds); -UINT XMVector2InBoundsR(FXMVECTOR V, FXMVECTOR Bounds); - -BOOL XMVector2IsNaN(FXMVECTOR V); -BOOL XMVector2IsInfinite(FXMVECTOR V); - -XMVECTOR XMVector2Dot(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVector2Cross(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVector2LengthSq(FXMVECTOR V); -XMVECTOR XMVector2ReciprocalLengthEst(FXMVECTOR V); -XMVECTOR XMVector2ReciprocalLength(FXMVECTOR V); -XMVECTOR XMVector2LengthEst(FXMVECTOR V); -XMVECTOR XMVector2Length(FXMVECTOR V); -XMVECTOR XMVector2NormalizeEst(FXMVECTOR V); -XMVECTOR XMVector2Normalize(FXMVECTOR V); -XMVECTOR XMVector2ClampLength(FXMVECTOR V, FLOAT LengthMin, FLOAT LengthMax); -XMVECTOR XMVector2ClampLengthV(FXMVECTOR V, FXMVECTOR LengthMin, FXMVECTOR LengthMax); -XMVECTOR XMVector2Reflect(FXMVECTOR Incident, FXMVECTOR Normal); -XMVECTOR XMVector2Refract(FXMVECTOR Incident, FXMVECTOR Normal, FLOAT RefractionIndex); -XMVECTOR XMVector2RefractV(FXMVECTOR Incident, FXMVECTOR Normal, FXMVECTOR RefractionIndex); -XMVECTOR XMVector2Orthogonal(FXMVECTOR V); -XMVECTOR XMVector2AngleBetweenNormalsEst(FXMVECTOR N1, FXMVECTOR N2); -XMVECTOR XMVector2AngleBetweenNormals(FXMVECTOR N1, FXMVECTOR N2); -XMVECTOR XMVector2AngleBetweenVectors(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVector2LinePointDistance(FXMVECTOR LinePoint1, FXMVECTOR LinePoint2, FXMVECTOR Point); -XMVECTOR XMVector2IntersectLine(FXMVECTOR Line1Point1, FXMVECTOR Line1Point2, FXMVECTOR Line2Point1, CXMVECTOR Line2Point2); -XMVECTOR XMVector2Transform(FXMVECTOR V, CXMMATRIX M); -XMFLOAT4* XMVector2TransformStream(_Out_bytecap_x_(sizeof(XMFLOAT4)+OutputStride*(VectorCount-1)) XMFLOAT4* pOutputStream, - _In_ UINT OutputStride, - _In_bytecount_x_(sizeof(XMFLOAT2)+InputStride*(VectorCount-1)) CONST XMFLOAT2* pInputStream, - _In_ UINT InputStride, _In_ UINT VectorCount, CXMMATRIX M); -XMFLOAT4* XMVector2TransformStreamNC(_Out_bytecap_x_(sizeof(XMFLOAT4)+OutputStride*(VectorCount-1)) XMFLOAT4* pOutputStream, - _In_ UINT OutputStride, - _In_bytecount_x_(sizeof(XMFLOAT2)+InputStride*(VectorCount-1)) CONST XMFLOAT2* pInputStream, - _In_ UINT InputStride, _In_ UINT VectorCount, CXMMATRIX M); -XMVECTOR XMVector2TransformCoord(FXMVECTOR V, CXMMATRIX M); -XMFLOAT2* XMVector2TransformCoordStream(_Out_bytecap_x_(sizeof(XMFLOAT2)+OutputStride*(VectorCount-1)) XMFLOAT2* pOutputStream, - _In_ UINT OutputStride, - _In_bytecount_x_(sizeof(XMFLOAT2)+InputStride*(VectorCount-1)) CONST XMFLOAT2* pInputStream, - _In_ UINT InputStride, _In_ UINT VectorCount, CXMMATRIX M); -XMVECTOR XMVector2TransformNormal(FXMVECTOR V, CXMMATRIX M); -XMFLOAT2* XMVector2TransformNormalStream(_Out_bytecap_x_(sizeof(XMFLOAT2)+OutputStride*(VectorCount-1)) XMFLOAT2* pOutputStream, - _In_ UINT OutputStride, - _In_bytecount_x_(sizeof(XMFLOAT2)+InputStride*(VectorCount-1)) CONST XMFLOAT2* pInputStream, - _In_ UINT InputStride, _In_ UINT VectorCount, CXMMATRIX M); - -/**************************************************************************** - * - * 3D vector operations - * - ****************************************************************************/ - - -BOOL XMVector3Equal(FXMVECTOR V1, FXMVECTOR V2); -UINT XMVector3EqualR(FXMVECTOR V1, FXMVECTOR V2); -BOOL XMVector3EqualInt(FXMVECTOR V1, FXMVECTOR V2); -UINT XMVector3EqualIntR(FXMVECTOR V1, FXMVECTOR V2); -BOOL XMVector3NearEqual(FXMVECTOR V1, FXMVECTOR V2, FXMVECTOR Epsilon); -BOOL XMVector3NotEqual(FXMVECTOR V1, FXMVECTOR V2); -BOOL XMVector3NotEqualInt(FXMVECTOR V1, FXMVECTOR V2); -BOOL XMVector3Greater(FXMVECTOR V1, FXMVECTOR V2); -UINT XMVector3GreaterR(FXMVECTOR V1, FXMVECTOR V2); -BOOL XMVector3GreaterOrEqual(FXMVECTOR V1, FXMVECTOR V2); -UINT XMVector3GreaterOrEqualR(FXMVECTOR V1, FXMVECTOR V2); -BOOL XMVector3Less(FXMVECTOR V1, FXMVECTOR V2); -BOOL XMVector3LessOrEqual(FXMVECTOR V1, FXMVECTOR V2); -BOOL XMVector3InBounds(FXMVECTOR V, FXMVECTOR Bounds); -UINT XMVector3InBoundsR(FXMVECTOR V, FXMVECTOR Bounds); - -BOOL XMVector3IsNaN(FXMVECTOR V); -BOOL XMVector3IsInfinite(FXMVECTOR V); - -XMVECTOR XMVector3Dot(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVector3Cross(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVector3LengthSq(FXMVECTOR V); -XMVECTOR XMVector3ReciprocalLengthEst(FXMVECTOR V); -XMVECTOR XMVector3ReciprocalLength(FXMVECTOR V); -XMVECTOR XMVector3LengthEst(FXMVECTOR V); -XMVECTOR XMVector3Length(FXMVECTOR V); -XMVECTOR XMVector3NormalizeEst(FXMVECTOR V); -XMVECTOR XMVector3Normalize(FXMVECTOR V); -XMVECTOR XMVector3ClampLength(FXMVECTOR V, FLOAT LengthMin, FLOAT LengthMax); -XMVECTOR XMVector3ClampLengthV(FXMVECTOR V, FXMVECTOR LengthMin, FXMVECTOR LengthMax); -XMVECTOR XMVector3Reflect(FXMVECTOR Incident, FXMVECTOR Normal); -XMVECTOR XMVector3Refract(FXMVECTOR Incident, FXMVECTOR Normal, FLOAT RefractionIndex); -XMVECTOR XMVector3RefractV(FXMVECTOR Incident, FXMVECTOR Normal, FXMVECTOR RefractionIndex); -XMVECTOR XMVector3Orthogonal(FXMVECTOR V); -XMVECTOR XMVector3AngleBetweenNormalsEst(FXMVECTOR N1, FXMVECTOR N2); -XMVECTOR XMVector3AngleBetweenNormals(FXMVECTOR N1, FXMVECTOR N2); -XMVECTOR XMVector3AngleBetweenVectors(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVector3LinePointDistance(FXMVECTOR LinePoint1, FXMVECTOR LinePoint2, FXMVECTOR Point); -VOID XMVector3ComponentsFromNormal(_Out_ XMVECTOR* pParallel, _Out_ XMVECTOR* pPerpendicular, FXMVECTOR V, FXMVECTOR Normal); -XMVECTOR XMVector3Rotate(FXMVECTOR V, FXMVECTOR RotationQuaternion); -XMVECTOR XMVector3InverseRotate(FXMVECTOR V, FXMVECTOR RotationQuaternion); -XMVECTOR XMVector3Transform(FXMVECTOR V, CXMMATRIX M); -XMFLOAT4* XMVector3TransformStream(_Out_bytecap_x_(sizeof(XMFLOAT4)+OutputStride*(VectorCount-1)) XMFLOAT4* pOutputStream, - _In_ UINT OutputStride, - _In_bytecount_x_(sizeof(XMFLOAT3)+InputStride*(VectorCount-1)) CONST XMFLOAT3* pInputStream, - _In_ UINT InputStride, _In_ UINT VectorCount, CXMMATRIX M); -XMFLOAT4* XMVector3TransformStreamNC(_Out_bytecap_x_(sizeof(XMFLOAT4)+OutputStride*(VectorCount-1)) XMFLOAT4* pOutputStream, - _In_ UINT OutputStride, - _In_bytecount_x_(sizeof(XMFLOAT3)+InputStride*(VectorCount-1)) CONST XMFLOAT3* pInputStream, - _In_ UINT InputStride, _In_ UINT VectorCount, CXMMATRIX M); -XMVECTOR XMVector3TransformCoord(FXMVECTOR V, CXMMATRIX M); -XMFLOAT3* XMVector3TransformCoordStream(_Out_bytecap_x_(sizeof(XMFLOAT3)+OutputStride*(VectorCount-1)) XMFLOAT3* pOutputStream, - _In_ UINT OutputStride, - _In_bytecount_x_(sizeof(XMFLOAT3)+InputStride*(VectorCount-1)) CONST XMFLOAT3* pInputStream, - _In_ UINT InputStride, _In_ UINT VectorCount, CXMMATRIX M); -XMVECTOR XMVector3TransformNormal(FXMVECTOR V, CXMMATRIX M); -XMFLOAT3* XMVector3TransformNormalStream(_Out_bytecap_x_(sizeof(XMFLOAT3)+OutputStride*(VectorCount-1)) XMFLOAT3* pOutputStream, - _In_ UINT OutputStride, - _In_bytecount_x_(sizeof(XMFLOAT3)+InputStride*(VectorCount-1)) CONST XMFLOAT3* pInputStream, - _In_ UINT InputStride, _In_ UINT VectorCount, CXMMATRIX M); -XMVECTOR XMVector3Project(FXMVECTOR V, FLOAT ViewportX, FLOAT ViewportY, FLOAT ViewportWidth, FLOAT ViewportHeight, FLOAT ViewportMinZ, FLOAT ViewportMaxZ, - CXMMATRIX Projection, CXMMATRIX View, CXMMATRIX World); -XMFLOAT3* XMVector3ProjectStream(_Out_bytecap_x_(sizeof(XMFLOAT3)+OutputStride*(VectorCount-1)) XMFLOAT3* pOutputStream, - _In_ UINT OutputStride, - _In_bytecount_x_(sizeof(XMFLOAT3)+InputStride*(VectorCount-1)) CONST XMFLOAT3* pInputStream, - _In_ UINT InputStride, _In_ UINT VectorCount, - FLOAT ViewportX, FLOAT ViewportY, FLOAT ViewportWidth, FLOAT ViewportHeight, FLOAT ViewportMinZ, FLOAT ViewportMaxZ, - CXMMATRIX Projection, CXMMATRIX View, CXMMATRIX World); -XMVECTOR XMVector3Unproject(FXMVECTOR V, FLOAT ViewportX, FLOAT ViewportY, FLOAT ViewportWidth, FLOAT ViewportHeight, FLOAT ViewportMinZ, FLOAT ViewportMaxZ, - CXMMATRIX Projection, CXMMATRIX View, CXMMATRIX World); -XMFLOAT3* XMVector3UnprojectStream(_Out_bytecap_x_(sizeof(XMFLOAT3)+OutputStride*(VectorCount-1)) XMFLOAT3* pOutputStream, - _In_ UINT OutputStride, - _In_bytecount_x_(sizeof(XMFLOAT3)+InputStride*(VectorCount-1)) CONST XMFLOAT3* pInputStream, - _In_ UINT InputStride, _In_ UINT VectorCount, - FLOAT ViewportX, FLOAT ViewportY, FLOAT ViewportWidth, FLOAT ViewportHeight, FLOAT ViewportMinZ, FLOAT ViewportMaxZ, - CXMMATRIX Projection, CXMMATRIX View, CXMMATRIX World); - -/**************************************************************************** - * - * 4D vector operations - * - ****************************************************************************/ - -BOOL XMVector4Equal(FXMVECTOR V1, FXMVECTOR V2); -UINT XMVector4EqualR(FXMVECTOR V1, FXMVECTOR V2); -BOOL XMVector4EqualInt(FXMVECTOR V1, FXMVECTOR V2); -UINT XMVector4EqualIntR(FXMVECTOR V1, FXMVECTOR V2); -BOOL XMVector4NearEqual(FXMVECTOR V1, FXMVECTOR V2, FXMVECTOR Epsilon); -BOOL XMVector4NotEqual(FXMVECTOR V1, FXMVECTOR V2); -BOOL XMVector4NotEqualInt(FXMVECTOR V1, FXMVECTOR V2); -BOOL XMVector4Greater(FXMVECTOR V1, FXMVECTOR V2); -UINT XMVector4GreaterR(FXMVECTOR V1, FXMVECTOR V2); -BOOL XMVector4GreaterOrEqual(FXMVECTOR V1, FXMVECTOR V2); -UINT XMVector4GreaterOrEqualR(FXMVECTOR V1, FXMVECTOR V2); -BOOL XMVector4Less(FXMVECTOR V1, FXMVECTOR V2); -BOOL XMVector4LessOrEqual(FXMVECTOR V1, FXMVECTOR V2); -BOOL XMVector4InBounds(FXMVECTOR V, FXMVECTOR Bounds); -UINT XMVector4InBoundsR(FXMVECTOR V, FXMVECTOR Bounds); - -BOOL XMVector4IsNaN(FXMVECTOR V); -BOOL XMVector4IsInfinite(FXMVECTOR V); - -XMVECTOR XMVector4Dot(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVector4Cross(FXMVECTOR V1, FXMVECTOR V2, FXMVECTOR V3); -XMVECTOR XMVector4LengthSq(FXMVECTOR V); -XMVECTOR XMVector4ReciprocalLengthEst(FXMVECTOR V); -XMVECTOR XMVector4ReciprocalLength(FXMVECTOR V); -XMVECTOR XMVector4LengthEst(FXMVECTOR V); -XMVECTOR XMVector4Length(FXMVECTOR V); -XMVECTOR XMVector4NormalizeEst(FXMVECTOR V); -XMVECTOR XMVector4Normalize(FXMVECTOR V); -XMVECTOR XMVector4ClampLength(FXMVECTOR V, FLOAT LengthMin, FLOAT LengthMax); -XMVECTOR XMVector4ClampLengthV(FXMVECTOR V, FXMVECTOR LengthMin, FXMVECTOR LengthMax); -XMVECTOR XMVector4Reflect(FXMVECTOR Incident, FXMVECTOR Normal); -XMVECTOR XMVector4Refract(FXMVECTOR Incident, FXMVECTOR Normal, FLOAT RefractionIndex); -XMVECTOR XMVector4RefractV(FXMVECTOR Incident, FXMVECTOR Normal, FXMVECTOR RefractionIndex); -XMVECTOR XMVector4Orthogonal(FXMVECTOR V); -XMVECTOR XMVector4AngleBetweenNormalsEst(FXMVECTOR N1, FXMVECTOR N2); -XMVECTOR XMVector4AngleBetweenNormals(FXMVECTOR N1, FXMVECTOR N2); -XMVECTOR XMVector4AngleBetweenVectors(FXMVECTOR V1, FXMVECTOR V2); -XMVECTOR XMVector4Transform(FXMVECTOR V, CXMMATRIX M); -XMFLOAT4* XMVector4TransformStream(_Out_bytecap_x_(sizeof(XMFLOAT4)+OutputStride*(VectorCount-1)) XMFLOAT4* pOutputStream, - _In_ UINT OutputStride, - _In_bytecount_x_(sizeof(XMFLOAT4)+InputStride*(VectorCount-1)) CONST XMFLOAT4* pInputStream, - _In_ UINT InputStride, _In_ UINT VectorCount, CXMMATRIX M); - -/**************************************************************************** - * - * Matrix operations - * - ****************************************************************************/ - -BOOL XMMatrixIsNaN(CXMMATRIX M); -BOOL XMMatrixIsInfinite(CXMMATRIX M); -BOOL XMMatrixIsIdentity(CXMMATRIX M); - -XMMATRIX XMMatrixMultiply(CXMMATRIX M1, CXMMATRIX M2); -XMMATRIX XMMatrixMultiplyTranspose(CXMMATRIX M1, CXMMATRIX M2); -XMMATRIX XMMatrixTranspose(CXMMATRIX M); -XMMATRIX XMMatrixInverse(_Out_ XMVECTOR* pDeterminant, CXMMATRIX M); -XMVECTOR XMMatrixDeterminant(CXMMATRIX M); -BOOL XMMatrixDecompose(_Out_ XMVECTOR *outScale, _Out_ XMVECTOR *outRotQuat, _Out_ XMVECTOR *outTrans, CXMMATRIX M); - -XMMATRIX XMMatrixIdentity(); -XMMATRIX XMMatrixSet(FLOAT m00, FLOAT m01, FLOAT m02, FLOAT m03, - FLOAT m10, FLOAT m11, FLOAT m12, FLOAT m13, - FLOAT m20, FLOAT m21, FLOAT m22, FLOAT m23, - FLOAT m30, FLOAT m31, FLOAT m32, FLOAT m33); -XMMATRIX XMMatrixTranslation(FLOAT OffsetX, FLOAT OffsetY, FLOAT OffsetZ); -XMMATRIX XMMatrixTranslationFromVector(FXMVECTOR Offset); -XMMATRIX XMMatrixScaling(FLOAT ScaleX, FLOAT ScaleY, FLOAT ScaleZ); -XMMATRIX XMMatrixScalingFromVector(FXMVECTOR Scale); -XMMATRIX XMMatrixRotationX(FLOAT Angle); -XMMATRIX XMMatrixRotationY(FLOAT Angle); -XMMATRIX XMMatrixRotationZ(FLOAT Angle); -XMMATRIX XMMatrixRotationRollPitchYaw(FLOAT Pitch, FLOAT Yaw, FLOAT Roll); -XMMATRIX XMMatrixRotationRollPitchYawFromVector(FXMVECTOR Angles); -XMMATRIX XMMatrixRotationNormal(FXMVECTOR NormalAxis, FLOAT Angle); -XMMATRIX XMMatrixRotationAxis(FXMVECTOR Axis, FLOAT Angle); -XMMATRIX XMMatrixRotationQuaternion(FXMVECTOR Quaternion); -XMMATRIX XMMatrixTransformation2D(FXMVECTOR ScalingOrigin, FLOAT ScalingOrientation, FXMVECTOR Scaling, - FXMVECTOR RotationOrigin, FLOAT Rotation, CXMVECTOR Translation); -XMMATRIX XMMatrixTransformation(FXMVECTOR ScalingOrigin, FXMVECTOR ScalingOrientationQuaternion, FXMVECTOR Scaling, - CXMVECTOR RotationOrigin, CXMVECTOR RotationQuaternion, CXMVECTOR Translation); -XMMATRIX XMMatrixAffineTransformation2D(FXMVECTOR Scaling, FXMVECTOR RotationOrigin, FLOAT Rotation, FXMVECTOR Translation); -XMMATRIX XMMatrixAffineTransformation(FXMVECTOR Scaling, FXMVECTOR RotationOrigin, FXMVECTOR RotationQuaternion, CXMVECTOR Translation); -XMMATRIX XMMatrixReflect(FXMVECTOR ReflectionPlane); -XMMATRIX XMMatrixShadow(FXMVECTOR ShadowPlane, FXMVECTOR LightPosition); - -XMMATRIX XMMatrixLookAtLH(FXMVECTOR EyePosition, FXMVECTOR FocusPosition, FXMVECTOR UpDirection); -XMMATRIX XMMatrixLookAtRH(FXMVECTOR EyePosition, FXMVECTOR FocusPosition, FXMVECTOR UpDirection); -XMMATRIX XMMatrixLookToLH(FXMVECTOR EyePosition, FXMVECTOR EyeDirection, FXMVECTOR UpDirection); -XMMATRIX XMMatrixLookToRH(FXMVECTOR EyePosition, FXMVECTOR EyeDirection, FXMVECTOR UpDirection); -XMMATRIX XMMatrixPerspectiveLH(FLOAT ViewWidth, FLOAT ViewHeight, FLOAT NearZ, FLOAT FarZ); -XMMATRIX XMMatrixPerspectiveRH(FLOAT ViewWidth, FLOAT ViewHeight, FLOAT NearZ, FLOAT FarZ); -XMMATRIX XMMatrixPerspectiveFovLH(FLOAT FovAngleY, FLOAT AspectHByW, FLOAT NearZ, FLOAT FarZ); -XMMATRIX XMMatrixPerspectiveFovRH(FLOAT FovAngleY, FLOAT AspectHByW, FLOAT NearZ, FLOAT FarZ); -XMMATRIX XMMatrixPerspectiveOffCenterLH(FLOAT ViewLeft, FLOAT ViewRight, FLOAT ViewBottom, FLOAT ViewTop, FLOAT NearZ, FLOAT FarZ); -XMMATRIX XMMatrixPerspectiveOffCenterRH(FLOAT ViewLeft, FLOAT ViewRight, FLOAT ViewBottom, FLOAT ViewTop, FLOAT NearZ, FLOAT FarZ); -XMMATRIX XMMatrixOrthographicLH(FLOAT ViewWidth, FLOAT ViewHeight, FLOAT NearZ, FLOAT FarZ); -XMMATRIX XMMatrixOrthographicRH(FLOAT ViewWidth, FLOAT ViewHeight, FLOAT NearZ, FLOAT FarZ); -XMMATRIX XMMatrixOrthographicOffCenterLH(FLOAT ViewLeft, FLOAT ViewRight, FLOAT ViewBottom, FLOAT ViewTop, FLOAT NearZ, FLOAT FarZ); -XMMATRIX XMMatrixOrthographicOffCenterRH(FLOAT ViewLeft, FLOAT ViewRight, FLOAT ViewBottom, FLOAT ViewTop, FLOAT NearZ, FLOAT FarZ); - -/**************************************************************************** - * - * Quaternion operations - * - ****************************************************************************/ - -BOOL XMQuaternionEqual(FXMVECTOR Q1, FXMVECTOR Q2); -BOOL XMQuaternionNotEqual(FXMVECTOR Q1, FXMVECTOR Q2); - -BOOL XMQuaternionIsNaN(FXMVECTOR Q); -BOOL XMQuaternionIsInfinite(FXMVECTOR Q); -BOOL XMQuaternionIsIdentity(FXMVECTOR Q); - -XMVECTOR XMQuaternionDot(FXMVECTOR Q1, FXMVECTOR Q2); -XMVECTOR XMQuaternionMultiply(FXMVECTOR Q1, FXMVECTOR Q2); -XMVECTOR XMQuaternionLengthSq(FXMVECTOR Q); -XMVECTOR XMQuaternionReciprocalLength(FXMVECTOR Q); -XMVECTOR XMQuaternionLength(FXMVECTOR Q); -XMVECTOR XMQuaternionNormalizeEst(FXMVECTOR Q); -XMVECTOR XMQuaternionNormalize(FXMVECTOR Q); -XMVECTOR XMQuaternionConjugate(FXMVECTOR Q); -XMVECTOR XMQuaternionInverse(FXMVECTOR Q); -XMVECTOR XMQuaternionLn(FXMVECTOR Q); -XMVECTOR XMQuaternionExp(FXMVECTOR Q); -XMVECTOR XMQuaternionSlerp(FXMVECTOR Q0, FXMVECTOR Q1, FLOAT t); -XMVECTOR XMQuaternionSlerpV(FXMVECTOR Q0, FXMVECTOR Q1, FXMVECTOR T); -XMVECTOR XMQuaternionSquad(FXMVECTOR Q0, FXMVECTOR Q1, FXMVECTOR Q2, CXMVECTOR Q3, FLOAT t); -XMVECTOR XMQuaternionSquadV(FXMVECTOR Q0, FXMVECTOR Q1, FXMVECTOR Q2, CXMVECTOR Q3, CXMVECTOR T); -VOID XMQuaternionSquadSetup(_Out_ XMVECTOR* pA, _Out_ XMVECTOR* pB, _Out_ XMVECTOR* pC, FXMVECTOR Q0, FXMVECTOR Q1, FXMVECTOR Q2, CXMVECTOR Q3); -XMVECTOR XMQuaternionBaryCentric(FXMVECTOR Q0, FXMVECTOR Q1, FXMVECTOR Q2, FLOAT f, FLOAT g); -XMVECTOR XMQuaternionBaryCentricV(FXMVECTOR Q0, FXMVECTOR Q1, FXMVECTOR Q2, CXMVECTOR F, CXMVECTOR G); - -XMVECTOR XMQuaternionIdentity(); -XMVECTOR XMQuaternionRotationRollPitchYaw(FLOAT Pitch, FLOAT Yaw, FLOAT Roll); -XMVECTOR XMQuaternionRotationRollPitchYawFromVector(FXMVECTOR Angles); -XMVECTOR XMQuaternionRotationNormal(FXMVECTOR NormalAxis, FLOAT Angle); -XMVECTOR XMQuaternionRotationAxis(FXMVECTOR Axis, FLOAT Angle); -XMVECTOR XMQuaternionRotationMatrix(CXMMATRIX M); - -VOID XMQuaternionToAxisAngle(_Out_ XMVECTOR* pAxis, _Out_ FLOAT* pAngle, FXMVECTOR Q); - -/**************************************************************************** - * - * Plane operations - * - ****************************************************************************/ - -BOOL XMPlaneEqual(FXMVECTOR P1, FXMVECTOR P2); -BOOL XMPlaneNearEqual(FXMVECTOR P1, FXMVECTOR P2, FXMVECTOR Epsilon); -BOOL XMPlaneNotEqual(FXMVECTOR P1, FXMVECTOR P2); - -BOOL XMPlaneIsNaN(FXMVECTOR P); -BOOL XMPlaneIsInfinite(FXMVECTOR P); - -XMVECTOR XMPlaneDot(FXMVECTOR P, FXMVECTOR V); -XMVECTOR XMPlaneDotCoord(FXMVECTOR P, FXMVECTOR V); -XMVECTOR XMPlaneDotNormal(FXMVECTOR P, FXMVECTOR V); -XMVECTOR XMPlaneNormalizeEst(FXMVECTOR P); -XMVECTOR XMPlaneNormalize(FXMVECTOR P); -XMVECTOR XMPlaneIntersectLine(FXMVECTOR P, FXMVECTOR LinePoint1, FXMVECTOR LinePoint2); -VOID XMPlaneIntersectPlane(_Out_ XMVECTOR* pLinePoint1, _Out_ XMVECTOR* pLinePoint2, FXMVECTOR P1, FXMVECTOR P2); -XMVECTOR XMPlaneTransform(FXMVECTOR P, CXMMATRIX M); -XMFLOAT4* XMPlaneTransformStream(_Out_bytecap_x_(sizeof(XMFLOAT4)+OutputStride*(PlaneCount-1)) XMFLOAT4* pOutputStream, - _In_ UINT OutputStride, - _In_bytecount_x_(sizeof(XMFLOAT4)+InputStride*(PlaneCount-1)) CONST XMFLOAT4* pInputStream, - _In_ UINT InputStride, _In_ UINT PlaneCount, CXMMATRIX M); - -XMVECTOR XMPlaneFromPointNormal(FXMVECTOR Point, FXMVECTOR Normal); -XMVECTOR XMPlaneFromPoints(FXMVECTOR Point1, FXMVECTOR Point2, FXMVECTOR Point3); - -/**************************************************************************** - * - * Color operations - * - ****************************************************************************/ - -BOOL XMColorEqual(FXMVECTOR C1, FXMVECTOR C2); -BOOL XMColorNotEqual(FXMVECTOR C1, FXMVECTOR C2); -BOOL XMColorGreater(FXMVECTOR C1, FXMVECTOR C2); -BOOL XMColorGreaterOrEqual(FXMVECTOR C1, FXMVECTOR C2); -BOOL XMColorLess(FXMVECTOR C1, FXMVECTOR C2); -BOOL XMColorLessOrEqual(FXMVECTOR C1, FXMVECTOR C2); - -BOOL XMColorIsNaN(FXMVECTOR C); -BOOL XMColorIsInfinite(FXMVECTOR C); - -XMVECTOR XMColorNegative(FXMVECTOR C); -XMVECTOR XMColorModulate(FXMVECTOR C1, FXMVECTOR C2); -XMVECTOR XMColorAdjustSaturation(FXMVECTOR C, FLOAT Saturation); -XMVECTOR XMColorAdjustContrast(FXMVECTOR C, FLOAT Contrast); - -/**************************************************************************** - * - * Miscellaneous operations - * - ****************************************************************************/ - -BOOL XMVerifyCPUSupport(); - -VOID XMAssert(_In_z_ CONST CHAR* pExpression, _In_z_ CONST CHAR* pFileName, UINT LineNumber); - -XMVECTOR XMFresnelTerm(FXMVECTOR CosIncidentAngle, FXMVECTOR RefractionIndex); - -BOOL XMScalarNearEqual(FLOAT S1, FLOAT S2, FLOAT Epsilon); -FLOAT XMScalarModAngle(FLOAT Value); -FLOAT XMScalarSin(FLOAT Value); -FLOAT XMScalarCos(FLOAT Value); -VOID XMScalarSinCos(_Out_ FLOAT* pSin, _Out_ FLOAT* pCos, FLOAT Value); -FLOAT XMScalarASin(FLOAT Value); -FLOAT XMScalarACos(FLOAT Value); -FLOAT XMScalarSinEst(FLOAT Value); -FLOAT XMScalarCosEst(FLOAT Value); -VOID XMScalarSinCosEst(_Out_ FLOAT* pSin, _Out_ FLOAT* pCos, FLOAT Value); -FLOAT XMScalarASinEst(FLOAT Value); -FLOAT XMScalarACosEst(FLOAT Value); - -/**************************************************************************** - * - * Globals - * - ****************************************************************************/ - -// The purpose of the following global constants is to prevent redundant -// reloading of the constants when they are referenced by more than one -// separate inline math routine called within the same function. Declaring -// a constant locally within a routine is sufficient to prevent redundant -// reloads of that constant when that single routine is called multiple -// times in a function, but if the constant is used (and declared) in a -// separate math routine it would be reloaded. - -#define XMGLOBALCONST extern CONST __declspec(selectany) - -XMGLOBALCONST XMVECTORF32 g_XMSinCoefficients0 = {1.0f, -0.166666667f, 8.333333333e-3f, -1.984126984e-4f}; -XMGLOBALCONST XMVECTORF32 g_XMSinCoefficients1 = {2.755731922e-6f, -2.505210839e-8f, 1.605904384e-10f, -7.647163732e-13f}; -XMGLOBALCONST XMVECTORF32 g_XMSinCoefficients2 = {2.811457254e-15f, -8.220635247e-18f, 1.957294106e-20f, -3.868170171e-23f}; -XMGLOBALCONST XMVECTORF32 g_XMCosCoefficients0 = {1.0f, -0.5f, 4.166666667e-2f, -1.388888889e-3f}; -XMGLOBALCONST XMVECTORF32 g_XMCosCoefficients1 = {2.480158730e-5f, -2.755731922e-7f, 2.087675699e-9f, -1.147074560e-11f}; -XMGLOBALCONST XMVECTORF32 g_XMCosCoefficients2 = {4.779477332e-14f, -1.561920697e-16f, 4.110317623e-19f, -8.896791392e-22f}; -XMGLOBALCONST XMVECTORF32 g_XMTanCoefficients0 = {1.0f, 0.333333333f, 0.133333333f, 5.396825397e-2f}; -XMGLOBALCONST XMVECTORF32 g_XMTanCoefficients1 = {2.186948854e-2f, 8.863235530e-3f, 3.592128167e-3f, 1.455834485e-3f}; -XMGLOBALCONST XMVECTORF32 g_XMTanCoefficients2 = {5.900274264e-4f, 2.391290764e-4f, 9.691537707e-5f, 3.927832950e-5f}; -XMGLOBALCONST XMVECTORF32 g_XMASinCoefficients0 = {-0.05806367563904f, -0.41861972469416f, 0.22480114791621f, 2.17337241360606f}; -XMGLOBALCONST XMVECTORF32 g_XMASinCoefficients1 = {0.61657275907170f, 4.29696498283455f, -1.18942822255452f, -6.53784832094831f}; -XMGLOBALCONST XMVECTORF32 g_XMASinCoefficients2 = {-1.36926553863413f, -4.48179294237210f, 1.41810672941833f, 5.48179257935713f}; -XMGLOBALCONST XMVECTORF32 g_XMATanCoefficients0 = {1.0f, 0.333333334f, 0.2f, 0.142857143f}; -XMGLOBALCONST XMVECTORF32 g_XMATanCoefficients1 = {1.111111111e-1f, 9.090909091e-2f, 7.692307692e-2f, 6.666666667e-2f}; -XMGLOBALCONST XMVECTORF32 g_XMATanCoefficients2 = {5.882352941e-2f, 5.263157895e-2f, 4.761904762e-2f, 4.347826087e-2f}; -XMGLOBALCONST XMVECTORF32 g_XMSinEstCoefficients = {1.0f, -1.66521856991541e-1f, 8.199913018755e-3f, -1.61475937228e-4f}; -XMGLOBALCONST XMVECTORF32 g_XMCosEstCoefficients = {1.0f, -4.95348008918096e-1f, 3.878259962881e-2f, -9.24587976263e-4f}; -XMGLOBALCONST XMVECTORF32 g_XMTanEstCoefficients = {2.484f, -1.954923183e-1f, 2.467401101f, XM_1DIVPI}; -XMGLOBALCONST XMVECTORF32 g_XMATanEstCoefficients = {7.689891418951e-1f, 1.104742493348f, 8.661844266006e-1f, XM_PIDIV2}; -XMGLOBALCONST XMVECTORF32 g_XMASinEstCoefficients = {-1.36178272886711f, 2.37949493464538f, -8.08228565650486e-1f, 2.78440142746736e-1f}; -XMGLOBALCONST XMVECTORF32 g_XMASinEstConstants = {1.00000011921f, XM_PIDIV2, 0.0f, 0.0f}; -XMGLOBALCONST XMVECTORF32 g_XMPiConstants0 = {XM_PI, XM_2PI, XM_1DIVPI, XM_1DIV2PI}; -XMGLOBALCONST XMVECTORF32 g_XMIdentityR0 = {1.0f, 0.0f, 0.0f, 0.0f}; -XMGLOBALCONST XMVECTORF32 g_XMIdentityR1 = {0.0f, 1.0f, 0.0f, 0.0f}; -XMGLOBALCONST XMVECTORF32 g_XMIdentityR2 = {0.0f, 0.0f, 1.0f, 0.0f}; -XMGLOBALCONST XMVECTORF32 g_XMIdentityR3 = {0.0f, 0.0f, 0.0f, 1.0f}; -XMGLOBALCONST XMVECTORF32 g_XMNegIdentityR0 = {-1.0f,0.0f, 0.0f, 0.0f}; -XMGLOBALCONST XMVECTORF32 g_XMNegIdentityR1 = {0.0f,-1.0f, 0.0f, 0.0f}; -XMGLOBALCONST XMVECTORF32 g_XMNegIdentityR2 = {0.0f, 0.0f,-1.0f, 0.0f}; -XMGLOBALCONST XMVECTORF32 g_XMNegIdentityR3 = {0.0f, 0.0f, 0.0f,-1.0f}; -XMGLOBALCONST XMVECTORI32 g_XMNegativeZero = {0x80000000, 0x80000000, 0x80000000, 0x80000000}; -XMGLOBALCONST XMVECTORI32 g_XMNegate3 = {0x80000000, 0x80000000, 0x80000000, 0x00000000}; -XMGLOBALCONST XMVECTORI32 g_XMMask3 = {0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0x00000000}; -XMGLOBALCONST XMVECTORI32 g_XMMaskX = {0xFFFFFFFF, 0x00000000, 0x00000000, 0x00000000}; -XMGLOBALCONST XMVECTORI32 g_XMMaskY = {0x00000000, 0xFFFFFFFF, 0x00000000, 0x00000000}; -XMGLOBALCONST XMVECTORI32 g_XMMaskZ = {0x00000000, 0x00000000, 0xFFFFFFFF, 0x00000000}; -XMGLOBALCONST XMVECTORI32 g_XMMaskW = {0x00000000, 0x00000000, 0x00000000, 0xFFFFFFFF}; -XMGLOBALCONST XMVECTORF32 g_XMOne = { 1.0f, 1.0f, 1.0f, 1.0f}; -XMGLOBALCONST XMVECTORF32 g_XMOne3 = { 1.0f, 1.0f, 1.0f, 0.0f}; -XMGLOBALCONST XMVECTORF32 g_XMZero = { 0.0f, 0.0f, 0.0f, 0.0f}; -XMGLOBALCONST XMVECTORF32 g_XMNegativeOne = {-1.0f,-1.0f,-1.0f,-1.0f}; -XMGLOBALCONST XMVECTORF32 g_XMOneHalf = { 0.5f, 0.5f, 0.5f, 0.5f}; -XMGLOBALCONST XMVECTORF32 g_XMNegativeOneHalf = {-0.5f,-0.5f,-0.5f,-0.5f}; -XMGLOBALCONST XMVECTORF32 g_XMNegativeTwoPi = {-XM_2PI, -XM_2PI, -XM_2PI, -XM_2PI}; -XMGLOBALCONST XMVECTORF32 g_XMNegativePi = {-XM_PI, -XM_PI, -XM_PI, -XM_PI}; -XMGLOBALCONST XMVECTORF32 g_XMHalfPi = {XM_PIDIV2, XM_PIDIV2, XM_PIDIV2, XM_PIDIV2}; -XMGLOBALCONST XMVECTORF32 g_XMPi = {XM_PI, XM_PI, XM_PI, XM_PI}; -XMGLOBALCONST XMVECTORF32 g_XMReciprocalPi = {XM_1DIVPI, XM_1DIVPI, XM_1DIVPI, XM_1DIVPI}; -XMGLOBALCONST XMVECTORF32 g_XMTwoPi = {XM_2PI, XM_2PI, XM_2PI, XM_2PI}; -XMGLOBALCONST XMVECTORF32 g_XMReciprocalTwoPi = {XM_1DIV2PI, XM_1DIV2PI, XM_1DIV2PI, XM_1DIV2PI}; -XMGLOBALCONST XMVECTORF32 g_XMEpsilon = {1.192092896e-7f, 1.192092896e-7f, 1.192092896e-7f, 1.192092896e-7f}; -XMGLOBALCONST XMVECTORI32 g_XMInfinity = {0x7F800000, 0x7F800000, 0x7F800000, 0x7F800000}; -XMGLOBALCONST XMVECTORI32 g_XMQNaN = {0x7FC00000, 0x7FC00000, 0x7FC00000, 0x7FC00000}; -XMGLOBALCONST XMVECTORI32 g_XMQNaNTest = {0x007FFFFF, 0x007FFFFF, 0x007FFFFF, 0x007FFFFF}; -XMGLOBALCONST XMVECTORI32 g_XMAbsMask = {0x7FFFFFFF, 0x7FFFFFFF, 0x7FFFFFFF, 0x7FFFFFFF}; -XMGLOBALCONST XMVECTORI32 g_XMFltMin = {0x00800000, 0x00800000, 0x00800000, 0x00800000}; -XMGLOBALCONST XMVECTORI32 g_XMFltMax = {0x7F7FFFFF, 0x7F7FFFFF, 0x7F7FFFFF, 0x7F7FFFFF}; -XMGLOBALCONST XMVECTORI32 g_XMNegOneMask = {0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF}; -XMGLOBALCONST XMVECTORI32 g_XMMaskA8R8G8B8 = {0x00FF0000, 0x0000FF00, 0x000000FF, 0xFF000000}; -XMGLOBALCONST XMVECTORI32 g_XMFlipA8R8G8B8 = {0x00000000, 0x00000000, 0x00000000, 0x80000000}; -XMGLOBALCONST XMVECTORF32 g_XMFixAA8R8G8B8 = {0.0f,0.0f,0.0f,(float)(0x80000000U)}; -XMGLOBALCONST XMVECTORF32 g_XMNormalizeA8R8G8B8 = {1.0f/(255.0f*(float)(0x10000)),1.0f/(255.0f*(float)(0x100)),1.0f/255.0f,1.0f/(255.0f*(float)(0x1000000))}; -XMGLOBALCONST XMVECTORI32 g_XMMaskA2B10G10R10 = {0x000003FF, 0x000FFC00, 0x3FF00000, 0xC0000000}; -XMGLOBALCONST XMVECTORI32 g_XMFlipA2B10G10R10 = {0x00000200, 0x00080000, 0x20000000, 0x80000000}; -XMGLOBALCONST XMVECTORF32 g_XMFixAA2B10G10R10 = {-512.0f,-512.0f*(float)(0x400),-512.0f*(float)(0x100000),(float)(0x80000000U)}; -XMGLOBALCONST XMVECTORF32 g_XMNormalizeA2B10G10R10 = {1.0f/511.0f,1.0f/(511.0f*(float)(0x400)),1.0f/(511.0f*(float)(0x100000)),1.0f/(3.0f*(float)(0x40000000))}; -XMGLOBALCONST XMVECTORI32 g_XMMaskX16Y16 = {0x0000FFFF, 0xFFFF0000, 0x00000000, 0x00000000}; -XMGLOBALCONST XMVECTORI32 g_XMFlipX16Y16 = {0x00008000, 0x00000000, 0x00000000, 0x00000000}; -XMGLOBALCONST XMVECTORF32 g_XMFixX16Y16 = {-32768.0f,0.0f,0.0f,0.0f}; -XMGLOBALCONST XMVECTORF32 g_XMNormalizeX16Y16 = {1.0f/32767.0f,1.0f/(32767.0f*65536.0f),0.0f,0.0f}; -XMGLOBALCONST XMVECTORI32 g_XMMaskX16Y16Z16W16 = {0x0000FFFF, 0x0000FFFF, 0xFFFF0000, 0xFFFF0000}; -XMGLOBALCONST XMVECTORI32 g_XMFlipX16Y16Z16W16 = {0x00008000, 0x00008000, 0x00000000, 0x00000000}; -XMGLOBALCONST XMVECTORF32 g_XMFixX16Y16Z16W16 = {-32768.0f,-32768.0f,0.0f,0.0f}; -XMGLOBALCONST XMVECTORF32 g_XMNormalizeX16Y16Z16W16 = {1.0f/32767.0f,1.0f/32767.0f,1.0f/(32767.0f*65536.0f),1.0f/(32767.0f*65536.0f)}; -XMGLOBALCONST XMVECTORF32 g_XMNoFraction = {8388608.0f,8388608.0f,8388608.0f,8388608.0f}; -XMGLOBALCONST XMVECTORI32 g_XMMaskByte = {0x000000FF, 0x000000FF, 0x000000FF, 0x000000FF}; -XMGLOBALCONST XMVECTORF32 g_XMNegateX = {-1.0f, 1.0f, 1.0f, 1.0f}; -XMGLOBALCONST XMVECTORF32 g_XMNegateY = { 1.0f,-1.0f, 1.0f, 1.0f}; -XMGLOBALCONST XMVECTORF32 g_XMNegateZ = { 1.0f, 1.0f,-1.0f, 1.0f}; -XMGLOBALCONST XMVECTORF32 g_XMNegateW = { 1.0f, 1.0f, 1.0f,-1.0f}; -XMGLOBALCONST XMVECTORI32 g_XMSelect0101 = {XM_SELECT_0, XM_SELECT_1, XM_SELECT_0, XM_SELECT_1}; -XMGLOBALCONST XMVECTORI32 g_XMSelect1010 = {XM_SELECT_1, XM_SELECT_0, XM_SELECT_1, XM_SELECT_0}; -XMGLOBALCONST XMVECTORI32 g_XMOneHalfMinusEpsilon = { 0x3EFFFFFD, 0x3EFFFFFD, 0x3EFFFFFD, 0x3EFFFFFD}; -XMGLOBALCONST XMVECTORI32 g_XMSelect1000 = {XM_SELECT_1, XM_SELECT_0, XM_SELECT_0, XM_SELECT_0}; -XMGLOBALCONST XMVECTORI32 g_XMSelect1100 = {XM_SELECT_1, XM_SELECT_1, XM_SELECT_0, XM_SELECT_0}; -XMGLOBALCONST XMVECTORI32 g_XMSelect1110 = {XM_SELECT_1, XM_SELECT_1, XM_SELECT_1, XM_SELECT_0}; -XMGLOBALCONST XMVECTORI32 g_XMSwizzleXYXY = {XM_PERMUTE_0X, XM_PERMUTE_0Y, XM_PERMUTE_0X, XM_PERMUTE_0Y}; -XMGLOBALCONST XMVECTORI32 g_XMSwizzleXYZX = {XM_PERMUTE_0X, XM_PERMUTE_0Y, XM_PERMUTE_0Z, XM_PERMUTE_0X}; -XMGLOBALCONST XMVECTORI32 g_XMSwizzleYXZW = {XM_PERMUTE_0Y, XM_PERMUTE_0X, XM_PERMUTE_0Z, XM_PERMUTE_0W}; -XMGLOBALCONST XMVECTORI32 g_XMSwizzleYZXW = {XM_PERMUTE_0Y, XM_PERMUTE_0Z, XM_PERMUTE_0X, XM_PERMUTE_0W}; -XMGLOBALCONST XMVECTORI32 g_XMSwizzleZXYW = {XM_PERMUTE_0Z, XM_PERMUTE_0X, XM_PERMUTE_0Y, XM_PERMUTE_0W}; -XMGLOBALCONST XMVECTORI32 g_XMPermute0X0Y1X1Y = {XM_PERMUTE_0X, XM_PERMUTE_0Y, XM_PERMUTE_1X, XM_PERMUTE_1Y}; -XMGLOBALCONST XMVECTORI32 g_XMPermute0Z0W1Z1W = {XM_PERMUTE_0Z, XM_PERMUTE_0W, XM_PERMUTE_1Z, XM_PERMUTE_1W}; -XMGLOBALCONST XMVECTORF32 g_XMFixupY16 = {1.0f,1.0f/65536.0f,0.0f,0.0f}; -XMGLOBALCONST XMVECTORF32 g_XMFixupY16W16 = {1.0f,1.0f,1.0f/65536.0f,1.0f/65536.0f}; -XMGLOBALCONST XMVECTORI32 g_XMFlipY = {0,0x80000000,0,0}; -XMGLOBALCONST XMVECTORI32 g_XMFlipZ = {0,0,0x80000000,0}; -XMGLOBALCONST XMVECTORI32 g_XMFlipW = {0,0,0,0x80000000}; -XMGLOBALCONST XMVECTORI32 g_XMFlipYZ = {0,0x80000000,0x80000000,0}; -XMGLOBALCONST XMVECTORI32 g_XMFlipZW = {0,0,0x80000000,0x80000000}; -XMGLOBALCONST XMVECTORI32 g_XMFlipYW = {0,0x80000000,0,0x80000000}; -XMGLOBALCONST XMVECTORI32 g_XMMaskHenD3 = {0x7FF,0x7ff<<11,0x3FF<<22,0}; -XMGLOBALCONST XMVECTORI32 g_XMMaskDHen3 = {0x3FF,0x7ff<<10,0x7FF<<21,0}; -XMGLOBALCONST XMVECTORF32 g_XMAddUHenD3 = {0,0,32768.0f*65536.0f,0}; -XMGLOBALCONST XMVECTORF32 g_XMAddHenD3 = {-1024.0f,-1024.0f*2048.0f,0,0}; -XMGLOBALCONST XMVECTORF32 g_XMAddDHen3 = {-512.0f,-1024.0f*1024.0f,0,0}; -XMGLOBALCONST XMVECTORF32 g_XMMulHenD3 = {1.0f,1.0f/2048.0f,1.0f/(2048.0f*2048.0f),0}; -XMGLOBALCONST XMVECTORF32 g_XMMulDHen3 = {1.0f,1.0f/1024.0f,1.0f/(1024.0f*2048.0f),0}; -XMGLOBALCONST XMVECTORI32 g_XMXorHenD3 = {0x400,0x400<<11,0,0}; -XMGLOBALCONST XMVECTORI32 g_XMXorDHen3 = {0x200,0x400<<10,0,0}; -XMGLOBALCONST XMVECTORI32 g_XMMaskIco4 = {0xFFFFF,0xFFFFF000,0xFFFFF,0xF0000000}; -XMGLOBALCONST XMVECTORI32 g_XMXorXIco4 = {0x80000,0,0x80000,0x80000000}; -XMGLOBALCONST XMVECTORI32 g_XMXorIco4 = {0x80000,0,0x80000,0}; -XMGLOBALCONST XMVECTORF32 g_XMAddXIco4 = {-8.0f*65536.0f,0,-8.0f*65536.0f,32768.0f*65536.0f}; -XMGLOBALCONST XMVECTORF32 g_XMAddUIco4 = {0,32768.0f*65536.0f,0,32768.0f*65536.0f}; -XMGLOBALCONST XMVECTORF32 g_XMAddIco4 = {-8.0f*65536.0f,0,-8.0f*65536.0f,0}; -XMGLOBALCONST XMVECTORF32 g_XMMulIco4 = {1.0f,1.0f/4096.0f,1.0f,1.0f/(4096.0f*65536.0f)}; -XMGLOBALCONST XMVECTORI32 g_XMMaskDec4 = {0x3FF,0x3FF<<10,0x3FF<<20,0x3<<30}; -XMGLOBALCONST XMVECTORI32 g_XMXorDec4 = {0x200,0x200<<10,0x200<<20,0}; -XMGLOBALCONST XMVECTORF32 g_XMAddUDec4 = {0,0,0,32768.0f*65536.0f}; -XMGLOBALCONST XMVECTORF32 g_XMAddDec4 = {-512.0f,-512.0f*1024.0f,-512.0f*1024.0f*1024.0f,0}; -XMGLOBALCONST XMVECTORF32 g_XMMulDec4 = {1.0f,1.0f/1024.0f,1.0f/(1024.0f*1024.0f),1.0f/(1024.0f*1024.0f*1024.0f)}; -XMGLOBALCONST XMVECTORI32 g_XMMaskByte4 = {0xFF,0xFF00,0xFF0000,0xFF000000}; -XMGLOBALCONST XMVECTORI32 g_XMXorByte4 = {0x80,0x8000,0x800000,0x00000000}; -XMGLOBALCONST XMVECTORF32 g_XMAddByte4 = {-128.0f,-128.0f*256.0f,-128.0f*65536.0f,0}; - -/**************************************************************************** - * - * Implementation - * - ****************************************************************************/ - -#pragma warning(push) -#pragma warning(disable:4214 4204 4365 4616 6001) - -#if !defined(__cplusplus) && !defined(_XBOX) && defined(_XM_ISVS2005_) - -/* Work around VC 2005 bug where math.h defines logf with a semicolon at the end. - * Note this is fixed as of Visual Studio 2005 Service Pack 1 - */ - -#undef logf -#define logf(x) ((float)log((double)(x))) - -#endif // !defined(__cplusplus) && !defined(_XBOX) && defined(_XM_ISVS2005_) - -//------------------------------------------------------------------------------ - -#if defined(_XM_NO_INTRINSICS_) || defined(_XM_SSE_INTRINSICS_) - -XMFINLINE XMVECTOR XMVectorSetBinaryConstant(UINT C0, UINT C1, UINT C2, UINT C3) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTORU32 vResult; - vResult.u[0] = (0-(C0&1)) & 0x3F800000; - vResult.u[1] = (0-(C1&1)) & 0x3F800000; - vResult.u[2] = (0-(C2&1)) & 0x3F800000; - vResult.u[3] = (0-(C3&1)) & 0x3F800000; - return vResult.v; -#else // XM_SSE_INTRINSICS_ - static const XMVECTORU32 g_vMask1 = {1,1,1,1}; - // Move the parms to a vector - __m128i vTemp = _mm_set_epi32(C3,C2,C1,C0); - // Mask off the low bits - vTemp = _mm_and_si128(vTemp,g_vMask1); - // 0xFFFFFFFF on true bits - vTemp = _mm_cmpeq_epi32(vTemp,g_vMask1); - // 0xFFFFFFFF -> 1.0f, 0x00000000 -> 0.0f - vTemp = _mm_and_si128(vTemp,g_XMOne); - return reinterpret_cast(&vTemp)[0]; -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorSplatConstant(INT IntConstant, UINT DivExponent) -{ -#if defined(_XM_NO_INTRINSICS_) - XMASSERT( IntConstant >= -16 && IntConstant <= 15 ); - XMASSERT(DivExponent<32); - { - XMVECTORI32 V = { IntConstant, IntConstant, IntConstant, IntConstant }; - return XMConvertVectorIntToFloat( V.v, DivExponent); - } -#else // XM_SSE_INTRINSICS_ - XMASSERT( IntConstant >= -16 && IntConstant <= 15 ); - XMASSERT(DivExponent<32); - // Splat the int - __m128i vScale = _mm_set1_epi32(IntConstant); - // Convert to a float - XMVECTOR vResult = _mm_cvtepi32_ps(vScale); - // Convert DivExponent into 1.0f/(1<(&vScale)[0]); - return vResult; -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorSplatConstantInt(INT IntConstant) -{ -#if defined(_XM_NO_INTRINSICS_) - XMASSERT( IntConstant >= -16 && IntConstant <= 15 ); - { - XMVECTORI32 V = { IntConstant, IntConstant, IntConstant, IntConstant }; - return V.v; - } -#else // XM_SSE_INTRINSICS_ - XMASSERT( IntConstant >= -16 && IntConstant <= 15 ); - __m128i V = _mm_set1_epi32( IntConstant ); - return reinterpret_cast<__m128 *>(&V)[0]; -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorShiftLeft(FXMVECTOR V1, FXMVECTOR V2, UINT Elements) -{ - return XMVectorPermute(V1, V2, XMVectorPermuteControl((Elements), ((Elements) + 1), ((Elements) + 2), ((Elements) + 3))); -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorRotateLeft(FXMVECTOR V, UINT Elements) -{ -#if defined(_XM_NO_INTRINSICS_) - XMASSERT( Elements < 4 ); - { - XMVECTORF32 vResult = { V.vector4_f32[Elements & 3], V.vector4_f32[(Elements + 1) & 3], - V.vector4_f32[(Elements + 2) & 3], V.vector4_f32[(Elements + 3) & 3] }; - return vResult.v; - } -#else // XM_SSE_INTRINSICS_ - FLOAT fx = XMVectorGetByIndex(V,(Elements) & 3); - FLOAT fy = XMVectorGetByIndex(V,((Elements) + 1) & 3); - FLOAT fz = XMVectorGetByIndex(V,((Elements) + 2) & 3); - FLOAT fw = XMVectorGetByIndex(V,((Elements) + 3) & 3); - return _mm_set_ps( fw, fz, fy, fx ); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorRotateRight(FXMVECTOR V, UINT Elements) -{ -#if defined(_XM_NO_INTRINSICS_) - XMASSERT( Elements < 4 ); - { - XMVECTORF32 vResult = { V.vector4_f32[(4 - (Elements)) & 3], V.vector4_f32[(5 - (Elements)) & 3], - V.vector4_f32[(6 - (Elements)) & 3], V.vector4_f32[(7 - (Elements)) & 3] }; - return vResult.v; - } -#else // XM_SSE_INTRINSICS_ - FLOAT fx = XMVectorGetByIndex(V,(4 - (Elements)) & 3); - FLOAT fy = XMVectorGetByIndex(V,(5 - (Elements)) & 3); - FLOAT fz = XMVectorGetByIndex(V,(6 - (Elements)) & 3); - FLOAT fw = XMVectorGetByIndex(V,(7 - (Elements)) & 3); - return _mm_set_ps( fw, fz, fy, fx ); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorSwizzle(FXMVECTOR V, UINT E0, UINT E1, UINT E2, UINT E3) -{ -#if defined(_XM_NO_INTRINSICS_) - XMASSERT( (E0 < 4) && (E1 < 4) && (E2 < 4) && (E3 < 4) ); - { - XMVECTORF32 vResult = { V.vector4_f32[E0], V.vector4_f32[E1], V.vector4_f32[E2], V.vector4_f32[E3] }; - return vResult.v; - } -#else // XM_SSE_INTRINSICS_ - FLOAT fx = XMVectorGetByIndex(V,E0); - FLOAT fy = XMVectorGetByIndex(V,E1); - FLOAT fz = XMVectorGetByIndex(V,E2); - FLOAT fw = XMVectorGetByIndex(V,E3); - return _mm_set_ps( fw, fz, fy, fx ); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorInsert(FXMVECTOR VD, FXMVECTOR VS, UINT VSLeftRotateElements, - UINT Select0, UINT Select1, UINT Select2, UINT Select3) -{ - XMVECTOR Control = XMVectorSelectControl(Select0&1, Select1&1, Select2&1, Select3&1); - return XMVectorSelect( VD, XMVectorRotateLeft(VS, VSLeftRotateElements), Control ); -} - -// Implemented for VMX128 intrinsics as #defines aboves -#endif _XM_NO_INTRINSICS_ || _XM_SSE_INTRINSICS_ - -//------------------------------------------------------------------------------ - -#include "xnamathconvert.inl" -#include "xnamathvector.inl" -#include "xnamathmatrix.inl" -#include "xnamathmisc.inl" - -#pragma warning(pop) - -#endif // __XNAMATH_H__ - diff --git a/SDK/Include/xnamathconvert.inl b/SDK/Include/xnamathconvert.inl deleted file mode 100644 index 370d27d..0000000 --- a/SDK/Include/xnamathconvert.inl +++ /dev/null @@ -1,5785 +0,0 @@ -/*++ - -Copyright (c) Microsoft Corporation. All rights reserved. - -Module Name: - - xnamathconvert.inl - -Abstract: - - XNA math library for Windows and Xbox 360: Conversion, loading, and storing functions. ---*/ - -#if defined(_MSC_VER) && (_MSC_VER > 1000) -#pragma once -#endif - -#ifndef __XNAMATHCONVERT_INL__ -#define __XNAMATHCONVERT_INL__ - -#define XM_PACK_FACTOR (FLOAT)(1 << 22) -#define XM_UNPACK_FACTOR_UNSIGNED (FLOAT)(1 << 23) -#define XM_UNPACK_FACTOR_SIGNED XM_PACK_FACTOR - -#define XM_UNPACK_UNSIGNEDN_OFFSET(BitsX, BitsY, BitsZ, BitsW) \ - {-XM_UNPACK_FACTOR_UNSIGNED / (FLOAT)((1 << (BitsX)) - 1), \ - -XM_UNPACK_FACTOR_UNSIGNED / (FLOAT)((1 << (BitsY)) - 1), \ - -XM_UNPACK_FACTOR_UNSIGNED / (FLOAT)((1 << (BitsZ)) - 1), \ - -XM_UNPACK_FACTOR_UNSIGNED / (FLOAT)((1 << (BitsW)) - 1)} - -#define XM_UNPACK_UNSIGNEDN_SCALE(BitsX, BitsY, BitsZ, BitsW) \ - {XM_UNPACK_FACTOR_UNSIGNED / (FLOAT)((1 << (BitsX)) - 1), \ - XM_UNPACK_FACTOR_UNSIGNED / (FLOAT)((1 << (BitsY)) - 1), \ - XM_UNPACK_FACTOR_UNSIGNED / (FLOAT)((1 << (BitsZ)) - 1), \ - XM_UNPACK_FACTOR_UNSIGNED / (FLOAT)((1 << (BitsW)) - 1)} - -#define XM_UNPACK_SIGNEDN_SCALE(BitsX, BitsY, BitsZ, BitsW) \ - {-XM_UNPACK_FACTOR_SIGNED / (FLOAT)((1 << ((BitsX) - 1)) - 1), \ - -XM_UNPACK_FACTOR_SIGNED / (FLOAT)((1 << ((BitsY) - 1)) - 1), \ - -XM_UNPACK_FACTOR_SIGNED / (FLOAT)((1 << ((BitsZ) - 1)) - 1), \ - -XM_UNPACK_FACTOR_SIGNED / (FLOAT)((1 << ((BitsW) - 1)) - 1)} - -//#define XM_UNPACK_SIGNEDN_OFFSET(BitsX, BitsY, BitsZ, BitsW) \ -// {-XM_UNPACK_FACTOR_SIGNED / (FLOAT)((1 << ((BitsX) - 1)) - 1) * 3.0f, \ -// -XM_UNPACK_FACTOR_SIGNED / (FLOAT)((1 << ((BitsY) - 1)) - 1) * 3.0f, \ -// -XM_UNPACK_FACTOR_SIGNED / (FLOAT)((1 << ((BitsZ) - 1)) - 1) * 3.0f, \ -// -XM_UNPACK_FACTOR_SIGNED / (FLOAT)((1 << ((BitsW) - 1)) - 1) * 3.0f} - -#define XM_PACK_UNSIGNEDN_SCALE(BitsX, BitsY, BitsZ, BitsW) \ - {-(FLOAT)((1 << (BitsX)) - 1) / XM_PACK_FACTOR, \ - -(FLOAT)((1 << (BitsY)) - 1) / XM_PACK_FACTOR, \ - -(FLOAT)((1 << (BitsZ)) - 1) / XM_PACK_FACTOR, \ - -(FLOAT)((1 << (BitsW)) - 1) / XM_PACK_FACTOR} - -#define XM_PACK_SIGNEDN_SCALE(BitsX, BitsY, BitsZ, BitsW) \ - {-(FLOAT)((1 << ((BitsX) - 1)) - 1) / XM_PACK_FACTOR, \ - -(FLOAT)((1 << ((BitsY) - 1)) - 1) / XM_PACK_FACTOR, \ - -(FLOAT)((1 << ((BitsZ) - 1)) - 1) / XM_PACK_FACTOR, \ - -(FLOAT)((1 << ((BitsW) - 1)) - 1) / XM_PACK_FACTOR} - -#define XM_PACK_OFFSET XMVectorSplatConstant(3, 0) -//#define XM_UNPACK_OFFSET XM_PACK_OFFSET - -/**************************************************************************** - * - * Data conversion - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE FLOAT XMConvertHalfToFloat -( - HALF Value -) -{ -#if defined(_XM_NO_INTRINSICS_) || defined(_XM_SSE_INTRINSICS_) - - UINT Mantissa; - UINT Exponent; - UINT Result; - - Mantissa = (UINT)(Value & 0x03FF); - - if ((Value & 0x7C00) != 0) // The value is normalized - { - Exponent = (UINT)((Value >> 10) & 0x1F); - } - else if (Mantissa != 0) // The value is denormalized - { - // Normalize the value in the resulting float - Exponent = 1; - - do - { - Exponent--; - Mantissa <<= 1; - } while ((Mantissa & 0x0400) == 0); - - Mantissa &= 0x03FF; - } - else // The value is zero - { - Exponent = (UINT)-112; - } - - Result = ((Value & 0x8000) << 16) | // Sign - ((Exponent + 112) << 23) | // Exponent - (Mantissa << 13); // Mantissa - - return *(FLOAT*)&Result; - -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif -} - -//------------------------------------------------------------------------------ - -XMINLINE FLOAT* XMConvertHalfToFloatStream -( - FLOAT* pOutputStream, - UINT OutputStride, - CONST HALF* pInputStream, - UINT InputStride, - UINT HalfCount -) -{ -#if defined(_XM_NO_INTRINSICS_) || defined(_XM_SSE_INTRINSICS_) - - UINT i; - BYTE* pHalf = (BYTE*)pInputStream; - BYTE* pFloat = (BYTE*)pOutputStream; - - XMASSERT(pOutputStream); - XMASSERT(pInputStream); - - for (i = 0; i < HalfCount; i++) - { - *(FLOAT*)pFloat = XMConvertHalfToFloat(*(HALF*)pHalf); - pHalf += InputStride; - pFloat += OutputStride; - } - - return pOutputStream; - -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE HALF XMConvertFloatToHalf -( - FLOAT Value -) -{ -#if defined(_XM_NO_INTRINSICS_) || defined(_XM_SSE_INTRINSICS_) - UINT Result; - - UINT IValue = ((UINT *)(&Value))[0]; - UINT Sign = (IValue & 0x80000000U) >> 16U; - IValue = IValue & 0x7FFFFFFFU; // Hack off the sign - - if (IValue > 0x47FFEFFFU) - { - // The number is too large to be represented as a half. Saturate to infinity. - Result = 0x7FFFU; - } - else - { - if (IValue < 0x38800000U) - { - // The number is too small to be represented as a normalized half. - // Convert it to a denormalized value. - UINT Shift = 113U - (IValue >> 23U); - IValue = (0x800000U | (IValue & 0x7FFFFFU)) >> Shift; - } - else - { - // Rebias the exponent to represent the value as a normalized half. - IValue += 0xC8000000U; - } - - Result = ((IValue + 0x0FFFU + ((IValue >> 13U) & 1U)) >> 13U)&0x7FFFU; - } - return (HALF)(Result|Sign); - -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif -} - -//------------------------------------------------------------------------------ - -XMINLINE HALF* XMConvertFloatToHalfStream -( - HALF* pOutputStream, - UINT OutputStride, - CONST FLOAT* pInputStream, - UINT InputStride, - UINT FloatCount -) -{ -#if defined(_XM_NO_INTRINSICS_) || defined(_XM_SSE_INTRINSICS_) - - UINT i; - BYTE* pFloat = (BYTE*)pInputStream; - BYTE* pHalf = (BYTE*)pOutputStream; - - XMASSERT(pOutputStream); - XMASSERT(pInputStream); - - for (i = 0; i < FloatCount; i++) - { - *(HALF*)pHalf = XMConvertFloatToHalf(*(FLOAT*)pFloat); - pFloat += InputStride; - pHalf += OutputStride; - } - return pOutputStream; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -#if defined(_XM_NO_INTRINSICS_) || defined(_XM_SSE_INTRINSICS_) -// For VMX128, these routines are all defines in the main header - -#pragma warning(push) -#pragma warning(disable:4701) // Prevent warnings about 'Result' potentially being used without having been initialized - -XMINLINE XMVECTOR XMConvertVectorIntToFloat -( - FXMVECTOR VInt, - UINT DivExponent -) -{ -#if defined(_XM_NO_INTRINSICS_) - UINT ElementIndex; - FLOAT fScale; - XMVECTOR Result; - XMASSERT(DivExponent<32); - fScale = 1.0f / (FLOAT)(1U << DivExponent); - ElementIndex = 0; - do { - INT iTemp = (INT)VInt.vector4_u32[ElementIndex]; - Result.vector4_f32[ElementIndex] = ((FLOAT)iTemp) * fScale; - } while (++ElementIndex<4); - return Result; -#else // _XM_SSE_INTRINSICS_ - XMASSERT(DivExponent<32); - // Convert to floats - XMVECTOR vResult = _mm_cvtepi32_ps(reinterpret_cast(&VInt)[0]); - // Convert DivExponent into 1.0f/(1<(&vScale)[0]); - return vResult; -#endif -} - -//------------------------------------------------------------------------------ - -XMINLINE XMVECTOR XMConvertVectorFloatToInt -( - FXMVECTOR VFloat, - UINT MulExponent -) -{ -#if defined(_XM_NO_INTRINSICS_) - UINT ElementIndex; - XMVECTOR Result; - FLOAT fScale; - XMASSERT(MulExponent<32); - // Get the scalar factor. - fScale = (FLOAT)(1U << MulExponent); - ElementIndex = 0; - do { - INT iResult; - FLOAT fTemp = VFloat.vector4_f32[ElementIndex]*fScale; - if (fTemp <= -(65536.0f*32768.0f)) { - iResult = (-0x7FFFFFFF)-1; - } else if (fTemp > (65536.0f*32768.0f)-128.0f) { - iResult = 0x7FFFFFFF; - } else { - iResult = (INT)fTemp; - } - Result.vector4_u32[ElementIndex] = (UINT)iResult; - } while (++ElementIndex<4); - return Result; -#else // _XM_SSE_INTRINSICS_ - XMASSERT(MulExponent<32); - static const XMVECTORF32 MaxInt = {65536.0f*32768.0f-128.0f,65536.0f*32768.0f-128.0f,65536.0f*32768.0f-128.0f,65536.0f*32768.0f-128.0f}; - XMVECTOR vResult = _mm_set_ps1((FLOAT)(1U << MulExponent)); - vResult = _mm_mul_ps(vResult,VFloat); - // In case of positive overflow, detect it - XMVECTOR vOverflow = _mm_cmpgt_ps(vResult,MaxInt); - // Float to int conversion - __m128i vResulti = _mm_cvttps_epi32(vResult); - // If there was positive overflow, set to 0x7FFFFFFF - vResult = _mm_and_ps(vOverflow,g_XMAbsMask); - vOverflow = _mm_andnot_ps(vOverflow,reinterpret_cast(&vResulti)[0]); - vOverflow = _mm_or_ps(vOverflow,vResult); - return vOverflow; -#endif -} - -//------------------------------------------------------------------------------ - -XMINLINE XMVECTOR XMConvertVectorUIntToFloat -( - FXMVECTOR VUInt, - UINT DivExponent -) -{ -#if defined(_XM_NO_INTRINSICS_) - UINT ElementIndex; - FLOAT fScale; - XMVECTOR Result; - XMASSERT(DivExponent<32); - fScale = 1.0f / (FLOAT)(1U << DivExponent); - ElementIndex = 0; - do { - Result.vector4_f32[ElementIndex] = (FLOAT)VUInt.vector4_u32[ElementIndex] * fScale; - } while (++ElementIndex<4); - return Result; -#else // _XM_SSE_INTRINSICS_ - XMASSERT(DivExponent<32); - static const XMVECTORF32 FixUnsigned = {32768.0f*65536.0f,32768.0f*65536.0f,32768.0f*65536.0f,32768.0f*65536.0f}; - // For the values that are higher than 0x7FFFFFFF, a fixup is needed - // Determine which ones need the fix. - XMVECTOR vMask = _mm_and_ps(VUInt,g_XMNegativeZero); - // Force all values positive - XMVECTOR vResult = _mm_xor_ps(VUInt,vMask); - // Convert to floats - vResult = _mm_cvtepi32_ps(reinterpret_cast(&vResult)[0]); - // Convert 0x80000000 -> 0xFFFFFFFF - __m128i iMask = _mm_srai_epi32(reinterpret_cast(&vMask)[0],31); - // For only the ones that are too big, add the fixup - vMask = _mm_and_ps(reinterpret_cast(&iMask)[0],FixUnsigned); - vResult = _mm_add_ps(vResult,vMask); - // Convert DivExponent into 1.0f/(1<(&iMask)[0]); - return vResult; -#endif -} - -//------------------------------------------------------------------------------ - -XMINLINE XMVECTOR XMConvertVectorFloatToUInt -( - FXMVECTOR VFloat, - UINT MulExponent -) -{ -#if defined(_XM_NO_INTRINSICS_) - UINT ElementIndex; - XMVECTOR Result; - FLOAT fScale; - XMASSERT(MulExponent<32); - // Get the scalar factor. - fScale = (FLOAT)(1U << MulExponent); - ElementIndex = 0; - do { - UINT uResult; - FLOAT fTemp = VFloat.vector4_f32[ElementIndex]*fScale; - if (fTemp <= 0.0f) { - uResult = 0; - } else if (fTemp >= (65536.0f*65536.0f)) { - uResult = 0xFFFFFFFFU; - } else { - uResult = (UINT)fTemp; - } - Result.vector4_u32[ElementIndex] = uResult; - } while (++ElementIndex<4); - return Result; -#else // _XM_SSE_INTRINSICS_ - XMASSERT(MulExponent<32); - static const XMVECTORF32 MaxUInt = {65536.0f*65536.0f-256.0f,65536.0f*65536.0f-256.0f,65536.0f*65536.0f-256.0f,65536.0f*65536.0f-256.0f}; - static const XMVECTORF32 UnsignedFix = {32768.0f*65536.0f,32768.0f*65536.0f,32768.0f*65536.0f,32768.0f*65536.0f}; - XMVECTOR vResult = _mm_set_ps1(static_cast(1U << MulExponent)); - vResult = _mm_mul_ps(vResult,VFloat); - // Clamp to >=0 - vResult = _mm_max_ps(vResult,g_XMZero); - // Any numbers that are too big, set to 0xFFFFFFFFU - XMVECTOR vOverflow = _mm_cmpgt_ps(vResult,MaxUInt); - XMVECTOR vValue = UnsignedFix; - // Too large for a signed integer? - XMVECTOR vMask = _mm_cmpge_ps(vResult,vValue); - // Zero for number's lower than 0x80000000, 32768.0f*65536.0f otherwise - vValue = _mm_and_ps(vValue,vMask); - // Perform fixup only on numbers too large (Keeps low bit precision) - vResult = _mm_sub_ps(vResult,vValue); - __m128i vResulti = _mm_cvttps_epi32(vResult); - // Convert from signed to unsigned pnly if greater than 0x80000000 - vMask = _mm_and_ps(vMask,g_XMNegativeZero); - vResult = _mm_xor_ps(reinterpret_cast(&vResulti)[0],vMask); - // On those that are too large, set to 0xFFFFFFFF - vResult = _mm_or_ps(vResult,vOverflow); - return vResult; -#endif -} - -#pragma warning(pop) - -#endif // _XM_NO_INTRINSICS_ || _XM_SSE_INTRINSICS_ - -/**************************************************************************** - * - * Vector and matrix load operations - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadInt(CONST UINT* pSource) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - XMASSERT(pSource); - XMASSERT(((UINT_PTR)pSource & 3) == 0); - - V.vector4_u32[0] = *pSource; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - XMASSERT(((UINT_PTR)pSource & 3) == 0); - - return _mm_load_ss( (const float*)pSource ); -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadFloat(CONST FLOAT* pSource) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - XMASSERT(pSource); - XMASSERT(((UINT_PTR)pSource & 3) == 0); - - V.vector4_f32[0] = *pSource; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - XMASSERT(((UINT_PTR)pSource & 3) == 0); - - return _mm_load_ss( pSource ); -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadInt2 -( - CONST UINT* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - - XMASSERT(pSource); - - V.vector4_u32[0] = pSource[0]; - V.vector4_u32[1] = pSource[1]; - - return V; -#elif defined(_XM_SSE_INTRINSICS_) - - XMASSERT(pSource); - - __m128 x = _mm_load_ss( (const float*)pSource ); - __m128 y = _mm_load_ss( (const float*)(pSource+1) ); - return _mm_unpacklo_ps( x, y ); -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadInt2A -( - CONST UINT* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - - XMASSERT(pSource); - XMASSERT(((UINT_PTR)pSource & 0xF) == 0); - - V.vector4_u32[0] = pSource[0]; - V.vector4_u32[1] = pSource[1]; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - - XMASSERT(pSource); - XMASSERT(((UINT_PTR)pSource & 0xF) == 0); - - __m128i V = _mm_loadl_epi64( (const __m128i*)pSource ); - return reinterpret_cast<__m128 *>(&V)[0]; - -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadFloat2 -( - CONST XMFLOAT2* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR V; - XMASSERT(pSource); - - ((UINT *)(&V.vector4_f32[0]))[0] = ((const UINT *)(&pSource->x))[0]; - ((UINT *)(&V.vector4_f32[1]))[0] = ((const UINT *)(&pSource->y))[0]; - return V; -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - - __m128 x = _mm_load_ss( &pSource->x ); - __m128 y = _mm_load_ss( &pSource->y ); - return _mm_unpacklo_ps( x, y ); -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadFloat2A -( - CONST XMFLOAT2A* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - - XMASSERT(pSource); - XMASSERT(((UINT_PTR)pSource & 0xF) == 0); - - V.vector4_f32[0] = pSource->x; - V.vector4_f32[1] = pSource->y; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - XMASSERT(((UINT_PTR)pSource & 0xF) == 0); - - __m128i V = _mm_loadl_epi64( (const __m128i*)pSource ); - return reinterpret_cast<__m128 *>(&V)[0]; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadHalf2 -( - CONST XMHALF2* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMASSERT(pSource); - { - XMVECTOR vResult = { - XMConvertHalfToFloat(pSource->x), - XMConvertHalfToFloat(pSource->y), - 0.0f, - 0.0f - }; - return vResult; - } -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - XMVECTOR vResult = { - XMConvertHalfToFloat(pSource->x), - XMConvertHalfToFloat(pSource->y), - 0.0f, - 0.0f - }; - return vResult; - -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadShortN2 -( - CONST XMSHORTN2* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMASSERT(pSource); - XMASSERT(pSource->x != -32768); - XMASSERT(pSource->y != -32768); - { - XMVECTOR vResult = { - (FLOAT)pSource->x * (1.0f/32767.0f), - (FLOAT)pSource->y * (1.0f/32767.0f), - 0.0f, - 0.0f - }; - return vResult; - } - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - XMASSERT(pSource->x != -32768); - XMASSERT(pSource->y != -32768); - // Splat the two shorts in all four entries (WORD alignment okay, - // DWORD alignment preferred) - __m128 vTemp = _mm_load_ps1(reinterpret_cast(&pSource->x)); - // Mask x&0xFFFF, y&0xFFFF0000,z&0,w&0 - vTemp = _mm_and_ps(vTemp,g_XMMaskX16Y16); - // x needs to be sign extended - vTemp = _mm_xor_ps(vTemp,g_XMFlipX16Y16); - // Convert to floating point numbers - vTemp = _mm_cvtepi32_ps(reinterpret_cast(&vTemp)[0]); - // x - 0x8000 to undo the signed order. - vTemp = _mm_add_ps(vTemp,g_XMFixX16Y16); - // Convert 0-32767 to 0.0f-1.0f - return _mm_mul_ps(vTemp,g_XMNormalizeX16Y16); -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadShort2 -( - CONST XMSHORT2* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - - XMASSERT(pSource); - XMASSERT(pSource->x != -32768); - XMASSERT(pSource->y != -32768); - - V.vector4_f32[0] = (FLOAT)pSource->x; - V.vector4_f32[1] = (FLOAT)pSource->y; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - XMASSERT(pSource->x != -32768); - XMASSERT(pSource->y != -32768); - // Splat the two shorts in all four entries (WORD alignment okay, - // DWORD alignment preferred) - __m128 vTemp = _mm_load_ps1(reinterpret_cast(&pSource->x)); - // Mask x&0xFFFF, y&0xFFFF0000,z&0,w&0 - vTemp = _mm_and_ps(vTemp,g_XMMaskX16Y16); - // x needs to be sign extended - vTemp = _mm_xor_ps(vTemp,g_XMFlipX16Y16); - // Convert to floating point numbers - vTemp = _mm_cvtepi32_ps(reinterpret_cast(&vTemp)[0]); - // x - 0x8000 to undo the signed order. - vTemp = _mm_add_ps(vTemp,g_XMFixX16Y16); - // Y is 65536 too large - return _mm_mul_ps(vTemp,g_XMFixupY16); -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadUShortN2 -( - CONST XMUSHORTN2* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - - XMASSERT(pSource); - - V.vector4_f32[0] = (FLOAT)pSource->x / 65535.0f; - V.vector4_f32[1] = (FLOAT)pSource->y / 65535.0f; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - static const XMVECTORF32 FixupY16 = {1.0f/65535.0f,1.0f/(65535.0f*65536.0f),0.0f,0.0f}; - static const XMVECTORF32 FixaddY16 = {0,32768.0f*65536.0f,0,0}; - XMASSERT(pSource); - // Splat the two shorts in all four entries (WORD alignment okay, - // DWORD alignment preferred) - __m128 vTemp = _mm_load_ps1(reinterpret_cast(&pSource->x)); - // Mask x&0xFFFF, y&0xFFFF0000,z&0,w&0 - vTemp = _mm_and_ps(vTemp,g_XMMaskX16Y16); - // y needs to be sign flipped - vTemp = _mm_xor_ps(vTemp,g_XMFlipY); - // Convert to floating point numbers - vTemp = _mm_cvtepi32_ps(reinterpret_cast(&vTemp)[0]); - // y + 0x8000 to undo the signed order. - vTemp = _mm_add_ps(vTemp,FixaddY16); - // Y is 65536 times too large - vTemp = _mm_mul_ps(vTemp,FixupY16); - return vTemp; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadUShort2 -( - CONST XMUSHORT2* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - - XMASSERT(pSource); - - V.vector4_f32[0] = (FLOAT)pSource->x; - V.vector4_f32[1] = (FLOAT)pSource->y; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - static const XMVECTORF32 FixaddY16 = {0,32768.0f,0,0}; - XMASSERT(pSource); - // Splat the two shorts in all four entries (WORD alignment okay, - // DWORD alignment preferred) - __m128 vTemp = _mm_load_ps1(reinterpret_cast(&pSource->x)); - // Mask x&0xFFFF, y&0xFFFF0000,z&0,w&0 - vTemp = _mm_and_ps(vTemp,g_XMMaskX16Y16); - // y needs to be sign flipped - vTemp = _mm_xor_ps(vTemp,g_XMFlipY); - // Convert to floating point numbers - vTemp = _mm_cvtepi32_ps(reinterpret_cast(&vTemp)[0]); - // Y is 65536 times too large - vTemp = _mm_mul_ps(vTemp,g_XMFixupY16); - // y + 0x8000 to undo the signed order. - vTemp = _mm_add_ps(vTemp,FixaddY16); - return vTemp; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadInt3 -( - CONST UINT* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - - XMASSERT(pSource); - - V.vector4_u32[0] = pSource[0]; - V.vector4_u32[1] = pSource[1]; - V.vector4_u32[2] = pSource[2]; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - -#ifdef _XM_ISVS2005_ - __m128i V = _mm_set_epi32( 0, *(pSource+2), *(pSource+1), *pSource ); - return reinterpret_cast<__m128 *>(&V)[0]; -#else - __m128 x = _mm_load_ss( (const float*)pSource ); - __m128 y = _mm_load_ss( (const float*)(pSource+1) ); - __m128 z = _mm_load_ss( (const float*)(pSource+2) ); - __m128 xy = _mm_unpacklo_ps( x, y ); - return _mm_movelh_ps( xy, z ); -#endif // !_XM_ISVS2005_ -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadInt3A -( - CONST UINT* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - - XMASSERT(pSource); - XMASSERT(((UINT_PTR)pSource & 0xF) == 0); - - V.vector4_u32[0] = pSource[0]; - V.vector4_u32[1] = pSource[1]; - V.vector4_u32[2] = pSource[2]; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - - // Reads an extra integer that is 'undefined' - - __m128i V = _mm_load_si128( (const __m128i*)pSource ); - return reinterpret_cast<__m128 *>(&V)[0]; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadFloat3 -( - CONST XMFLOAT3* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR V; - XMASSERT(pSource); - - ((UINT *)(&V.vector4_f32[0]))[0] = ((const UINT *)(&pSource->x))[0]; - ((UINT *)(&V.vector4_f32[1]))[0] = ((const UINT *)(&pSource->y))[0]; - ((UINT *)(&V.vector4_f32[2]))[0] = ((const UINT *)(&pSource->z))[0]; - return V; -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - -#ifdef _XM_ISVS2005_ - // This reads 1 floats past the memory that should be ignored. - // Need to continue to do this for VS 2005 due to compiler issue but prefer new method - // to avoid triggering issues with memory debug tools (like AV) - return _mm_loadu_ps( &pSource->x ); -#else - __m128 x = _mm_load_ss( &pSource->x ); - __m128 y = _mm_load_ss( &pSource->y ); - __m128 z = _mm_load_ss( &pSource->z ); - __m128 xy = _mm_unpacklo_ps( x, y ); - return _mm_movelh_ps( xy, z ); -#endif // !_XM_ISVS2005_ -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadFloat3A -( - CONST XMFLOAT3A* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - - XMASSERT(pSource); - XMASSERT(((UINT_PTR)pSource & 0xF) == 0); - - V.vector4_f32[0] = pSource->x; - V.vector4_f32[1] = pSource->y; - V.vector4_f32[2] = pSource->z; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - XMASSERT(((UINT_PTR)pSource & 0xF) == 0); - - // This reads 1 floats past the memory that should be ignored. - return _mm_load_ps( &pSource->x ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadUHenDN3 -( - CONST XMUHENDN3* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - UINT Element; - - XMASSERT(pSource); - - Element = pSource->v & 0x7FF; - V.vector4_f32[0] = (FLOAT)Element / 2047.0f; - Element = (pSource->v >> 11) & 0x7FF; - V.vector4_f32[1] = (FLOAT)Element / 2047.0f; - Element = (pSource->v >> 22) & 0x3FF; - V.vector4_f32[2] = (FLOAT)Element / 1023.0f; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - static const XMVECTORF32 UHenDN3Mul = {1.0f/2047.0f,1.0f/(2047.0f*2048.0f),1.0f/(1023.0f*2048.0f*2048.0f),0}; - XMASSERT(pSource); - // Get the 32 bit value and splat it - XMVECTOR vResult = _mm_load_ps1(reinterpret_cast(&pSource->v)); - // Mask off x, y and z - vResult = _mm_and_ps(vResult,g_XMMaskHenD3); - // Convert x and y to unsigned - vResult = _mm_xor_ps(vResult,g_XMFlipZ); - // Convert to float - vResult = _mm_cvtepi32_ps(reinterpret_cast(&vResult)[0]); - // Convert x and y back to signed - vResult = _mm_add_ps(vResult,g_XMAddUHenD3); - // Normalize x,y and z to -1.0f-1.0f - vResult = _mm_mul_ps(vResult,UHenDN3Mul); - return vResult; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadUHenD3 -( - CONST XMUHEND3* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - UINT Element; - - XMASSERT(pSource); - - Element = pSource->v & 0x7FF; - V.vector4_f32[0] = (FLOAT)Element; - Element = (pSource->v >> 11) & 0x7FF; - V.vector4_f32[1] = (FLOAT)Element; - Element = (pSource->v >> 22) & 0x3FF; - V.vector4_f32[2] = (FLOAT)Element; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - // Get the 32 bit value and splat it - XMVECTOR vResult = _mm_load_ps1(reinterpret_cast(&pSource->v)); - // Mask off x, y and z - vResult = _mm_and_ps(vResult,g_XMMaskHenD3); - // Convert x and y to unsigned - vResult = _mm_xor_ps(vResult,g_XMFlipZ); - // Convert to float - vResult = _mm_cvtepi32_ps(reinterpret_cast(&vResult)[0]); - // Convert x and y back to signed - vResult = _mm_add_ps(vResult,g_XMAddUHenD3); - // Normalize x and y to -1024-1023.0f and z to -512-511.0f - vResult = _mm_mul_ps(vResult,g_XMMulHenD3); - return vResult; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadHenDN3 -( - CONST XMHENDN3* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - UINT Element; - static CONST UINT SignExtendXY[] = {0x00000000, 0xFFFFF800}; - static CONST UINT SignExtendZ[] = {0x00000000, 0xFFFFFC00}; - - XMASSERT(pSource); - XMASSERT((pSource->v & 0x7FF) != 0x400); - XMASSERT(((pSource->v >> 11) & 0x7FF) != 0x400); - XMASSERT(((pSource->v >> 22) & 0x3FF) != 0x200); - - Element = pSource->v & 0x7FF; - V.vector4_f32[0] = (FLOAT)(SHORT)(Element | SignExtendXY[Element >> 10]) / 1023.0f; - Element = (pSource->v >> 11) & 0x7FF; - V.vector4_f32[1] = (FLOAT)(SHORT)(Element | SignExtendXY[Element >> 10]) / 1023.0f; - Element = (pSource->v >> 22) & 0x3FF; - V.vector4_f32[2] = (FLOAT)(SHORT)(Element | SignExtendZ[Element >> 9]) / 511.0f; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - static const XMVECTORF32 HenDN3Mul = {1.0f/1023.0f,1.0f/(1023.0f*2048.0f),1.0f/(511.0f*2048.0f*2048.0f),0}; - XMASSERT(pSource); - XMASSERT((pSource->v & 0x7FF) != 0x400); - XMASSERT(((pSource->v >> 11) & 0x7FF) != 0x400); - XMASSERT(((pSource->v >> 22) & 0x3FF) != 0x200); - // Get the 32 bit value and splat it - XMVECTOR vResult = _mm_load_ps1(reinterpret_cast(&pSource->v)); - // Mask off x, y and z - vResult = _mm_and_ps(vResult,g_XMMaskHenD3); - // Convert x and y to unsigned - vResult = _mm_xor_ps(vResult,g_XMXorHenD3); - // Convert to float - vResult = _mm_cvtepi32_ps(reinterpret_cast(&vResult)[0]); - // Convert x and y back to signed - vResult = _mm_add_ps(vResult,g_XMAddHenD3); - // Normalize x,y and z to -1.0f-1.0f - vResult = _mm_mul_ps(vResult,HenDN3Mul); - return vResult; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadHenD3 -( - CONST XMHEND3* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - UINT Element; - static CONST UINT SignExtendXY[] = {0x00000000, 0xFFFFF800}; - static CONST UINT SignExtendZ[] = {0x00000000, 0xFFFFFC00}; - - XMASSERT(pSource); - XMASSERT((pSource->v & 0x7FF) != 0x400); - XMASSERT(((pSource->v >> 11) & 0x7FF) != 0x400); - XMASSERT(((pSource->v >> 22) & 0x3FF) != 0x200); - - Element = pSource->v & 0x7FF; - V.vector4_f32[0] = (FLOAT)(SHORT)(Element | SignExtendXY[Element >> 10]); - Element = (pSource->v >> 11) & 0x7FF; - V.vector4_f32[1] = (FLOAT)(SHORT)(Element | SignExtendXY[Element >> 10]); - Element = (pSource->v >> 22) & 0x3FF; - V.vector4_f32[2] = (FLOAT)(SHORT)(Element | SignExtendZ[Element >> 9]); - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - XMASSERT((pSource->v & 0x7FF) != 0x400); - XMASSERT(((pSource->v >> 11) & 0x7FF) != 0x400); - XMASSERT(((pSource->v >> 22) & 0x3FF) != 0x200); - // Get the 32 bit value and splat it - XMVECTOR vResult = _mm_load_ps1(reinterpret_cast(&pSource->v)); - // Mask off x, y and z - vResult = _mm_and_ps(vResult,g_XMMaskHenD3); - // Convert x and y to unsigned - vResult = _mm_xor_ps(vResult,g_XMXorHenD3); - // Convert to float - vResult = _mm_cvtepi32_ps(reinterpret_cast(&vResult)[0]); - // Convert x and y back to signed - vResult = _mm_add_ps(vResult,g_XMAddHenD3); - // Normalize x and y to -1024-1023.0f and z to -512-511.0f - vResult = _mm_mul_ps(vResult,g_XMMulHenD3); - return vResult; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadUDHenN3 -( - CONST XMUDHENN3* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - UINT Element; - - XMASSERT(pSource); - - Element = pSource->v & 0x3FF; - V.vector4_f32[0] = (FLOAT)Element / 1023.0f; - Element = (pSource->v >> 10) & 0x7FF; - V.vector4_f32[1] = (FLOAT)Element / 2047.0f; - Element = (pSource->v >> 21) & 0x7FF; - V.vector4_f32[2] = (FLOAT)Element / 2047.0f; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - static const XMVECTORF32 UDHenN3Mul = {1.0f/1023.0f,1.0f/(2047.0f*1024.0f),1.0f/(2047.0f*1024.0f*2048.0f),0}; - XMASSERT(pSource); - // Get the 32 bit value and splat it - XMVECTOR vResult = _mm_load_ps1(reinterpret_cast(&pSource->v)); - // Mask off x, y and z - vResult = _mm_and_ps(vResult,g_XMMaskDHen3); - // Convert x and y to unsigned - vResult = _mm_xor_ps(vResult,g_XMFlipZ); - // Convert to float - vResult = _mm_cvtepi32_ps(reinterpret_cast(&vResult)[0]); - // Convert x and y back to signed - vResult = _mm_add_ps(vResult,g_XMAddUHenD3); - // Normalize x,y and z to -1.0f-1.0f - vResult = _mm_mul_ps(vResult,UDHenN3Mul); - return vResult; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadUDHen3 -( - CONST XMUDHEN3* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - UINT Element; - - XMASSERT(pSource); - - Element = pSource->v & 0x3FF; - V.vector4_f32[0] = (FLOAT)Element; - Element = (pSource->v >> 10) & 0x7FF; - V.vector4_f32[1] = (FLOAT)Element; - Element = (pSource->v >> 21) & 0x7FF; - V.vector4_f32[2] = (FLOAT)Element; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - // Get the 32 bit value and splat it - XMVECTOR vResult = _mm_load_ps1(reinterpret_cast(&pSource->v)); - // Mask off x, y and z - vResult = _mm_and_ps(vResult,g_XMMaskDHen3); - // Convert x and y to unsigned - vResult = _mm_xor_ps(vResult,g_XMFlipZ); - // Convert to float - vResult = _mm_cvtepi32_ps(reinterpret_cast(&vResult)[0]); - // Convert x and y back to signed - vResult = _mm_add_ps(vResult,g_XMAddUHenD3); - // Normalize x to 0-1023.0f and y and z to 0-2047.0f - vResult = _mm_mul_ps(vResult,g_XMMulDHen3); - return vResult; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadDHenN3 -( - CONST XMDHENN3* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - UINT Element; - static CONST UINT SignExtendX[] = {0x00000000, 0xFFFFFC00}; - static CONST UINT SignExtendYZ[] = {0x00000000, 0xFFFFF800}; - - XMASSERT(pSource); - XMASSERT((pSource->v & 0x3FF) != 0x200); - XMASSERT(((pSource->v >> 10) & 0x7FF) != 0x400); - XMASSERT(((pSource->v >> 21) & 0x7FF) != 0x400); - - Element = pSource->v & 0x3FF; - V.vector4_f32[0] = (FLOAT)(SHORT)(Element | SignExtendX[Element >> 9]) / 511.0f; - Element = (pSource->v >> 10) & 0x7FF; - V.vector4_f32[1] = (FLOAT)(SHORT)(Element | SignExtendYZ[Element >> 10]) / 1023.0f; - Element = (pSource->v >> 21) & 0x7FF; - V.vector4_f32[2] = (FLOAT)(SHORT)(Element | SignExtendYZ[Element >> 10]) / 1023.0f; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - static const XMVECTORF32 DHenN3Mul = {1.0f/511.0f,1.0f/(1023.0f*1024.0f),1.0f/(1023.0f*1024.0f*2048.0f),0}; - XMASSERT(pSource); - XMASSERT((pSource->v & 0x3FF) != 0x200); - XMASSERT(((pSource->v >> 10) & 0x7FF) != 0x400); - XMASSERT(((pSource->v >> 21) & 0x7FF) != 0x400); - // Get the 32 bit value and splat it - XMVECTOR vResult = _mm_load_ps1(reinterpret_cast(&pSource->v)); - // Mask off x, y and z - vResult = _mm_and_ps(vResult,g_XMMaskDHen3); - // Convert x and y to unsigned - vResult = _mm_xor_ps(vResult,g_XMXorDHen3); - // Convert to float - vResult = _mm_cvtepi32_ps(reinterpret_cast(&vResult)[0]); - // Convert x and y back to signed - vResult = _mm_add_ps(vResult,g_XMAddDHen3); - // Normalize x,y and z to -1.0f-1.0f - vResult = _mm_mul_ps(vResult,DHenN3Mul); - return vResult; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadDHen3 -( - CONST XMDHEN3* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - UINT Element; - static CONST UINT SignExtendX[] = {0x00000000, 0xFFFFFC00}; - static CONST UINT SignExtendYZ[] = {0x00000000, 0xFFFFF800}; - - XMASSERT(pSource); - XMASSERT((pSource->v & 0x3FF) != 0x200); - XMASSERT(((pSource->v >> 10) & 0x7FF) != 0x400); - XMASSERT(((pSource->v >> 21) & 0x7FF) != 0x400); - - Element = pSource->v & 0x3FF; - V.vector4_f32[0] = (FLOAT)(SHORT)(Element | SignExtendX[Element >> 9]); - Element = (pSource->v >> 10) & 0x7FF; - V.vector4_f32[1] = (FLOAT)(SHORT)(Element | SignExtendYZ[Element >> 10]); - Element = (pSource->v >> 21) & 0x7FF; - V.vector4_f32[2] = (FLOAT)(SHORT)(Element | SignExtendYZ[Element >> 10]); - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - XMASSERT((pSource->v & 0x3FF) != 0x200); - XMASSERT(((pSource->v >> 10) & 0x7FF) != 0x400); - XMASSERT(((pSource->v >> 21) & 0x7FF) != 0x400); - // Get the 32 bit value and splat it - XMVECTOR vResult = _mm_load_ps1(reinterpret_cast(&pSource->v)); - // Mask off x, y and z - vResult = _mm_and_ps(vResult,g_XMMaskDHen3); - // Convert x and y to unsigned - vResult = _mm_xor_ps(vResult,g_XMXorDHen3); - // Convert to float - vResult = _mm_cvtepi32_ps(reinterpret_cast(&vResult)[0]); - // Convert x and y back to signed - vResult = _mm_add_ps(vResult,g_XMAddDHen3); - // Normalize x to -210-511.0f and y and z to -1024-1023.0f - vResult = _mm_mul_ps(vResult,g_XMMulDHen3); - return vResult; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadU565 -( - CONST XMU565* pSource -) -{ -#if defined(_XM_SSE_INTRINSICS_) && !defined(_XM_NO_INTRINSICS_) - static const XMVECTORI32 U565And = {0x1F,0x3F<<5,0x1F<<11,0}; - static const XMVECTORF32 U565Mul = {1.0f,1.0f/32.0f,1.0f/2048.f,0}; - XMASSERT(pSource); - // Get the 32 bit value and splat it - XMVECTOR vResult = _mm_load_ps1(reinterpret_cast(&pSource->v)); - // Mask off x, y and z - vResult = _mm_and_ps(vResult,U565And); - // Convert to float - vResult = _mm_cvtepi32_ps(reinterpret_cast(&vResult)[0]); - // Normalize x, y, and z - vResult = _mm_mul_ps(vResult,U565Mul); - return vResult; -#else - XMVECTOR V; - UINT Element; - - XMASSERT(pSource); - - Element = pSource->v & 0x1F; - V.vector4_f32[0] = (FLOAT)Element; - Element = (pSource->v >> 5) & 0x3F; - V.vector4_f32[1] = (FLOAT)Element; - Element = (pSource->v >> 11) & 0x1F; - V.vector4_f32[2] = (FLOAT)Element; - - return V; -#endif // !_XM_SSE_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadFloat3PK -( - CONST XMFLOAT3PK* pSource -) -{ - _DECLSPEC_ALIGN_16_ UINT Result[4]; - UINT Mantissa; - UINT Exponent; - - XMASSERT(pSource); - - // X Channel (6-bit mantissa) - Mantissa = pSource->xm; - - if ( pSource->xe == 0x1f ) // INF or NAN - { - Result[0] = 0x7f800000 | (pSource->xm << 17); - } - else - { - if ( pSource->xe != 0 ) // The value is normalized - { - Exponent = pSource->xe; - } - else if (Mantissa != 0) // The value is denormalized - { - // Normalize the value in the resulting float - Exponent = 1; - - do - { - Exponent--; - Mantissa <<= 1; - } while ((Mantissa & 0x40) == 0); - - Mantissa &= 0x3F; - } - else // The value is zero - { - Exponent = (UINT)-112; - } - - Result[0] = ((Exponent + 112) << 23) | (Mantissa << 17); - } - - // Y Channel (6-bit mantissa) - Mantissa = pSource->ym; - - if ( pSource->ye == 0x1f ) // INF or NAN - { - Result[1] = 0x7f800000 | (pSource->ym << 17); - } - else - { - if ( pSource->ye != 0 ) // The value is normalized - { - Exponent = pSource->ye; - } - else if (Mantissa != 0) // The value is denormalized - { - // Normalize the value in the resulting float - Exponent = 1; - - do - { - Exponent--; - Mantissa <<= 1; - } while ((Mantissa & 0x40) == 0); - - Mantissa &= 0x3F; - } - else // The value is zero - { - Exponent = (UINT)-112; - } - - Result[1] = ((Exponent + 112) << 23) | (Mantissa << 17); - } - - // Z Channel (5-bit mantissa) - Mantissa = pSource->zm; - - if ( pSource->ze == 0x1f ) // INF or NAN - { - Result[2] = 0x7f800000 | (pSource->zm << 17); - } - else - { - if ( pSource->ze != 0 ) // The value is normalized - { - Exponent = pSource->ze; - } - else if (Mantissa != 0) // The value is denormalized - { - // Normalize the value in the resulting float - Exponent = 1; - - do - { - Exponent--; - Mantissa <<= 1; - } while ((Mantissa & 0x20) == 0); - - Mantissa &= 0x1F; - } - else // The value is zero - { - Exponent = (UINT)-112; - } - - Result[2] = ((Exponent + 112) << 23) | (Mantissa << 18); - } - - return XMLoadFloat3A( (XMFLOAT3A*)&Result ); -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadFloat3SE -( - CONST XMFLOAT3SE* pSource -) -{ - _DECLSPEC_ALIGN_16_ UINT Result[4]; - UINT Mantissa; - UINT Exponent, ExpBits; - - XMASSERT(pSource); - - if ( pSource->e == 0x1f ) // INF or NAN - { - Result[0] = 0x7f800000 | (pSource->xm << 14); - Result[1] = 0x7f800000 | (pSource->ym << 14); - Result[2] = 0x7f800000 | (pSource->zm << 14); - } - else if ( pSource->e != 0 ) // The values are all normalized - { - Exponent = pSource->e; - - ExpBits = (Exponent + 112) << 23; - - Mantissa = pSource->xm; - Result[0] = ExpBits | (Mantissa << 14); - - Mantissa = pSource->ym; - Result[1] = ExpBits | (Mantissa << 14); - - Mantissa = pSource->zm; - Result[2] = ExpBits | (Mantissa << 14); - } - else - { - // X Channel - Mantissa = pSource->xm; - - if (Mantissa != 0) // The value is denormalized - { - // Normalize the value in the resulting float - Exponent = 1; - - do - { - Exponent--; - Mantissa <<= 1; - } while ((Mantissa & 0x200) == 0); - - Mantissa &= 0x1FF; - } - else // The value is zero - { - Exponent = (UINT)-112; - } - - Result[0] = ((Exponent + 112) << 23) | (Mantissa << 14); - - // Y Channel - Mantissa = pSource->ym; - - if (Mantissa != 0) // The value is denormalized - { - // Normalize the value in the resulting float - Exponent = 1; - - do - { - Exponent--; - Mantissa <<= 1; - } while ((Mantissa & 0x200) == 0); - - Mantissa &= 0x1FF; - } - else // The value is zero - { - Exponent = (UINT)-112; - } - - Result[1] = ((Exponent + 112) << 23) | (Mantissa << 14); - - // Z Channel - Mantissa = pSource->zm; - - if (Mantissa != 0) // The value is denormalized - { - // Normalize the value in the resulting float - Exponent = 1; - - do - { - Exponent--; - Mantissa <<= 1; - } while ((Mantissa & 0x200) == 0); - - Mantissa &= 0x1FF; - } - else // The value is zero - { - Exponent = (UINT)-112; - } - - Result[2] = ((Exponent + 112) << 23) | (Mantissa << 14); - } - - return XMLoadFloat3A( (XMFLOAT3A*)&Result ); -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadInt4 -( - CONST UINT* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - - XMASSERT(pSource); - - V.vector4_u32[0] = pSource[0]; - V.vector4_u32[1] = pSource[1]; - V.vector4_u32[2] = pSource[2]; - V.vector4_u32[3] = pSource[3]; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - - XMASSERT(pSource); - - __m128i V = _mm_loadu_si128( (const __m128i*)pSource ); - return reinterpret_cast<__m128 *>(&V)[0]; - -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadInt4A -( - CONST UINT* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - - XMASSERT(pSource); - XMASSERT(((UINT_PTR)pSource & 0xF) == 0); - - V.vector4_u32[0] = pSource[0]; - V.vector4_u32[1] = pSource[1]; - V.vector4_u32[2] = pSource[2]; - V.vector4_u32[3] = pSource[3]; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - - XMASSERT(pSource); - XMASSERT(((UINT_PTR)pSource & 0xF) == 0); - - __m128i V = _mm_load_si128( (const __m128i*)pSource ); - return reinterpret_cast<__m128 *>(&V)[0]; - -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadFloat4 -( - CONST XMFLOAT4* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR V; - XMASSERT(pSource); - - ((UINT *)(&V.vector4_f32[0]))[0] = ((const UINT *)(&pSource->x))[0]; - ((UINT *)(&V.vector4_f32[1]))[0] = ((const UINT *)(&pSource->y))[0]; - ((UINT *)(&V.vector4_f32[2]))[0] = ((const UINT *)(&pSource->z))[0]; - ((UINT *)(&V.vector4_f32[3]))[0] = ((const UINT *)(&pSource->w))[0]; - return V; -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - - return _mm_loadu_ps( &pSource->x ); -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadFloat4A -( - CONST XMFLOAT4A* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - - XMASSERT(pSource); - XMASSERT(((UINT_PTR)pSource & 0xF) == 0); - - V.vector4_f32[0] = pSource->x; - V.vector4_f32[1] = pSource->y; - V.vector4_f32[2] = pSource->z; - V.vector4_f32[3] = pSource->w; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - - XMASSERT(pSource); - XMASSERT(((UINT_PTR)pSource & 0xF) == 0); - - return _mm_load_ps( &pSource->x ); - -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadHalf4 -( - CONST XMHALF4* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMASSERT(pSource); - { - XMVECTOR vResult = { - XMConvertHalfToFloat(pSource->x), - XMConvertHalfToFloat(pSource->y), - XMConvertHalfToFloat(pSource->z), - XMConvertHalfToFloat(pSource->w) - }; - return vResult; - } -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - XMVECTOR vResult = { - XMConvertHalfToFloat(pSource->x), - XMConvertHalfToFloat(pSource->y), - XMConvertHalfToFloat(pSource->z), - XMConvertHalfToFloat(pSource->w) - }; - return vResult; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadShortN4 -( - CONST XMSHORTN4* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMASSERT(pSource); - XMASSERT(pSource->x != -32768); - XMASSERT(pSource->y != -32768); - XMASSERT(pSource->z != -32768); - XMASSERT(pSource->w != -32768); - { - XMVECTOR vResult = { - (FLOAT)pSource->x * (1.0f/32767.0f), - (FLOAT)pSource->y * (1.0f/32767.0f), - (FLOAT)pSource->z * (1.0f/32767.0f), - (FLOAT)pSource->w * (1.0f/32767.0f) - }; - return vResult; - } -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - XMASSERT(pSource->x != -32768); - XMASSERT(pSource->y != -32768); - XMASSERT(pSource->z != -32768); - XMASSERT(pSource->w != -32768); - // Splat the color in all four entries (x,z,y,w) - __m128d vIntd = _mm_load1_pd(reinterpret_cast(&pSource->x)); - // Shift x&0ffff,z&0xffff,y&0xffff0000,w&0xffff0000 - __m128 vTemp = _mm_and_ps(reinterpret_cast(&vIntd)[0],g_XMMaskX16Y16Z16W16); - // x and z are unsigned! Flip the bits to convert the order to signed - vTemp = _mm_xor_ps(vTemp,g_XMFlipX16Y16Z16W16); - // Convert to floating point numbers - vTemp = _mm_cvtepi32_ps(reinterpret_cast(&vTemp)[0]); - // x and z - 0x8000 to complete the conversion - vTemp = _mm_add_ps(vTemp,g_XMFixX16Y16Z16W16); - // Convert -32767-32767 to -1.0f-1.0f - vTemp = _mm_mul_ps(vTemp,g_XMNormalizeX16Y16Z16W16); - // Very important! The entries are x,z,y,w, flip it to x,y,z,w - vTemp = _mm_shuffle_ps(vTemp,vTemp,_MM_SHUFFLE(3,1,2,0)); - return vTemp; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadShort4 -( - CONST XMSHORT4* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - - XMASSERT(pSource); - XMASSERT(pSource->x != -32768); - XMASSERT(pSource->y != -32768); - XMASSERT(pSource->z != -32768); - XMASSERT(pSource->w != -32768); - - V.vector4_f32[0] = (FLOAT)pSource->x; - V.vector4_f32[1] = (FLOAT)pSource->y; - V.vector4_f32[2] = (FLOAT)pSource->z; - V.vector4_f32[3] = (FLOAT)pSource->w; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - XMASSERT(pSource->x != -32768); - XMASSERT(pSource->y != -32768); - XMASSERT(pSource->z != -32768); - XMASSERT(pSource->w != -32768); - // Splat the color in all four entries (x,z,y,w) - __m128d vIntd = _mm_load1_pd(reinterpret_cast(&pSource->x)); - // Shift x&0ffff,z&0xffff,y&0xffff0000,w&0xffff0000 - __m128 vTemp = _mm_and_ps(reinterpret_cast(&vIntd)[0],g_XMMaskX16Y16Z16W16); - // x and z are unsigned! Flip the bits to convert the order to signed - vTemp = _mm_xor_ps(vTemp,g_XMFlipX16Y16Z16W16); - // Convert to floating point numbers - vTemp = _mm_cvtepi32_ps(reinterpret_cast(&vTemp)[0]); - // x and z - 0x8000 to complete the conversion - vTemp = _mm_add_ps(vTemp,g_XMFixX16Y16Z16W16); - // Fix y and w because they are 65536 too large - vTemp = _mm_mul_ps(vTemp,g_XMFixupY16W16); - // Very important! The entries are x,z,y,w, flip it to x,y,z,w - return _mm_shuffle_ps(vTemp,vTemp,_MM_SHUFFLE(3,1,2,0)); -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadUShortN4 -( - CONST XMUSHORTN4* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - - XMASSERT(pSource); - - V.vector4_f32[0] = (FLOAT)pSource->x / 65535.0f; - V.vector4_f32[1] = (FLOAT)pSource->y / 65535.0f; - V.vector4_f32[2] = (FLOAT)pSource->z / 65535.0f; - V.vector4_f32[3] = (FLOAT)pSource->w / 65535.0f; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - static const XMVECTORF32 FixupY16W16 = {1.0f/65535.0f,1.0f/65535.0f,1.0f/(65535.0f*65536.0f),1.0f/(65535.0f*65536.0f)}; - static const XMVECTORF32 FixaddY16W16 = {0,0,32768.0f*65536.0f,32768.0f*65536.0f}; - XMASSERT(pSource); - // Splat the color in all four entries (x,z,y,w) - __m128d vIntd = _mm_load1_pd(reinterpret_cast(&pSource->x)); - // Shift x&0ffff,z&0xffff,y&0xffff0000,w&0xffff0000 - __m128 vTemp = _mm_and_ps(reinterpret_cast(&vIntd)[0],g_XMMaskX16Y16Z16W16); - // y and w are signed! Flip the bits to convert the order to unsigned - vTemp = _mm_xor_ps(vTemp,g_XMFlipZW); - // Convert to floating point numbers - vTemp = _mm_cvtepi32_ps(reinterpret_cast(&vTemp)[0]); - // y and w + 0x8000 to complete the conversion - vTemp = _mm_add_ps(vTemp,FixaddY16W16); - // Fix y and w because they are 65536 too large - vTemp = _mm_mul_ps(vTemp,FixupY16W16); - // Very important! The entries are x,z,y,w, flip it to x,y,z,w - return _mm_shuffle_ps(vTemp,vTemp,_MM_SHUFFLE(3,1,2,0)); -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadUShort4 -( - CONST XMUSHORT4* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - - XMASSERT(pSource); - - V.vector4_f32[0] = (FLOAT)pSource->x; - V.vector4_f32[1] = (FLOAT)pSource->y; - V.vector4_f32[2] = (FLOAT)pSource->z; - V.vector4_f32[3] = (FLOAT)pSource->w; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - static const XMVECTORF32 FixaddY16W16 = {0,0,32768.0f,32768.0f}; - XMASSERT(pSource); - // Splat the color in all four entries (x,z,y,w) - __m128d vIntd = _mm_load1_pd(reinterpret_cast(&pSource->x)); - // Shift x&0ffff,z&0xffff,y&0xffff0000,w&0xffff0000 - __m128 vTemp = _mm_and_ps(reinterpret_cast(&vIntd)[0],g_XMMaskX16Y16Z16W16); - // y and w are signed! Flip the bits to convert the order to unsigned - vTemp = _mm_xor_ps(vTemp,g_XMFlipZW); - // Convert to floating point numbers - vTemp = _mm_cvtepi32_ps(reinterpret_cast(&vTemp)[0]); - // Fix y and w because they are 65536 too large - vTemp = _mm_mul_ps(vTemp,g_XMFixupY16W16); - // y and w + 0x8000 to complete the conversion - vTemp = _mm_add_ps(vTemp,FixaddY16W16); - // Very important! The entries are x,z,y,w, flip it to x,y,z,w - return _mm_shuffle_ps(vTemp,vTemp,_MM_SHUFFLE(3,1,2,0)); -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadXIcoN4 -( - CONST XMXICON4* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - UINT Element; - static CONST UINT SignExtend[] = {0x00000000, 0xFFF00000}; - - XMASSERT(pSource); - XMASSERT((pSource->v & 0xFFFFFull) != 0x80000ull); - XMASSERT(((pSource->v >> 20) & 0xFFFFFull) != 0x80000ull); - XMASSERT(((pSource->v >> 40) & 0xFFFFFull) != 0x80000ull); - - Element = (UINT)(pSource->v & 0xFFFFF); - V.vector4_f32[0] = (FLOAT)(INT)(Element | SignExtend[Element >> 19]) / 524287.0f; - Element = (UINT)((pSource->v >> 20) & 0xFFFFF); - V.vector4_f32[1] = (FLOAT)(INT)(Element | SignExtend[Element >> 19]) / 524287.0f; - Element = (UINT)((pSource->v >> 40) & 0xFFFFF); - V.vector4_f32[2] = (FLOAT)(INT)(Element | SignExtend[Element >> 19]) / 524287.0f; - V.vector4_f32[3] = (FLOAT)(pSource->v >> 60) / 15.0f; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT((pSource->v & 0xFFFFFull) != 0x80000ull); - XMASSERT(((pSource->v >> 20) & 0xFFFFFull) != 0x80000ull); - XMASSERT(((pSource->v >> 40) & 0xFFFFFull) != 0x80000ull); - static const XMVECTORF32 LoadXIcoN4Mul = {1.0f/524287.0f,1.0f/(524287.0f*4096.0f),1.0f/524287.0f,1.0f/(15.0f*4096.0f*65536.0f)}; - XMASSERT(pSource); - // Grab the 64 bit structure - __m128d vResultd = _mm_load_sd(reinterpret_cast(&pSource->v)); - // By shifting down 8 bits, y and z are in seperate 32 bit elements - __m128i vResulti = _mm_srli_si128(reinterpret_cast(&vResultd)[0],8/8); - // vResultd has x and w, vResulti has y and z, merge into one as x,w,y,z - XMVECTOR vTemp = _mm_shuffle_ps(reinterpret_cast(&vResultd)[0],reinterpret_cast(&vResulti)[0],_MM_SHUFFLE(1,0,1,0)); - // Fix the entries to x,y,z,w - vTemp = _mm_shuffle_ps(vTemp,vTemp,_MM_SHUFFLE(1,3,2,0)); - // Mask x,y,z and w - vTemp = _mm_and_ps(vTemp,g_XMMaskIco4); - // x and z are unsigned! Flip the bits to convert the order to signed - vTemp = _mm_xor_ps(vTemp,g_XMXorXIco4); - // Convert to floating point numbers - vTemp = _mm_cvtepi32_ps(reinterpret_cast(&vTemp)[0]); - // x and z - 0x80 to complete the conversion - vTemp = _mm_add_ps(vTemp,g_XMAddXIco4); - // Fix y and w because they are too large - vTemp = _mm_mul_ps(vTemp,LoadXIcoN4Mul); - return vTemp; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadXIco4 -( - CONST XMXICO4* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - UINT Element; - static CONST UINT SignExtend[] = {0x00000000, 0xFFF00000}; - - XMASSERT(pSource); - XMASSERT((pSource->v & 0xFFFFFull) != 0x80000ull); - XMASSERT(((pSource->v >> 20) & 0xFFFFFull) != 0x80000ull); - XMASSERT(((pSource->v >> 40) & 0xFFFFFull) != 0x80000ull); - - Element = (UINT)(pSource->v & 0xFFFFF); - V.vector4_f32[0] = (FLOAT)(INT)(Element | SignExtend[Element >> 19]); - Element = (UINT)((pSource->v >> 20) & 0xFFFFF); - V.vector4_f32[1] = (FLOAT)(INT)(Element | SignExtend[Element >> 19]); - Element = (UINT)((pSource->v >> 40) & 0xFFFFF); - V.vector4_f32[2] = (FLOAT)(INT)(Element | SignExtend[Element >> 19]); - V.vector4_f32[3] = (FLOAT)(pSource->v >> 60); - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT((pSource->v & 0xFFFFFull) != 0x80000ull); - XMASSERT(((pSource->v >> 20) & 0xFFFFFull) != 0x80000ull); - XMASSERT(((pSource->v >> 40) & 0xFFFFFull) != 0x80000ull); - XMASSERT(pSource); - // Grab the 64 bit structure - __m128d vResultd = _mm_load_sd(reinterpret_cast(&pSource->v)); - // By shifting down 8 bits, y and z are in seperate 32 bit elements - __m128i vResulti = _mm_srli_si128(reinterpret_cast(&vResultd)[0],8/8); - // vResultd has x and w, vResulti has y and z, merge into one as x,w,y,z - XMVECTOR vTemp = _mm_shuffle_ps(reinterpret_cast(&vResultd)[0],reinterpret_cast(&vResulti)[0],_MM_SHUFFLE(1,0,1,0)); - // Fix the entries to x,y,z,w - vTemp = _mm_shuffle_ps(vTemp,vTemp,_MM_SHUFFLE(1,3,2,0)); - // Mask x,y,z and w - vTemp = _mm_and_ps(vTemp,g_XMMaskIco4); - // x and z are unsigned! Flip the bits to convert the order to signed - vTemp = _mm_xor_ps(vTemp,g_XMXorXIco4); - // Convert to floating point numbers - vTemp = _mm_cvtepi32_ps(reinterpret_cast(&vTemp)[0]); - // x and z - 0x80 to complete the conversion - vTemp = _mm_add_ps(vTemp,g_XMAddXIco4); - // Fix y and w because they are too large - vTemp = _mm_mul_ps(vTemp,g_XMMulIco4); - return vTemp; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadUIcoN4 -( - CONST XMUICON4* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - - XMASSERT(pSource); - - V.vector4_f32[0] = (FLOAT)(pSource->v & 0xFFFFF) / 1048575.0f; - V.vector4_f32[1] = (FLOAT)((pSource->v >> 20) & 0xFFFFF) / 1048575.0f; - V.vector4_f32[2] = (FLOAT)((pSource->v >> 40) & 0xFFFFF) / 1048575.0f; - V.vector4_f32[3] = (FLOAT)(pSource->v >> 60) / 15.0f; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - static const XMVECTORF32 LoadUIcoN4Mul = {1.0f/1048575.0f,1.0f/(1048575.0f*4096.0f),1.0f/1048575.0f,1.0f/(15.0f*4096.0f*65536.0f)}; - XMASSERT(pSource); - // Grab the 64 bit structure - __m128d vResultd = _mm_load_sd(reinterpret_cast(&pSource->v)); - // By shifting down 8 bits, y and z are in seperate 32 bit elements - __m128i vResulti = _mm_srli_si128(reinterpret_cast(&vResultd)[0],8/8); - // vResultd has x and w, vResulti has y and z, merge into one as x,w,y,z - XMVECTOR vTemp = _mm_shuffle_ps(reinterpret_cast(&vResultd)[0],reinterpret_cast(&vResulti)[0],_MM_SHUFFLE(1,0,1,0)); - // Fix the entries to x,y,z,w - vTemp = _mm_shuffle_ps(vTemp,vTemp,_MM_SHUFFLE(1,3,2,0)); - // Mask x,y,z and w - vTemp = _mm_and_ps(vTemp,g_XMMaskIco4); - // x and z are unsigned! Flip the bits to convert the order to signed - vTemp = _mm_xor_ps(vTemp,g_XMFlipYW); - // Convert to floating point numbers - vTemp = _mm_cvtepi32_ps(reinterpret_cast(&vTemp)[0]); - // x and z - 0x80 to complete the conversion - vTemp = _mm_add_ps(vTemp,g_XMAddUIco4); - // Fix y and w because they are too large - vTemp = _mm_mul_ps(vTemp,LoadUIcoN4Mul); - return vTemp; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadUIco4 -( - CONST XMUICO4* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - - XMASSERT(pSource); - - V.vector4_f32[0] = (FLOAT)(pSource->v & 0xFFFFF); - V.vector4_f32[1] = (FLOAT)((pSource->v >> 20) & 0xFFFFF); - V.vector4_f32[2] = (FLOAT)((pSource->v >> 40) & 0xFFFFF); - V.vector4_f32[3] = (FLOAT)(pSource->v >> 60); - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - // Grab the 64 bit structure - __m128d vResultd = _mm_load_sd(reinterpret_cast(&pSource->v)); - // By shifting down 8 bits, y and z are in seperate 32 bit elements - __m128i vResulti = _mm_srli_si128(reinterpret_cast(&vResultd)[0],8/8); - // vResultd has x and w, vResulti has y and z, merge into one as x,w,y,z - XMVECTOR vTemp = _mm_shuffle_ps(reinterpret_cast(&vResultd)[0],reinterpret_cast(&vResulti)[0],_MM_SHUFFLE(1,0,1,0)); - // Fix the entries to x,y,z,w - vTemp = _mm_shuffle_ps(vTemp,vTemp,_MM_SHUFFLE(1,3,2,0)); - // Mask x,y,z and w - vTemp = _mm_and_ps(vTemp,g_XMMaskIco4); - // x and z are unsigned! Flip the bits to convert the order to signed - vTemp = _mm_xor_ps(vTemp,g_XMFlipYW); - // Convert to floating point numbers - vTemp = _mm_cvtepi32_ps(reinterpret_cast(&vTemp)[0]); - // x and z - 0x80 to complete the conversion - vTemp = _mm_add_ps(vTemp,g_XMAddUIco4); - // Fix y and w because they are too large - vTemp = _mm_mul_ps(vTemp,g_XMMulIco4); - return vTemp; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadIcoN4 -( - CONST XMICON4* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - UINT Element; - static CONST UINT SignExtend[] = {0x00000000, 0xFFF00000}; - static CONST UINT SignExtendW[] = {0x00000000, 0xFFFFFFF0}; - - XMASSERT(pSource); - - Element = (UINT)(pSource->v & 0xFFFFF); - V.vector4_f32[0] = (FLOAT)(INT)(Element | SignExtend[Element >> 19]) / 524287.0f; - Element = (UINT)((pSource->v >> 20) & 0xFFFFF); - V.vector4_f32[1] = (FLOAT)(INT)(Element | SignExtend[Element >> 19]) / 524287.0f; - Element = (UINT)((pSource->v >> 40) & 0xFFFFF); - V.vector4_f32[2] = (FLOAT)(INT)(Element | SignExtend[Element >> 19]) / 524287.0f; - Element = (UINT)(pSource->v >> 60); - V.vector4_f32[3] = (FLOAT)(INT)(Element | SignExtendW[Element >> 3]) / 7.0f; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - static const XMVECTORF32 LoadIcoN4Mul = {1.0f/524287.0f,1.0f/(524287.0f*4096.0f),1.0f/524287.0f,1.0f/(7.0f*4096.0f*65536.0f)}; - XMASSERT(pSource); - // Grab the 64 bit structure - __m128d vResultd = _mm_load_sd(reinterpret_cast(&pSource->v)); - // By shifting down 8 bits, y and z are in seperate 32 bit elements - __m128i vResulti = _mm_srli_si128(reinterpret_cast(&vResultd)[0],8/8); - // vResultd has x and w, vResulti has y and z, merge into one as x,w,y,z - XMVECTOR vTemp = _mm_shuffle_ps(reinterpret_cast(&vResultd)[0],reinterpret_cast(&vResulti)[0],_MM_SHUFFLE(1,0,1,0)); - // Fix the entries to x,y,z,w - vTemp = _mm_shuffle_ps(vTemp,vTemp,_MM_SHUFFLE(1,3,2,0)); - // Mask x,y,z and w - vTemp = _mm_and_ps(vTemp,g_XMMaskIco4); - // x and z are unsigned! Flip the bits to convert the order to signed - vTemp = _mm_xor_ps(vTemp,g_XMXorIco4); - // Convert to floating point numbers - vTemp = _mm_cvtepi32_ps(reinterpret_cast(&vTemp)[0]); - // x and z - 0x80 to complete the conversion - vTemp = _mm_add_ps(vTemp,g_XMAddIco4); - // Fix y and w because they are too large - vTemp = _mm_mul_ps(vTemp,LoadIcoN4Mul); - return vTemp; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadIco4 -( - CONST XMICO4* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - UINT Element; - static CONST UINT SignExtend[] = {0x00000000, 0xFFF00000}; - static CONST UINT SignExtendW[] = {0x00000000, 0xFFFFFFF0}; - - XMASSERT(pSource); - - Element = (UINT)(pSource->v & 0xFFFFF); - V.vector4_f32[0] = (FLOAT)(INT)(Element | SignExtend[Element >> 19]); - Element = (UINT)((pSource->v >> 20) & 0xFFFFF); - V.vector4_f32[1] = (FLOAT)(INT)(Element | SignExtend[Element >> 19]); - Element = (UINT)((pSource->v >> 40) & 0xFFFFF); - V.vector4_f32[2] = (FLOAT)(INT)(Element | SignExtend[Element >> 19]); - Element = (UINT)(pSource->v >> 60); - V.vector4_f32[3] = (FLOAT)(INT)(Element | SignExtendW[Element >> 3]); - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - // Grab the 64 bit structure - __m128d vResultd = _mm_load_sd(reinterpret_cast(&pSource->v)); - // By shifting down 8 bits, y and z are in seperate 32 bit elements - __m128i vResulti = _mm_srli_si128(reinterpret_cast(&vResultd)[0],8/8); - // vResultd has x and w, vResulti has y and z, merge into one as x,w,y,z - XMVECTOR vTemp = _mm_shuffle_ps(reinterpret_cast(&vResultd)[0],reinterpret_cast(&vResulti)[0],_MM_SHUFFLE(1,0,1,0)); - // Fix the entries to x,y,z,w - vTemp = _mm_shuffle_ps(vTemp,vTemp,_MM_SHUFFLE(1,3,2,0)); - // Mask x,y,z and w - vTemp = _mm_and_ps(vTemp,g_XMMaskIco4); - // x and z are unsigned! Flip the bits to convert the order to signed - vTemp = _mm_xor_ps(vTemp,g_XMXorIco4); - // Convert to floating point numbers - vTemp = _mm_cvtepi32_ps(reinterpret_cast(&vTemp)[0]); - // x and z - 0x80 to complete the conversion - vTemp = _mm_add_ps(vTemp,g_XMAddIco4); - // Fix y and w because they are too large - vTemp = _mm_mul_ps(vTemp,g_XMMulIco4); - return vTemp; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadXDecN4 -( - CONST XMXDECN4* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR V; - UINT Element; - static CONST UINT SignExtend[] = {0x00000000, 0xFFFFFC00}; - - XMASSERT(pSource); - XMASSERT((pSource->v & 0x3FF) != 0x200); - XMASSERT(((pSource->v >> 10) & 0x3FF) != 0x200); - XMASSERT(((pSource->v >> 20) & 0x3FF) != 0x200); - - Element = pSource->v & 0x3FF; - V.vector4_f32[0] = (FLOAT)(SHORT)(Element | SignExtend[Element >> 9]) / 511.0f; - Element = (pSource->v >> 10) & 0x3FF; - V.vector4_f32[1] = (FLOAT)(SHORT)(Element | SignExtend[Element >> 9]) / 511.0f; - Element = (pSource->v >> 20) & 0x3FF; - V.vector4_f32[2] = (FLOAT)(SHORT)(Element | SignExtend[Element >> 9]) / 511.0f; - V.vector4_f32[3] = (FLOAT)(pSource->v >> 30) / 3.0f; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - // Splat the color in all four entries - __m128 vTemp = _mm_load_ps1(reinterpret_cast(&pSource->v)); - // Shift R&0xFF0000, G&0xFF00, B&0xFF, A&0xFF000000 - vTemp = _mm_and_ps(vTemp,g_XMMaskA2B10G10R10); - // a is unsigned! Flip the bit to convert the order to signed - vTemp = _mm_xor_ps(vTemp,g_XMFlipA2B10G10R10); - // Convert to floating point numbers - vTemp = _mm_cvtepi32_ps(reinterpret_cast(&vTemp)[0]); - // RGB + 0, A + 0x80000000.f to undo the signed order. - vTemp = _mm_add_ps(vTemp,g_XMFixAA2B10G10R10); - // Convert 0-255 to 0.0f-1.0f - return _mm_mul_ps(vTemp,g_XMNormalizeA2B10G10R10); -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadXDec4 -( - CONST XMXDEC4* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - UINT Element; - static CONST UINT SignExtend[] = {0x00000000, 0xFFFFFC00}; - - XMASSERT(pSource); - XMASSERT((pSource->v & 0x3FF) != 0x200); - XMASSERT(((pSource->v >> 10) & 0x3FF) != 0x200); - XMASSERT(((pSource->v >> 20) & 0x3FF) != 0x200); - - Element = pSource->v & 0x3FF; - V.vector4_f32[0] = (FLOAT)(SHORT)(Element | SignExtend[Element >> 9]); - Element = (pSource->v >> 10) & 0x3FF; - V.vector4_f32[1] = (FLOAT)(SHORT)(Element | SignExtend[Element >> 9]); - Element = (pSource->v >> 20) & 0x3FF; - V.vector4_f32[2] = (FLOAT)(SHORT)(Element | SignExtend[Element >> 9]); - V.vector4_f32[3] = (FLOAT)(pSource->v >> 30); - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT((pSource->v & 0x3FF) != 0x200); - XMASSERT(((pSource->v >> 10) & 0x3FF) != 0x200); - XMASSERT(((pSource->v >> 20) & 0x3FF) != 0x200); - static const XMVECTORI32 XDec4Xor = {0x200, 0x200<<10, 0x200<<20, 0x80000000}; - static const XMVECTORF32 XDec4Add = {-512.0f,-512.0f*1024.0f,-512.0f*1024.0f*1024.0f,32768*65536.0f}; - XMASSERT(pSource); - // Splat the color in all four entries - XMVECTOR vTemp = _mm_load_ps1(reinterpret_cast(&pSource->v)); - // Shift R&0xFF0000, G&0xFF00, B&0xFF, A&0xFF000000 - vTemp = _mm_and_ps(vTemp,g_XMMaskDec4); - // a is unsigned! Flip the bit to convert the order to signed - vTemp = _mm_xor_ps(vTemp,XDec4Xor); - // Convert to floating point numbers - vTemp = _mm_cvtepi32_ps(reinterpret_cast(&vTemp)[0]); - // RGB + 0, A + 0x80000000.f to undo the signed order. - vTemp = _mm_add_ps(vTemp,XDec4Add); - // Convert 0-255 to 0.0f-1.0f - vTemp = _mm_mul_ps(vTemp,g_XMMulDec4); - return vTemp; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadUDecN4 -( - CONST XMUDECN4* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - UINT Element; - - XMASSERT(pSource); - - Element = pSource->v & 0x3FF; - V.vector4_f32[0] = (FLOAT)Element / 1023.0f; - Element = (pSource->v >> 10) & 0x3FF; - V.vector4_f32[1] = (FLOAT)Element / 1023.0f; - Element = (pSource->v >> 20) & 0x3FF; - V.vector4_f32[2] = (FLOAT)Element / 1023.0f; - V.vector4_f32[3] = (FLOAT)(pSource->v >> 30) / 3.0f; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - static const XMVECTORF32 UDecN4Mul = {1.0f/1023.0f,1.0f/(1023.0f*1024.0f),1.0f/(1023.0f*1024.0f*1024.0f),1.0f/(3.0f*1024.0f*1024.0f*1024.0f)}; - // Splat the color in all four entries - XMVECTOR vTemp = _mm_load_ps1(reinterpret_cast(&pSource->v)); - // Shift R&0xFF0000, G&0xFF00, B&0xFF, A&0xFF000000 - vTemp = _mm_and_ps(vTemp,g_XMMaskDec4); - // a is unsigned! Flip the bit to convert the order to signed - vTemp = _mm_xor_ps(vTemp,g_XMFlipW); - // Convert to floating point numbers - vTemp = _mm_cvtepi32_ps(reinterpret_cast(&vTemp)[0]); - // RGB + 0, A + 0x80000000.f to undo the signed order. - vTemp = _mm_add_ps(vTemp,g_XMAddUDec4); - // Convert 0-255 to 0.0f-1.0f - vTemp = _mm_mul_ps(vTemp,UDecN4Mul); - return vTemp; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadUDec4 -( - CONST XMUDEC4* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - UINT Element; - - XMASSERT(pSource); - - Element = pSource->v & 0x3FF; - V.vector4_f32[0] = (FLOAT)Element; - Element = (pSource->v >> 10) & 0x3FF; - V.vector4_f32[1] = (FLOAT)Element; - Element = (pSource->v >> 20) & 0x3FF; - V.vector4_f32[2] = (FLOAT)Element; - V.vector4_f32[3] = (FLOAT)(pSource->v >> 30); - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - // Splat the color in all four entries - XMVECTOR vTemp = _mm_load_ps1(reinterpret_cast(&pSource->v)); - // Shift R&0xFF0000, G&0xFF00, B&0xFF, A&0xFF000000 - vTemp = _mm_and_ps(vTemp,g_XMMaskDec4); - // a is unsigned! Flip the bit to convert the order to signed - vTemp = _mm_xor_ps(vTemp,g_XMFlipW); - // Convert to floating point numbers - vTemp = _mm_cvtepi32_ps(reinterpret_cast(&vTemp)[0]); - // RGB + 0, A + 0x80000000.f to undo the signed order. - vTemp = _mm_add_ps(vTemp,g_XMAddUDec4); - // Convert 0-255 to 0.0f-1.0f - vTemp = _mm_mul_ps(vTemp,g_XMMulDec4); - return vTemp; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadDecN4 -( - CONST XMDECN4* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - UINT Element; - static CONST UINT SignExtend[] = {0x00000000, 0xFFFFFC00}; - static CONST UINT SignExtendW[] = {0x00000000, 0xFFFFFFFC}; - - XMASSERT(pSource); - XMASSERT((pSource->v & 0x3FF) != 0x200); - XMASSERT(((pSource->v >> 10) & 0x3FF) != 0x200); - XMASSERT(((pSource->v >> 20) & 0x3FF) != 0x200); - XMASSERT(((pSource->v >> 30) & 0x3) != 0x2); - - Element = pSource->v & 0x3FF; - V.vector4_f32[0] = (FLOAT)(SHORT)(Element | SignExtend[Element >> 9]) / 511.0f; - Element = (pSource->v >> 10) & 0x3FF; - V.vector4_f32[1] = (FLOAT)(SHORT)(Element | SignExtend[Element >> 9]) / 511.0f; - Element = (pSource->v >> 20) & 0x3FF; - V.vector4_f32[2] = (FLOAT)(SHORT)(Element | SignExtend[Element >> 9]) / 511.0f; - Element = pSource->v >> 30; - V.vector4_f32[3] = (FLOAT)(SHORT)(Element | SignExtendW[Element >> 1]); - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - XMASSERT((pSource->v & 0x3FF) != 0x200); - XMASSERT(((pSource->v >> 10) & 0x3FF) != 0x200); - XMASSERT(((pSource->v >> 20) & 0x3FF) != 0x200); - XMASSERT(((pSource->v >> 30) & 0x3) != 0x2); - static const XMVECTORF32 DecN4Mul = {1.0f/511.0f,1.0f/(511.0f*1024.0f),1.0f/(511.0f*1024.0f*1024.0f),1.0f/(1024.0f*1024.0f*1024.0f)}; - // Splat the color in all four entries - XMVECTOR vTemp = _mm_load_ps1(reinterpret_cast(&pSource->v)); - // Shift R&0xFF0000, G&0xFF00, B&0xFF, A&0xFF000000 - vTemp = _mm_and_ps(vTemp,g_XMMaskDec4); - // a is unsigned! Flip the bit to convert the order to signed - vTemp = _mm_xor_ps(vTemp,g_XMXorDec4); - // Convert to floating point numbers - vTemp = _mm_cvtepi32_ps(reinterpret_cast(&vTemp)[0]); - // RGB + 0, A + 0x80000000.f to undo the signed order. - vTemp = _mm_add_ps(vTemp,g_XMAddDec4); - // Convert 0-255 to 0.0f-1.0f - vTemp = _mm_mul_ps(vTemp,DecN4Mul); - return vTemp; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadDec4 -( - CONST XMDEC4* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - UINT Element; - static CONST UINT SignExtend[] = {0x00000000, 0xFFFFFC00}; - static CONST UINT SignExtendW[] = {0x00000000, 0xFFFFFFFC}; - - XMASSERT(pSource); - XMASSERT((pSource->v & 0x3FF) != 0x200); - XMASSERT(((pSource->v >> 10) & 0x3FF) != 0x200); - XMASSERT(((pSource->v >> 20) & 0x3FF) != 0x200); - XMASSERT(((pSource->v >> 30) & 0x3) != 0x2); - - Element = pSource->v & 0x3FF; - V.vector4_f32[0] = (FLOAT)(SHORT)(Element | SignExtend[Element >> 9]); - Element = (pSource->v >> 10) & 0x3FF; - V.vector4_f32[1] = (FLOAT)(SHORT)(Element | SignExtend[Element >> 9]); - Element = (pSource->v >> 20) & 0x3FF; - V.vector4_f32[2] = (FLOAT)(SHORT)(Element | SignExtend[Element >> 9]); - Element = pSource->v >> 30; - V.vector4_f32[3] = (FLOAT)(SHORT)(Element | SignExtendW[Element >> 1]); - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT((pSource->v & 0x3FF) != 0x200); - XMASSERT(((pSource->v >> 10) & 0x3FF) != 0x200); - XMASSERT(((pSource->v >> 20) & 0x3FF) != 0x200); - XMASSERT(((pSource->v >> 30) & 0x3) != 0x2); - XMASSERT(pSource); - // Splat the color in all four entries - XMVECTOR vTemp = _mm_load_ps1(reinterpret_cast(&pSource->v)); - // Shift R&0xFF0000, G&0xFF00, B&0xFF, A&0xFF000000 - vTemp = _mm_and_ps(vTemp,g_XMMaskDec4); - // a is unsigned! Flip the bit to convert the order to signed - vTemp = _mm_xor_ps(vTemp,g_XMXorDec4); - // Convert to floating point numbers - vTemp = _mm_cvtepi32_ps(reinterpret_cast(&vTemp)[0]); - // RGB + 0, A + 0x80000000.f to undo the signed order. - vTemp = _mm_add_ps(vTemp,g_XMAddDec4); - // Convert 0-255 to 0.0f-1.0f - vTemp = _mm_mul_ps(vTemp,g_XMMulDec4); - return vTemp; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadUByteN4 -( - CONST XMUBYTEN4* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - - XMASSERT(pSource); - - V.vector4_f32[0] = (FLOAT)pSource->x / 255.0f; - V.vector4_f32[1] = (FLOAT)pSource->y / 255.0f; - V.vector4_f32[2] = (FLOAT)pSource->z / 255.0f; - V.vector4_f32[3] = (FLOAT)pSource->w / 255.0f; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - static const XMVECTORF32 LoadUByteN4Mul = {1.0f/255.0f,1.0f/(255.0f*256.0f),1.0f/(255.0f*65536.0f),1.0f/(255.0f*65536.0f*256.0f)}; - XMASSERT(pSource); - // Splat the color in all four entries (x,z,y,w) - XMVECTOR vTemp = _mm_load1_ps(reinterpret_cast(&pSource->x)); - // Mask x&0ff,y&0xff00,z&0xff0000,w&0xff000000 - vTemp = _mm_and_ps(vTemp,g_XMMaskByte4); - // w is signed! Flip the bits to convert the order to unsigned - vTemp = _mm_xor_ps(vTemp,g_XMFlipW); - // Convert to floating point numbers - vTemp = _mm_cvtepi32_ps(reinterpret_cast(&vTemp)[0]); - // w + 0x80 to complete the conversion - vTemp = _mm_add_ps(vTemp,g_XMAddUDec4); - // Fix y, z and w because they are too large - vTemp = _mm_mul_ps(vTemp,LoadUByteN4Mul); - return vTemp; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadUByte4 -( - CONST XMUBYTE4* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - - XMASSERT(pSource); - - V.vector4_f32[0] = (FLOAT)pSource->x; - V.vector4_f32[1] = (FLOAT)pSource->y; - V.vector4_f32[2] = (FLOAT)pSource->z; - V.vector4_f32[3] = (FLOAT)pSource->w; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - static const XMVECTORF32 LoadUByte4Mul = {1.0f,1.0f/256.0f,1.0f/65536.0f,1.0f/(65536.0f*256.0f)}; - XMASSERT(pSource); - // Splat the color in all four entries (x,z,y,w) - XMVECTOR vTemp = _mm_load1_ps(reinterpret_cast(&pSource->x)); - // Mask x&0ff,y&0xff00,z&0xff0000,w&0xff000000 - vTemp = _mm_and_ps(vTemp,g_XMMaskByte4); - // w is signed! Flip the bits to convert the order to unsigned - vTemp = _mm_xor_ps(vTemp,g_XMFlipW); - // Convert to floating point numbers - vTemp = _mm_cvtepi32_ps(reinterpret_cast(&vTemp)[0]); - // w + 0x80 to complete the conversion - vTemp = _mm_add_ps(vTemp,g_XMAddUDec4); - // Fix y, z and w because they are too large - vTemp = _mm_mul_ps(vTemp,LoadUByte4Mul); - return vTemp; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadByteN4 -( - CONST XMBYTEN4* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - - XMASSERT(pSource); - XMASSERT(pSource->x != -128); - XMASSERT(pSource->y != -128); - XMASSERT(pSource->z != -128); - XMASSERT(pSource->w != -128); - - V.vector4_f32[0] = (FLOAT)pSource->x / 127.0f; - V.vector4_f32[1] = (FLOAT)pSource->y / 127.0f; - V.vector4_f32[2] = (FLOAT)pSource->z / 127.0f; - V.vector4_f32[3] = (FLOAT)pSource->w / 127.0f; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - static const XMVECTORF32 LoadByteN4Mul = {1.0f/127.0f,1.0f/(127.0f*256.0f),1.0f/(127.0f*65536.0f),1.0f/(127.0f*65536.0f*256.0f)}; - XMASSERT(pSource); - XMASSERT(pSource->x != -128); - XMASSERT(pSource->y != -128); - XMASSERT(pSource->z != -128); - XMASSERT(pSource->w != -128); - // Splat the color in all four entries (x,z,y,w) - XMVECTOR vTemp = _mm_load1_ps(reinterpret_cast(&pSource->x)); - // Mask x&0ff,y&0xff00,z&0xff0000,w&0xff000000 - vTemp = _mm_and_ps(vTemp,g_XMMaskByte4); - // x,y and z are unsigned! Flip the bits to convert the order to signed - vTemp = _mm_xor_ps(vTemp,g_XMXorByte4); - // Convert to floating point numbers - vTemp = _mm_cvtepi32_ps(reinterpret_cast(&vTemp)[0]); - // x, y and z - 0x80 to complete the conversion - vTemp = _mm_add_ps(vTemp,g_XMAddByte4); - // Fix y, z and w because they are too large - vTemp = _mm_mul_ps(vTemp,LoadByteN4Mul); - return vTemp; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadByte4 -( - CONST XMBYTE4* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - - XMASSERT(pSource); - XMASSERT(pSource->x != -128); - XMASSERT(pSource->y != -128); - XMASSERT(pSource->z != -128); - XMASSERT(pSource->w != -128); - - V.vector4_f32[0] = (FLOAT)pSource->x; - V.vector4_f32[1] = (FLOAT)pSource->y; - V.vector4_f32[2] = (FLOAT)pSource->z; - V.vector4_f32[3] = (FLOAT)pSource->w; - - return V; - -#elif defined(_XM_SSE_INTRINSICS_) - static const XMVECTORF32 LoadByte4Mul = {1.0f,1.0f/256.0f,1.0f/65536.0f,1.0f/(65536.0f*256.0f)}; - XMASSERT(pSource); - XMASSERT(pSource->x != -128); - XMASSERT(pSource->y != -128); - XMASSERT(pSource->z != -128); - XMASSERT(pSource->w != -128); - // Splat the color in all four entries (x,z,y,w) - XMVECTOR vTemp = _mm_load1_ps(reinterpret_cast(&pSource->x)); - // Mask x&0ff,y&0xff00,z&0xff0000,w&0xff000000 - vTemp = _mm_and_ps(vTemp,g_XMMaskByte4); - // x,y and z are unsigned! Flip the bits to convert the order to signed - vTemp = _mm_xor_ps(vTemp,g_XMXorByte4); - // Convert to floating point numbers - vTemp = _mm_cvtepi32_ps(reinterpret_cast(&vTemp)[0]); - // x, y and z - 0x80 to complete the conversion - vTemp = _mm_add_ps(vTemp,g_XMAddByte4); - // Fix y, z and w because they are too large - vTemp = _mm_mul_ps(vTemp,LoadByte4Mul); - return vTemp; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadUNibble4 -( - CONST XMUNIBBLE4* pSource -) -{ -#if defined(_XM_SSE_INTRINSICS_) && !defined(_XM_NO_INTRINSICS_) - static const XMVECTORI32 UNibble4And = {0xF,0xF0,0xF00,0xF000}; - static const XMVECTORF32 UNibble4Mul = {1.0f,1.0f/16.f,1.0f/256.f,1.0f/4096.f}; - XMASSERT(pSource); - // Get the 32 bit value and splat it - XMVECTOR vResult = _mm_load_ps1(reinterpret_cast(&pSource->v)); - // Mask off x, y and z - vResult = _mm_and_ps(vResult,UNibble4And); - // Convert to float - vResult = _mm_cvtepi32_ps(reinterpret_cast(&vResult)[0]); - // Normalize x, y, and z - vResult = _mm_mul_ps(vResult,UNibble4Mul); - return vResult; -#else - XMVECTOR V; - UINT Element; - - XMASSERT(pSource); - - Element = pSource->v & 0xF; - V.vector4_f32[0] = (FLOAT)Element; - Element = (pSource->v >> 4) & 0xF; - V.vector4_f32[1] = (FLOAT)Element; - Element = (pSource->v >> 8) & 0xF; - V.vector4_f32[2] = (FLOAT)Element; - Element = (pSource->v >> 12) & 0xF; - V.vector4_f32[3] = (FLOAT)Element; - - return V; -#endif // !_XM_SSE_INTRISICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadU555 -( - CONST XMU555* pSource -) -{ -#if defined(_XM_SSE_INTRINSICS_) && !defined(_XM_NO_INTRINSICS_) - static const XMVECTORI32 U555And = {0x1F,0x1F<<5,0x1F<<10,0x8000}; - static const XMVECTORF32 U555Mul = {1.0f,1.0f/32.f,1.0f/1024.f,1.0f/32768.f}; - XMASSERT(pSource); - // Get the 32 bit value and splat it - XMVECTOR vResult = _mm_load_ps1(reinterpret_cast(&pSource->v)); - // Mask off x, y and z - vResult = _mm_and_ps(vResult,U555And); - // Convert to float - vResult = _mm_cvtepi32_ps(reinterpret_cast(&vResult)[0]); - // Normalize x, y, and z - vResult = _mm_mul_ps(vResult,U555Mul); - return vResult; -#else - XMVECTOR V; - UINT Element; - - XMASSERT(pSource); - - Element = pSource->v & 0x1F; - V.vector4_f32[0] = (FLOAT)Element; - Element = (pSource->v >> 5) & 0x1F; - V.vector4_f32[1] = (FLOAT)Element; - Element = (pSource->v >> 10) & 0x1F; - V.vector4_f32[2] = (FLOAT)Element; - Element = (pSource->v >> 15) & 0x1; - V.vector4_f32[3] = (FLOAT)Element; - - return V; -#endif // !_XM_SSE_INTRISICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMLoadColor -( - CONST XMCOLOR* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMASSERT(pSource); - { - // INT -> Float conversions are done in one instruction. - // UINT -> Float calls a runtime function. Keep in INT - INT iColor = (INT)(pSource->c); - XMVECTOR vColor = { - (FLOAT)((iColor >> 16) & 0xFF) * (1.0f/255.0f), - (FLOAT)((iColor >> 8) & 0xFF) * (1.0f/255.0f), - (FLOAT)(iColor & 0xFF) * (1.0f/255.0f), - (FLOAT)((iColor >> 24) & 0xFF) * (1.0f/255.0f) - }; - return vColor; - } -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - // Splat the color in all four entries - __m128i vInt = _mm_set1_epi32(pSource->c); - // Shift R&0xFF0000, G&0xFF00, B&0xFF, A&0xFF000000 - vInt = _mm_and_si128(vInt,g_XMMaskA8R8G8B8); - // a is unsigned! Flip the bit to convert the order to signed - vInt = _mm_xor_si128(vInt,g_XMFlipA8R8G8B8); - // Convert to floating point numbers - XMVECTOR vTemp = _mm_cvtepi32_ps(vInt); - // RGB + 0, A + 0x80000000.f to undo the signed order. - vTemp = _mm_add_ps(vTemp,g_XMFixAA8R8G8B8); - // Convert 0-255 to 0.0f-1.0f - return _mm_mul_ps(vTemp,g_XMNormalizeA8R8G8B8); -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMMATRIX XMLoadFloat3x3 -( - CONST XMFLOAT3X3* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMMATRIX M; - - XMASSERT(pSource); - - M.r[0].vector4_f32[0] = pSource->m[0][0]; - M.r[0].vector4_f32[1] = pSource->m[0][1]; - M.r[0].vector4_f32[2] = pSource->m[0][2]; - M.r[0].vector4_f32[3] = 0.0f; - - M.r[1].vector4_f32[0] = pSource->m[1][0]; - M.r[1].vector4_f32[1] = pSource->m[1][1]; - M.r[1].vector4_f32[2] = pSource->m[1][2]; - M.r[1].vector4_f32[3] = 0.0f; - - M.r[2].vector4_f32[0] = pSource->m[2][0]; - M.r[2].vector4_f32[1] = pSource->m[2][1]; - M.r[2].vector4_f32[2] = pSource->m[2][2]; - M.r[2].vector4_f32[3] = 0.0f; - - M.r[3].vector4_f32[0] = 0.0f; - M.r[3].vector4_f32[1] = 0.0f; - M.r[3].vector4_f32[2] = 0.0f; - M.r[3].vector4_f32[3] = 1.0f; - - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMMATRIX M; - XMVECTOR V1, V2, V3, Z, T1, T2, T3, T4, T5; - - Z = _mm_setzero_ps(); - - XMASSERT(pSource); - - V1 = _mm_loadu_ps( &pSource->m[0][0] ); - V2 = _mm_loadu_ps( &pSource->m[1][1] ); - V3 = _mm_load_ss( &pSource->m[2][2] ); - - T1 = _mm_unpackhi_ps( V1, Z ); - T2 = _mm_unpacklo_ps( V2, Z ); - T3 = _mm_shuffle_ps( V3, T2, _MM_SHUFFLE( 0, 1, 0, 0 ) ); - T4 = _mm_movehl_ps( T2, T3 ); - T5 = _mm_movehl_ps( Z, T1 ); - - M.r[0] = _mm_movelh_ps( V1, T1 ); - M.r[1] = _mm_add_ps( T4, T5 ); - M.r[2] = _mm_shuffle_ps( V2, V3, _MM_SHUFFLE(1, 0, 3, 2) ); - M.r[3] = g_XMIdentityR3; - - return M; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMMATRIX XMLoadFloat4x3 -( - CONST XMFLOAT4X3* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMMATRIX M; - XMASSERT(pSource); - - ((UINT *)(&M.r[0].vector4_f32[0]))[0] = ((const UINT *)(&pSource->m[0][0]))[0]; - ((UINT *)(&M.r[0].vector4_f32[1]))[0] = ((const UINT *)(&pSource->m[0][1]))[0]; - ((UINT *)(&M.r[0].vector4_f32[2]))[0] = ((const UINT *)(&pSource->m[0][2]))[0]; - M.r[0].vector4_f32[3] = 0.0f; - - ((UINT *)(&M.r[1].vector4_f32[0]))[0] = ((const UINT *)(&pSource->m[1][0]))[0]; - ((UINT *)(&M.r[1].vector4_f32[1]))[0] = ((const UINT *)(&pSource->m[1][1]))[0]; - ((UINT *)(&M.r[1].vector4_f32[2]))[0] = ((const UINT *)(&pSource->m[1][2]))[0]; - M.r[1].vector4_f32[3] = 0.0f; - - ((UINT *)(&M.r[2].vector4_f32[0]))[0] = ((const UINT *)(&pSource->m[2][0]))[0]; - ((UINT *)(&M.r[2].vector4_f32[1]))[0] = ((const UINT *)(&pSource->m[2][1]))[0]; - ((UINT *)(&M.r[2].vector4_f32[2]))[0] = ((const UINT *)(&pSource->m[2][2]))[0]; - M.r[2].vector4_f32[3] = 0.0f; - - ((UINT *)(&M.r[3].vector4_f32[0]))[0] = ((const UINT *)(&pSource->m[3][0]))[0]; - ((UINT *)(&M.r[3].vector4_f32[1]))[0] = ((const UINT *)(&pSource->m[3][1]))[0]; - ((UINT *)(&M.r[3].vector4_f32[2]))[0] = ((const UINT *)(&pSource->m[3][2]))[0]; - M.r[3].vector4_f32[3] = 1.0f; - - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - // Use unaligned load instructions to - // load the 12 floats - // vTemp1 = x1,y1,z1,x2 - XMVECTOR vTemp1 = _mm_loadu_ps(&pSource->m[0][0]); - // vTemp2 = y2,z2,x3,y3 - XMVECTOR vTemp2 = _mm_loadu_ps(&pSource->m[1][1]); - // vTemp4 = z3,x4,y4,z4 - XMVECTOR vTemp4 = _mm_loadu_ps(&pSource->m[2][2]); - // vTemp3 = x3,y3,z3,z3 - XMVECTOR vTemp3 = _mm_shuffle_ps(vTemp2,vTemp4,_MM_SHUFFLE(0,0,3,2)); - // vTemp2 = y2,z2,x2,x2 - vTemp2 = _mm_shuffle_ps(vTemp2,vTemp1,_MM_SHUFFLE(3,3,1,0)); - // vTemp2 = x2,y2,z2,z2 - vTemp2 = _mm_shuffle_ps(vTemp2,vTemp2,_MM_SHUFFLE(1,1,0,2)); - // vTemp1 = x1,y1,z1,0 - vTemp1 = _mm_and_ps(vTemp1,g_XMMask3); - // vTemp2 = x2,y2,z2,0 - vTemp2 = _mm_and_ps(vTemp2,g_XMMask3); - // vTemp3 = x3,y3,z3,0 - vTemp3 = _mm_and_ps(vTemp3,g_XMMask3); - // vTemp4i = x4,y4,z4,0 - __m128i vTemp4i = _mm_srli_si128(reinterpret_cast(&vTemp4)[0],32/8); - // vTemp4i = x4,y4,z4,1.0f - vTemp4i = _mm_or_si128(vTemp4i,g_XMIdentityR3); - XMMATRIX M(vTemp1, - vTemp2, - vTemp3, - reinterpret_cast(&vTemp4i)[0]); - return M; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMMATRIX XMLoadFloat4x3A -( - CONST XMFLOAT4X3A* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMMATRIX M; - - XMASSERT(pSource); - XMASSERT(((UINT_PTR)pSource & 0xF) == 0); - - M.r[0].vector4_f32[0] = pSource->m[0][0]; - M.r[0].vector4_f32[1] = pSource->m[0][1]; - M.r[0].vector4_f32[2] = pSource->m[0][2]; - M.r[0].vector4_f32[3] = 0.0f; - - M.r[1].vector4_f32[0] = pSource->m[1][0]; - M.r[1].vector4_f32[1] = pSource->m[1][1]; - M.r[1].vector4_f32[2] = pSource->m[1][2]; - M.r[1].vector4_f32[3] = 0.0f; - - M.r[2].vector4_f32[0] = pSource->m[2][0]; - M.r[2].vector4_f32[1] = pSource->m[2][1]; - M.r[2].vector4_f32[2] = pSource->m[2][2]; - M.r[2].vector4_f32[3] = 0.0f; - - M.r[3].vector4_f32[0] = pSource->m[3][0]; - M.r[3].vector4_f32[1] = pSource->m[3][1]; - M.r[3].vector4_f32[2] = pSource->m[3][2]; - M.r[3].vector4_f32[3] = 1.0f; - - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - // Use aligned load instructions to - // load the 12 floats - // vTemp1 = x1,y1,z1,x2 - XMVECTOR vTemp1 = _mm_load_ps(&pSource->m[0][0]); - // vTemp2 = y2,z2,x3,y3 - XMVECTOR vTemp2 = _mm_load_ps(&pSource->m[1][1]); - // vTemp4 = z3,x4,y4,z4 - XMVECTOR vTemp4 = _mm_load_ps(&pSource->m[2][2]); - // vTemp3 = x3,y3,z3,z3 - XMVECTOR vTemp3 = _mm_shuffle_ps(vTemp2,vTemp4,_MM_SHUFFLE(0,0,3,2)); - // vTemp2 = y2,z2,x2,x2 - vTemp2 = _mm_shuffle_ps(vTemp2,vTemp1,_MM_SHUFFLE(3,3,1,0)); - // vTemp2 = x2,y2,z2,z2 - vTemp2 = _mm_shuffle_ps(vTemp2,vTemp2,_MM_SHUFFLE(1,1,0,2)); - // vTemp1 = x1,y1,z1,0 - vTemp1 = _mm_and_ps(vTemp1,g_XMMask3); - // vTemp2 = x2,y2,z2,0 - vTemp2 = _mm_and_ps(vTemp2,g_XMMask3); - // vTemp3 = x3,y3,z3,0 - vTemp3 = _mm_and_ps(vTemp3,g_XMMask3); - // vTemp4i = x4,y4,z4,0 - __m128i vTemp4i = _mm_srli_si128(reinterpret_cast(&vTemp4)[0],32/8); - // vTemp4i = x4,y4,z4,1.0f - vTemp4i = _mm_or_si128(vTemp4i,g_XMIdentityR3); - XMMATRIX M(vTemp1, - vTemp2, - vTemp3, - reinterpret_cast(&vTemp4i)[0]); - return M; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMMATRIX XMLoadFloat4x4 -( - CONST XMFLOAT4X4* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMMATRIX M; - XMASSERT(pSource); - - ((UINT *)(&M.r[0].vector4_f32[0]))[0] = ((const UINT *)(&pSource->m[0][0]))[0]; - ((UINT *)(&M.r[0].vector4_f32[1]))[0] = ((const UINT *)(&pSource->m[0][1]))[0]; - ((UINT *)(&M.r[0].vector4_f32[2]))[0] = ((const UINT *)(&pSource->m[0][2]))[0]; - ((UINT *)(&M.r[0].vector4_f32[3]))[0] = ((const UINT *)(&pSource->m[0][3]))[0]; - - ((UINT *)(&M.r[1].vector4_f32[0]))[0] = ((const UINT *)(&pSource->m[1][0]))[0]; - ((UINT *)(&M.r[1].vector4_f32[1]))[0] = ((const UINT *)(&pSource->m[1][1]))[0]; - ((UINT *)(&M.r[1].vector4_f32[2]))[0] = ((const UINT *)(&pSource->m[1][2]))[0]; - ((UINT *)(&M.r[1].vector4_f32[3]))[0] = ((const UINT *)(&pSource->m[1][3]))[0]; - - ((UINT *)(&M.r[2].vector4_f32[0]))[0] = ((const UINT *)(&pSource->m[2][0]))[0]; - ((UINT *)(&M.r[2].vector4_f32[1]))[0] = ((const UINT *)(&pSource->m[2][1]))[0]; - ((UINT *)(&M.r[2].vector4_f32[2]))[0] = ((const UINT *)(&pSource->m[2][2]))[0]; - ((UINT *)(&M.r[2].vector4_f32[3]))[0] = ((const UINT *)(&pSource->m[2][3]))[0]; - - ((UINT *)(&M.r[3].vector4_f32[0]))[0] = ((const UINT *)(&pSource->m[3][0]))[0]; - ((UINT *)(&M.r[3].vector4_f32[1]))[0] = ((const UINT *)(&pSource->m[3][1]))[0]; - ((UINT *)(&M.r[3].vector4_f32[2]))[0] = ((const UINT *)(&pSource->m[3][2]))[0]; - ((UINT *)(&M.r[3].vector4_f32[3]))[0] = ((const UINT *)(&pSource->m[3][3]))[0]; - - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSource); - XMMATRIX M; - - M.r[0] = _mm_loadu_ps( &pSource->_11 ); - M.r[1] = _mm_loadu_ps( &pSource->_21 ); - M.r[2] = _mm_loadu_ps( &pSource->_31 ); - M.r[3] = _mm_loadu_ps( &pSource->_41 ); - - return M; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMMATRIX XMLoadFloat4x4A -( - CONST XMFLOAT4X4A* pSource -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMMATRIX M; - - XMASSERT(pSource); - XMASSERT(((UINT_PTR)pSource & 0xF) == 0); - - M.r[0].vector4_f32[0] = pSource->m[0][0]; - M.r[0].vector4_f32[1] = pSource->m[0][1]; - M.r[0].vector4_f32[2] = pSource->m[0][2]; - M.r[0].vector4_f32[3] = pSource->m[0][3]; - - M.r[1].vector4_f32[0] = pSource->m[1][0]; - M.r[1].vector4_f32[1] = pSource->m[1][1]; - M.r[1].vector4_f32[2] = pSource->m[1][2]; - M.r[1].vector4_f32[3] = pSource->m[1][3]; - - M.r[2].vector4_f32[0] = pSource->m[2][0]; - M.r[2].vector4_f32[1] = pSource->m[2][1]; - M.r[2].vector4_f32[2] = pSource->m[2][2]; - M.r[2].vector4_f32[3] = pSource->m[2][3]; - - M.r[3].vector4_f32[0] = pSource->m[3][0]; - M.r[3].vector4_f32[1] = pSource->m[3][1]; - M.r[3].vector4_f32[2] = pSource->m[3][2]; - M.r[3].vector4_f32[3] = pSource->m[3][3]; - - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMMATRIX M; - - XMASSERT(pSource); - - M.r[0] = _mm_load_ps( &pSource->_11 ); - M.r[1] = _mm_load_ps( &pSource->_21 ); - M.r[2] = _mm_load_ps( &pSource->_31 ); - M.r[3] = _mm_load_ps( &pSource->_41 ); - - return M; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -/**************************************************************************** - * - * Vector and matrix store operations - * - ****************************************************************************/ - -XMFINLINE VOID XMStoreInt -( - UINT* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 3) == 0); - - *pDestination = XMVectorGetIntX( V ); - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 3) == 0); - - _mm_store_ss( (float*)pDestination, V ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreFloat -( - FLOAT* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 3) == 0); - - *pDestination = XMVectorGetX( V ); - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 3) == 0); - - _mm_store_ss( pDestination, V ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreInt2 -( - UINT* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 3) == 0); - - pDestination[0] = V.vector4_u32[0]; - pDestination[1] = V.vector4_u32[1]; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 3) == 0); - - XMVECTOR T = _mm_shuffle_ps( V, V, _MM_SHUFFLE( 1, 1, 1, 1 ) ); - _mm_store_ss( (float*)&pDestination[0], V ); - _mm_store_ss( (float*)&pDestination[1], T ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreInt2A -( - UINT* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 0xF) == 0); - - pDestination[0] = V.vector4_u32[0]; - pDestination[1] = V.vector4_u32[1]; - -#elif defined(_XM_SSE_INTRINSICS_) - - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 0xF) == 0); - - _mm_storel_epi64( (__m128i*)pDestination, reinterpret_cast(&V)[0] ); - -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreFloat2 -( - XMFLOAT2* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 3) == 0); - - pDestination->x = V.vector4_f32[0]; - pDestination->y = V.vector4_f32[1]; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 3) == 0); - - XMVECTOR T = _mm_shuffle_ps( V, V, _MM_SHUFFLE( 1, 1, 1, 1 ) ); - _mm_store_ss( &pDestination->x, V ); - _mm_store_ss( &pDestination->y, T ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreFloat2A -( - XMFLOAT2A* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 0xF) == 0); - - pDestination->x = V.vector4_f32[0]; - pDestination->y = V.vector4_f32[1]; - -#elif defined(_XM_SSE_INTRINSICS_) - - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 0xF) == 0); - - _mm_storel_epi64( (__m128i*)pDestination, reinterpret_cast(&V)[0] ); - -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreHalf2 -( - XMHALF2* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMASSERT(pDestination); - - pDestination->x = XMConvertFloatToHalf(V.vector4_f32[0]); - pDestination->y = XMConvertFloatToHalf(V.vector4_f32[1]); - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - pDestination->x = XMConvertFloatToHalf(XMVectorGetX(V)); - pDestination->y = XMConvertFloatToHalf(XMVectorGetY(V)); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreShortN2 -( - XMSHORTN2* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTORF32 Scale = {32767.0f, 32767.0f, 32767.0f, 32767.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, g_XMNegativeOne.v, g_XMOne.v); - N = XMVectorMultiply(N, Scale.v); - N = XMVectorRound(N); - - pDestination->x = (SHORT)N.vector4_f32[0]; - pDestination->y = (SHORT)N.vector4_f32[1]; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - static CONST XMVECTORF32 Scale = {32767.0f, 32767.0f, 32767.0f, 32767.0f}; - - XMVECTOR vResult = _mm_max_ps(V,g_XMNegativeOne); - vResult = _mm_min_ps(vResult,g_XMOne); - vResult = _mm_mul_ps(vResult,Scale); - __m128i vResulti = _mm_cvtps_epi32(vResult); - vResulti = _mm_packs_epi32(vResulti,vResulti); - _mm_store_ss(reinterpret_cast(&pDestination->x),reinterpret_cast(&vResulti)[0]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreShort2 -( - XMSHORT2* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTOR Min = {-32767.0f, -32767.0f, -32767.0f, -32767.0f}; - static CONST XMVECTOR Max = {32767.0f, 32767.0f, 32767.0f, 32767.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, Min, Max); - N = XMVectorRound(N); - - pDestination->x = (SHORT)N.vector4_f32[0]; - pDestination->y = (SHORT)N.vector4_f32[1]; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - static CONST XMVECTORF32 Min = {-32767.0f, -32767.0f, -32767.0f, -32767.0f}; - static CONST XMVECTORF32 Max = {32767.0f, 32767.0f, 32767.0f, 32767.0f}; - // Bounds check - XMVECTOR vResult = _mm_max_ps(V,Min); - vResult = _mm_min_ps(vResult,Max); - // Convert to int with rounding - __m128i vInt = _mm_cvtps_epi32(vResult); - // Pack the ints into shorts - vInt = _mm_packs_epi32(vInt,vInt); - _mm_store_ss(reinterpret_cast(&pDestination->x),reinterpret_cast(&vInt)[0]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreUShortN2 -( - XMUSHORTN2* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTORF32 Scale = {65535.0f, 65535.0f, 65535.0f, 65535.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, XMVectorZero(), g_XMOne.v); - N = XMVectorMultiplyAdd(N, Scale.v, g_XMOneHalf.v); - N = XMVectorTruncate(N); - - pDestination->x = (SHORT)N.vector4_f32[0]; - pDestination->y = (SHORT)N.vector4_f32[1]; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - static CONST XMVECTORF32 Scale = {65535.0f, 65535.0f, 65535.0f, 65535.0f}; - // Bounds check - XMVECTOR vResult = _mm_max_ps(V,g_XMZero); - vResult = _mm_min_ps(vResult,g_XMOne); - vResult = _mm_mul_ps(vResult,Scale); - // Convert to int with rounding - __m128i vInt = _mm_cvtps_epi32(vResult); - // Since the SSE pack instruction clamps using signed rules, - // manually extract the values to store them to memory - pDestination->x = static_cast(_mm_extract_epi16(vInt,0)); - pDestination->y = static_cast(_mm_extract_epi16(vInt,2)); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreUShort2 -( - XMUSHORT2* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTOR Max = {65535.0f, 65535.0f, 65535.0f, 65535.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, XMVectorZero(), Max); - N = XMVectorRound(N); - - pDestination->x = (SHORT)N.vector4_f32[0]; - pDestination->y = (SHORT)N.vector4_f32[1]; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - static CONST XMVECTORF32 Max = {65535.0f, 65535.0f, 65535.0f, 65535.0f}; - // Bounds check - XMVECTOR vResult = _mm_max_ps(V,g_XMZero); - vResult = _mm_min_ps(vResult,Max); - // Convert to int with rounding - __m128i vInt = _mm_cvtps_epi32(vResult); - // Since the SSE pack instruction clamps using signed rules, - // manually extract the values to store them to memory - pDestination->x = static_cast(_mm_extract_epi16(vInt,0)); - pDestination->y = static_cast(_mm_extract_epi16(vInt,2)); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreInt3 -( - UINT* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 3) == 0); - - pDestination[0] = V.vector4_u32[0]; - pDestination[1] = V.vector4_u32[1]; - pDestination[2] = V.vector4_u32[2]; - -#elif defined(_XM_SSE_INTRINSICS_) - - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 3) == 0); - - XMVECTOR T1 = _mm_shuffle_ps(V,V,_MM_SHUFFLE(1,1,1,1)); - XMVECTOR T2 = _mm_shuffle_ps(V,V,_MM_SHUFFLE(2,2,2,2)); - _mm_store_ss( (float*)pDestination, V ); - _mm_store_ss( (float*)&pDestination[1], T1 ); - _mm_store_ss( (float*)&pDestination[2], T2 ); - -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreInt3A -( - UINT* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 0xF) == 0); - - pDestination[0] = V.vector4_u32[0]; - pDestination[1] = V.vector4_u32[1]; - pDestination[2] = V.vector4_u32[2]; - -#elif defined(_XM_SSE_INTRINSICS_) - - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 0xF) == 0); - - XMVECTOR T = _mm_shuffle_ps(V,V,_MM_SHUFFLE(2,2,2,2)); - _mm_storel_epi64( (__m128i*)pDestination, reinterpret_cast(&V)[0] ); - _mm_store_ss( (float*)&pDestination[2], T ); - -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreFloat3 -( - XMFLOAT3* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 3) == 0); - - pDestination->x = V.vector4_f32[0]; - pDestination->y = V.vector4_f32[1]; - pDestination->z = V.vector4_f32[2]; - -#elif defined(_XM_SSE_INTRINSICS_) - - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 3) == 0); - - XMVECTOR T1 = _mm_shuffle_ps(V,V,_MM_SHUFFLE(1,1,1,1)); - XMVECTOR T2 = _mm_shuffle_ps(V,V,_MM_SHUFFLE(2,2,2,2)); - _mm_store_ss( &pDestination->x, V ); - _mm_store_ss( &pDestination->y, T1 ); - _mm_store_ss( &pDestination->z, T2 ); - -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreFloat3A -( - XMFLOAT3A* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 0xF) == 0); - - pDestination->x = V.vector4_f32[0]; - pDestination->y = V.vector4_f32[1]; - pDestination->z = V.vector4_f32[2]; - -#elif defined(_XM_SSE_INTRINSICS_) - - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 0xF) == 0); - - XMVECTOR T = _mm_shuffle_ps(V,V,_MM_SHUFFLE(2,2,2,2)); - _mm_storel_epi64( (__m128i*)pDestination, reinterpret_cast(&V)[0] ); - _mm_store_ss( &pDestination->z, T ); - -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreUHenDN3 -( - XMUHENDN3* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTORF32 Scale = {2047.0f, 2047.0f, 1023.0f, 0.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, XMVectorZero(), g_XMOne.v); - N = XMVectorMultiply(N, Scale.v); - - pDestination->v = (((UINT)N.vector4_f32[2] & 0x3FF) << 22) | - (((UINT)N.vector4_f32[1] & 0x7FF) << 11) | - (((UINT)N.vector4_f32[0] & 0x7FF)); - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - static const XMVECTORF32 ScaleUHenDN3 = {2047.0f, 2047.0f*2048.0f,1023.0f*(2048.0f*2048.0f)/2.0f,1.0f}; - static const XMVECTORI32 MaskUHenDN3 = {0x7FF,0x7FF<<11,0x3FF<<(22-1),0}; - // Clamp to bounds - XMVECTOR vResult = _mm_max_ps(V,g_XMZero); - vResult = _mm_min_ps(vResult,g_XMOne); - // Scale by multiplication - vResult = _mm_mul_ps(vResult,ScaleUHenDN3); - // Convert to int - __m128i vResulti = _mm_cvttps_epi32(vResult); - // Mask off any fraction - vResulti = _mm_and_si128(vResulti,MaskUHenDN3); - // Do a horizontal or of 3 entries - __m128i vResulti2 = _mm_shuffle_epi32(vResulti,_MM_SHUFFLE(0,3,2,1)); - // i = x|y - vResulti = _mm_or_si128(vResulti,vResulti2); - // Move Z to the x position - vResulti2 = _mm_shuffle_epi32(vResulti2,_MM_SHUFFLE(0,3,2,1)); - // Add Z to itself to perform a single bit left shift - vResulti2 = _mm_add_epi32(vResulti2,vResulti2); - // i = x|y|z - vResulti = _mm_or_si128(vResulti,vResulti2); - _mm_store_ss(reinterpret_cast(&pDestination->v),reinterpret_cast(&vResulti)[0]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreUHenD3 -( - XMUHEND3* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTOR Max = {2047.0f, 2047.0f, 1023.0f, 0.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, XMVectorZero(), Max); - - pDestination->v = (((UINT)N.vector4_f32[2] & 0x3FF) << 22) | - (((UINT)N.vector4_f32[1] & 0x7FF) << 11) | - (((UINT)N.vector4_f32[0] & 0x7FF)); - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - static const XMVECTORF32 MaxUHenD3 = { 2047.0f, 2047.0f, 1023.0f, 1.0f}; - static const XMVECTORF32 ScaleUHenD3 = {1.0f, 2048.0f,(2048.0f*2048.0f)/2.0f,1.0f}; - static const XMVECTORI32 MaskUHenD3 = {0x7FF,0x7FF<<11,0x3FF<<(22-1),0}; - // Clamp to bounds - XMVECTOR vResult = _mm_max_ps(V,g_XMZero); - vResult = _mm_min_ps(vResult,MaxUHenD3); - // Scale by multiplication - vResult = _mm_mul_ps(vResult,ScaleUHenD3); - // Convert to int - __m128i vResulti = _mm_cvttps_epi32(vResult); - // Mask off any fraction - vResulti = _mm_and_si128(vResulti,MaskUHenD3); - // Do a horizontal or of 3 entries - __m128i vResulti2 = _mm_shuffle_epi32(vResulti,_MM_SHUFFLE(0,3,2,1)); - // i = x|y - vResulti = _mm_or_si128(vResulti,vResulti2); - // Move Z to the x position - vResulti2 = _mm_shuffle_epi32(vResulti2,_MM_SHUFFLE(0,3,2,1)); - // Add Z to itself to perform a single bit left shift - vResulti2 = _mm_add_epi32(vResulti2,vResulti2); - // i = x|y|z - vResulti = _mm_or_si128(vResulti,vResulti2); - _mm_store_ss(reinterpret_cast(&pDestination->v),reinterpret_cast(&vResulti)[0]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreHenDN3 -( - XMHENDN3* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTORF32 Scale = {1023.0f, 1023.0f, 511.0f, 1.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, g_XMNegativeOne.v, g_XMOne.v); - N = XMVectorMultiply(N, Scale.v); - - pDestination->v = (((INT)N.vector4_f32[2] & 0x3FF) << 22) | - (((INT)N.vector4_f32[1] & 0x7FF) << 11) | - (((INT)N.vector4_f32[0] & 0x7FF)); - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - static const XMVECTORF32 ScaleHenDN3 = {1023.0f, 1023.0f*2048.0f,511.0f*(2048.0f*2048.0f),1.0f}; - // Clamp to bounds - XMVECTOR vResult = _mm_max_ps(V,g_XMNegativeOne); - vResult = _mm_min_ps(vResult,g_XMOne); - // Scale by multiplication - vResult = _mm_mul_ps(vResult,ScaleHenDN3); - // Convert to int - __m128i vResulti = _mm_cvttps_epi32(vResult); - // Mask off any fraction - vResulti = _mm_and_si128(vResulti,g_XMMaskHenD3); - // Do a horizontal or of all 4 entries - vResult = _mm_shuffle_ps(reinterpret_cast(&vResulti)[0],reinterpret_cast(&vResulti)[0],_MM_SHUFFLE(0,3,2,1)); - vResulti = _mm_or_si128(vResulti,reinterpret_cast(&vResult)[0]); - vResult = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(0,3,2,1)); - vResulti = _mm_or_si128(vResulti,reinterpret_cast(&vResult)[0]); - _mm_store_ss(reinterpret_cast(&pDestination->v),reinterpret_cast(&vResulti)[0]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreHenD3 -( - XMHEND3* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTOR Min = {-1023.0f, -1023.0f, -511.0f, -1.0f}; - static CONST XMVECTOR Max = {1023.0f, 1023.0f, 511.0f, 1.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, Min, Max); - - pDestination->v = (((INT)N.vector4_f32[2] & 0x3FF) << 22) | - (((INT)N.vector4_f32[1] & 0x7FF) << 11) | - (((INT)N.vector4_f32[0] & 0x7FF)); - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - static const XMVECTORF32 MinHenD3 = {-1023.0f,-1023.0f,-511.0f,-1.0f}; - static const XMVECTORF32 MaxHenD3 = { 1023.0f, 1023.0f, 511.0f, 1.0f}; - static const XMVECTORF32 ScaleHenD3 = {1.0f, 2048.0f,(2048.0f*2048.0f),1.0f}; - // Clamp to bounds - XMVECTOR vResult = _mm_max_ps(V,MinHenD3); - vResult = _mm_min_ps(vResult,MaxHenD3); - // Scale by multiplication - vResult = _mm_mul_ps(vResult,ScaleHenD3); - // Convert to int - __m128i vResulti = _mm_cvttps_epi32(vResult); - // Mask off any fraction - vResulti = _mm_and_si128(vResulti,g_XMMaskHenD3); - // Do a horizontal or of all 4 entries - vResult = _mm_shuffle_ps(reinterpret_cast(&vResulti)[0],reinterpret_cast(&vResulti)[0],_MM_SHUFFLE(0,3,2,1)); - vResulti = _mm_or_si128(vResulti,reinterpret_cast(&vResult)[0]); - vResult = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(0,3,2,1)); - vResulti = _mm_or_si128(vResulti,reinterpret_cast(&vResult)[0]); - _mm_store_ss(reinterpret_cast(&pDestination->v),reinterpret_cast(&vResulti)[0]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreUDHenN3 -( - XMUDHENN3* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTORF32 Scale = {1023.0f, 2047.0f, 2047.0f, 0.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, XMVectorZero(), g_XMOne.v); - N = XMVectorMultiply(N, Scale.v); - - pDestination->v = (((UINT)N.vector4_f32[2] & 0x7FF) << 21) | - (((UINT)N.vector4_f32[1] & 0x7FF) << 10) | - (((UINT)N.vector4_f32[0] & 0x3FF)); - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - static const XMVECTORF32 ScaleUDHenN3 = {1023.0f,2047.0f*1024.0f,2047.0f*(1024.0f*2048.0f)/2.0f,1.0f}; - static const XMVECTORI32 MaskUDHenN3 = {0x3FF,0x7FF<<10,0x7FF<<(21-1),0}; - // Clamp to bounds - XMVECTOR vResult = _mm_max_ps(V,g_XMZero); - vResult = _mm_min_ps(vResult,g_XMOne); - // Scale by multiplication - vResult = _mm_mul_ps(vResult,ScaleUDHenN3); - // Convert to int - __m128i vResulti = _mm_cvttps_epi32(vResult); - // Mask off any fraction - vResulti = _mm_and_si128(vResulti,MaskUDHenN3); - // Do a horizontal or of 3 entries - __m128i vResulti2 = _mm_shuffle_epi32(vResulti,_MM_SHUFFLE(0,3,2,1)); - // i = x|y - vResulti = _mm_or_si128(vResulti,vResulti2); - // Move Z to the x position - vResulti2 = _mm_shuffle_epi32(vResulti2,_MM_SHUFFLE(0,3,2,1)); - // Add Z to itself to perform a single bit left shift - vResulti2 = _mm_add_epi32(vResulti2,vResulti2); - // i = x|y|z - vResulti = _mm_or_si128(vResulti,vResulti2); - _mm_store_ss(reinterpret_cast(&pDestination->v),reinterpret_cast(&vResulti)[0]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreUDHen3 -( - XMUDHEN3* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTOR Max = {1023.0f, 2047.0f, 2047.0f, 0.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, XMVectorZero(), Max); - - pDestination->v = (((UINT)N.vector4_f32[2] & 0x7FF) << 21) | - (((UINT)N.vector4_f32[1] & 0x7FF) << 10) | - (((UINT)N.vector4_f32[0] & 0x3FF)); - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - static const XMVECTORF32 MaxUDHen3 = { 1023.0f, 2047.0f, 2047.0f, 1.0f}; - static const XMVECTORF32 ScaleUDHen3 = {1.0f, 1024.0f,(1024.0f*2048.0f)/2.0f,1.0f}; - static const XMVECTORI32 MaskUDHen3 = {0x3FF,0x7FF<<10,0x7FF<<(21-1),0}; - // Clamp to bounds - XMVECTOR vResult = _mm_max_ps(V,g_XMZero); - vResult = _mm_min_ps(vResult,MaxUDHen3); - // Scale by multiplication - vResult = _mm_mul_ps(vResult,ScaleUDHen3); - // Convert to int - __m128i vResulti = _mm_cvttps_epi32(vResult); - // Mask off any fraction - vResulti = _mm_and_si128(vResulti,MaskUDHen3); - // Do a horizontal or of 3 entries - __m128i vResulti2 = _mm_shuffle_epi32(vResulti,_MM_SHUFFLE(0,3,2,1)); - // i = x|y - vResulti = _mm_or_si128(vResulti,vResulti2); - // Move Z to the x position - vResulti2 = _mm_shuffle_epi32(vResulti2,_MM_SHUFFLE(0,3,2,1)); - // Add Z to itself to perform a single bit left shift - vResulti2 = _mm_add_epi32(vResulti2,vResulti2); - // i = x|y|z - vResulti = _mm_or_si128(vResulti,vResulti2); - _mm_store_ss(reinterpret_cast(&pDestination->v),reinterpret_cast(&vResulti)[0]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreDHenN3 -( - XMDHENN3* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTORF32 Scale = {511.0f, 1023.0f, 1023.0f, 1.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, g_XMNegativeOne.v, g_XMOne.v); - N = XMVectorMultiply(N, Scale.v); - - pDestination->v = (((INT)N.vector4_f32[2] & 0x7FF) << 21) | - (((INT)N.vector4_f32[1] & 0x7FF) << 10) | - (((INT)N.vector4_f32[0] & 0x3FF)); - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - static const XMVECTORF32 ScaleDHenN3 = {511.0f, 1023.0f*1024.0f,1023.0f*(1024.0f*2048.0f),1.0f}; - // Clamp to bounds - XMVECTOR vResult = _mm_max_ps(V,g_XMNegativeOne); - vResult = _mm_min_ps(vResult,g_XMOne); - // Scale by multiplication - vResult = _mm_mul_ps(vResult,ScaleDHenN3); - // Convert to int - __m128i vResulti = _mm_cvttps_epi32(vResult); - // Mask off any fraction - vResulti = _mm_and_si128(vResulti,g_XMMaskDHen3); - // Do a horizontal or of all 4 entries - vResult = _mm_shuffle_ps(reinterpret_cast(&vResulti)[0],reinterpret_cast(&vResulti)[0],_MM_SHUFFLE(0,3,2,1)); - vResulti = _mm_or_si128(vResulti,reinterpret_cast(&vResult)[0]); - vResult = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(0,3,2,1)); - vResulti = _mm_or_si128(vResulti,reinterpret_cast(&vResult)[0]); - _mm_store_ss(reinterpret_cast(&pDestination->v),reinterpret_cast(&vResulti)[0]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreDHen3 -( - XMDHEN3* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTOR Min = {-511.0f, -1023.0f, -1023.0f, -1.0f}; - static CONST XMVECTOR Max = {511.0f, 1023.0f, 1023.0f, 1.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, Min, Max); - - pDestination->v = (((INT)N.vector4_f32[2] & 0x7FF) << 21) | - (((INT)N.vector4_f32[1] & 0x7FF) << 10) | - (((INT)N.vector4_f32[0] & 0x3FF)); - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - static const XMVECTORF32 MinDHen3 = {-511.0f,-1023.0f,-1023.0f,-1.0f}; - static const XMVECTORF32 MaxDHen3 = { 511.0f, 1023.0f, 1023.0f, 1.0f}; - static const XMVECTORF32 ScaleDHen3 = {1.0f, 1024.0f,(1024.0f*2048.0f),1.0f}; - // Clamp to bounds - XMVECTOR vResult = _mm_max_ps(V,MinDHen3); - vResult = _mm_min_ps(vResult,MaxDHen3); - // Scale by multiplication - vResult = _mm_mul_ps(vResult,ScaleDHen3); - // Convert to int - __m128i vResulti = _mm_cvttps_epi32(vResult); - // Mask off any fraction - vResulti = _mm_and_si128(vResulti,g_XMMaskDHen3); - // Do a horizontal or of all 4 entries - vResult = _mm_shuffle_ps(reinterpret_cast(&vResulti)[0],reinterpret_cast(&vResulti)[0],_MM_SHUFFLE(0,3,2,1)); - vResulti = _mm_or_si128(vResulti,reinterpret_cast(&vResult)[0]); - vResult = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(0,3,2,1)); - vResulti = _mm_or_si128(vResulti,reinterpret_cast(&vResult)[0]); - _mm_store_ss(reinterpret_cast(&pDestination->v),reinterpret_cast(&vResulti)[0]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreU565 -( - XMU565* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_SSE_INTRINSICS_) && !defined(_XM_NO_INTRINSICS_) - XMASSERT(pDestination); - static CONST XMVECTORF32 Max = {31.0f, 63.0f, 31.0f, 0.0f}; - // Bounds check - XMVECTOR vResult = _mm_max_ps(V,g_XMZero); - vResult = _mm_min_ps(vResult,Max); - // Convert to int with rounding - __m128i vInt = _mm_cvtps_epi32(vResult); - // No SSE operations will write to 16-bit values, so we have to extract them manually - USHORT x = static_cast(_mm_extract_epi16(vInt,0)); - USHORT y = static_cast(_mm_extract_epi16(vInt,2)); - USHORT z = static_cast(_mm_extract_epi16(vInt,4)); - pDestination->v = ((z & 0x1F) << 11) | - ((y & 0x3F) << 5) | - ((x & 0x1F)); -#else - XMVECTOR N; - static CONST XMVECTORF32 Max = {31.0f, 63.0f, 31.0f, 0.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, XMVectorZero(), Max.v); - N = XMVectorRound(N); - - pDestination->v = (((USHORT)N.vector4_f32[2] & 0x1F) << 11) | - (((USHORT)N.vector4_f32[1] & 0x3F) << 5) | - (((USHORT)N.vector4_f32[0] & 0x1F)); -#endif !_XM_SSE_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreFloat3PK -( - XMFLOAT3PK* pDestination, - FXMVECTOR V -) -{ - _DECLSPEC_ALIGN_16_ UINT IValue[4]; - UINT I, Sign, j; - UINT Result[3]; - - XMASSERT(pDestination); - - XMStoreFloat3A( (XMFLOAT3A*)&IValue, V ); - - // X & Y Channels (5-bit exponent, 6-bit mantissa) - for(j=0; j < 2; ++j) - { - Sign = IValue[j] & 0x80000000; - I = IValue[j] & 0x7FFFFFFF; - - if ((I & 0x7F800000) == 0x7F800000) - { - // INF or NAN - Result[j] = 0x7c0; - if (( I & 0x7FFFFF ) != 0) - { - Result[j] = 0x7c0 | (((I>>17)|(I>11)|(I>>6)|(I))&0x3f); - } - else if ( Sign ) - { - // -INF is clamped to 0 since 3PK is positive only - Result[j] = 0; - } - } - else if ( Sign ) - { - // 3PK is positive only, so clamp to zero - Result[j] = 0; - } - else if (I > 0x477E0000U) - { - // The number is too large to be represented as a float11, set to max - Result[j] = 0x7BF; - } - else - { - if (I < 0x38800000U) - { - // The number is too small to be represented as a normalized float11 - // Convert it to a denormalized value. - UINT Shift = 113U - (I >> 23U); - I = (0x800000U | (I & 0x7FFFFFU)) >> Shift; - } - else - { - // Rebias the exponent to represent the value as a normalized float11 - I += 0xC8000000U; - } - - Result[j] = ((I + 0xFFFFU + ((I >> 17U) & 1U)) >> 17U)&0x7ffU; - } - } - - // Z Channel (5-bit exponent, 5-bit mantissa) - Sign = IValue[2] & 0x80000000; - I = IValue[2] & 0x7FFFFFFF; - - if ((I & 0x7F800000) == 0x7F800000) - { - // INF or NAN - Result[2] = 0x3e0; - if ( I & 0x7FFFFF ) - { - Result[2] = 0x3e0 | (((I>>18)|(I>13)|(I>>3)|(I))&0x1f); - } - else if ( Sign ) - { - // -INF is clamped to 0 since 3PK is positive only - Result[2] = 0; - } - } - else if ( Sign ) - { - // 3PK is positive only, so clamp to zero - Result[2] = 0; - } - else if (I > 0x477C0000U) - { - // The number is too large to be represented as a float10, set to max - Result[2] = 0x3df; - } - else - { - if (I < 0x38800000U) - { - // The number is too small to be represented as a normalized float10 - // Convert it to a denormalized value. - UINT Shift = 113U - (I >> 23U); - I = (0x800000U | (I & 0x7FFFFFU)) >> Shift; - } - else - { - // Rebias the exponent to represent the value as a normalized float10 - I += 0xC8000000U; - } - - Result[2] = ((I + 0x1FFFFU + ((I >> 18U) & 1U)) >> 18U)&0x3ffU; - } - - // Pack Result into memory - pDestination->v = (Result[0] & 0x7ff) - | ( (Result[1] & 0x7ff) << 11 ) - | ( (Result[2] & 0x3ff) << 22 ); -} - - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreFloat3SE -( - XMFLOAT3SE* pDestination, - FXMVECTOR V -) -{ - _DECLSPEC_ALIGN_16_ UINT IValue[4]; - UINT I, Sign, j, T; - UINT Frac[3]; - UINT Exp[3]; - - - XMASSERT(pDestination); - - XMStoreFloat3A( (XMFLOAT3A*)&IValue, V ); - - // X, Y, Z Channels (5-bit exponent, 9-bit mantissa) - for(j=0; j < 3; ++j) - { - Sign = IValue[j] & 0x80000000; - I = IValue[j] & 0x7FFFFFFF; - - if ((I & 0x7F800000) == 0x7F800000) - { - // INF or NAN - Exp[j] = 0x1f; - if (( I & 0x7FFFFF ) != 0) - { - Frac[j] = ((I>>14)|(I>5)|(I))&0x1ff; - } - else if ( Sign ) - { - // -INF is clamped to 0 since 3SE is positive only - Exp[j] = Frac[j] = 0; - } - } - else if ( Sign ) - { - // 3SE is positive only, so clamp to zero - Exp[j] = Frac[j] = 0; - } - else if (I > 0x477FC000U) - { - // The number is too large, set to max - Exp[j] = 0x1e; - Frac[j] = 0x1ff; - } - else - { - if (I < 0x38800000U) - { - // The number is too small to be represented as a normalized float11 - // Convert it to a denormalized value. - UINT Shift = 113U - (I >> 23U); - I = (0x800000U | (I & 0x7FFFFFU)) >> Shift; - } - else - { - // Rebias the exponent to represent the value as a normalized float11 - I += 0xC8000000U; - } - - T = ((I + 0x1FFFU + ((I >> 14U) & 1U)) >> 14U)&0x3fffU; - - Exp[j] = (T & 0x3E00) >> 9; - Frac[j] = T & 0x1ff; - } - } - - // Adjust to a shared exponent - T = XMMax( Exp[0], XMMax( Exp[1], Exp[2] ) ); - - Frac[0] = Frac[0] >> (T - Exp[0]); - Frac[1] = Frac[1] >> (T - Exp[1]); - Frac[2] = Frac[2] >> (T - Exp[2]); - - // Store packed into memory - pDestination->xm = Frac[0]; - pDestination->ym = Frac[1]; - pDestination->zm = Frac[2]; - pDestination->e = T; -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreInt4 -( - UINT* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMASSERT(pDestination); - - pDestination[0] = V.vector4_u32[0]; - pDestination[1] = V.vector4_u32[1]; - pDestination[2] = V.vector4_u32[2]; - pDestination[3] = V.vector4_u32[3]; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - - _mm_storeu_si128( (__m128i*)pDestination, reinterpret_cast(&V)[0] ); - -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreInt4A -( - UINT* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 0xF) == 0); - - pDestination[0] = V.vector4_u32[0]; - pDestination[1] = V.vector4_u32[1]; - pDestination[2] = V.vector4_u32[2]; - pDestination[3] = V.vector4_u32[3]; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 0xF) == 0); - - _mm_store_si128( (__m128i*)pDestination, reinterpret_cast(&V)[0] ); - -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreInt4NC -( - UINT* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 3) == 0); - - pDestination[0] = V.vector4_u32[0]; - pDestination[1] = V.vector4_u32[1]; - pDestination[2] = V.vector4_u32[2]; - pDestination[3] = V.vector4_u32[3]; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 3) == 0); - - _mm_storeu_si128( (__m128i*)pDestination, reinterpret_cast(&V)[0] ); - -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreFloat4 -( - XMFLOAT4* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMASSERT(pDestination); - - pDestination->x = V.vector4_f32[0]; - pDestination->y = V.vector4_f32[1]; - pDestination->z = V.vector4_f32[2]; - pDestination->w = V.vector4_f32[3]; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - - _mm_storeu_ps( &pDestination->x, V ); - -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreFloat4A -( - XMFLOAT4A* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 0xF) == 0); - - pDestination->x = V.vector4_f32[0]; - pDestination->y = V.vector4_f32[1]; - pDestination->z = V.vector4_f32[2]; - pDestination->w = V.vector4_f32[3]; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 0xF) == 0); - - _mm_store_ps( &pDestination->x, V ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreFloat4NC -( - XMFLOAT4* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 3) == 0); - - pDestination->x = V.vector4_f32[0]; - pDestination->y = V.vector4_f32[1]; - pDestination->z = V.vector4_f32[2]; - pDestination->w = V.vector4_f32[3]; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 3) == 0); - - _mm_storeu_ps( &pDestination->x, V ); - -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreHalf4 -( - XMHALF4* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMASSERT(pDestination); - - pDestination->x = XMConvertFloatToHalf(V.vector4_f32[0]); - pDestination->y = XMConvertFloatToHalf(V.vector4_f32[1]); - pDestination->z = XMConvertFloatToHalf(V.vector4_f32[2]); - pDestination->w = XMConvertFloatToHalf(V.vector4_f32[3]); - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - pDestination->x = XMConvertFloatToHalf(XMVectorGetX(V)); - pDestination->y = XMConvertFloatToHalf(XMVectorGetY(V)); - pDestination->z = XMConvertFloatToHalf(XMVectorGetZ(V)); - pDestination->w = XMConvertFloatToHalf(XMVectorGetW(V)); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreShortN4 -( - XMSHORTN4* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTORF32 Scale = {32767.0f, 32767.0f, 32767.0f, 32767.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, g_XMNegativeOne.v, g_XMOne.v); - N = XMVectorMultiply(N, Scale.v); - N = XMVectorRound(N); - - pDestination->x = (SHORT)N.vector4_f32[0]; - pDestination->y = (SHORT)N.vector4_f32[1]; - pDestination->z = (SHORT)N.vector4_f32[2]; - pDestination->w = (SHORT)N.vector4_f32[3]; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - static CONST XMVECTORF32 Scale = {32767.0f, 32767.0f, 32767.0f, 32767.0f}; - - XMVECTOR vResult = _mm_max_ps(V,g_XMNegativeOne); - vResult = _mm_min_ps(vResult,g_XMOne); - vResult = _mm_mul_ps(vResult,Scale); - __m128i vResulti = _mm_cvtps_epi32(vResult); - vResulti = _mm_packs_epi32(vResulti,vResulti); - _mm_store_sd(reinterpret_cast(&pDestination->x),reinterpret_cast(&vResulti)[0]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreShort4 -( - XMSHORT4* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTOR Min = {-32767.0f, -32767.0f, -32767.0f, -32767.0f}; - static CONST XMVECTOR Max = {32767.0f, 32767.0f, 32767.0f, 32767.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, Min, Max); - N = XMVectorRound(N); - - pDestination->x = (SHORT)N.vector4_f32[0]; - pDestination->y = (SHORT)N.vector4_f32[1]; - pDestination->z = (SHORT)N.vector4_f32[2]; - pDestination->w = (SHORT)N.vector4_f32[3]; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - static CONST XMVECTORF32 Min = {-32767.0f, -32767.0f, -32767.0f, -32767.0f}; - static CONST XMVECTORF32 Max = {32767.0f, 32767.0f, 32767.0f, 32767.0f}; - // Bounds check - XMVECTOR vResult = _mm_max_ps(V,Min); - vResult = _mm_min_ps(vResult,Max); - // Convert to int with rounding - __m128i vInt = _mm_cvtps_epi32(vResult); - // Pack the ints into shorts - vInt = _mm_packs_epi32(vInt,vInt); - _mm_store_sd(reinterpret_cast(&pDestination->x),reinterpret_cast(&vInt)[0]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreUShortN4 -( - XMUSHORTN4* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTORF32 Scale = {65535.0f, 65535.0f, 65535.0f, 65535.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, XMVectorZero(), g_XMOne.v); - N = XMVectorMultiplyAdd(N, Scale.v, g_XMOneHalf.v); - N = XMVectorTruncate(N); - - pDestination->x = (SHORT)N.vector4_f32[0]; - pDestination->y = (SHORT)N.vector4_f32[1]; - pDestination->z = (SHORT)N.vector4_f32[2]; - pDestination->w = (SHORT)N.vector4_f32[3]; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - static CONST XMVECTORF32 Scale = {65535.0f, 65535.0f, 65535.0f, 65535.0f}; - // Bounds check - XMVECTOR vResult = _mm_max_ps(V,g_XMZero); - vResult = _mm_min_ps(vResult,g_XMOne); - vResult = _mm_mul_ps(vResult,Scale); - // Convert to int with rounding - __m128i vInt = _mm_cvtps_epi32(vResult); - // Since the SSE pack instruction clamps using signed rules, - // manually extract the values to store them to memory - pDestination->x = static_cast(_mm_extract_epi16(vInt,0)); - pDestination->y = static_cast(_mm_extract_epi16(vInt,2)); - pDestination->z = static_cast(_mm_extract_epi16(vInt,4)); - pDestination->w = static_cast(_mm_extract_epi16(vInt,6)); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreUShort4 -( - XMUSHORT4* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTOR Max = {65535.0f, 65535.0f, 65535.0f, 65535.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, XMVectorZero(), Max); - N = XMVectorRound(N); - - pDestination->x = (SHORT)N.vector4_f32[0]; - pDestination->y = (SHORT)N.vector4_f32[1]; - pDestination->z = (SHORT)N.vector4_f32[2]; - pDestination->w = (SHORT)N.vector4_f32[3]; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - static CONST XMVECTORF32 Max = {65535.0f, 65535.0f, 65535.0f, 65535.0f}; - // Bounds check - XMVECTOR vResult = _mm_max_ps(V,g_XMZero); - vResult = _mm_min_ps(vResult,Max); - // Convert to int with rounding - __m128i vInt = _mm_cvtps_epi32(vResult); - // Since the SSE pack instruction clamps using signed rules, - // manually extract the values to store them to memory - pDestination->x = static_cast(_mm_extract_epi16(vInt,0)); - pDestination->y = static_cast(_mm_extract_epi16(vInt,2)); - pDestination->z = static_cast(_mm_extract_epi16(vInt,4)); - pDestination->w = static_cast(_mm_extract_epi16(vInt,6)); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreXIcoN4 -( - XMXICON4* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTORF32 Min = {-1.0f, -1.0f, -1.0f, 0.0f}; - static CONST XMVECTORF32 Scale = {524287.0f, 524287.0f, 524287.0f, 15.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, Min.v, g_XMOne.v); - N = XMVectorMultiply(N, Scale.v); - N = XMVectorRound(N); - - pDestination->v = ((UINT64)N.vector4_f32[3] << 60) | - (((INT64)N.vector4_f32[2] & 0xFFFFF) << 40) | - (((INT64)N.vector4_f32[1] & 0xFFFFF) << 20) | - (((INT64)N.vector4_f32[0] & 0xFFFFF)); - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - // Note: Masks are x,w,y and z - static const XMVECTORF32 MinXIcoN4 = {-1.0f, 0.0f,-1.0f,-1.0f}; - static const XMVECTORF32 ScaleXIcoN4 = {524287.0f,15.0f*4096.0f*65536.0f*0.5f,524287.0f*4096.0f,524287.0f}; - static const XMVECTORI32 MaskXIcoN4 = {0xFFFFF,0xF<<((60-32)-1),0xFFFFF000,0xFFFFF}; - - // Clamp to bounds - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(2,1,3,0)); - vResult = _mm_max_ps(vResult,MinXIcoN4); - vResult = _mm_min_ps(vResult,g_XMOne); - // Scale by multiplication - vResult = _mm_mul_ps(vResult,ScaleXIcoN4); - // Convert to integer (w is unsigned) - __m128i vResulti = _mm_cvttps_epi32(vResult); - // Mask off unused bits - vResulti = _mm_and_si128(vResulti,MaskXIcoN4); - // Isolate Y - __m128i vResulti2 = _mm_and_si128(vResulti,g_XMMaskY); - // Double Y (Really W) to fixup for unsigned conversion - vResulti = _mm_add_epi32(vResulti,vResulti2); - // Shift y and z to straddle the 32-bit boundary - vResulti2 = _mm_srli_si128(vResulti,(64+12)/8); - // Shift it into place - vResulti2 = _mm_slli_si128(vResulti2,20/8); - // i = x|y<<20|z<<40|w<<60 - vResulti = _mm_or_si128(vResulti,vResulti2); - _mm_store_sd(reinterpret_cast(&pDestination->v),reinterpret_cast(&vResulti)[0]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreXIco4 -( - XMXICO4* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTORF32 Min = {-524287.0f, -524287.0f, -524287.0f, 0.0f}; - static CONST XMVECTORF32 Max = {524287.0f, 524287.0f, 524287.0f, 15.0f}; - - XMASSERT(pDestination); - N = XMVectorClamp(V, Min.v, Max.v); - pDestination->v = ((UINT64)N.vector4_f32[3] << 60) | - (((INT64)N.vector4_f32[2] & 0xFFFFF) << 40) | - (((INT64)N.vector4_f32[1] & 0xFFFFF) << 20) | - (((INT64)N.vector4_f32[0] & 0xFFFFF)); - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - // Note: Masks are x,w,y and z - static const XMVECTORF32 MinXIco4 = {-524287.0f, 0.0f,-524287.0f,-524287.0f}; - static const XMVECTORF32 MaxXIco4 = { 524287.0f,15.0f, 524287.0f, 524287.0f}; - static const XMVECTORF32 ScaleXIco4 = {1.0f,4096.0f*65536.0f*0.5f,4096.0f,1.0f}; - static const XMVECTORI32 MaskXIco4 = {0xFFFFF,0xF<<((60-1)-32),0xFFFFF000,0xFFFFF}; - // Clamp to bounds - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(2,1,3,0)); - vResult = _mm_max_ps(vResult,MinXIco4); - vResult = _mm_min_ps(vResult,MaxXIco4); - // Scale by multiplication - vResult = _mm_mul_ps(vResult,ScaleXIco4); - // Convert to int - __m128i vResulti = _mm_cvttps_epi32(vResult); - // Mask off any fraction - vResulti = _mm_and_si128(vResulti,MaskXIco4); - // Isolate Y - __m128i vResulti2 = _mm_and_si128(vResulti,g_XMMaskY); - // Double Y (Really W) to fixup for unsigned conversion - vResulti = _mm_add_epi32(vResulti,vResulti2); - // Shift y and z to straddle the 32-bit boundary - vResulti2 = _mm_srli_si128(vResulti,(64+12)/8); - // Shift it into place - vResulti2 = _mm_slli_si128(vResulti2,20/8); - // i = x|y<<20|z<<40|w<<60 - vResulti = _mm_or_si128(vResulti,vResulti2); - _mm_store_sd(reinterpret_cast(&pDestination->v),reinterpret_cast(&vResulti)[0]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreUIcoN4 -( - XMUICON4* pDestination, - FXMVECTOR V -) -{ - #define XM_URange ((FLOAT)(1 << 20)) - #define XM_URangeDiv2 ((FLOAT)(1 << 19)) - #define XM_UMaxXYZ ((FLOAT)((1 << 20) - 1)) - #define XM_UMaxW ((FLOAT)((1 << 4) - 1)) - #define XM_ScaleXYZ (-(FLOAT)((1 << 20) - 1) / XM_PACK_FACTOR) - #define XM_ScaleW (-(FLOAT)((1 << 4) - 1) / XM_PACK_FACTOR) - #define XM_Scale (-1.0f / XM_PACK_FACTOR) - #define XM_Offset (3.0f) - -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTORF32 Scale = {1048575.0f, 1048575.0f, 1048575.0f, 15.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, XMVectorZero(), g_XMOne.v); - N = XMVectorMultiplyAdd(N, Scale.v, g_XMOneHalf.v); - - pDestination->v = ((UINT64)N.vector4_f32[3] << 60) | - (((UINT64)N.vector4_f32[2] & 0xFFFFF) << 40) | - (((UINT64)N.vector4_f32[1] & 0xFFFFF) << 20) | - (((UINT64)N.vector4_f32[0] & 0xFFFFF)); - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - // Note: Masks are x,w,y and z - static const XMVECTORF32 ScaleUIcoN4 = {1048575.0f,15.0f*4096.0f*65536.0f,1048575.0f*4096.0f,1048575.0f}; - static const XMVECTORI32 MaskUIcoN4 = {0xFFFFF,0xF<<(60-32),0xFFFFF000,0xFFFFF}; - static const XMVECTORF32 AddUIcoN4 = {0.0f,-32768.0f*65536.0f,-32768.0f*65536.0f,0.0f}; - // Clamp to bounds - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(2,1,3,0)); - vResult = _mm_max_ps(vResult,g_XMZero); - vResult = _mm_min_ps(vResult,g_XMOne); - // Scale by multiplication - vResult = _mm_mul_ps(vResult,ScaleUIcoN4); - // Adjust for unsigned entries - vResult = _mm_add_ps(vResult,AddUIcoN4); - // Convert to int - __m128i vResulti = _mm_cvttps_epi32(vResult); - // Fix the signs on the unsigned entries - vResulti = _mm_xor_si128(vResulti,g_XMFlipYZ); - // Mask off any fraction - vResulti = _mm_and_si128(vResulti,MaskUIcoN4); - // Shift y and z to straddle the 32-bit boundary - __m128i vResulti2 = _mm_srli_si128(vResulti,(64+12)/8); - // Shift it into place - vResulti2 = _mm_slli_si128(vResulti2,20/8); - // i = x|y<<20|z<<40|w<<60 - vResulti = _mm_or_si128(vResulti,vResulti2); - _mm_store_sd(reinterpret_cast(&pDestination->v),reinterpret_cast(&vResulti)[0]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ - - #undef XM_URange - #undef XM_URangeDiv2 - #undef XM_UMaxXYZ - #undef XM_UMaxW - #undef XM_ScaleXYZ - #undef XM_ScaleW - #undef XM_Scale - #undef XM_Offset -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreUIco4 -( - XMUICO4* pDestination, - FXMVECTOR V -) -{ - #define XM_Scale (-1.0f / XM_PACK_FACTOR) - #define XM_URange ((FLOAT)(1 << 20)) - #define XM_URangeDiv2 ((FLOAT)(1 << 19)) - -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTOR Max = {1048575.0f, 1048575.0f, 1048575.0f, 15.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, XMVectorZero(), Max); - N = XMVectorRound(N); - - pDestination->v = ((UINT64)N.vector4_f32[3] << 60) | - (((UINT64)N.vector4_f32[2] & 0xFFFFF) << 40) | - (((UINT64)N.vector4_f32[1] & 0xFFFFF) << 20) | - (((UINT64)N.vector4_f32[0] & 0xFFFFF)); - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - // Note: Masks are x,w,y and z - static const XMVECTORF32 MaxUIco4 = { 1048575.0f, 15.0f, 1048575.0f, 1048575.0f}; - static const XMVECTORF32 ScaleUIco4 = {1.0f,4096.0f*65536.0f,4096.0f,1.0f}; - static const XMVECTORI32 MaskUIco4 = {0xFFFFF,0xF<<(60-32),0xFFFFF000,0xFFFFF}; - static const XMVECTORF32 AddUIco4 = {0.0f,-32768.0f*65536.0f,-32768.0f*65536.0f,0.0f}; - // Clamp to bounds - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(2,1,3,0)); - vResult = _mm_max_ps(vResult,g_XMZero); - vResult = _mm_min_ps(vResult,MaxUIco4); - // Scale by multiplication - vResult = _mm_mul_ps(vResult,ScaleUIco4); - vResult = _mm_add_ps(vResult,AddUIco4); - // Convert to int - __m128i vResulti = _mm_cvttps_epi32(vResult); - vResulti = _mm_xor_si128(vResulti,g_XMFlipYZ); - // Mask off any fraction - vResulti = _mm_and_si128(vResulti,MaskUIco4); - // Shift y and z to straddle the 32-bit boundary - __m128i vResulti2 = _mm_srli_si128(vResulti,(64+12)/8); - // Shift it into place - vResulti2 = _mm_slli_si128(vResulti2,20/8); - // i = x|y<<20|z<<40|w<<60 - vResulti = _mm_or_si128(vResulti,vResulti2); - _mm_store_sd(reinterpret_cast(&pDestination->v),reinterpret_cast(&vResulti)[0]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ - - #undef XM_Scale - #undef XM_URange - #undef XM_URangeDiv2 -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreIcoN4 -( - XMICON4* pDestination, - FXMVECTOR V -) -{ - #define XM_Scale (-1.0f / XM_PACK_FACTOR) - #define XM_URange ((FLOAT)(1 << 4)) - #define XM_Offset (3.0f) - #define XM_UMaxXYZ ((FLOAT)((1 << (20 - 1)) - 1)) - #define XM_UMaxW ((FLOAT)((1 << (4 - 1)) - 1)) - -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTORF32 Scale = {524287.0f, 524287.0f, 524287.0f, 7.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, g_XMNegativeOne.v, g_XMOne.v); - N = XMVectorMultiplyAdd(N, Scale.v, g_XMNegativeZero.v); - N = XMVectorRound(N); - - pDestination->v = ((UINT64)N.vector4_f32[3] << 60) | - (((UINT64)N.vector4_f32[2] & 0xFFFFF) << 40) | - (((UINT64)N.vector4_f32[1] & 0xFFFFF) << 20) | - (((UINT64)N.vector4_f32[0] & 0xFFFFF)); - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - // Note: Masks are x,w,y and z - static const XMVECTORF32 ScaleIcoN4 = {524287.0f,7.0f*4096.0f*65536.0f,524287.0f*4096.0f,524287.0f}; - static const XMVECTORI32 MaskIcoN4 = {0xFFFFF,0xF<<(60-32),0xFFFFF000,0xFFFFF}; - // Clamp to bounds - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(2,1,3,0)); - vResult = _mm_max_ps(vResult,g_XMNegativeOne); - vResult = _mm_min_ps(vResult,g_XMOne); - // Scale by multiplication - vResult = _mm_mul_ps(vResult,ScaleIcoN4); - // Convert to int - __m128i vResulti = _mm_cvttps_epi32(vResult); - // Mask off any fraction - vResulti = _mm_and_si128(vResulti,MaskIcoN4); - // Shift y and z to straddle the 32-bit boundary - __m128i vResulti2 = _mm_srli_si128(vResulti,(64+12)/8); - // Shift it into place - vResulti2 = _mm_slli_si128(vResulti2,20/8); - // i = x|y<<20|z<<40|w<<60 - vResulti = _mm_or_si128(vResulti,vResulti2); - _mm_store_sd(reinterpret_cast(&pDestination->v),reinterpret_cast(&vResulti)[0]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ - - #undef XM_Scale - #undef XM_URange - #undef XM_Offset - #undef XM_UMaxXYZ - #undef XM_UMaxW -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreIco4 -( - XMICO4* pDestination, - FXMVECTOR V -) -{ - #define XM_Scale (-1.0f / XM_PACK_FACTOR) - #define XM_URange ((FLOAT)(1 << 4)) - #define XM_Offset (3.0f) - -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTOR Min = {-524287.0f, -524287.0f, -524287.0f, -7.0f}; - static CONST XMVECTOR Max = {524287.0f, 524287.0f, 524287.0f, 7.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, Min, Max); - N = XMVectorRound(N); - - pDestination->v = ((INT64)N.vector4_f32[3] << 60) | - (((INT64)N.vector4_f32[2] & 0xFFFFF) << 40) | - (((INT64)N.vector4_f32[1] & 0xFFFFF) << 20) | - (((INT64)N.vector4_f32[0] & 0xFFFFF)); - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - // Note: Masks are x,w,y and z - static const XMVECTORF32 MinIco4 = {-524287.0f,-7.0f,-524287.0f,-524287.0f}; - static const XMVECTORF32 MaxIco4 = { 524287.0f, 7.0f, 524287.0f, 524287.0f}; - static const XMVECTORF32 ScaleIco4 = {1.0f,4096.0f*65536.0f,4096.0f,1.0f}; - static const XMVECTORI32 MaskIco4 = {0xFFFFF,0xF<<(60-32),0xFFFFF000,0xFFFFF}; - // Clamp to bounds - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(2,1,3,0)); - vResult = _mm_max_ps(vResult,MinIco4); - vResult = _mm_min_ps(vResult,MaxIco4); - // Scale by multiplication - vResult = _mm_mul_ps(vResult,ScaleIco4); - // Convert to int - __m128i vResulti = _mm_cvttps_epi32(vResult); - // Mask off any fraction - vResulti = _mm_and_si128(vResulti,MaskIco4); - // Shift y and z to straddle the 32-bit boundary - __m128i vResulti2 = _mm_srli_si128(vResulti,(64+12)/8); - // Shift it into place - vResulti2 = _mm_slli_si128(vResulti2,20/8); - // i = x|y<<20|z<<40|w<<60 - vResulti = _mm_or_si128(vResulti,vResulti2); - _mm_store_sd(reinterpret_cast(&pDestination->v),reinterpret_cast(&vResulti)[0]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ - - #undef XM_Scale - #undef XM_URange - #undef XM_Offset -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreXDecN4 -( - XMXDECN4* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTORF32 Min = {-1.0f, -1.0f, -1.0f, 0.0f}; - static CONST XMVECTORF32 Scale = {511.0f, 511.0f, 511.0f, 3.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, Min.v, g_XMOne.v); - N = XMVectorMultiply(N, Scale.v); - N = XMVectorRound(N); - - pDestination->v = ((UINT)N.vector4_f32[3] << 30) | - (((INT)N.vector4_f32[2] & 0x3FF) << 20) | - (((INT)N.vector4_f32[1] & 0x3FF) << 10) | - (((INT)N.vector4_f32[0] & 0x3FF)); - -#elif defined(_XM_SSE_INTRINSICS_) - static const XMVECTORF32 Min = {-1.0f, -1.0f, -1.0f, 0.0f}; - static const XMVECTORF32 Scale = {511.0f, 511.0f*1024.0f, 511.0f*1048576.0f,3.0f*536870912.0f}; - static const XMVECTORI32 ScaleMask = {0x3FF,0x3FF<<10,0x3FF<<20,0x3<<29}; - XMASSERT(pDestination); - XMVECTOR vResult = _mm_max_ps(V,Min); - vResult = _mm_min_ps(vResult,g_XMOne); - // Scale by multiplication - vResult = _mm_mul_ps(vResult,Scale); - // Convert to int (W is unsigned) - __m128i vResulti = _mm_cvtps_epi32(vResult); - // Mask off any fraction - vResulti = _mm_and_si128(vResulti,ScaleMask); - // To fix W, add itself to shift it up to <<30 instead of <<29 - __m128i vResultw = _mm_and_si128(vResulti,g_XMMaskW); - vResulti = _mm_add_epi32(vResulti,vResultw); - // Do a horizontal or of all 4 entries - vResult = _mm_shuffle_ps(reinterpret_cast(&vResulti)[0],reinterpret_cast(&vResulti)[0],_MM_SHUFFLE(0,3,2,1)); - vResulti = _mm_or_si128(vResulti,reinterpret_cast(&vResult)[0]); - vResult = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(0,3,2,1)); - vResulti = _mm_or_si128(vResulti,reinterpret_cast(&vResult)[0]); - vResult = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(0,3,2,1)); - vResulti = _mm_or_si128(vResulti,reinterpret_cast(&vResult)[0]); - _mm_store_ss(reinterpret_cast(&pDestination->v),reinterpret_cast(&vResulti)[0]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreXDec4 -( - XMXDEC4* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTOR Min = {-511.0f, -511.0f, -511.0f, 0.0f}; - static CONST XMVECTOR Max = {511.0f, 511.0f, 511.0f, 3.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, Min, Max); - - pDestination->v = ((UINT)N.vector4_f32[3] << 30) | - (((INT)N.vector4_f32[2] & 0x3FF) << 20) | - (((INT)N.vector4_f32[1] & 0x3FF) << 10) | - (((INT)N.vector4_f32[0] & 0x3FF)); - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - static const XMVECTORF32 MinXDec4 = {-511.0f,-511.0f,-511.0f, 0.0f}; - static const XMVECTORF32 MaxXDec4 = { 511.0f, 511.0f, 511.0f, 3.0f}; - static const XMVECTORF32 ScaleXDec4 = {1.0f,1024.0f/2.0f,1024.0f*1024.0f,1024.0f*1024.0f*1024.0f/2.0f}; - static const XMVECTORI32 MaskXDec4= {0x3FF,0x3FF<<(10-1),0x3FF<<20,0x3<<(30-1)}; - // Clamp to bounds - XMVECTOR vResult = _mm_max_ps(V,MinXDec4); - vResult = _mm_min_ps(vResult,MaxXDec4); - // Scale by multiplication - vResult = _mm_mul_ps(vResult,ScaleXDec4); - // Convert to int - __m128i vResulti = _mm_cvttps_epi32(vResult); - // Mask off any fraction - vResulti = _mm_and_si128(vResulti,MaskXDec4); - // Do a horizontal or of 4 entries - __m128i vResulti2 = _mm_shuffle_epi32(vResulti,_MM_SHUFFLE(3,2,3,2)); - // x = x|z, y = y|w - vResulti = _mm_or_si128(vResulti,vResulti2); - // Move Z to the x position - vResulti2 = _mm_shuffle_epi32(vResulti,_MM_SHUFFLE(1,1,1,1)); - // Perform a single bit left shift on y|w - vResulti2 = _mm_add_epi32(vResulti2,vResulti2); - // i = x|y|z|w - vResulti = _mm_or_si128(vResulti,vResulti2); - _mm_store_ss(reinterpret_cast(&pDestination->v),reinterpret_cast(&vResulti)[0]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreUDecN4 -( - XMUDECN4* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTORF32 Scale = {1023.0f, 1023.0f, 1023.0f, 3.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, XMVectorZero(), g_XMOne.v); - N = XMVectorMultiply(N, Scale.v); - - pDestination->v = ((UINT)N.vector4_f32[3] << 30) | - (((UINT)N.vector4_f32[2] & 0x3FF) << 20) | - (((UINT)N.vector4_f32[1] & 0x3FF) << 10) | - (((UINT)N.vector4_f32[0] & 0x3FF)); - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - static const XMVECTORF32 ScaleUDecN4 = {1023.0f,1023.0f*1024.0f*0.5f,1023.0f*1024.0f*1024.0f,3.0f*1024.0f*1024.0f*1024.0f*0.5f}; - static const XMVECTORI32 MaskUDecN4= {0x3FF,0x3FF<<(10-1),0x3FF<<20,0x3<<(30-1)}; - // Clamp to bounds - XMVECTOR vResult = _mm_max_ps(V,g_XMZero); - vResult = _mm_min_ps(vResult,g_XMOne); - // Scale by multiplication - vResult = _mm_mul_ps(vResult,ScaleUDecN4); - // Convert to int - __m128i vResulti = _mm_cvttps_epi32(vResult); - // Mask off any fraction - vResulti = _mm_and_si128(vResulti,MaskUDecN4); - // Do a horizontal or of 4 entries - __m128i vResulti2 = _mm_shuffle_epi32(vResulti,_MM_SHUFFLE(3,2,3,2)); - // x = x|z, y = y|w - vResulti = _mm_or_si128(vResulti,vResulti2); - // Move Z to the x position - vResulti2 = _mm_shuffle_epi32(vResulti,_MM_SHUFFLE(1,1,1,1)); - // Perform a left shift by one bit on y|w - vResulti2 = _mm_add_epi32(vResulti2,vResulti2); - // i = x|y|z|w - vResulti = _mm_or_si128(vResulti,vResulti2); - _mm_store_ss(reinterpret_cast(&pDestination->v),reinterpret_cast(&vResulti)[0]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreUDec4 -( - XMUDEC4* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTOR Max = {1023.0f, 1023.0f, 1023.0f, 3.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, XMVectorZero(), Max); - - pDestination->v = ((UINT)N.vector4_f32[3] << 30) | - (((UINT)N.vector4_f32[2] & 0x3FF) << 20) | - (((UINT)N.vector4_f32[1] & 0x3FF) << 10) | - (((UINT)N.vector4_f32[0] & 0x3FF)); - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - static const XMVECTORF32 MaxUDec4 = { 1023.0f, 1023.0f, 1023.0f, 3.0f}; - static const XMVECTORF32 ScaleUDec4 = {1.0f,1024.0f/2.0f,1024.0f*1024.0f,1024.0f*1024.0f*1024.0f/2.0f}; - static const XMVECTORI32 MaskUDec4= {0x3FF,0x3FF<<(10-1),0x3FF<<20,0x3<<(30-1)}; - // Clamp to bounds - XMVECTOR vResult = _mm_max_ps(V,g_XMZero); - vResult = _mm_min_ps(vResult,MaxUDec4); - // Scale by multiplication - vResult = _mm_mul_ps(vResult,ScaleUDec4); - // Convert to int - __m128i vResulti = _mm_cvttps_epi32(vResult); - // Mask off any fraction - vResulti = _mm_and_si128(vResulti,MaskUDec4); - // Do a horizontal or of 4 entries - __m128i vResulti2 = _mm_shuffle_epi32(vResulti,_MM_SHUFFLE(3,2,3,2)); - // x = x|z, y = y|w - vResulti = _mm_or_si128(vResulti,vResulti2); - // Move Z to the x position - vResulti2 = _mm_shuffle_epi32(vResulti,_MM_SHUFFLE(1,1,1,1)); - // Perform a left shift by one bit on y|w - vResulti2 = _mm_add_epi32(vResulti2,vResulti2); - // i = x|y|z|w - vResulti = _mm_or_si128(vResulti,vResulti2); - _mm_store_ss(reinterpret_cast(&pDestination->v),reinterpret_cast(&vResulti)[0]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreDecN4 -( - XMDECN4* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTORF32 Scale = {511.0f, 511.0f, 511.0f, 1.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, g_XMNegativeOne.v, g_XMOne.v); - N = XMVectorMultiply(N, Scale.v); - - pDestination->v = ((INT)N.vector4_f32[3] << 30) | - (((INT)N.vector4_f32[2] & 0x3FF) << 20) | - (((INT)N.vector4_f32[1] & 0x3FF) << 10) | - (((INT)N.vector4_f32[0] & 0x3FF)); - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - static const XMVECTORF32 ScaleDecN4 = {511.0f,511.0f*1024.0f,511.0f*1024.0f*1024.0f,1.0f*1024.0f*1024.0f*1024.0f}; - static const XMVECTORI32 MaskDecN4= {0x3FF,0x3FF<<10,0x3FF<<20,0x3<<30}; - // Clamp to bounds - XMVECTOR vResult = _mm_max_ps(V,g_XMNegativeOne); - vResult = _mm_min_ps(vResult,g_XMOne); - // Scale by multiplication - vResult = _mm_mul_ps(vResult,ScaleDecN4); - // Convert to int - __m128i vResulti = _mm_cvttps_epi32(vResult); - // Mask off any fraction - vResulti = _mm_and_si128(vResulti,MaskDecN4); - // Do a horizontal or of 4 entries - __m128i vResulti2 = _mm_shuffle_epi32(vResulti,_MM_SHUFFLE(3,2,3,2)); - // x = x|z, y = y|w - vResulti = _mm_or_si128(vResulti,vResulti2); - // Move Z to the x position - vResulti2 = _mm_shuffle_epi32(vResulti,_MM_SHUFFLE(1,1,1,1)); - // i = x|y|z|w - vResulti = _mm_or_si128(vResulti,vResulti2); - _mm_store_ss(reinterpret_cast(&pDestination->v),reinterpret_cast(&vResulti)[0]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreDec4 -( - XMDEC4* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTOR Min = {-511.0f, -511.0f, -511.0f, -1.0f}; - static CONST XMVECTOR Max = {511.0f, 511.0f, 511.0f, 1.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, Min, Max); - - pDestination->v = ((INT)N.vector4_f32[3] << 30) | - (((INT)N.vector4_f32[2] & 0x3FF) << 20) | - (((INT)N.vector4_f32[1] & 0x3FF) << 10) | - (((INT)N.vector4_f32[0] & 0x3FF)); - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - static const XMVECTORF32 MinDec4 = {-511.0f,-511.0f,-511.0f,-1.0f}; - static const XMVECTORF32 MaxDec4 = { 511.0f, 511.0f, 511.0f, 1.0f}; - static const XMVECTORF32 ScaleDec4 = {1.0f,1024.0f,1024.0f*1024.0f,1024.0f*1024.0f*1024.0f}; - static const XMVECTORI32 MaskDec4= {0x3FF,0x3FF<<10,0x3FF<<20,0x3<<30}; - // Clamp to bounds - XMVECTOR vResult = _mm_max_ps(V,MinDec4); - vResult = _mm_min_ps(vResult,MaxDec4); - // Scale by multiplication - vResult = _mm_mul_ps(vResult,ScaleDec4); - // Convert to int - __m128i vResulti = _mm_cvttps_epi32(vResult); - // Mask off any fraction - vResulti = _mm_and_si128(vResulti,MaskDec4); - // Do a horizontal or of 4 entries - __m128i vResulti2 = _mm_shuffle_epi32(vResulti,_MM_SHUFFLE(3,2,3,2)); - // x = x|z, y = y|w - vResulti = _mm_or_si128(vResulti,vResulti2); - // Move Z to the x position - vResulti2 = _mm_shuffle_epi32(vResulti,_MM_SHUFFLE(1,1,1,1)); - // i = x|y|z|w - vResulti = _mm_or_si128(vResulti,vResulti2); - _mm_store_ss(reinterpret_cast(&pDestination->v),reinterpret_cast(&vResulti)[0]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreUByteN4 -( - XMUBYTEN4* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTORF32 Scale = {255.0f, 255.0f, 255.0f, 255.0f}; - - XMASSERT(pDestination); - - N = XMVectorSaturate(V); - N = XMVectorMultiply(N, Scale.v); - N = XMVectorRound(N); - - pDestination->x = (BYTE)N.vector4_f32[0]; - pDestination->y = (BYTE)N.vector4_f32[1]; - pDestination->z = (BYTE)N.vector4_f32[2]; - pDestination->w = (BYTE)N.vector4_f32[3]; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - static const XMVECTORF32 ScaleUByteN4 = {255.0f,255.0f*256.0f*0.5f,255.0f*256.0f*256.0f,255.0f*256.0f*256.0f*256.0f*0.5f}; - static const XMVECTORI32 MaskUByteN4 = {0xFF,0xFF<<(8-1),0xFF<<16,0xFF<<(24-1)}; - // Clamp to bounds - XMVECTOR vResult = _mm_max_ps(V,g_XMZero); - vResult = _mm_min_ps(vResult,g_XMOne); - // Scale by multiplication - vResult = _mm_mul_ps(vResult,ScaleUByteN4); - // Convert to int - __m128i vResulti = _mm_cvttps_epi32(vResult); - // Mask off any fraction - vResulti = _mm_and_si128(vResulti,MaskUByteN4); - // Do a horizontal or of 4 entries - __m128i vResulti2 = _mm_shuffle_epi32(vResulti,_MM_SHUFFLE(3,2,3,2)); - // x = x|z, y = y|w - vResulti = _mm_or_si128(vResulti,vResulti2); - // Move Z to the x position - vResulti2 = _mm_shuffle_epi32(vResulti,_MM_SHUFFLE(1,1,1,1)); - // Perform a single bit left shift to fix y|w - vResulti2 = _mm_add_epi32(vResulti2,vResulti2); - // i = x|y|z|w - vResulti = _mm_or_si128(vResulti,vResulti2); - _mm_store_ss(reinterpret_cast(&pDestination->v),reinterpret_cast(&vResulti)[0]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreUByte4 -( - XMUBYTE4* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTOR Max = {255.0f, 255.0f, 255.0f, 255.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, XMVectorZero(), Max); - N = XMVectorRound(N); - - pDestination->x = (BYTE)N.vector4_f32[0]; - pDestination->y = (BYTE)N.vector4_f32[1]; - pDestination->z = (BYTE)N.vector4_f32[2]; - pDestination->w = (BYTE)N.vector4_f32[3]; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - static const XMVECTORF32 MaxUByte4 = { 255.0f, 255.0f, 255.0f, 255.0f}; - static const XMVECTORF32 ScaleUByte4 = {1.0f,256.0f*0.5f,256.0f*256.0f,256.0f*256.0f*256.0f*0.5f}; - static const XMVECTORI32 MaskUByte4 = {0xFF,0xFF<<(8-1),0xFF<<16,0xFF<<(24-1)}; - // Clamp to bounds - XMVECTOR vResult = _mm_max_ps(V,g_XMZero); - vResult = _mm_min_ps(vResult,MaxUByte4); - // Scale by multiplication - vResult = _mm_mul_ps(vResult,ScaleUByte4); - // Convert to int - __m128i vResulti = _mm_cvttps_epi32(vResult); - // Mask off any fraction - vResulti = _mm_and_si128(vResulti,MaskUByte4); - // Do a horizontal or of 4 entries - __m128i vResulti2 = _mm_shuffle_epi32(vResulti,_MM_SHUFFLE(3,2,3,2)); - // x = x|z, y = y|w - vResulti = _mm_or_si128(vResulti,vResulti2); - // Move Z to the x position - vResulti2 = _mm_shuffle_epi32(vResulti,_MM_SHUFFLE(1,1,1,1)); - // Perform a single bit left shift to fix y|w - vResulti2 = _mm_add_epi32(vResulti2,vResulti2); - // i = x|y|z|w - vResulti = _mm_or_si128(vResulti,vResulti2); - _mm_store_ss(reinterpret_cast(&pDestination->v),reinterpret_cast(&vResulti)[0]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreByteN4 -( - XMBYTEN4* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTORF32 Scale = {127.0f, 127.0f, 127.0f, 127.0f}; - - XMASSERT(pDestination); - - N = XMVectorMultiply(V, Scale.v); - N = XMVectorRound(N); - - pDestination->x = (CHAR)N.vector4_f32[0]; - pDestination->y = (CHAR)N.vector4_f32[1]; - pDestination->z = (CHAR)N.vector4_f32[2]; - pDestination->w = (CHAR)N.vector4_f32[3]; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - static const XMVECTORF32 ScaleByteN4 = {127.0f,127.0f*256.0f,127.0f*256.0f*256.0f,127.0f*256.0f*256.0f*256.0f}; - static const XMVECTORI32 MaskByteN4 = {0xFF,0xFF<<8,0xFF<<16,0xFF<<24}; - // Clamp to bounds - XMVECTOR vResult = _mm_max_ps(V,g_XMNegativeOne); - vResult = _mm_min_ps(vResult,g_XMOne); - // Scale by multiplication - vResult = _mm_mul_ps(vResult,ScaleByteN4); - // Convert to int - __m128i vResulti = _mm_cvttps_epi32(vResult); - // Mask off any fraction - vResulti = _mm_and_si128(vResulti,MaskByteN4); - // Do a horizontal or of 4 entries - __m128i vResulti2 = _mm_shuffle_epi32(vResulti,_MM_SHUFFLE(3,2,3,2)); - // x = x|z, y = y|w - vResulti = _mm_or_si128(vResulti,vResulti2); - // Move Z to the x position - vResulti2 = _mm_shuffle_epi32(vResulti,_MM_SHUFFLE(1,1,1,1)); - // i = x|y|z|w - vResulti = _mm_or_si128(vResulti,vResulti2); - _mm_store_ss(reinterpret_cast(&pDestination->v),reinterpret_cast(&vResulti)[0]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreByte4 -( - XMBYTE4* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTOR Min = {-127.0f, -127.0f, -127.0f, -127.0f}; - static CONST XMVECTOR Max = {127.0f, 127.0f, 127.0f, 127.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, Min, Max); - N = XMVectorRound(N); - - pDestination->x = (CHAR)N.vector4_f32[0]; - pDestination->y = (CHAR)N.vector4_f32[1]; - pDestination->z = (CHAR)N.vector4_f32[2]; - pDestination->w = (CHAR)N.vector4_f32[3]; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - static const XMVECTORF32 MinByte4 = {-127.0f,-127.0f,-127.0f,-127.0f}; - static const XMVECTORF32 MaxByte4 = { 127.0f, 127.0f, 127.0f, 127.0f}; - static const XMVECTORF32 ScaleByte4 = {1.0f,256.0f,256.0f*256.0f,256.0f*256.0f*256.0f}; - static const XMVECTORI32 MaskByte4 = {0xFF,0xFF<<8,0xFF<<16,0xFF<<24}; - // Clamp to bounds - XMVECTOR vResult = _mm_max_ps(V,MinByte4); - vResult = _mm_min_ps(vResult,MaxByte4); - // Scale by multiplication - vResult = _mm_mul_ps(vResult,ScaleByte4); - // Convert to int - __m128i vResulti = _mm_cvttps_epi32(vResult); - // Mask off any fraction - vResulti = _mm_and_si128(vResulti,MaskByte4); - // Do a horizontal or of 4 entries - __m128i vResulti2 = _mm_shuffle_epi32(vResulti,_MM_SHUFFLE(3,2,3,2)); - // x = x|z, y = y|w - vResulti = _mm_or_si128(vResulti,vResulti2); - // Move Z to the x position - vResulti2 = _mm_shuffle_epi32(vResulti,_MM_SHUFFLE(1,1,1,1)); - // i = x|y|z|w - vResulti = _mm_or_si128(vResulti,vResulti2); - _mm_store_ss(reinterpret_cast(&pDestination->v),reinterpret_cast(&vResulti)[0]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreUNibble4 -( - XMUNIBBLE4* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_SSE_INTRINSICS_) && !defined(_XM_NO_INTRINSICS_) - XMASSERT(pDestination); - static CONST XMVECTORF32 Max = {15.0f,15.0f,15.0f,15.0f}; - // Bounds check - XMVECTOR vResult = _mm_max_ps(V,g_XMZero); - vResult = _mm_min_ps(vResult,Max); - // Convert to int with rounding - __m128i vInt = _mm_cvtps_epi32(vResult); - // No SSE operations will write to 16-bit values, so we have to extract them manually - USHORT x = static_cast(_mm_extract_epi16(vInt,0)); - USHORT y = static_cast(_mm_extract_epi16(vInt,2)); - USHORT z = static_cast(_mm_extract_epi16(vInt,4)); - USHORT w = static_cast(_mm_extract_epi16(vInt,6)); - pDestination->v = ((w & 0xF) << 12) | - ((z & 0xF) << 8) | - ((y & 0xF) << 4) | - ((x & 0xF)); -#else - XMVECTOR N; - static CONST XMVECTORF32 Max = {15.0f,15.0f,15.0f,15.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, XMVectorZero(), Max.v); - N = XMVectorRound(N); - - pDestination->v = (((USHORT)N.vector4_f32[3] & 0xF) << 12) | - (((USHORT)N.vector4_f32[2] & 0xF) << 8) | - (((USHORT)N.vector4_f32[1] & 0xF) << 4) | - (((USHORT)N.vector4_f32[0] & 0xF)); -#endif !_XM_SSE_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreU555( - XMU555* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_SSE_INTRINSICS_) && !defined(_XM_NO_INTRINSICS_) - XMASSERT(pDestination); - static CONST XMVECTORF32 Max = {31.0f, 31.0f, 31.0f, 1.0f}; - // Bounds check - XMVECTOR vResult = _mm_max_ps(V,g_XMZero); - vResult = _mm_min_ps(vResult,Max); - // Convert to int with rounding - __m128i vInt = _mm_cvtps_epi32(vResult); - // No SSE operations will write to 16-bit values, so we have to extract them manually - USHORT x = static_cast(_mm_extract_epi16(vInt,0)); - USHORT y = static_cast(_mm_extract_epi16(vInt,2)); - USHORT z = static_cast(_mm_extract_epi16(vInt,4)); - USHORT w = static_cast(_mm_extract_epi16(vInt,6)); - pDestination->v = ((w) ? 0x8000 : 0) | - ((z & 0x1F) << 10) | - ((y & 0x1F) << 5) | - ((x & 0x1F)); -#else - XMVECTOR N; - static CONST XMVECTORF32 Max = {31.0f, 31.0f, 31.0f, 1.0f}; - - XMASSERT(pDestination); - - N = XMVectorClamp(V, XMVectorZero(), Max.v); - N = XMVectorRound(N); - - pDestination->v = ((N.vector4_f32[3] > 0.f) ? 0x8000 : 0) | - (((USHORT)N.vector4_f32[2] & 0x1F) << 10) | - (((USHORT)N.vector4_f32[1] & 0x1F) << 5) | - (((USHORT)N.vector4_f32[0] & 0x1F)); -#endif !_XM_SSE_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreColor -( - XMCOLOR* pDestination, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - static CONST XMVECTORF32 Scale = {255.0f, 255.0f, 255.0f, 255.0f}; - - XMASSERT(pDestination); - - N = XMVectorSaturate(V); - N = XMVectorMultiply(N, Scale.v); - N = XMVectorRound(N); - - pDestination->c = ((UINT)N.vector4_f32[3] << 24) | - ((UINT)N.vector4_f32[0] << 16) | - ((UINT)N.vector4_f32[1] << 8) | - ((UINT)N.vector4_f32[2]); - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - static CONST XMVECTORF32 Scale = {255.0f,255.0f,255.0f,255.0f}; - // Set <0 to 0 - XMVECTOR vResult = _mm_max_ps(V,g_XMZero); - // Set>1 to 1 - vResult = _mm_min_ps(vResult,g_XMOne); - // Convert to 0-255 - vResult = _mm_mul_ps(vResult,Scale); - // Shuffle RGBA to ARGB - vResult = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(3,0,1,2)); - // Convert to int - __m128i vInt = _mm_cvtps_epi32(vResult); - // Mash to shorts - vInt = _mm_packs_epi32(vInt,vInt); - // Mash to bytes - vInt = _mm_packus_epi16(vInt,vInt); - // Store the color - _mm_store_ss(reinterpret_cast(&pDestination->c),reinterpret_cast<__m128 *>(&vInt)[0]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreFloat3x3 -( - XMFLOAT3X3* pDestination, - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) || defined(XM_NO_MISALIGNED_VECTOR_ACCESS) || defined(_XM_SSE_INTRINSICS_) - - XMStoreFloat3x3NC(pDestination, M); - -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreFloat3x3NC -( - XMFLOAT3X3* pDestination, - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMASSERT(pDestination); - - pDestination->m[0][0] = M.r[0].vector4_f32[0]; - pDestination->m[0][1] = M.r[0].vector4_f32[1]; - pDestination->m[0][2] = M.r[0].vector4_f32[2]; - - pDestination->m[1][0] = M.r[1].vector4_f32[0]; - pDestination->m[1][1] = M.r[1].vector4_f32[1]; - pDestination->m[1][2] = M.r[1].vector4_f32[2]; - - pDestination->m[2][0] = M.r[2].vector4_f32[0]; - pDestination->m[2][1] = M.r[2].vector4_f32[1]; - pDestination->m[2][2] = M.r[2].vector4_f32[2]; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - XMVECTOR vTemp1 = M.r[0]; - XMVECTOR vTemp2 = M.r[1]; - XMVECTOR vTemp3 = M.r[2]; - XMVECTOR vWork = _mm_shuffle_ps(vTemp1,vTemp2,_MM_SHUFFLE(0,0,2,2)); - vTemp1 = _mm_shuffle_ps(vTemp1,vWork,_MM_SHUFFLE(2,0,1,0)); - _mm_storeu_ps(&pDestination->m[0][0],vTemp1); - vTemp2 = _mm_shuffle_ps(vTemp2,vTemp3,_MM_SHUFFLE(1,0,2,1)); - _mm_storeu_ps(&pDestination->m[1][1],vTemp2); - vTemp3 = _mm_shuffle_ps(vTemp3,vTemp3,_MM_SHUFFLE(2,2,2,2)); - _mm_store_ss(&pDestination->m[2][2],vTemp3); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreFloat4x3 -( - XMFLOAT4X3* pDestination, - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) || defined(XM_NO_MISALIGNED_VECTOR_ACCESS) || defined(_XM_SSE_INTRINSICS_) - - XMStoreFloat4x3NC(pDestination, M); - -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreFloat4x3A -( - XMFLOAT4X3A* pDestination, - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 0xF) == 0); - - pDestination->m[0][0] = M.r[0].vector4_f32[0]; - pDestination->m[0][1] = M.r[0].vector4_f32[1]; - pDestination->m[0][2] = M.r[0].vector4_f32[2]; - - pDestination->m[1][0] = M.r[1].vector4_f32[0]; - pDestination->m[1][1] = M.r[1].vector4_f32[1]; - pDestination->m[1][2] = M.r[1].vector4_f32[2]; - - pDestination->m[2][0] = M.r[2].vector4_f32[0]; - pDestination->m[2][1] = M.r[2].vector4_f32[1]; - pDestination->m[2][2] = M.r[2].vector4_f32[2]; - - pDestination->m[3][0] = M.r[3].vector4_f32[0]; - pDestination->m[3][1] = M.r[3].vector4_f32[1]; - pDestination->m[3][2] = M.r[3].vector4_f32[2]; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 0xF) == 0); - // x1,y1,z1,w1 - XMVECTOR vTemp1 = M.r[0]; - // x2,y2,z2,w2 - XMVECTOR vTemp2 = M.r[1]; - // x3,y3,z3,w3 - XMVECTOR vTemp3 = M.r[2]; - // x4,y4,z4,w4 - XMVECTOR vTemp4 = M.r[3]; - // z1,z1,x2,y2 - XMVECTOR vTemp = _mm_shuffle_ps(vTemp1,vTemp2,_MM_SHUFFLE(1,0,2,2)); - // y2,z2,x3,y3 (Final) - vTemp2 = _mm_shuffle_ps(vTemp2,vTemp3,_MM_SHUFFLE(1,0,2,1)); - // x1,y1,z1,x2 (Final) - vTemp1 = _mm_shuffle_ps(vTemp1,vTemp,_MM_SHUFFLE(2,0,1,0)); - // z3,z3,x4,x4 - vTemp3 = _mm_shuffle_ps(vTemp3,vTemp4,_MM_SHUFFLE(0,0,2,2)); - // z3,x4,y4,z4 (Final) - vTemp3 = _mm_shuffle_ps(vTemp3,vTemp4,_MM_SHUFFLE(2,1,2,0)); - // Store in 3 operations - _mm_store_ps(&pDestination->m[0][0],vTemp1); - _mm_store_ps(&pDestination->m[1][1],vTemp2); - _mm_store_ps(&pDestination->m[2][2],vTemp3); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreFloat4x3NC -( - XMFLOAT4X3* pDestination, - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMASSERT(pDestination); - - pDestination->m[0][0] = M.r[0].vector4_f32[0]; - pDestination->m[0][1] = M.r[0].vector4_f32[1]; - pDestination->m[0][2] = M.r[0].vector4_f32[2]; - - pDestination->m[1][0] = M.r[1].vector4_f32[0]; - pDestination->m[1][1] = M.r[1].vector4_f32[1]; - pDestination->m[1][2] = M.r[1].vector4_f32[2]; - - pDestination->m[2][0] = M.r[2].vector4_f32[0]; - pDestination->m[2][1] = M.r[2].vector4_f32[1]; - pDestination->m[2][2] = M.r[2].vector4_f32[2]; - - pDestination->m[3][0] = M.r[3].vector4_f32[0]; - pDestination->m[3][1] = M.r[3].vector4_f32[1]; - pDestination->m[3][2] = M.r[3].vector4_f32[2]; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - XMVECTOR vTemp1 = M.r[0]; - XMVECTOR vTemp2 = M.r[1]; - XMVECTOR vTemp3 = M.r[2]; - XMVECTOR vTemp4 = M.r[3]; - XMVECTOR vTemp2x = _mm_shuffle_ps(vTemp2,vTemp3,_MM_SHUFFLE(1,0,2,1)); - vTemp2 = _mm_shuffle_ps(vTemp2,vTemp1,_MM_SHUFFLE(2,2,0,0)); - vTemp1 = _mm_shuffle_ps(vTemp1,vTemp2,_MM_SHUFFLE(0,2,1,0)); - vTemp3 = _mm_shuffle_ps(vTemp3,vTemp4,_MM_SHUFFLE(0,0,2,2)); - vTemp3 = _mm_shuffle_ps(vTemp3,vTemp4,_MM_SHUFFLE(2,1,2,0)); - _mm_storeu_ps(&pDestination->m[0][0],vTemp1); - _mm_storeu_ps(&pDestination->m[1][1],vTemp2x); - _mm_storeu_ps(&pDestination->m[2][2],vTemp3); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreFloat4x4 -( - XMFLOAT4X4* pDestination, - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) || defined(XM_NO_MISALIGNED_VECTOR_ACCESS) - - XMStoreFloat4x4NC(pDestination, M); - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - - _mm_storeu_ps( &pDestination->_11, M.r[0] ); - _mm_storeu_ps( &pDestination->_21, M.r[1] ); - _mm_storeu_ps( &pDestination->_31, M.r[2] ); - _mm_storeu_ps( &pDestination->_41, M.r[3] ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreFloat4x4A -( - XMFLOAT4X4A* pDestination, - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMASSERT(pDestination); - XMASSERT(((UINT_PTR)pDestination & 0xF) == 0); - - pDestination->m[0][0] = M.r[0].vector4_f32[0]; - pDestination->m[0][1] = M.r[0].vector4_f32[1]; - pDestination->m[0][2] = M.r[0].vector4_f32[2]; - pDestination->m[0][3] = M.r[0].vector4_f32[3]; - - pDestination->m[1][0] = M.r[1].vector4_f32[0]; - pDestination->m[1][1] = M.r[1].vector4_f32[1]; - pDestination->m[1][2] = M.r[1].vector4_f32[2]; - pDestination->m[1][3] = M.r[1].vector4_f32[3]; - - pDestination->m[2][0] = M.r[2].vector4_f32[0]; - pDestination->m[2][1] = M.r[2].vector4_f32[1]; - pDestination->m[2][2] = M.r[2].vector4_f32[2]; - pDestination->m[2][3] = M.r[2].vector4_f32[3]; - - pDestination->m[3][0] = M.r[3].vector4_f32[0]; - pDestination->m[3][1] = M.r[3].vector4_f32[1]; - pDestination->m[3][2] = M.r[3].vector4_f32[2]; - pDestination->m[3][3] = M.r[3].vector4_f32[3]; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - - _mm_store_ps( &pDestination->_11, M.r[0] ); - _mm_store_ps( &pDestination->_21, M.r[1] ); - _mm_store_ps( &pDestination->_31, M.r[2] ); - _mm_store_ps( &pDestination->_41, M.r[3] ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMStoreFloat4x4NC -( - XMFLOAT4X4* pDestination, - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMASSERT(pDestination); - - pDestination->m[0][0] = M.r[0].vector4_f32[0]; - pDestination->m[0][1] = M.r[0].vector4_f32[1]; - pDestination->m[0][2] = M.r[0].vector4_f32[2]; - pDestination->m[0][3] = M.r[0].vector4_f32[3]; - - pDestination->m[1][0] = M.r[1].vector4_f32[0]; - pDestination->m[1][1] = M.r[1].vector4_f32[1]; - pDestination->m[1][2] = M.r[1].vector4_f32[2]; - pDestination->m[1][3] = M.r[1].vector4_f32[3]; - - pDestination->m[2][0] = M.r[2].vector4_f32[0]; - pDestination->m[2][1] = M.r[2].vector4_f32[1]; - pDestination->m[2][2] = M.r[2].vector4_f32[2]; - pDestination->m[2][3] = M.r[2].vector4_f32[3]; - - pDestination->m[3][0] = M.r[3].vector4_f32[0]; - pDestination->m[3][1] = M.r[3].vector4_f32[1]; - pDestination->m[3][2] = M.r[3].vector4_f32[2]; - pDestination->m[3][3] = M.r[3].vector4_f32[3]; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDestination); - _mm_storeu_ps(&pDestination->m[0][0],M.r[0]); - _mm_storeu_ps(&pDestination->m[1][0],M.r[1]); - _mm_storeu_ps(&pDestination->m[2][0],M.r[2]); - _mm_storeu_ps(&pDestination->m[3][0],M.r[3]); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -#endif // __XNAMATHCONVERT_INL__ - diff --git a/SDK/Include/xnamathmatrix.inl b/SDK/Include/xnamathmatrix.inl deleted file mode 100644 index 7ce4c1f..0000000 --- a/SDK/Include/xnamathmatrix.inl +++ /dev/null @@ -1,3254 +0,0 @@ -/*++ - -Copyright (c) Microsoft Corporation. All rights reserved. - -Module Name: - - xnamathmatrix.inl - -Abstract: - - XNA math library for Windows and Xbox 360: Matrix functions ---*/ - -#if defined(_MSC_VER) && (_MSC_VER > 1000) -#pragma once -#endif - -#ifndef __XNAMATHMATRIX_INL__ -#define __XNAMATHMATRIX_INL__ - -/**************************************************************************** - * - * Matrix - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ -// Comparison operations -//------------------------------------------------------------------------------ - -//------------------------------------------------------------------------------ - -// Return TRUE if any entry in the matrix is NaN -XMFINLINE BOOL XMMatrixIsNaN -( - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) - UINT i, uTest; - const UINT *pWork; - - i = 16; - pWork = (const UINT *)(&M.m[0][0]); - do { - // Fetch value into integer unit - uTest = pWork[0]; - // Remove sign - uTest &= 0x7FFFFFFFU; - // NaN is 0x7F800001 through 0x7FFFFFFF inclusive - uTest -= 0x7F800001U; - if (uTest<0x007FFFFFU) { - break; // NaN found - } - ++pWork; // Next entry - } while (--i); - return (i!=0); // i == 0 if nothing matched -#elif defined(_XM_SSE_INTRINSICS_) - // Load in registers - XMVECTOR vX = M.r[0]; - XMVECTOR vY = M.r[1]; - XMVECTOR vZ = M.r[2]; - XMVECTOR vW = M.r[3]; - // Test themselves to check for NaN - vX = _mm_cmpneq_ps(vX,vX); - vY = _mm_cmpneq_ps(vY,vY); - vZ = _mm_cmpneq_ps(vZ,vZ); - vW = _mm_cmpneq_ps(vW,vW); - // Or all the results - vX = _mm_or_ps(vX,vZ); - vY = _mm_or_ps(vY,vW); - vX = _mm_or_ps(vX,vY); - // If any tested true, return true - return (_mm_movemask_ps(vX)!=0); -#else -#endif -} - -//------------------------------------------------------------------------------ - -// Return TRUE if any entry in the matrix is +/-INF -XMFINLINE BOOL XMMatrixIsInfinite -( - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) - UINT i, uTest; - const UINT *pWork; - - i = 16; - pWork = (const UINT *)(&M.m[0][0]); - do { - // Fetch value into integer unit - uTest = pWork[0]; - // Remove sign - uTest &= 0x7FFFFFFFU; - // INF is 0x7F800000 - if (uTest==0x7F800000U) { - break; // INF found - } - ++pWork; // Next entry - } while (--i); - return (i!=0); // i == 0 if nothing matched -#elif defined(_XM_SSE_INTRINSICS_) - // Mask off the sign bits - XMVECTOR vTemp1 = _mm_and_ps(M.r[0],g_XMAbsMask); - XMVECTOR vTemp2 = _mm_and_ps(M.r[1],g_XMAbsMask); - XMVECTOR vTemp3 = _mm_and_ps(M.r[2],g_XMAbsMask); - XMVECTOR vTemp4 = _mm_and_ps(M.r[3],g_XMAbsMask); - // Compare to infinity - vTemp1 = _mm_cmpeq_ps(vTemp1,g_XMInfinity); - vTemp2 = _mm_cmpeq_ps(vTemp2,g_XMInfinity); - vTemp3 = _mm_cmpeq_ps(vTemp3,g_XMInfinity); - vTemp4 = _mm_cmpeq_ps(vTemp4,g_XMInfinity); - // Or the answers together - vTemp1 = _mm_or_ps(vTemp1,vTemp2); - vTemp3 = _mm_or_ps(vTemp3,vTemp4); - vTemp1 = _mm_or_ps(vTemp1,vTemp3); - // If any are infinity, the signs are true. - return (_mm_movemask_ps(vTemp1)!=0); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -// Return TRUE if the XMMatrix is equal to identity -XMFINLINE BOOL XMMatrixIsIdentity -( - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) - unsigned int uOne, uZero; - const unsigned int *pWork; - - // Use the integer pipeline to reduce branching to a minimum - pWork = (const unsigned int*)(&M.m[0][0]); - // Convert 1.0f to zero and or them together - uOne = pWork[0]^0x3F800000U; - // Or all the 0.0f entries together - uZero = pWork[1]; - uZero |= pWork[2]; - uZero |= pWork[3]; - // 2nd row - uZero |= pWork[4]; - uOne |= pWork[5]^0x3F800000U; - uZero |= pWork[6]; - uZero |= pWork[7]; - // 3rd row - uZero |= pWork[8]; - uZero |= pWork[9]; - uOne |= pWork[10]^0x3F800000U; - uZero |= pWork[11]; - // 4th row - uZero |= pWork[12]; - uZero |= pWork[13]; - uZero |= pWork[14]; - uOne |= pWork[15]^0x3F800000U; - // If all zero entries are zero, the uZero==0 - uZero &= 0x7FFFFFFF; // Allow -0.0f - // If all 1.0f entries are 1.0f, then uOne==0 - uOne |= uZero; - return (uOne==0); -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp1 = _mm_cmpeq_ps(M.r[0],g_XMIdentityR0); - XMVECTOR vTemp2 = _mm_cmpeq_ps(M.r[1],g_XMIdentityR1); - XMVECTOR vTemp3 = _mm_cmpeq_ps(M.r[2],g_XMIdentityR2); - XMVECTOR vTemp4 = _mm_cmpeq_ps(M.r[3],g_XMIdentityR3); - vTemp1 = _mm_and_ps(vTemp1,vTemp2); - vTemp3 = _mm_and_ps(vTemp3,vTemp4); - vTemp1 = _mm_and_ps(vTemp1,vTemp3); - return (_mm_movemask_ps(vTemp1)==0x0f); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Computation operations -//------------------------------------------------------------------------------ - -//------------------------------------------------------------------------------ -// Perform a 4x4 matrix multiply by a 4x4 matrix -XMFINLINE XMMATRIX XMMatrixMultiply -( - CXMMATRIX M1, - CXMMATRIX M2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMMATRIX mResult; - // Cache the invariants in registers - float x = M1.m[0][0]; - float y = M1.m[0][1]; - float z = M1.m[0][2]; - float w = M1.m[0][3]; - // Perform the operation on the first row - mResult.m[0][0] = (M2.m[0][0]*x)+(M2.m[1][0]*y)+(M2.m[2][0]*z)+(M2.m[3][0]*w); - mResult.m[0][1] = (M2.m[0][1]*x)+(M2.m[1][1]*y)+(M2.m[2][1]*z)+(M2.m[3][1]*w); - mResult.m[0][2] = (M2.m[0][2]*x)+(M2.m[1][2]*y)+(M2.m[2][2]*z)+(M2.m[3][2]*w); - mResult.m[0][3] = (M2.m[0][3]*x)+(M2.m[1][3]*y)+(M2.m[2][3]*z)+(M2.m[3][3]*w); - // Repeat for all the other rows - x = M1.m[1][0]; - y = M1.m[1][1]; - z = M1.m[1][2]; - w = M1.m[1][3]; - mResult.m[1][0] = (M2.m[0][0]*x)+(M2.m[1][0]*y)+(M2.m[2][0]*z)+(M2.m[3][0]*w); - mResult.m[1][1] = (M2.m[0][1]*x)+(M2.m[1][1]*y)+(M2.m[2][1]*z)+(M2.m[3][1]*w); - mResult.m[1][2] = (M2.m[0][2]*x)+(M2.m[1][2]*y)+(M2.m[2][2]*z)+(M2.m[3][2]*w); - mResult.m[1][3] = (M2.m[0][3]*x)+(M2.m[1][3]*y)+(M2.m[2][3]*z)+(M2.m[3][3]*w); - x = M1.m[2][0]; - y = M1.m[2][1]; - z = M1.m[2][2]; - w = M1.m[2][3]; - mResult.m[2][0] = (M2.m[0][0]*x)+(M2.m[1][0]*y)+(M2.m[2][0]*z)+(M2.m[3][0]*w); - mResult.m[2][1] = (M2.m[0][1]*x)+(M2.m[1][1]*y)+(M2.m[2][1]*z)+(M2.m[3][1]*w); - mResult.m[2][2] = (M2.m[0][2]*x)+(M2.m[1][2]*y)+(M2.m[2][2]*z)+(M2.m[3][2]*w); - mResult.m[2][3] = (M2.m[0][3]*x)+(M2.m[1][3]*y)+(M2.m[2][3]*z)+(M2.m[3][3]*w); - x = M1.m[3][0]; - y = M1.m[3][1]; - z = M1.m[3][2]; - w = M1.m[3][3]; - mResult.m[3][0] = (M2.m[0][0]*x)+(M2.m[1][0]*y)+(M2.m[2][0]*z)+(M2.m[3][0]*w); - mResult.m[3][1] = (M2.m[0][1]*x)+(M2.m[1][1]*y)+(M2.m[2][1]*z)+(M2.m[3][1]*w); - mResult.m[3][2] = (M2.m[0][2]*x)+(M2.m[1][2]*y)+(M2.m[2][2]*z)+(M2.m[3][2]*w); - mResult.m[3][3] = (M2.m[0][3]*x)+(M2.m[1][3]*y)+(M2.m[2][3]*z)+(M2.m[3][3]*w); - return mResult; -#elif defined(_XM_SSE_INTRINSICS_) - XMMATRIX mResult; - // Use vW to hold the original row - XMVECTOR vW = M1.r[0]; - // Splat the component X,Y,Z then W - XMVECTOR vX = _mm_shuffle_ps(vW,vW,_MM_SHUFFLE(0,0,0,0)); - XMVECTOR vY = _mm_shuffle_ps(vW,vW,_MM_SHUFFLE(1,1,1,1)); - XMVECTOR vZ = _mm_shuffle_ps(vW,vW,_MM_SHUFFLE(2,2,2,2)); - vW = _mm_shuffle_ps(vW,vW,_MM_SHUFFLE(3,3,3,3)); - // Perform the opertion on the first row - vX = _mm_mul_ps(vX,M2.r[0]); - vY = _mm_mul_ps(vY,M2.r[1]); - vZ = _mm_mul_ps(vZ,M2.r[2]); - vW = _mm_mul_ps(vW,M2.r[3]); - // Perform a binary add to reduce cumulative errors - vX = _mm_add_ps(vX,vZ); - vY = _mm_add_ps(vY,vW); - vX = _mm_add_ps(vX,vY); - mResult.r[0] = vX; - // Repeat for the other 3 rows - vW = M1.r[1]; - vX = _mm_shuffle_ps(vW,vW,_MM_SHUFFLE(0,0,0,0)); - vY = _mm_shuffle_ps(vW,vW,_MM_SHUFFLE(1,1,1,1)); - vZ = _mm_shuffle_ps(vW,vW,_MM_SHUFFLE(2,2,2,2)); - vW = _mm_shuffle_ps(vW,vW,_MM_SHUFFLE(3,3,3,3)); - vX = _mm_mul_ps(vX,M2.r[0]); - vY = _mm_mul_ps(vY,M2.r[1]); - vZ = _mm_mul_ps(vZ,M2.r[2]); - vW = _mm_mul_ps(vW,M2.r[3]); - vX = _mm_add_ps(vX,vZ); - vY = _mm_add_ps(vY,vW); - vX = _mm_add_ps(vX,vY); - mResult.r[1] = vX; - vW = M1.r[2]; - vX = _mm_shuffle_ps(vW,vW,_MM_SHUFFLE(0,0,0,0)); - vY = _mm_shuffle_ps(vW,vW,_MM_SHUFFLE(1,1,1,1)); - vZ = _mm_shuffle_ps(vW,vW,_MM_SHUFFLE(2,2,2,2)); - vW = _mm_shuffle_ps(vW,vW,_MM_SHUFFLE(3,3,3,3)); - vX = _mm_mul_ps(vX,M2.r[0]); - vY = _mm_mul_ps(vY,M2.r[1]); - vZ = _mm_mul_ps(vZ,M2.r[2]); - vW = _mm_mul_ps(vW,M2.r[3]); - vX = _mm_add_ps(vX,vZ); - vY = _mm_add_ps(vY,vW); - vX = _mm_add_ps(vX,vY); - mResult.r[2] = vX; - vW = M1.r[3]; - vX = _mm_shuffle_ps(vW,vW,_MM_SHUFFLE(0,0,0,0)); - vY = _mm_shuffle_ps(vW,vW,_MM_SHUFFLE(1,1,1,1)); - vZ = _mm_shuffle_ps(vW,vW,_MM_SHUFFLE(2,2,2,2)); - vW = _mm_shuffle_ps(vW,vW,_MM_SHUFFLE(3,3,3,3)); - vX = _mm_mul_ps(vX,M2.r[0]); - vY = _mm_mul_ps(vY,M2.r[1]); - vZ = _mm_mul_ps(vZ,M2.r[2]); - vW = _mm_mul_ps(vW,M2.r[3]); - vX = _mm_add_ps(vX,vZ); - vY = _mm_add_ps(vY,vW); - vX = _mm_add_ps(vX,vY); - mResult.r[3] = vX; - return mResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMMATRIX XMMatrixMultiplyTranspose -( - CXMMATRIX M1, - CXMMATRIX M2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMMATRIX mResult; - // Cache the invariants in registers - float x = M2.m[0][0]; - float y = M2.m[1][0]; - float z = M2.m[2][0]; - float w = M2.m[3][0]; - // Perform the operation on the first row - mResult.m[0][0] = (M1.m[0][0]*x)+(M1.m[0][1]*y)+(M1.m[0][2]*z)+(M1.m[0][3]*w); - mResult.m[0][1] = (M1.m[1][0]*x)+(M1.m[1][1]*y)+(M1.m[1][2]*z)+(M1.m[1][3]*w); - mResult.m[0][2] = (M1.m[2][0]*x)+(M1.m[2][1]*y)+(M1.m[2][2]*z)+(M1.m[2][3]*w); - mResult.m[0][3] = (M1.m[3][0]*x)+(M1.m[3][1]*y)+(M1.m[3][2]*z)+(M1.m[3][3]*w); - // Repeat for all the other rows - x = M2.m[0][1]; - y = M2.m[1][1]; - z = M2.m[2][1]; - w = M2.m[3][1]; - mResult.m[1][0] = (M1.m[0][0]*x)+(M1.m[0][1]*y)+(M1.m[0][2]*z)+(M1.m[0][3]*w); - mResult.m[1][1] = (M1.m[1][0]*x)+(M1.m[1][1]*y)+(M1.m[1][2]*z)+(M1.m[1][3]*w); - mResult.m[1][2] = (M1.m[2][0]*x)+(M1.m[2][1]*y)+(M1.m[2][2]*z)+(M1.m[2][3]*w); - mResult.m[1][3] = (M1.m[3][0]*x)+(M1.m[3][1]*y)+(M1.m[3][2]*z)+(M1.m[3][3]*w); - x = M2.m[0][2]; - y = M2.m[1][2]; - z = M2.m[2][2]; - w = M2.m[3][2]; - mResult.m[2][0] = (M1.m[0][0]*x)+(M1.m[0][1]*y)+(M1.m[0][2]*z)+(M1.m[0][3]*w); - mResult.m[2][1] = (M1.m[1][0]*x)+(M1.m[1][1]*y)+(M1.m[1][2]*z)+(M1.m[1][3]*w); - mResult.m[2][2] = (M1.m[2][0]*x)+(M1.m[2][1]*y)+(M1.m[2][2]*z)+(M1.m[2][3]*w); - mResult.m[2][3] = (M1.m[3][0]*x)+(M1.m[3][1]*y)+(M1.m[3][2]*z)+(M1.m[3][3]*w); - x = M2.m[0][3]; - y = M2.m[1][3]; - z = M2.m[2][3]; - w = M2.m[3][3]; - mResult.m[3][0] = (M1.m[0][0]*x)+(M1.m[0][1]*y)+(M1.m[0][2]*z)+(M1.m[0][3]*w); - mResult.m[3][1] = (M1.m[1][0]*x)+(M1.m[1][1]*y)+(M1.m[1][2]*z)+(M1.m[1][3]*w); - mResult.m[3][2] = (M1.m[2][0]*x)+(M1.m[2][1]*y)+(M1.m[2][2]*z)+(M1.m[2][3]*w); - mResult.m[3][3] = (M1.m[3][0]*x)+(M1.m[3][1]*y)+(M1.m[3][2]*z)+(M1.m[3][3]*w); - return mResult; -#elif defined(_XM_SSE_INTRINSICS_) - XMMATRIX Product; - XMMATRIX Result; - Product = XMMatrixMultiply(M1, M2); - Result = XMMatrixTranspose(Product); - return Result; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMMATRIX XMMatrixTranspose -( - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMMATRIX P; - XMMATRIX MT; - - // Original matrix: - // - // m00m01m02m03 - // m10m11m12m13 - // m20m21m22m23 - // m30m31m32m33 - - P.r[0] = XMVectorMergeXY(M.r[0], M.r[2]); // m00m20m01m21 - P.r[1] = XMVectorMergeXY(M.r[1], M.r[3]); // m10m30m11m31 - P.r[2] = XMVectorMergeZW(M.r[0], M.r[2]); // m02m22m03m23 - P.r[3] = XMVectorMergeZW(M.r[1], M.r[3]); // m12m32m13m33 - - MT.r[0] = XMVectorMergeXY(P.r[0], P.r[1]); // m00m10m20m30 - MT.r[1] = XMVectorMergeZW(P.r[0], P.r[1]); // m01m11m21m31 - MT.r[2] = XMVectorMergeXY(P.r[2], P.r[3]); // m02m12m22m32 - MT.r[3] = XMVectorMergeZW(P.r[2], P.r[3]); // m03m13m23m33 - - return MT; - -#elif defined(_XM_SSE_INTRINSICS_) - // x.x,x.y,y.x,y.y - XMVECTOR vTemp1 = _mm_shuffle_ps(M.r[0],M.r[1],_MM_SHUFFLE(1,0,1,0)); - // x.z,x.w,y.z,y.w - XMVECTOR vTemp3 = _mm_shuffle_ps(M.r[0],M.r[1],_MM_SHUFFLE(3,2,3,2)); - // z.x,z.y,w.x,w.y - XMVECTOR vTemp2 = _mm_shuffle_ps(M.r[2],M.r[3],_MM_SHUFFLE(1,0,1,0)); - // z.z,z.w,w.z,w.w - XMVECTOR vTemp4 = _mm_shuffle_ps(M.r[2],M.r[3],_MM_SHUFFLE(3,2,3,2)); - XMMATRIX mResult; - - // x.x,y.x,z.x,w.x - mResult.r[0] = _mm_shuffle_ps(vTemp1, vTemp2,_MM_SHUFFLE(2,0,2,0)); - // x.y,y.y,z.y,w.y - mResult.r[1] = _mm_shuffle_ps(vTemp1, vTemp2,_MM_SHUFFLE(3,1,3,1)); - // x.z,y.z,z.z,w.z - mResult.r[2] = _mm_shuffle_ps(vTemp3, vTemp4,_MM_SHUFFLE(2,0,2,0)); - // x.w,y.w,z.w,w.w - mResult.r[3] = _mm_shuffle_ps(vTemp3, vTemp4,_MM_SHUFFLE(3,1,3,1)); - return mResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Return the inverse and the determinant of a 4x4 matrix -XMINLINE XMMATRIX XMMatrixInverse -( - XMVECTOR* pDeterminant, - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMMATRIX R; - XMMATRIX MT; - XMVECTOR D0, D1, D2; - XMVECTOR C0, C1, C2, C3, C4, C5, C6, C7; - XMVECTOR V0[4], V1[4]; - XMVECTOR Determinant; - XMVECTOR Reciprocal; - XMMATRIX Result; - static CONST XMVECTORU32 SwizzleXXYY = {XM_PERMUTE_0X, XM_PERMUTE_0X, XM_PERMUTE_0Y, XM_PERMUTE_0Y}; - static CONST XMVECTORU32 SwizzleZWZW = {XM_PERMUTE_0Z, XM_PERMUTE_0W, XM_PERMUTE_0Z, XM_PERMUTE_0W}; - static CONST XMVECTORU32 SwizzleYZXY = {XM_PERMUTE_0Y, XM_PERMUTE_0Z, XM_PERMUTE_0X, XM_PERMUTE_0Y}; - static CONST XMVECTORU32 SwizzleZWYZ = {XM_PERMUTE_0Z, XM_PERMUTE_0W, XM_PERMUTE_0Y, XM_PERMUTE_0Z}; - static CONST XMVECTORU32 SwizzleWXWX = {XM_PERMUTE_0W, XM_PERMUTE_0X, XM_PERMUTE_0W, XM_PERMUTE_0X}; - static CONST XMVECTORU32 SwizzleZXYX = {XM_PERMUTE_0Z, XM_PERMUTE_0X, XM_PERMUTE_0Y, XM_PERMUTE_0X}; - static CONST XMVECTORU32 SwizzleYWXZ = {XM_PERMUTE_0Y, XM_PERMUTE_0W, XM_PERMUTE_0X, XM_PERMUTE_0Z}; - static CONST XMVECTORU32 SwizzleWZWY = {XM_PERMUTE_0W, XM_PERMUTE_0Z, XM_PERMUTE_0W, XM_PERMUTE_0Y}; - static CONST XMVECTORU32 Permute0X0Z1X1Z = {XM_PERMUTE_0X, XM_PERMUTE_0Z, XM_PERMUTE_1X, XM_PERMUTE_1Z}; - static CONST XMVECTORU32 Permute0Y0W1Y1W = {XM_PERMUTE_0Y, XM_PERMUTE_0W, XM_PERMUTE_1Y, XM_PERMUTE_1W}; - static CONST XMVECTORU32 Permute1Y0Y0W0X = {XM_PERMUTE_1Y, XM_PERMUTE_0Y, XM_PERMUTE_0W, XM_PERMUTE_0X}; - static CONST XMVECTORU32 Permute0W0X0Y1X = {XM_PERMUTE_0W, XM_PERMUTE_0X, XM_PERMUTE_0Y, XM_PERMUTE_1X}; - static CONST XMVECTORU32 Permute0Z1Y1X0Z = {XM_PERMUTE_0Z, XM_PERMUTE_1Y, XM_PERMUTE_1X, XM_PERMUTE_0Z}; - static CONST XMVECTORU32 Permute0W1Y0Y0Z = {XM_PERMUTE_0W, XM_PERMUTE_1Y, XM_PERMUTE_0Y, XM_PERMUTE_0Z}; - static CONST XMVECTORU32 Permute0Z0Y1X0X = {XM_PERMUTE_0Z, XM_PERMUTE_0Y, XM_PERMUTE_1X, XM_PERMUTE_0X}; - static CONST XMVECTORU32 Permute1Y0X0W1X = {XM_PERMUTE_1Y, XM_PERMUTE_0X, XM_PERMUTE_0W, XM_PERMUTE_1X}; - static CONST XMVECTORU32 Permute1W0Y0W0X = {XM_PERMUTE_1W, XM_PERMUTE_0Y, XM_PERMUTE_0W, XM_PERMUTE_0X}; - static CONST XMVECTORU32 Permute0W0X0Y1Z = {XM_PERMUTE_0W, XM_PERMUTE_0X, XM_PERMUTE_0Y, XM_PERMUTE_1Z}; - static CONST XMVECTORU32 Permute0Z1W1Z0Z = {XM_PERMUTE_0Z, XM_PERMUTE_1W, XM_PERMUTE_1Z, XM_PERMUTE_0Z}; - static CONST XMVECTORU32 Permute0W1W0Y0Z = {XM_PERMUTE_0W, XM_PERMUTE_1W, XM_PERMUTE_0Y, XM_PERMUTE_0Z}; - static CONST XMVECTORU32 Permute0Z0Y1Z0X = {XM_PERMUTE_0Z, XM_PERMUTE_0Y, XM_PERMUTE_1Z, XM_PERMUTE_0X}; - static CONST XMVECTORU32 Permute1W0X0W1Z = {XM_PERMUTE_1W, XM_PERMUTE_0X, XM_PERMUTE_0W, XM_PERMUTE_1Z}; - - XMASSERT(pDeterminant); - - MT = XMMatrixTranspose(M); - - V0[0] = XMVectorPermute(MT.r[2], MT.r[2], SwizzleXXYY.v); - V1[0] = XMVectorPermute(MT.r[3], MT.r[3], SwizzleZWZW.v); - V0[1] = XMVectorPermute(MT.r[0], MT.r[0], SwizzleXXYY.v); - V1[1] = XMVectorPermute(MT.r[1], MT.r[1], SwizzleZWZW.v); - V0[2] = XMVectorPermute(MT.r[2], MT.r[0], Permute0X0Z1X1Z.v); - V1[2] = XMVectorPermute(MT.r[3], MT.r[1], Permute0Y0W1Y1W.v); - - D0 = XMVectorMultiply(V0[0], V1[0]); - D1 = XMVectorMultiply(V0[1], V1[1]); - D2 = XMVectorMultiply(V0[2], V1[2]); - - V0[0] = XMVectorPermute(MT.r[2], MT.r[2], SwizzleZWZW.v); - V1[0] = XMVectorPermute(MT.r[3], MT.r[3], SwizzleXXYY.v); - V0[1] = XMVectorPermute(MT.r[0], MT.r[0], SwizzleZWZW.v); - V1[1] = XMVectorPermute(MT.r[1], MT.r[1], SwizzleXXYY.v); - V0[2] = XMVectorPermute(MT.r[2], MT.r[0], Permute0Y0W1Y1W.v); - V1[2] = XMVectorPermute(MT.r[3], MT.r[1], Permute0X0Z1X1Z.v); - - D0 = XMVectorNegativeMultiplySubtract(V0[0], V1[0], D0); - D1 = XMVectorNegativeMultiplySubtract(V0[1], V1[1], D1); - D2 = XMVectorNegativeMultiplySubtract(V0[2], V1[2], D2); - - V0[0] = XMVectorPermute(MT.r[1], MT.r[1], SwizzleYZXY.v); - V1[0] = XMVectorPermute(D0, D2, Permute1Y0Y0W0X.v); - V0[1] = XMVectorPermute(MT.r[0], MT.r[0], SwizzleZXYX.v); - V1[1] = XMVectorPermute(D0, D2, Permute0W1Y0Y0Z.v); - V0[2] = XMVectorPermute(MT.r[3], MT.r[3], SwizzleYZXY.v); - V1[2] = XMVectorPermute(D1, D2, Permute1W0Y0W0X.v); - V0[3] = XMVectorPermute(MT.r[2], MT.r[2], SwizzleZXYX.v); - V1[3] = XMVectorPermute(D1, D2, Permute0W1W0Y0Z.v); - - C0 = XMVectorMultiply(V0[0], V1[0]); - C2 = XMVectorMultiply(V0[1], V1[1]); - C4 = XMVectorMultiply(V0[2], V1[2]); - C6 = XMVectorMultiply(V0[3], V1[3]); - - V0[0] = XMVectorPermute(MT.r[1], MT.r[1], SwizzleZWYZ.v); - V1[0] = XMVectorPermute(D0, D2, Permute0W0X0Y1X.v); - V0[1] = XMVectorPermute(MT.r[0], MT.r[0], SwizzleWZWY.v); - V1[1] = XMVectorPermute(D0, D2, Permute0Z0Y1X0X.v); - V0[2] = XMVectorPermute(MT.r[3], MT.r[3], SwizzleZWYZ.v); - V1[2] = XMVectorPermute(D1, D2, Permute0W0X0Y1Z.v); - V0[3] = XMVectorPermute(MT.r[2], MT.r[2], SwizzleWZWY.v); - V1[3] = XMVectorPermute(D1, D2, Permute0Z0Y1Z0X.v); - - C0 = XMVectorNegativeMultiplySubtract(V0[0], V1[0], C0); - C2 = XMVectorNegativeMultiplySubtract(V0[1], V1[1], C2); - C4 = XMVectorNegativeMultiplySubtract(V0[2], V1[2], C4); - C6 = XMVectorNegativeMultiplySubtract(V0[3], V1[3], C6); - - V0[0] = XMVectorPermute(MT.r[1], MT.r[1], SwizzleWXWX.v); - V1[0] = XMVectorPermute(D0, D2, Permute0Z1Y1X0Z.v); - V0[1] = XMVectorPermute(MT.r[0], MT.r[0], SwizzleYWXZ.v); - V1[1] = XMVectorPermute(D0, D2, Permute1Y0X0W1X.v); - V0[2] = XMVectorPermute(MT.r[3], MT.r[3], SwizzleWXWX.v); - V1[2] = XMVectorPermute(D1, D2, Permute0Z1W1Z0Z.v); - V0[3] = XMVectorPermute(MT.r[2], MT.r[2], SwizzleYWXZ.v); - V1[3] = XMVectorPermute(D1, D2, Permute1W0X0W1Z.v); - - C1 = XMVectorNegativeMultiplySubtract(V0[0], V1[0], C0); - C0 = XMVectorMultiplyAdd(V0[0], V1[0], C0); - C3 = XMVectorMultiplyAdd(V0[1], V1[1], C2); - C2 = XMVectorNegativeMultiplySubtract(V0[1], V1[1], C2); - C5 = XMVectorNegativeMultiplySubtract(V0[2], V1[2], C4); - C4 = XMVectorMultiplyAdd(V0[2], V1[2], C4); - C7 = XMVectorMultiplyAdd(V0[3], V1[3], C6); - C6 = XMVectorNegativeMultiplySubtract(V0[3], V1[3], C6); - - R.r[0] = XMVectorSelect(C0, C1, g_XMSelect0101.v); - R.r[1] = XMVectorSelect(C2, C3, g_XMSelect0101.v); - R.r[2] = XMVectorSelect(C4, C5, g_XMSelect0101.v); - R.r[3] = XMVectorSelect(C6, C7, g_XMSelect0101.v); - - Determinant = XMVector4Dot(R.r[0], MT.r[0]); - - *pDeterminant = Determinant; - - Reciprocal = XMVectorReciprocal(Determinant); - - Result.r[0] = XMVectorMultiply(R.r[0], Reciprocal); - Result.r[1] = XMVectorMultiply(R.r[1], Reciprocal); - Result.r[2] = XMVectorMultiply(R.r[2], Reciprocal); - Result.r[3] = XMVectorMultiply(R.r[3], Reciprocal); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pDeterminant); - XMMATRIX MT = XMMatrixTranspose(M); - XMVECTOR V00 = _mm_shuffle_ps(MT.r[2], MT.r[2],_MM_SHUFFLE(1,1,0,0)); - XMVECTOR V10 = _mm_shuffle_ps(MT.r[3], MT.r[3],_MM_SHUFFLE(3,2,3,2)); - XMVECTOR V01 = _mm_shuffle_ps(MT.r[0], MT.r[0],_MM_SHUFFLE(1,1,0,0)); - XMVECTOR V11 = _mm_shuffle_ps(MT.r[1], MT.r[1],_MM_SHUFFLE(3,2,3,2)); - XMVECTOR V02 = _mm_shuffle_ps(MT.r[2], MT.r[0],_MM_SHUFFLE(2,0,2,0)); - XMVECTOR V12 = _mm_shuffle_ps(MT.r[3], MT.r[1],_MM_SHUFFLE(3,1,3,1)); - - XMVECTOR D0 = _mm_mul_ps(V00,V10); - XMVECTOR D1 = _mm_mul_ps(V01,V11); - XMVECTOR D2 = _mm_mul_ps(V02,V12); - - V00 = _mm_shuffle_ps(MT.r[2],MT.r[2],_MM_SHUFFLE(3,2,3,2)); - V10 = _mm_shuffle_ps(MT.r[3],MT.r[3],_MM_SHUFFLE(1,1,0,0)); - V01 = _mm_shuffle_ps(MT.r[0],MT.r[0],_MM_SHUFFLE(3,2,3,2)); - V11 = _mm_shuffle_ps(MT.r[1],MT.r[1],_MM_SHUFFLE(1,1,0,0)); - V02 = _mm_shuffle_ps(MT.r[2],MT.r[0],_MM_SHUFFLE(3,1,3,1)); - V12 = _mm_shuffle_ps(MT.r[3],MT.r[1],_MM_SHUFFLE(2,0,2,0)); - - V00 = _mm_mul_ps(V00,V10); - V01 = _mm_mul_ps(V01,V11); - V02 = _mm_mul_ps(V02,V12); - D0 = _mm_sub_ps(D0,V00); - D1 = _mm_sub_ps(D1,V01); - D2 = _mm_sub_ps(D2,V02); - // V11 = D0Y,D0W,D2Y,D2Y - V11 = _mm_shuffle_ps(D0,D2,_MM_SHUFFLE(1,1,3,1)); - V00 = _mm_shuffle_ps(MT.r[1], MT.r[1],_MM_SHUFFLE(1,0,2,1)); - V10 = _mm_shuffle_ps(V11,D0,_MM_SHUFFLE(0,3,0,2)); - V01 = _mm_shuffle_ps(MT.r[0], MT.r[0],_MM_SHUFFLE(0,1,0,2)); - V11 = _mm_shuffle_ps(V11,D0,_MM_SHUFFLE(2,1,2,1)); - // V13 = D1Y,D1W,D2W,D2W - XMVECTOR V13 = _mm_shuffle_ps(D1,D2,_MM_SHUFFLE(3,3,3,1)); - V02 = _mm_shuffle_ps(MT.r[3], MT.r[3],_MM_SHUFFLE(1,0,2,1)); - V12 = _mm_shuffle_ps(V13,D1,_MM_SHUFFLE(0,3,0,2)); - XMVECTOR V03 = _mm_shuffle_ps(MT.r[2], MT.r[2],_MM_SHUFFLE(0,1,0,2)); - V13 = _mm_shuffle_ps(V13,D1,_MM_SHUFFLE(2,1,2,1)); - - XMVECTOR C0 = _mm_mul_ps(V00,V10); - XMVECTOR C2 = _mm_mul_ps(V01,V11); - XMVECTOR C4 = _mm_mul_ps(V02,V12); - XMVECTOR C6 = _mm_mul_ps(V03,V13); - - // V11 = D0X,D0Y,D2X,D2X - V11 = _mm_shuffle_ps(D0,D2,_MM_SHUFFLE(0,0,1,0)); - V00 = _mm_shuffle_ps(MT.r[1], MT.r[1],_MM_SHUFFLE(2,1,3,2)); - V10 = _mm_shuffle_ps(D0,V11,_MM_SHUFFLE(2,1,0,3)); - V01 = _mm_shuffle_ps(MT.r[0], MT.r[0],_MM_SHUFFLE(1,3,2,3)); - V11 = _mm_shuffle_ps(D0,V11,_MM_SHUFFLE(0,2,1,2)); - // V13 = D1X,D1Y,D2Z,D2Z - V13 = _mm_shuffle_ps(D1,D2,_MM_SHUFFLE(2,2,1,0)); - V02 = _mm_shuffle_ps(MT.r[3], MT.r[3],_MM_SHUFFLE(2,1,3,2)); - V12 = _mm_shuffle_ps(D1,V13,_MM_SHUFFLE(2,1,0,3)); - V03 = _mm_shuffle_ps(MT.r[2], MT.r[2],_MM_SHUFFLE(1,3,2,3)); - V13 = _mm_shuffle_ps(D1,V13,_MM_SHUFFLE(0,2,1,2)); - - V00 = _mm_mul_ps(V00,V10); - V01 = _mm_mul_ps(V01,V11); - V02 = _mm_mul_ps(V02,V12); - V03 = _mm_mul_ps(V03,V13); - C0 = _mm_sub_ps(C0,V00); - C2 = _mm_sub_ps(C2,V01); - C4 = _mm_sub_ps(C4,V02); - C6 = _mm_sub_ps(C6,V03); - - V00 = _mm_shuffle_ps(MT.r[1],MT.r[1],_MM_SHUFFLE(0,3,0,3)); - // V10 = D0Z,D0Z,D2X,D2Y - V10 = _mm_shuffle_ps(D0,D2,_MM_SHUFFLE(1,0,2,2)); - V10 = _mm_shuffle_ps(V10,V10,_MM_SHUFFLE(0,2,3,0)); - V01 = _mm_shuffle_ps(MT.r[0],MT.r[0],_MM_SHUFFLE(2,0,3,1)); - // V11 = D0X,D0W,D2X,D2Y - V11 = _mm_shuffle_ps(D0,D2,_MM_SHUFFLE(1,0,3,0)); - V11 = _mm_shuffle_ps(V11,V11,_MM_SHUFFLE(2,1,0,3)); - V02 = _mm_shuffle_ps(MT.r[3],MT.r[3],_MM_SHUFFLE(0,3,0,3)); - // V12 = D1Z,D1Z,D2Z,D2W - V12 = _mm_shuffle_ps(D1,D2,_MM_SHUFFLE(3,2,2,2)); - V12 = _mm_shuffle_ps(V12,V12,_MM_SHUFFLE(0,2,3,0)); - V03 = _mm_shuffle_ps(MT.r[2],MT.r[2],_MM_SHUFFLE(2,0,3,1)); - // V13 = D1X,D1W,D2Z,D2W - V13 = _mm_shuffle_ps(D1,D2,_MM_SHUFFLE(3,2,3,0)); - V13 = _mm_shuffle_ps(V13,V13,_MM_SHUFFLE(2,1,0,3)); - - V00 = _mm_mul_ps(V00,V10); - V01 = _mm_mul_ps(V01,V11); - V02 = _mm_mul_ps(V02,V12); - V03 = _mm_mul_ps(V03,V13); - XMVECTOR C1 = _mm_sub_ps(C0,V00); - C0 = _mm_add_ps(C0,V00); - XMVECTOR C3 = _mm_add_ps(C2,V01); - C2 = _mm_sub_ps(C2,V01); - XMVECTOR C5 = _mm_sub_ps(C4,V02); - C4 = _mm_add_ps(C4,V02); - XMVECTOR C7 = _mm_add_ps(C6,V03); - C6 = _mm_sub_ps(C6,V03); - - C0 = _mm_shuffle_ps(C0,C1,_MM_SHUFFLE(3,1,2,0)); - C2 = _mm_shuffle_ps(C2,C3,_MM_SHUFFLE(3,1,2,0)); - C4 = _mm_shuffle_ps(C4,C5,_MM_SHUFFLE(3,1,2,0)); - C6 = _mm_shuffle_ps(C6,C7,_MM_SHUFFLE(3,1,2,0)); - C0 = _mm_shuffle_ps(C0,C0,_MM_SHUFFLE(3,1,2,0)); - C2 = _mm_shuffle_ps(C2,C2,_MM_SHUFFLE(3,1,2,0)); - C4 = _mm_shuffle_ps(C4,C4,_MM_SHUFFLE(3,1,2,0)); - C6 = _mm_shuffle_ps(C6,C6,_MM_SHUFFLE(3,1,2,0)); - // Get the determinate - XMVECTOR vTemp = XMVector4Dot(C0,MT.r[0]); - *pDeterminant = vTemp; - vTemp = _mm_div_ps(g_XMOne,vTemp); - XMMATRIX mResult; - mResult.r[0] = _mm_mul_ps(C0,vTemp); - mResult.r[1] = _mm_mul_ps(C2,vTemp); - mResult.r[2] = _mm_mul_ps(C4,vTemp); - mResult.r[3] = _mm_mul_ps(C6,vTemp); - return mResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMVECTOR XMMatrixDeterminant -( - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V0, V1, V2, V3, V4, V5; - XMVECTOR P0, P1, P2, R, S; - XMVECTOR Result; - static CONST XMVECTORU32 SwizzleYXXX = {XM_PERMUTE_0Y, XM_PERMUTE_0X, XM_PERMUTE_0X, XM_PERMUTE_0X}; - static CONST XMVECTORU32 SwizzleZZYY = {XM_PERMUTE_0Z, XM_PERMUTE_0Z, XM_PERMUTE_0Y, XM_PERMUTE_0Y}; - static CONST XMVECTORU32 SwizzleWWWZ = {XM_PERMUTE_0W, XM_PERMUTE_0W, XM_PERMUTE_0W, XM_PERMUTE_0Z}; - static CONST XMVECTOR Sign = {1.0f, -1.0f, 1.0f, -1.0f}; - - V0 = XMVectorPermute(M.r[2], M.r[2], SwizzleYXXX.v); - V1 = XMVectorPermute(M.r[3], M.r[3], SwizzleZZYY.v); - V2 = XMVectorPermute(M.r[2], M.r[2], SwizzleYXXX.v); - V3 = XMVectorPermute(M.r[3], M.r[3], SwizzleWWWZ.v); - V4 = XMVectorPermute(M.r[2], M.r[2], SwizzleZZYY.v); - V5 = XMVectorPermute(M.r[3], M.r[3], SwizzleWWWZ.v); - - P0 = XMVectorMultiply(V0, V1); - P1 = XMVectorMultiply(V2, V3); - P2 = XMVectorMultiply(V4, V5); - - V0 = XMVectorPermute(M.r[2], M.r[2], SwizzleZZYY.v); - V1 = XMVectorPermute(M.r[3], M.r[3], SwizzleYXXX.v); - V2 = XMVectorPermute(M.r[2], M.r[2], SwizzleWWWZ.v); - V3 = XMVectorPermute(M.r[3], M.r[3], SwizzleYXXX.v); - V4 = XMVectorPermute(M.r[2], M.r[2], SwizzleWWWZ.v); - V5 = XMVectorPermute(M.r[3], M.r[3], SwizzleZZYY.v); - - P0 = XMVectorNegativeMultiplySubtract(V0, V1, P0); - P1 = XMVectorNegativeMultiplySubtract(V2, V3, P1); - P2 = XMVectorNegativeMultiplySubtract(V4, V5, P2); - - V0 = XMVectorPermute(M.r[1], M.r[1], SwizzleWWWZ.v); - V1 = XMVectorPermute(M.r[1], M.r[1], SwizzleZZYY.v); - V2 = XMVectorPermute(M.r[1], M.r[1], SwizzleYXXX.v); - - S = XMVectorMultiply(M.r[0], Sign); - R = XMVectorMultiply(V0, P0); - R = XMVectorNegativeMultiplySubtract(V1, P1, R); - R = XMVectorMultiplyAdd(V2, P2, R); - - Result = XMVector4Dot(S, R); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR V0, V1, V2, V3, V4, V5; - XMVECTOR P0, P1, P2, R, S; - XMVECTOR Result; - static CONST XMVECTORU32 SwizzleYXXX = {XM_PERMUTE_0Y, XM_PERMUTE_0X, XM_PERMUTE_0X, XM_PERMUTE_0X}; - static CONST XMVECTORU32 SwizzleZZYY = {XM_PERMUTE_0Z, XM_PERMUTE_0Z, XM_PERMUTE_0Y, XM_PERMUTE_0Y}; - static CONST XMVECTORU32 SwizzleWWWZ = {XM_PERMUTE_0W, XM_PERMUTE_0W, XM_PERMUTE_0W, XM_PERMUTE_0Z}; - static CONST XMVECTORF32 Sign = {1.0f, -1.0f, 1.0f, -1.0f}; - - V0 = XMVectorPermute(M.r[2], M.r[2], SwizzleYXXX); - V1 = XMVectorPermute(M.r[3], M.r[3], SwizzleZZYY); - V2 = XMVectorPermute(M.r[2], M.r[2], SwizzleYXXX); - V3 = XMVectorPermute(M.r[3], M.r[3], SwizzleWWWZ); - V4 = XMVectorPermute(M.r[2], M.r[2], SwizzleZZYY); - V5 = XMVectorPermute(M.r[3], M.r[3], SwizzleWWWZ); - - P0 = _mm_mul_ps(V0, V1); - P1 = _mm_mul_ps(V2, V3); - P2 = _mm_mul_ps(V4, V5); - - V0 = XMVectorPermute(M.r[2], M.r[2], SwizzleZZYY); - V1 = XMVectorPermute(M.r[3], M.r[3], SwizzleYXXX); - V2 = XMVectorPermute(M.r[2], M.r[2], SwizzleWWWZ); - V3 = XMVectorPermute(M.r[3], M.r[3], SwizzleYXXX); - V4 = XMVectorPermute(M.r[2], M.r[2], SwizzleWWWZ); - V5 = XMVectorPermute(M.r[3], M.r[3], SwizzleZZYY); - - P0 = XMVectorNegativeMultiplySubtract(V0, V1, P0); - P1 = XMVectorNegativeMultiplySubtract(V2, V3, P1); - P2 = XMVectorNegativeMultiplySubtract(V4, V5, P2); - - V0 = XMVectorPermute(M.r[1], M.r[1], SwizzleWWWZ); - V1 = XMVectorPermute(M.r[1], M.r[1], SwizzleZZYY); - V2 = XMVectorPermute(M.r[1], M.r[1], SwizzleYXXX); - - S = _mm_mul_ps(M.r[0], Sign); - R = _mm_mul_ps(V0, P0); - R = XMVectorNegativeMultiplySubtract(V1, P1, R); - R = XMVectorMultiplyAdd(V2, P2, R); - - Result = XMVector4Dot(S, R); - - return Result; - -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -#define XMRANKDECOMPOSE(a, b, c, x, y, z) \ - if((x) < (y)) \ - { \ - if((y) < (z)) \ - { \ - (a) = 2; \ - (b) = 1; \ - (c) = 0; \ - } \ - else \ - { \ - (a) = 1; \ - \ - if((x) < (z)) \ - { \ - (b) = 2; \ - (c) = 0; \ - } \ - else \ - { \ - (b) = 0; \ - (c) = 2; \ - } \ - } \ - } \ - else \ - { \ - if((x) < (z)) \ - { \ - (a) = 2; \ - (b) = 0; \ - (c) = 1; \ - } \ - else \ - { \ - (a) = 0; \ - \ - if((y) < (z)) \ - { \ - (b) = 2; \ - (c) = 1; \ - } \ - else \ - { \ - (b) = 1; \ - (c) = 2; \ - } \ - } \ - } - -#define XM_DECOMP_EPSILON 0.0001f - -XMINLINE BOOL XMMatrixDecompose( XMVECTOR *outScale, XMVECTOR *outRotQuat, XMVECTOR *outTrans, CXMMATRIX M ) -{ - FLOAT fDet; - FLOAT *pfScales; - XMVECTOR *ppvBasis[3]; - XMMATRIX matTemp; - UINT a, b, c; - static const XMVECTOR *pvCanonicalBasis[3] = { - &g_XMIdentityR0.v, - &g_XMIdentityR1.v, - &g_XMIdentityR2.v - }; - - // Get the translation - outTrans[0] = M.r[3]; - - ppvBasis[0] = &matTemp.r[0]; - ppvBasis[1] = &matTemp.r[1]; - ppvBasis[2] = &matTemp.r[2]; - - matTemp.r[0] = M.r[0]; - matTemp.r[1] = M.r[1]; - matTemp.r[2] = M.r[2]; - matTemp.r[3] = g_XMIdentityR3.v; - - pfScales = (FLOAT *)outScale; - - XMVectorGetXPtr(&pfScales[0],XMVector3Length(ppvBasis[0][0])); - XMVectorGetXPtr(&pfScales[1],XMVector3Length(ppvBasis[1][0])); - XMVectorGetXPtr(&pfScales[2],XMVector3Length(ppvBasis[2][0])); - - XMRANKDECOMPOSE(a, b, c, pfScales[0], pfScales[1], pfScales[2]) - - if(pfScales[a] < XM_DECOMP_EPSILON) - { - ppvBasis[a][0] = pvCanonicalBasis[a][0]; - } - ppvBasis[a][0] = XMVector3Normalize(ppvBasis[a][0]); - - if(pfScales[b] < XM_DECOMP_EPSILON) - { - UINT aa, bb, cc; - FLOAT fAbsX, fAbsY, fAbsZ; - - fAbsX = fabsf(XMVectorGetX(ppvBasis[a][0])); - fAbsY = fabsf(XMVectorGetY(ppvBasis[a][0])); - fAbsZ = fabsf(XMVectorGetZ(ppvBasis[a][0])); - - XMRANKDECOMPOSE(aa, bb, cc, fAbsX, fAbsY, fAbsZ) - - ppvBasis[b][0] = XMVector3Cross(ppvBasis[a][0],pvCanonicalBasis[cc][0]); - } - - ppvBasis[b][0] = XMVector3Normalize(ppvBasis[b][0]); - - if(pfScales[c] < XM_DECOMP_EPSILON) - { - ppvBasis[c][0] = XMVector3Cross(ppvBasis[a][0],ppvBasis[b][0]); - } - - ppvBasis[c][0] = XMVector3Normalize(ppvBasis[c][0]); - - fDet = XMVectorGetX(XMMatrixDeterminant(matTemp)); - - // use Kramer's rule to check for handedness of coordinate system - if(fDet < 0.0f) - { - // switch coordinate system by negating the scale and inverting the basis vector on the x-axis - pfScales[a] = -pfScales[a]; - ppvBasis[a][0] = XMVectorNegate(ppvBasis[a][0]); - - fDet = -fDet; - } - - fDet -= 1.0f; - fDet *= fDet; - - if(XM_DECOMP_EPSILON < fDet) - { -// Non-SRT matrix encountered - return FALSE; - } - - // generate the quaternion from the matrix - outRotQuat[0] = XMQuaternionRotationMatrix(matTemp); - return TRUE; -} - -//------------------------------------------------------------------------------ -// Transformation operations -//------------------------------------------------------------------------------ - -//------------------------------------------------------------------------------ - -XMFINLINE XMMATRIX XMMatrixIdentity() -{ -#if defined(_XM_NO_INTRINSICS_) - - XMMATRIX M; - M.r[0] = g_XMIdentityR0.v; - M.r[1] = g_XMIdentityR1.v; - M.r[2] = g_XMIdentityR2.v; - M.r[3] = g_XMIdentityR3.v; - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMMATRIX M; - M.r[0] = g_XMIdentityR0; - M.r[1] = g_XMIdentityR1; - M.r[2] = g_XMIdentityR2; - M.r[3] = g_XMIdentityR3; - return M; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMMATRIX XMMatrixSet -( - FLOAT m00, FLOAT m01, FLOAT m02, FLOAT m03, - FLOAT m10, FLOAT m11, FLOAT m12, FLOAT m13, - FLOAT m20, FLOAT m21, FLOAT m22, FLOAT m23, - FLOAT m30, FLOAT m31, FLOAT m32, FLOAT m33 -) -{ - XMMATRIX M; - - M.r[0] = XMVectorSet(m00, m01, m02, m03); - M.r[1] = XMVectorSet(m10, m11, m12, m13); - M.r[2] = XMVectorSet(m20, m21, m22, m23); - M.r[3] = XMVectorSet(m30, m31, m32, m33); - - return M; -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMMATRIX XMMatrixTranslation -( - FLOAT OffsetX, - FLOAT OffsetY, - FLOAT OffsetZ -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMMATRIX M; - - M.m[0][0] = 1.0f; - M.m[0][1] = 0.0f; - M.m[0][2] = 0.0f; - M.m[0][3] = 0.0f; - - M.m[1][0] = 0.0f; - M.m[1][1] = 1.0f; - M.m[1][2] = 0.0f; - M.m[1][3] = 0.0f; - - M.m[2][0] = 0.0f; - M.m[2][1] = 0.0f; - M.m[2][2] = 1.0f; - M.m[2][3] = 0.0f; - - M.m[3][0] = OffsetX; - M.m[3][1] = OffsetY; - M.m[3][2] = OffsetZ; - M.m[3][3] = 1.0f; - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMMATRIX M; - M.r[0] = g_XMIdentityR0; - M.r[1] = g_XMIdentityR1; - M.r[2] = g_XMIdentityR2; - M.r[3] = _mm_set_ps(1.0f,OffsetZ,OffsetY,OffsetX); - return M; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - - -//------------------------------------------------------------------------------ - -XMFINLINE XMMATRIX XMMatrixTranslationFromVector -( - FXMVECTOR Offset -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMMATRIX M; - M.m[0][0] = 1.0f; - M.m[0][1] = 0.0f; - M.m[0][2] = 0.0f; - M.m[0][3] = 0.0f; - - M.m[1][0] = 0.0f; - M.m[1][1] = 1.0f; - M.m[1][2] = 0.0f; - M.m[1][3] = 0.0f; - - M.m[2][0] = 0.0f; - M.m[2][1] = 0.0f; - M.m[2][2] = 1.0f; - M.m[2][3] = 0.0f; - - M.m[3][0] = Offset.vector4_f32[0]; - M.m[3][1] = Offset.vector4_f32[1]; - M.m[3][2] = Offset.vector4_f32[2]; - M.m[3][3] = 1.0f; - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp = _mm_and_ps(Offset,g_XMMask3); - vTemp = _mm_or_ps(vTemp,g_XMIdentityR3); - XMMATRIX M; - M.r[0] = g_XMIdentityR0; - M.r[1] = g_XMIdentityR1; - M.r[2] = g_XMIdentityR2; - M.r[3] = vTemp; - return M; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMMATRIX XMMatrixScaling -( - FLOAT ScaleX, - FLOAT ScaleY, - FLOAT ScaleZ -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMMATRIX M; - - M.r[0] = XMVectorSet(ScaleX, 0.0f, 0.0f, 0.0f); - M.r[1] = XMVectorSet(0.0f, ScaleY, 0.0f, 0.0f); - M.r[2] = XMVectorSet(0.0f, 0.0f, ScaleZ, 0.0f); - - M.r[3] = g_XMIdentityR3.v; - - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMMATRIX M; - M.r[0] = _mm_set_ps( 0, 0, 0, ScaleX ); - M.r[1] = _mm_set_ps( 0, 0, ScaleY, 0 ); - M.r[2] = _mm_set_ps( 0, ScaleZ, 0, 0 ); - M.r[3] = g_XMIdentityR3; - return M; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMMATRIX XMMatrixScalingFromVector -( - FXMVECTOR Scale -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMMATRIX M; - M.m[0][0] = Scale.vector4_f32[0]; - M.m[0][1] = 0.0f; - M.m[0][2] = 0.0f; - M.m[0][3] = 0.0f; - - M.m[1][0] = 0.0f; - M.m[1][1] = Scale.vector4_f32[1]; - M.m[1][2] = 0.0f; - M.m[1][3] = 0.0f; - - M.m[2][0] = 0.0f; - M.m[2][1] = 0.0f; - M.m[2][2] = Scale.vector4_f32[2]; - M.m[2][3] = 0.0f; - - M.m[3][0] = 0.0f; - M.m[3][1] = 0.0f; - M.m[3][2] = 0.0f; - M.m[3][3] = 1.0f; - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMMATRIX M; - M.r[0] = _mm_and_ps(Scale,g_XMMaskX); - M.r[1] = _mm_and_ps(Scale,g_XMMaskY); - M.r[2] = _mm_and_ps(Scale,g_XMMaskZ); - M.r[3] = g_XMIdentityR3; - return M; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMMATRIX XMMatrixRotationX -( - FLOAT Angle -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMMATRIX M; - - FLOAT fSinAngle = sinf(Angle); - FLOAT fCosAngle = cosf(Angle); - - M.m[0][0] = 1.0f; - M.m[0][1] = 0.0f; - M.m[0][2] = 0.0f; - M.m[0][3] = 0.0f; - - M.m[1][0] = 0.0f; - M.m[1][1] = fCosAngle; - M.m[1][2] = fSinAngle; - M.m[1][3] = 0.0f; - - M.m[2][0] = 0.0f; - M.m[2][1] = -fSinAngle; - M.m[2][2] = fCosAngle; - M.m[2][3] = 0.0f; - - M.m[3][0] = 0.0f; - M.m[3][1] = 0.0f; - M.m[3][2] = 0.0f; - M.m[3][3] = 1.0f; - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - FLOAT SinAngle = sinf(Angle); - FLOAT CosAngle = cosf(Angle); - - XMVECTOR vSin = _mm_set_ss(SinAngle); - XMVECTOR vCos = _mm_set_ss(CosAngle); - // x = 0,y = cos,z = sin, w = 0 - vCos = _mm_shuffle_ps(vCos,vSin,_MM_SHUFFLE(3,0,0,3)); - XMMATRIX M; - M.r[0] = g_XMIdentityR0; - M.r[1] = vCos; - // x = 0,y = sin,z = cos, w = 0 - vCos = _mm_shuffle_ps(vCos,vCos,_MM_SHUFFLE(3,1,2,0)); - // x = 0,y = -sin,z = cos, w = 0 - vCos = _mm_mul_ps(vCos,g_XMNegateY); - M.r[2] = vCos; - M.r[3] = g_XMIdentityR3; - return M; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMMATRIX XMMatrixRotationY -( - FLOAT Angle -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMMATRIX M; - - FLOAT fSinAngle = sinf(Angle); - FLOAT fCosAngle = cosf(Angle); - - M.m[0][0] = fCosAngle; - M.m[0][1] = 0.0f; - M.m[0][2] = -fSinAngle; - M.m[0][3] = 0.0f; - - M.m[1][0] = 0.0f; - M.m[1][1] = 1.0f; - M.m[1][2] = 0.0f; - M.m[1][3] = 0.0f; - - M.m[2][0] = fSinAngle; - M.m[2][1] = 0.0f; - M.m[2][2] = fCosAngle; - M.m[2][3] = 0.0f; - - M.m[3][0] = 0.0f; - M.m[3][1] = 0.0f; - M.m[3][2] = 0.0f; - M.m[3][3] = 1.0f; - return M; -#elif defined(_XM_SSE_INTRINSICS_) - FLOAT SinAngle = sinf(Angle); - FLOAT CosAngle = cosf(Angle); - - XMVECTOR vSin = _mm_set_ss(SinAngle); - XMVECTOR vCos = _mm_set_ss(CosAngle); - // x = sin,y = 0,z = cos, w = 0 - vSin = _mm_shuffle_ps(vSin,vCos,_MM_SHUFFLE(3,0,3,0)); - XMMATRIX M; - M.r[2] = vSin; - M.r[1] = g_XMIdentityR1; - // x = cos,y = 0,z = sin, w = 0 - vSin = _mm_shuffle_ps(vSin,vSin,_MM_SHUFFLE(3,0,1,2)); - // x = cos,y = 0,z = -sin, w = 0 - vSin = _mm_mul_ps(vSin,g_XMNegateZ); - M.r[0] = vSin; - M.r[3] = g_XMIdentityR3; - return M; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMMATRIX XMMatrixRotationZ -( - FLOAT Angle -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMMATRIX M; - - FLOAT fSinAngle = sinf(Angle); - FLOAT fCosAngle = cosf(Angle); - - M.m[0][0] = fCosAngle; - M.m[0][1] = fSinAngle; - M.m[0][2] = 0.0f; - M.m[0][3] = 0.0f; - - M.m[1][0] = -fSinAngle; - M.m[1][1] = fCosAngle; - M.m[1][2] = 0.0f; - M.m[1][3] = 0.0f; - - M.m[2][0] = 0.0f; - M.m[2][1] = 0.0f; - M.m[2][2] = 1.0f; - M.m[2][3] = 0.0f; - - M.m[3][0] = 0.0f; - M.m[3][1] = 0.0f; - M.m[3][2] = 0.0f; - M.m[3][3] = 1.0f; - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - FLOAT SinAngle = sinf(Angle); - FLOAT CosAngle = cosf(Angle); - - XMVECTOR vSin = _mm_set_ss(SinAngle); - XMVECTOR vCos = _mm_set_ss(CosAngle); - // x = cos,y = sin,z = 0, w = 0 - vCos = _mm_unpacklo_ps(vCos,vSin); - XMMATRIX M; - M.r[0] = vCos; - // x = sin,y = cos,z = 0, w = 0 - vCos = _mm_shuffle_ps(vCos,vCos,_MM_SHUFFLE(3,2,0,1)); - // x = cos,y = -sin,z = 0, w = 0 - vCos = _mm_mul_ps(vCos,g_XMNegateX); - M.r[1] = vCos; - M.r[2] = g_XMIdentityR2; - M.r[3] = g_XMIdentityR3; - return M; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMMATRIX XMMatrixRotationRollPitchYaw -( - FLOAT Pitch, - FLOAT Yaw, - FLOAT Roll -) -{ - XMVECTOR Angles; - XMMATRIX M; - - Angles = XMVectorSet(Pitch, Yaw, Roll, 0.0f); - M = XMMatrixRotationRollPitchYawFromVector(Angles); - - return M; -} - -//------------------------------------------------------------------------------ - -XMINLINE XMMATRIX XMMatrixRotationRollPitchYawFromVector -( - FXMVECTOR Angles // -) -{ - XMVECTOR Q; - XMMATRIX M; - - Q = XMQuaternionRotationRollPitchYawFromVector(Angles); - M = XMMatrixRotationQuaternion(Q); - - return M; -} - -//------------------------------------------------------------------------------ - -XMINLINE XMMATRIX XMMatrixRotationNormal -( - FXMVECTOR NormalAxis, - FLOAT Angle -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR A; - XMVECTOR N0, N1; - XMVECTOR V0, V1, V2; - XMVECTOR R0, R1, R2; - XMVECTOR C0, C1, C2; - XMMATRIX M; - static CONST XMVECTORU32 SwizzleYZXW = {XM_PERMUTE_0Y, XM_PERMUTE_0Z, XM_PERMUTE_0X, XM_PERMUTE_0W}; - static CONST XMVECTORU32 SwizzleZXYW = {XM_PERMUTE_0Z, XM_PERMUTE_0X, XM_PERMUTE_0Y, XM_PERMUTE_0W}; - static CONST XMVECTORU32 Permute0Z1Y1Z0X = {XM_PERMUTE_0Z, XM_PERMUTE_1Y, XM_PERMUTE_1Z, XM_PERMUTE_0X}; - static CONST XMVECTORU32 Permute0Y1X0Y1X = {XM_PERMUTE_0Y, XM_PERMUTE_1X, XM_PERMUTE_0Y, XM_PERMUTE_1X}; - static CONST XMVECTORU32 Permute0X1X1Y0W = {XM_PERMUTE_0X, XM_PERMUTE_1X, XM_PERMUTE_1Y, XM_PERMUTE_0W}; - static CONST XMVECTORU32 Permute1Z0Y1W0W = {XM_PERMUTE_1Z, XM_PERMUTE_0Y, XM_PERMUTE_1W, XM_PERMUTE_0W}; - static CONST XMVECTORU32 Permute1X1Y0Z0W = {XM_PERMUTE_1X, XM_PERMUTE_1Y, XM_PERMUTE_0Z, XM_PERMUTE_0W}; - - FLOAT fSinAngle = sinf(Angle); - FLOAT fCosAngle = cosf(Angle); - - A = XMVectorSet(fSinAngle, fCosAngle, 1.0f - fCosAngle, 0.0f); - - C2 = XMVectorSplatZ(A); - C1 = XMVectorSplatY(A); - C0 = XMVectorSplatX(A); - - N0 = XMVectorPermute(NormalAxis, NormalAxis, SwizzleYZXW.v); - N1 = XMVectorPermute(NormalAxis, NormalAxis, SwizzleZXYW.v); - - V0 = XMVectorMultiply(C2, N0); - V0 = XMVectorMultiply(V0, N1); - - R0 = XMVectorMultiply(C2, NormalAxis); - R0 = XMVectorMultiplyAdd(R0, NormalAxis, C1); - - R1 = XMVectorMultiplyAdd(C0, NormalAxis, V0); - R2 = XMVectorNegativeMultiplySubtract(C0, NormalAxis, V0); - - V0 = XMVectorSelect(A, R0, g_XMSelect1110.v); - V1 = XMVectorPermute(R1, R2, Permute0Z1Y1Z0X.v); - V2 = XMVectorPermute(R1, R2, Permute0Y1X0Y1X.v); - - M.r[0] = XMVectorPermute(V0, V1, Permute0X1X1Y0W.v); - M.r[1] = XMVectorPermute(V0, V1, Permute1Z0Y1W0W.v); - M.r[2] = XMVectorPermute(V0, V2, Permute1X1Y0Z0W.v); - M.r[3] = g_XMIdentityR3.v; - - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR N0, N1; - XMVECTOR V0, V1, V2; - XMVECTOR R0, R1, R2; - XMVECTOR C0, C1, C2; - XMMATRIX M; - - FLOAT fSinAngle = sinf(Angle); - FLOAT fCosAngle = cosf(Angle); - - C2 = _mm_set_ps1(1.0f - fCosAngle); - C1 = _mm_set_ps1(fCosAngle); - C0 = _mm_set_ps1(fSinAngle); - - N0 = _mm_shuffle_ps(NormalAxis,NormalAxis,_MM_SHUFFLE(3,0,2,1)); -// N0 = XMVectorPermute(NormalAxis, NormalAxis, SwizzleYZXW); - N1 = _mm_shuffle_ps(NormalAxis,NormalAxis,_MM_SHUFFLE(3,1,0,2)); -// N1 = XMVectorPermute(NormalAxis, NormalAxis, SwizzleZXYW); - - V0 = _mm_mul_ps(C2, N0); - V0 = _mm_mul_ps(V0, N1); - - R0 = _mm_mul_ps(C2, NormalAxis); - R0 = _mm_mul_ps(R0, NormalAxis); - R0 = _mm_add_ps(R0, C1); - - R1 = _mm_mul_ps(C0, NormalAxis); - R1 = _mm_add_ps(R1, V0); - R2 = _mm_mul_ps(C0, NormalAxis); - R2 = _mm_sub_ps(V0,R2); - - V0 = _mm_and_ps(R0,g_XMMask3); -// V0 = XMVectorSelect(A, R0, g_XMSelect1110); - V1 = _mm_shuffle_ps(R1,R2,_MM_SHUFFLE(2,1,2,0)); - V1 = _mm_shuffle_ps(V1,V1,_MM_SHUFFLE(0,3,2,1)); -// V1 = XMVectorPermute(R1, R2, Permute0Z1Y1Z0X); - V2 = _mm_shuffle_ps(R1,R2,_MM_SHUFFLE(0,0,1,1)); - V2 = _mm_shuffle_ps(V2,V2,_MM_SHUFFLE(2,0,2,0)); -// V2 = XMVectorPermute(R1, R2, Permute0Y1X0Y1X); - - R2 = _mm_shuffle_ps(V0,V1,_MM_SHUFFLE(1,0,3,0)); - R2 = _mm_shuffle_ps(R2,R2,_MM_SHUFFLE(1,3,2,0)); - M.r[0] = R2; -// M.r[0] = XMVectorPermute(V0, V1, Permute0X1X1Y0W); - R2 = _mm_shuffle_ps(V0,V1,_MM_SHUFFLE(3,2,3,1)); - R2 = _mm_shuffle_ps(R2,R2,_MM_SHUFFLE(1,3,0,2)); - M.r[1] = R2; -// M.r[1] = XMVectorPermute(V0, V1, Permute1Z0Y1W0W); - V2 = _mm_shuffle_ps(V2,V0,_MM_SHUFFLE(3,2,1,0)); -// R2 = _mm_shuffle_ps(R2,R2,_MM_SHUFFLE(3,2,1,0)); - M.r[2] = V2; -// M.r[2] = XMVectorPermute(V0, V2, Permute1X1Y0Z0W); - M.r[3] = g_XMIdentityR3; - return M; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMMATRIX XMMatrixRotationAxis -( - FXMVECTOR Axis, - FLOAT Angle -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Normal; - XMMATRIX M; - - XMASSERT(!XMVector3Equal(Axis, XMVectorZero())); - XMASSERT(!XMVector3IsInfinite(Axis)); - - Normal = XMVector3Normalize(Axis); - M = XMMatrixRotationNormal(Normal, Angle); - - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(!XMVector3Equal(Axis, XMVectorZero())); - XMASSERT(!XMVector3IsInfinite(Axis)); - XMVECTOR Normal = XMVector3Normalize(Axis); - XMMATRIX M = XMMatrixRotationNormal(Normal, Angle); - return M; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMMATRIX XMMatrixRotationQuaternion -( - FXMVECTOR Quaternion -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMMATRIX M; - XMVECTOR Q0, Q1; - XMVECTOR V0, V1, V2; - XMVECTOR R0, R1, R2; - static CONST XMVECTOR Constant1110 = {1.0f, 1.0f, 1.0f, 0.0f}; - static CONST XMVECTORU32 SwizzleXXYW = {XM_PERMUTE_0X, XM_PERMUTE_0X, XM_PERMUTE_0Y, XM_PERMUTE_0W}; - static CONST XMVECTORU32 SwizzleZYZW = {XM_PERMUTE_0Z, XM_PERMUTE_0Y, XM_PERMUTE_0Z, XM_PERMUTE_0W}; - static CONST XMVECTORU32 SwizzleYZXW = {XM_PERMUTE_0Y, XM_PERMUTE_0Z, XM_PERMUTE_0X, XM_PERMUTE_0W}; - static CONST XMVECTORU32 Permute0Y0X0X1W = {XM_PERMUTE_0Y, XM_PERMUTE_0X, XM_PERMUTE_0X, XM_PERMUTE_1W}; - static CONST XMVECTORU32 Permute0Z0Z0Y1W = {XM_PERMUTE_0Z, XM_PERMUTE_0Z, XM_PERMUTE_0Y, XM_PERMUTE_1W}; - static CONST XMVECTORU32 Permute0Y1X1Y0Z = {XM_PERMUTE_0Y, XM_PERMUTE_1X, XM_PERMUTE_1Y, XM_PERMUTE_0Z}; - static CONST XMVECTORU32 Permute0X1Z0X1Z = {XM_PERMUTE_0X, XM_PERMUTE_1Z, XM_PERMUTE_0X, XM_PERMUTE_1Z}; - static CONST XMVECTORU32 Permute0X1X1Y0W = {XM_PERMUTE_0X, XM_PERMUTE_1X, XM_PERMUTE_1Y, XM_PERMUTE_0W}; - static CONST XMVECTORU32 Permute1Z0Y1W0W = {XM_PERMUTE_1Z, XM_PERMUTE_0Y, XM_PERMUTE_1W, XM_PERMUTE_0W}; - static CONST XMVECTORU32 Permute1X1Y0Z0W = {XM_PERMUTE_1X, XM_PERMUTE_1Y, XM_PERMUTE_0Z, XM_PERMUTE_0W}; - - Q0 = XMVectorAdd(Quaternion, Quaternion); - Q1 = XMVectorMultiply(Quaternion, Q0); - - V0 = XMVectorPermute(Q1, Constant1110, Permute0Y0X0X1W.v); - V1 = XMVectorPermute(Q1, Constant1110, Permute0Z0Z0Y1W.v); - R0 = XMVectorSubtract(Constant1110, V0); - R0 = XMVectorSubtract(R0, V1); - - V0 = XMVectorPermute(Quaternion, Quaternion, SwizzleXXYW.v); - V1 = XMVectorPermute(Q0, Q0, SwizzleZYZW.v); - V0 = XMVectorMultiply(V0, V1); - - V1 = XMVectorSplatW(Quaternion); - V2 = XMVectorPermute(Q0, Q0, SwizzleYZXW.v); - V1 = XMVectorMultiply(V1, V2); - - R1 = XMVectorAdd(V0, V1); - R2 = XMVectorSubtract(V0, V1); - - V0 = XMVectorPermute(R1, R2, Permute0Y1X1Y0Z.v); - V1 = XMVectorPermute(R1, R2, Permute0X1Z0X1Z.v); - - M.r[0] = XMVectorPermute(R0, V0, Permute0X1X1Y0W.v); - M.r[1] = XMVectorPermute(R0, V0, Permute1Z0Y1W0W.v); - M.r[2] = XMVectorPermute(R0, V1, Permute1X1Y0Z0W.v); - M.r[3] = g_XMIdentityR3.v; - - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMMATRIX M; - XMVECTOR Q0, Q1; - XMVECTOR V0, V1, V2; - XMVECTOR R0, R1, R2; - static CONST XMVECTORF32 Constant1110 = {1.0f, 1.0f, 1.0f, 0.0f}; - - Q0 = _mm_add_ps(Quaternion,Quaternion); - Q1 = _mm_mul_ps(Quaternion,Q0); - - V0 = _mm_shuffle_ps(Q1,Q1,_MM_SHUFFLE(3,0,0,1)); - V0 = _mm_and_ps(V0,g_XMMask3); -// V0 = XMVectorPermute(Q1, Constant1110,Permute0Y0X0X1W); - V1 = _mm_shuffle_ps(Q1,Q1,_MM_SHUFFLE(3,1,2,2)); - V1 = _mm_and_ps(V1,g_XMMask3); -// V1 = XMVectorPermute(Q1, Constant1110,Permute0Z0Z0Y1W); - R0 = _mm_sub_ps(Constant1110,V0); - R0 = _mm_sub_ps(R0, V1); - - V0 = _mm_shuffle_ps(Quaternion,Quaternion,_MM_SHUFFLE(3,1,0,0)); -// V0 = XMVectorPermute(Quaternion, Quaternion,SwizzleXXYW); - V1 = _mm_shuffle_ps(Q0,Q0,_MM_SHUFFLE(3,2,1,2)); -// V1 = XMVectorPermute(Q0, Q0,SwizzleZYZW); - V0 = _mm_mul_ps(V0, V1); - - V1 = _mm_shuffle_ps(Quaternion,Quaternion,_MM_SHUFFLE(3,3,3,3)); -// V1 = XMVectorSplatW(Quaternion); - V2 = _mm_shuffle_ps(Q0,Q0,_MM_SHUFFLE(3,0,2,1)); -// V2 = XMVectorPermute(Q0, Q0,SwizzleYZXW); - V1 = _mm_mul_ps(V1, V2); - - R1 = _mm_add_ps(V0, V1); - R2 = _mm_sub_ps(V0, V1); - - V0 = _mm_shuffle_ps(R1,R2,_MM_SHUFFLE(1,0,2,1)); - V0 = _mm_shuffle_ps(V0,V0,_MM_SHUFFLE(1,3,2,0)); -// V0 = XMVectorPermute(R1, R2,Permute0Y1X1Y0Z); - V1 = _mm_shuffle_ps(R1,R2,_MM_SHUFFLE(2,2,0,0)); - V1 = _mm_shuffle_ps(V1,V1,_MM_SHUFFLE(2,0,2,0)); -// V1 = XMVectorPermute(R1, R2,Permute0X1Z0X1Z); - - Q1 = _mm_shuffle_ps(R0,V0,_MM_SHUFFLE(1,0,3,0)); - Q1 = _mm_shuffle_ps(Q1,Q1,_MM_SHUFFLE(1,3,2,0)); - M.r[0] = Q1; -// M.r[0] = XMVectorPermute(R0, V0,Permute0X1X1Y0W); - Q1 = _mm_shuffle_ps(R0,V0,_MM_SHUFFLE(3,2,3,1)); - Q1 = _mm_shuffle_ps(Q1,Q1,_MM_SHUFFLE(1,3,0,2)); - M.r[1] = Q1; -// M.r[1] = XMVectorPermute(R0, V0,Permute1Z0Y1W0W); - Q1 = _mm_shuffle_ps(V1,R0,_MM_SHUFFLE(3,2,1,0)); - M.r[2] = Q1; -// M.r[2] = XMVectorPermute(R0, V1,Permute1X1Y0Z0W); - M.r[3] = g_XMIdentityR3; - return M; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMMATRIX XMMatrixTransformation2D -( - FXMVECTOR ScalingOrigin, - FLOAT ScalingOrientation, - FXMVECTOR Scaling, - FXMVECTOR RotationOrigin, - FLOAT Rotation, - CXMVECTOR Translation -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMMATRIX M; - XMVECTOR VScaling; - XMVECTOR NegScalingOrigin; - XMVECTOR VScalingOrigin; - XMMATRIX MScalingOriginI; - XMMATRIX MScalingOrientation; - XMMATRIX MScalingOrientationT; - XMMATRIX MScaling; - XMVECTOR VRotationOrigin; - XMMATRIX MRotation; - XMVECTOR VTranslation; - - // M = Inverse(MScalingOrigin) * Transpose(MScalingOrientation) * MScaling * MScalingOrientation * - // MScalingOrigin * Inverse(MRotationOrigin) * MRotation * MRotationOrigin * MTranslation; - - VScalingOrigin = XMVectorSelect(g_XMSelect1100.v, ScalingOrigin, g_XMSelect1100.v); - NegScalingOrigin = XMVectorNegate(VScalingOrigin); - - MScalingOriginI = XMMatrixTranslationFromVector(NegScalingOrigin); - MScalingOrientation = XMMatrixRotationZ(ScalingOrientation); - MScalingOrientationT = XMMatrixTranspose(MScalingOrientation); - VScaling = XMVectorSelect(g_XMOne.v, Scaling, g_XMSelect1100.v); - MScaling = XMMatrixScalingFromVector(VScaling); - VRotationOrigin = XMVectorSelect(g_XMSelect1100.v, RotationOrigin, g_XMSelect1100.v); - MRotation = XMMatrixRotationZ(Rotation); - VTranslation = XMVectorSelect(g_XMSelect1100.v, Translation,g_XMSelect1100.v); - - M = XMMatrixMultiply(MScalingOriginI, MScalingOrientationT); - M = XMMatrixMultiply(M, MScaling); - M = XMMatrixMultiply(M, MScalingOrientation); - M.r[3] = XMVectorAdd(M.r[3], VScalingOrigin); - M.r[3] = XMVectorSubtract(M.r[3], VRotationOrigin); - M = XMMatrixMultiply(M, MRotation); - M.r[3] = XMVectorAdd(M.r[3], VRotationOrigin); - M.r[3] = XMVectorAdd(M.r[3], VTranslation); - - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMMATRIX M; - XMVECTOR VScaling; - XMVECTOR NegScalingOrigin; - XMVECTOR VScalingOrigin; - XMMATRIX MScalingOriginI; - XMMATRIX MScalingOrientation; - XMMATRIX MScalingOrientationT; - XMMATRIX MScaling; - XMVECTOR VRotationOrigin; - XMMATRIX MRotation; - XMVECTOR VTranslation; - - // M = Inverse(MScalingOrigin) * Transpose(MScalingOrientation) * MScaling * MScalingOrientation * - // MScalingOrigin * Inverse(MRotationOrigin) * MRotation * MRotationOrigin * MTranslation; - static const XMVECTORU32 Mask2 = {0xFFFFFFFF,0xFFFFFFFF,0,0}; - static const XMVECTORF32 ZWOne = {0,0,1.0f,1.0f}; - - VScalingOrigin = _mm_and_ps(ScalingOrigin, Mask2); - NegScalingOrigin = XMVectorNegate(VScalingOrigin); - - MScalingOriginI = XMMatrixTranslationFromVector(NegScalingOrigin); - MScalingOrientation = XMMatrixRotationZ(ScalingOrientation); - MScalingOrientationT = XMMatrixTranspose(MScalingOrientation); - VScaling = _mm_and_ps(Scaling, Mask2); - VScaling = _mm_or_ps(VScaling,ZWOne); - MScaling = XMMatrixScalingFromVector(VScaling); - VRotationOrigin = _mm_and_ps(RotationOrigin, Mask2); - MRotation = XMMatrixRotationZ(Rotation); - VTranslation = _mm_and_ps(Translation, Mask2); - - M = XMMatrixMultiply(MScalingOriginI, MScalingOrientationT); - M = XMMatrixMultiply(M, MScaling); - M = XMMatrixMultiply(M, MScalingOrientation); - M.r[3] = XMVectorAdd(M.r[3], VScalingOrigin); - M.r[3] = XMVectorSubtract(M.r[3], VRotationOrigin); - M = XMMatrixMultiply(M, MRotation); - M.r[3] = XMVectorAdd(M.r[3], VRotationOrigin); - M.r[3] = XMVectorAdd(M.r[3], VTranslation); - - return M; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMMATRIX XMMatrixTransformation -( - FXMVECTOR ScalingOrigin, - FXMVECTOR ScalingOrientationQuaternion, - FXMVECTOR Scaling, - CXMVECTOR RotationOrigin, - CXMVECTOR RotationQuaternion, - CXMVECTOR Translation -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMMATRIX M; - XMVECTOR NegScalingOrigin; - XMVECTOR VScalingOrigin; - XMMATRIX MScalingOriginI; - XMMATRIX MScalingOrientation; - XMMATRIX MScalingOrientationT; - XMMATRIX MScaling; - XMVECTOR VRotationOrigin; - XMMATRIX MRotation; - XMVECTOR VTranslation; - - // M = Inverse(MScalingOrigin) * Transpose(MScalingOrientation) * MScaling * MScalingOrientation * - // MScalingOrigin * Inverse(MRotationOrigin) * MRotation * MRotationOrigin * MTranslation; - - VScalingOrigin = XMVectorSelect(g_XMSelect1110.v, ScalingOrigin, g_XMSelect1110.v); - NegScalingOrigin = XMVectorNegate(ScalingOrigin); - - MScalingOriginI = XMMatrixTranslationFromVector(NegScalingOrigin); - MScalingOrientation = XMMatrixRotationQuaternion(ScalingOrientationQuaternion); - MScalingOrientationT = XMMatrixTranspose(MScalingOrientation); - MScaling = XMMatrixScalingFromVector(Scaling); - VRotationOrigin = XMVectorSelect(g_XMSelect1110.v, RotationOrigin, g_XMSelect1110.v); - MRotation = XMMatrixRotationQuaternion(RotationQuaternion); - VTranslation = XMVectorSelect(g_XMSelect1110.v, Translation, g_XMSelect1110.v); - - M = XMMatrixMultiply(MScalingOriginI, MScalingOrientationT); - M = XMMatrixMultiply(M, MScaling); - M = XMMatrixMultiply(M, MScalingOrientation); - M.r[3] = XMVectorAdd(M.r[3], VScalingOrigin); - M.r[3] = XMVectorSubtract(M.r[3], VRotationOrigin); - M = XMMatrixMultiply(M, MRotation); - M.r[3] = XMVectorAdd(M.r[3], VRotationOrigin); - M.r[3] = XMVectorAdd(M.r[3], VTranslation); - - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMMATRIX M; - XMVECTOR NegScalingOrigin; - XMVECTOR VScalingOrigin; - XMMATRIX MScalingOriginI; - XMMATRIX MScalingOrientation; - XMMATRIX MScalingOrientationT; - XMMATRIX MScaling; - XMVECTOR VRotationOrigin; - XMMATRIX MRotation; - XMVECTOR VTranslation; - - // M = Inverse(MScalingOrigin) * Transpose(MScalingOrientation) * MScaling * MScalingOrientation * - // MScalingOrigin * Inverse(MRotationOrigin) * MRotation * MRotationOrigin * MTranslation; - - VScalingOrigin = _mm_and_ps(ScalingOrigin,g_XMMask3); - NegScalingOrigin = XMVectorNegate(ScalingOrigin); - - MScalingOriginI = XMMatrixTranslationFromVector(NegScalingOrigin); - MScalingOrientation = XMMatrixRotationQuaternion(ScalingOrientationQuaternion); - MScalingOrientationT = XMMatrixTranspose(MScalingOrientation); - MScaling = XMMatrixScalingFromVector(Scaling); - VRotationOrigin = _mm_and_ps(RotationOrigin,g_XMMask3); - MRotation = XMMatrixRotationQuaternion(RotationQuaternion); - VTranslation = _mm_and_ps(Translation,g_XMMask3); - - M = XMMatrixMultiply(MScalingOriginI, MScalingOrientationT); - M = XMMatrixMultiply(M, MScaling); - M = XMMatrixMultiply(M, MScalingOrientation); - M.r[3] = XMVectorAdd(M.r[3], VScalingOrigin); - M.r[3] = XMVectorSubtract(M.r[3], VRotationOrigin); - M = XMMatrixMultiply(M, MRotation); - M.r[3] = XMVectorAdd(M.r[3], VRotationOrigin); - M.r[3] = XMVectorAdd(M.r[3], VTranslation); - - return M; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMMATRIX XMMatrixAffineTransformation2D -( - FXMVECTOR Scaling, - FXMVECTOR RotationOrigin, - FLOAT Rotation, - FXMVECTOR Translation -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMMATRIX M; - XMVECTOR VScaling; - XMMATRIX MScaling; - XMVECTOR VRotationOrigin; - XMMATRIX MRotation; - XMVECTOR VTranslation; - - // M = MScaling * Inverse(MRotationOrigin) * MRotation * MRotationOrigin * MTranslation; - - VScaling = XMVectorSelect(g_XMOne.v, Scaling, g_XMSelect1100.v); - MScaling = XMMatrixScalingFromVector(VScaling); - VRotationOrigin = XMVectorSelect(g_XMSelect1100.v, RotationOrigin, g_XMSelect1100.v); - MRotation = XMMatrixRotationZ(Rotation); - VTranslation = XMVectorSelect(g_XMSelect1100.v, Translation,g_XMSelect1100.v); - - M = MScaling; - M.r[3] = XMVectorSubtract(M.r[3], VRotationOrigin); - M = XMMatrixMultiply(M, MRotation); - M.r[3] = XMVectorAdd(M.r[3], VRotationOrigin); - M.r[3] = XMVectorAdd(M.r[3], VTranslation); - - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMMATRIX M; - XMVECTOR VScaling; - XMMATRIX MScaling; - XMVECTOR VRotationOrigin; - XMMATRIX MRotation; - XMVECTOR VTranslation; - static const XMVECTORU32 Mask2 = {0xFFFFFFFFU,0xFFFFFFFFU,0,0}; - static const XMVECTORF32 ZW1 = {0,0,1.0f,1.0f}; - - // M = MScaling * Inverse(MRotationOrigin) * MRotation * MRotationOrigin * MTranslation; - - VScaling = _mm_and_ps(Scaling, Mask2); - VScaling = _mm_or_ps(VScaling, ZW1); - MScaling = XMMatrixScalingFromVector(VScaling); - VRotationOrigin = _mm_and_ps(RotationOrigin, Mask2); - MRotation = XMMatrixRotationZ(Rotation); - VTranslation = _mm_and_ps(Translation, Mask2); - - M = MScaling; - M.r[3] = _mm_sub_ps(M.r[3], VRotationOrigin); - M = XMMatrixMultiply(M, MRotation); - M.r[3] = _mm_add_ps(M.r[3], VRotationOrigin); - M.r[3] = _mm_add_ps(M.r[3], VTranslation); - return M; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMMATRIX XMMatrixAffineTransformation -( - FXMVECTOR Scaling, - FXMVECTOR RotationOrigin, - FXMVECTOR RotationQuaternion, - CXMVECTOR Translation -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMMATRIX M; - XMMATRIX MScaling; - XMVECTOR VRotationOrigin; - XMMATRIX MRotation; - XMVECTOR VTranslation; - - // M = MScaling * Inverse(MRotationOrigin) * MRotation * MRotationOrigin * MTranslation; - - MScaling = XMMatrixScalingFromVector(Scaling); - VRotationOrigin = XMVectorSelect(g_XMSelect1110.v, RotationOrigin,g_XMSelect1110.v); - MRotation = XMMatrixRotationQuaternion(RotationQuaternion); - VTranslation = XMVectorSelect(g_XMSelect1110.v, Translation,g_XMSelect1110.v); - - M = MScaling; - M.r[3] = XMVectorSubtract(M.r[3], VRotationOrigin); - M = XMMatrixMultiply(M, MRotation); - M.r[3] = XMVectorAdd(M.r[3], VRotationOrigin); - M.r[3] = XMVectorAdd(M.r[3], VTranslation); - - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMMATRIX M; - XMMATRIX MScaling; - XMVECTOR VRotationOrigin; - XMMATRIX MRotation; - XMVECTOR VTranslation; - - // M = MScaling * Inverse(MRotationOrigin) * MRotation * MRotationOrigin * MTranslation; - - MScaling = XMMatrixScalingFromVector(Scaling); - VRotationOrigin = _mm_and_ps(RotationOrigin,g_XMMask3); - MRotation = XMMatrixRotationQuaternion(RotationQuaternion); - VTranslation = _mm_and_ps(Translation,g_XMMask3); - - M = MScaling; - M.r[3] = _mm_sub_ps(M.r[3], VRotationOrigin); - M = XMMatrixMultiply(M, MRotation); - M.r[3] = _mm_add_ps(M.r[3], VRotationOrigin); - M.r[3] = _mm_add_ps(M.r[3], VTranslation); - - return M; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMMATRIX XMMatrixReflect -( - FXMVECTOR ReflectionPlane -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR P; - XMVECTOR S; - XMVECTOR A, B, C, D; - XMMATRIX M; - static CONST XMVECTOR NegativeTwo = {-2.0f, -2.0f, -2.0f, 0.0f}; - - XMASSERT(!XMVector3Equal(ReflectionPlane, XMVectorZero())); - XMASSERT(!XMPlaneIsInfinite(ReflectionPlane)); - - P = XMPlaneNormalize(ReflectionPlane); - S = XMVectorMultiply(P, NegativeTwo); - - A = XMVectorSplatX(P); - B = XMVectorSplatY(P); - C = XMVectorSplatZ(P); - D = XMVectorSplatW(P); - - M.r[0] = XMVectorMultiplyAdd(A, S, g_XMIdentityR0.v); - M.r[1] = XMVectorMultiplyAdd(B, S, g_XMIdentityR1.v); - M.r[2] = XMVectorMultiplyAdd(C, S, g_XMIdentityR2.v); - M.r[3] = XMVectorMultiplyAdd(D, S, g_XMIdentityR3.v); - - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMMATRIX M; - static CONST XMVECTORF32 NegativeTwo = {-2.0f, -2.0f, -2.0f, 0.0f}; - - XMASSERT(!XMVector3Equal(ReflectionPlane, XMVectorZero())); - XMASSERT(!XMPlaneIsInfinite(ReflectionPlane)); - - XMVECTOR P = XMPlaneNormalize(ReflectionPlane); - XMVECTOR S = _mm_mul_ps(P,NegativeTwo); - XMVECTOR X = _mm_shuffle_ps(P,P,_MM_SHUFFLE(0,0,0,0)); - XMVECTOR Y = _mm_shuffle_ps(P,P,_MM_SHUFFLE(1,1,1,1)); - XMVECTOR Z = _mm_shuffle_ps(P,P,_MM_SHUFFLE(2,2,2,2)); - P = _mm_shuffle_ps(P,P,_MM_SHUFFLE(3,3,3,3)); - X = _mm_mul_ps(X,S); - Y = _mm_mul_ps(Y,S); - Z = _mm_mul_ps(Z,S); - P = _mm_mul_ps(P,S); - X = _mm_add_ps(X,g_XMIdentityR0); - Y = _mm_add_ps(Y,g_XMIdentityR1); - Z = _mm_add_ps(Z,g_XMIdentityR2); - P = _mm_add_ps(P,g_XMIdentityR3); - M.r[0] = X; - M.r[1] = Y; - M.r[2] = Z; - M.r[3] = P; - return M; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMMATRIX XMMatrixShadow -( - FXMVECTOR ShadowPlane, - FXMVECTOR LightPosition -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR P; - XMVECTOR Dot; - XMVECTOR A, B, C, D; - XMMATRIX M; - static CONST XMVECTORU32 Select0001 = {XM_SELECT_0, XM_SELECT_0, XM_SELECT_0, XM_SELECT_1}; - - XMASSERT(!XMVector3Equal(ShadowPlane, XMVectorZero())); - XMASSERT(!XMPlaneIsInfinite(ShadowPlane)); - - P = XMPlaneNormalize(ShadowPlane); - Dot = XMPlaneDot(P, LightPosition); - P = XMVectorNegate(P); - D = XMVectorSplatW(P); - C = XMVectorSplatZ(P); - B = XMVectorSplatY(P); - A = XMVectorSplatX(P); - Dot = XMVectorSelect(Select0001.v, Dot, Select0001.v); - M.r[3] = XMVectorMultiplyAdd(D, LightPosition, Dot); - Dot = XMVectorRotateLeft(Dot, 1); - M.r[2] = XMVectorMultiplyAdd(C, LightPosition, Dot); - Dot = XMVectorRotateLeft(Dot, 1); - M.r[1] = XMVectorMultiplyAdd(B, LightPosition, Dot); - Dot = XMVectorRotateLeft(Dot, 1); - M.r[0] = XMVectorMultiplyAdd(A, LightPosition, Dot); - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMMATRIX M; - XMASSERT(!XMVector3Equal(ShadowPlane, XMVectorZero())); - XMASSERT(!XMPlaneIsInfinite(ShadowPlane)); - XMVECTOR P = XMPlaneNormalize(ShadowPlane); - XMVECTOR Dot = XMPlaneDot(P,LightPosition); - // Negate - P = _mm_mul_ps(P,g_XMNegativeOne); - XMVECTOR X = _mm_shuffle_ps(P,P,_MM_SHUFFLE(0,0,0,0)); - XMVECTOR Y = _mm_shuffle_ps(P,P,_MM_SHUFFLE(1,1,1,1)); - XMVECTOR Z = _mm_shuffle_ps(P,P,_MM_SHUFFLE(2,2,2,2)); - P = _mm_shuffle_ps(P,P,_MM_SHUFFLE(3,3,3,3)); - Dot = _mm_and_ps(Dot,g_XMMaskW); - X = _mm_mul_ps(X,LightPosition); - Y = _mm_mul_ps(Y,LightPosition); - Z = _mm_mul_ps(Z,LightPosition); - P = _mm_mul_ps(P,LightPosition); - P = _mm_add_ps(P,Dot); - Dot = _mm_shuffle_ps(Dot,Dot,_MM_SHUFFLE(0,3,2,1)); - Z = _mm_add_ps(Z,Dot); - Dot = _mm_shuffle_ps(Dot,Dot,_MM_SHUFFLE(0,3,2,1)); - Y = _mm_add_ps(Y,Dot); - Dot = _mm_shuffle_ps(Dot,Dot,_MM_SHUFFLE(0,3,2,1)); - X = _mm_add_ps(X,Dot); - // Store the resulting matrix - M.r[0] = X; - M.r[1] = Y; - M.r[2] = Z; - M.r[3] = P; - return M; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// View and projection initialization operations -//------------------------------------------------------------------------------ - - -//------------------------------------------------------------------------------ - -XMFINLINE XMMATRIX XMMatrixLookAtLH -( - FXMVECTOR EyePosition, - FXMVECTOR FocusPosition, - FXMVECTOR UpDirection -) -{ - XMVECTOR EyeDirection; - XMMATRIX M; - - EyeDirection = XMVectorSubtract(FocusPosition, EyePosition); - M = XMMatrixLookToLH(EyePosition, EyeDirection, UpDirection); - - return M; -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMMATRIX XMMatrixLookAtRH -( - FXMVECTOR EyePosition, - FXMVECTOR FocusPosition, - FXMVECTOR UpDirection -) -{ - XMVECTOR NegEyeDirection; - XMMATRIX M; - - NegEyeDirection = XMVectorSubtract(EyePosition, FocusPosition); - M = XMMatrixLookToLH(EyePosition, NegEyeDirection, UpDirection); - - return M; -} - -//------------------------------------------------------------------------------ - -XMINLINE XMMATRIX XMMatrixLookToLH -( - FXMVECTOR EyePosition, - FXMVECTOR EyeDirection, - FXMVECTOR UpDirection -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR NegEyePosition; - XMVECTOR D0, D1, D2; - XMVECTOR R0, R1, R2; - XMMATRIX M; - - XMASSERT(!XMVector3Equal(EyeDirection, XMVectorZero())); - XMASSERT(!XMVector3IsInfinite(EyeDirection)); - XMASSERT(!XMVector3Equal(UpDirection, XMVectorZero())); - XMASSERT(!XMVector3IsInfinite(UpDirection)); - - R2 = XMVector3Normalize(EyeDirection); - - R0 = XMVector3Cross(UpDirection, R2); - R0 = XMVector3Normalize(R0); - - R1 = XMVector3Cross(R2, R0); - - NegEyePosition = XMVectorNegate(EyePosition); - - D0 = XMVector3Dot(R0, NegEyePosition); - D1 = XMVector3Dot(R1, NegEyePosition); - D2 = XMVector3Dot(R2, NegEyePosition); - - M.r[0] = XMVectorSelect(D0, R0, g_XMSelect1110.v); - M.r[1] = XMVectorSelect(D1, R1, g_XMSelect1110.v); - M.r[2] = XMVectorSelect(D2, R2, g_XMSelect1110.v); - M.r[3] = g_XMIdentityR3.v; - - M = XMMatrixTranspose(M); - - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMMATRIX M; - - XMASSERT(!XMVector3Equal(EyeDirection, XMVectorZero())); - XMASSERT(!XMVector3IsInfinite(EyeDirection)); - XMASSERT(!XMVector3Equal(UpDirection, XMVectorZero())); - XMASSERT(!XMVector3IsInfinite(UpDirection)); - - XMVECTOR R2 = XMVector3Normalize(EyeDirection); - XMVECTOR R0 = XMVector3Cross(UpDirection, R2); - R0 = XMVector3Normalize(R0); - XMVECTOR R1 = XMVector3Cross(R2,R0); - XMVECTOR NegEyePosition = _mm_mul_ps(EyePosition,g_XMNegativeOne); - XMVECTOR D0 = XMVector3Dot(R0,NegEyePosition); - XMVECTOR D1 = XMVector3Dot(R1,NegEyePosition); - XMVECTOR D2 = XMVector3Dot(R2,NegEyePosition); - R0 = _mm_and_ps(R0,g_XMMask3); - R1 = _mm_and_ps(R1,g_XMMask3); - R2 = _mm_and_ps(R2,g_XMMask3); - D0 = _mm_and_ps(D0,g_XMMaskW); - D1 = _mm_and_ps(D1,g_XMMaskW); - D2 = _mm_and_ps(D2,g_XMMaskW); - D0 = _mm_or_ps(D0,R0); - D1 = _mm_or_ps(D1,R1); - D2 = _mm_or_ps(D2,R2); - M.r[0] = D0; - M.r[1] = D1; - M.r[2] = D2; - M.r[3] = g_XMIdentityR3; - M = XMMatrixTranspose(M); - return M; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMMATRIX XMMatrixLookToRH -( - FXMVECTOR EyePosition, - FXMVECTOR EyeDirection, - FXMVECTOR UpDirection -) -{ - XMVECTOR NegEyeDirection; - XMMATRIX M; - - NegEyeDirection = XMVectorNegate(EyeDirection); - M = XMMatrixLookToLH(EyePosition, NegEyeDirection, UpDirection); - - return M; -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMMATRIX XMMatrixPerspectiveLH -( - FLOAT ViewWidth, - FLOAT ViewHeight, - FLOAT NearZ, - FLOAT FarZ -) -{ -#if defined(_XM_NO_INTRINSICS_) - - FLOAT TwoNearZ, fRange; - XMMATRIX M; - - XMASSERT(!XMScalarNearEqual(ViewWidth, 0.0f, 0.00001f)); - XMASSERT(!XMScalarNearEqual(ViewHeight, 0.0f, 0.00001f)); - XMASSERT(!XMScalarNearEqual(FarZ, NearZ, 0.00001f)); - - TwoNearZ = NearZ + NearZ; - fRange = FarZ / (FarZ - NearZ); - M.m[0][0] = TwoNearZ / ViewWidth; - M.m[0][1] = 0.0f; - M.m[0][2] = 0.0f; - M.m[0][3] = 0.0f; - - M.m[1][0] = 0.0f; - M.m[1][1] = TwoNearZ / ViewHeight; - M.m[1][2] = 0.0f; - M.m[1][3] = 0.0f; - - M.m[2][0] = 0.0f; - M.m[2][1] = 0.0f; - M.m[2][2] = fRange; - M.m[2][3] = 1.0f; - - M.m[3][0] = 0.0f; - M.m[3][1] = 0.0f; - M.m[3][2] = -fRange * NearZ; - M.m[3][3] = 0.0f; - - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(!XMScalarNearEqual(ViewWidth, 0.0f, 0.00001f)); - XMASSERT(!XMScalarNearEqual(ViewHeight, 0.0f, 0.00001f)); - XMASSERT(!XMScalarNearEqual(FarZ, NearZ, 0.00001f)); - - XMMATRIX M; - FLOAT TwoNearZ = NearZ + NearZ; - FLOAT fRange = FarZ / (FarZ - NearZ); - // Note: This is recorded on the stack - XMVECTOR rMem = { - TwoNearZ / ViewWidth, - TwoNearZ / ViewHeight, - fRange, - -fRange * NearZ - }; - // Copy from memory to SSE register - XMVECTOR vValues = rMem; - XMVECTOR vTemp = _mm_setzero_ps(); - // Copy x only - vTemp = _mm_move_ss(vTemp,vValues); - // TwoNearZ / ViewWidth,0,0,0 - M.r[0] = vTemp; - // 0,TwoNearZ / ViewHeight,0,0 - vTemp = vValues; - vTemp = _mm_and_ps(vTemp,g_XMMaskY); - M.r[1] = vTemp; - // x=fRange,y=-fRange * NearZ,0,1.0f - vValues = _mm_shuffle_ps(vValues,g_XMIdentityR3,_MM_SHUFFLE(3,2,3,2)); - // 0,0,fRange,1.0f - vTemp = _mm_setzero_ps(); - vTemp = _mm_shuffle_ps(vTemp,vValues,_MM_SHUFFLE(3,0,0,0)); - M.r[2] = vTemp; - // 0,0,-fRange * NearZ,0 - vTemp = _mm_shuffle_ps(vTemp,vValues,_MM_SHUFFLE(2,1,0,0)); - M.r[3] = vTemp; - - return M; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMMATRIX XMMatrixPerspectiveRH -( - FLOAT ViewWidth, - FLOAT ViewHeight, - FLOAT NearZ, - FLOAT FarZ -) -{ -#if defined(_XM_NO_INTRINSICS_) - - FLOAT TwoNearZ, fRange; - XMMATRIX M; - - XMASSERT(!XMScalarNearEqual(ViewWidth, 0.0f, 0.00001f)); - XMASSERT(!XMScalarNearEqual(ViewHeight, 0.0f, 0.00001f)); - XMASSERT(!XMScalarNearEqual(FarZ, NearZ, 0.00001f)); - - TwoNearZ = NearZ + NearZ; - fRange = FarZ / (NearZ - FarZ); - M.m[0][0] = TwoNearZ / ViewWidth; - M.m[0][1] = 0.0f; - M.m[0][2] = 0.0f; - M.m[0][3] = 0.0f; - - M.m[1][0] = 0.0f; - M.m[1][1] = TwoNearZ / ViewHeight; - M.m[1][2] = 0.0f; - M.m[1][3] = 0.0f; - - M.m[2][0] = 0.0f; - M.m[2][1] = 0.0f; - M.m[2][2] = fRange; - M.m[2][3] = -1.0f; - - M.m[3][0] = 0.0f; - M.m[3][1] = 0.0f; - M.m[3][2] = fRange * NearZ; - M.m[3][3] = 0.0f; - - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(!XMScalarNearEqual(ViewWidth, 0.0f, 0.00001f)); - XMASSERT(!XMScalarNearEqual(ViewHeight, 0.0f, 0.00001f)); - XMASSERT(!XMScalarNearEqual(FarZ, NearZ, 0.00001f)); - - XMMATRIX M; - FLOAT TwoNearZ = NearZ + NearZ; - FLOAT fRange = FarZ / (NearZ-FarZ); - // Note: This is recorded on the stack - XMVECTOR rMem = { - TwoNearZ / ViewWidth, - TwoNearZ / ViewHeight, - fRange, - fRange * NearZ - }; - // Copy from memory to SSE register - XMVECTOR vValues = rMem; - XMVECTOR vTemp = _mm_setzero_ps(); - // Copy x only - vTemp = _mm_move_ss(vTemp,vValues); - // TwoNearZ / ViewWidth,0,0,0 - M.r[0] = vTemp; - // 0,TwoNearZ / ViewHeight,0,0 - vTemp = vValues; - vTemp = _mm_and_ps(vTemp,g_XMMaskY); - M.r[1] = vTemp; - // x=fRange,y=-fRange * NearZ,0,-1.0f - vValues = _mm_shuffle_ps(vValues,g_XMNegIdentityR3,_MM_SHUFFLE(3,2,3,2)); - // 0,0,fRange,-1.0f - vTemp = _mm_setzero_ps(); - vTemp = _mm_shuffle_ps(vTemp,vValues,_MM_SHUFFLE(3,0,0,0)); - M.r[2] = vTemp; - // 0,0,-fRange * NearZ,0 - vTemp = _mm_shuffle_ps(vTemp,vValues,_MM_SHUFFLE(2,1,0,0)); - M.r[3] = vTemp; - return M; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMMATRIX XMMatrixPerspectiveFovLH -( - FLOAT FovAngleY, - FLOAT AspectRatio, - FLOAT NearZ, - FLOAT FarZ -) -{ -#if defined(_XM_NO_INTRINSICS_) - - FLOAT SinFov; - FLOAT CosFov; - FLOAT Height; - FLOAT Width; - XMMATRIX M; - - XMASSERT(!XMScalarNearEqual(FovAngleY, 0.0f, 0.00001f * 2.0f)); - XMASSERT(!XMScalarNearEqual(AspectRatio, 0.0f, 0.00001f)); - XMASSERT(!XMScalarNearEqual(FarZ, NearZ, 0.00001f)); - - XMScalarSinCos(&SinFov, &CosFov, 0.5f * FovAngleY); - - Height = CosFov / SinFov; - Width = Height / AspectRatio; - - M.r[0] = XMVectorSet(Width, 0.0f, 0.0f, 0.0f); - M.r[1] = XMVectorSet(0.0f, Height, 0.0f, 0.0f); - M.r[2] = XMVectorSet(0.0f, 0.0f, FarZ / (FarZ - NearZ), 1.0f); - M.r[3] = XMVectorSet(0.0f, 0.0f, -M.r[2].vector4_f32[2] * NearZ, 0.0f); - - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(!XMScalarNearEqual(FovAngleY, 0.0f, 0.00001f * 2.0f)); - XMASSERT(!XMScalarNearEqual(AspectRatio, 0.0f, 0.00001f)); - XMASSERT(!XMScalarNearEqual(FarZ, NearZ, 0.00001f)); - XMMATRIX M; - FLOAT SinFov; - FLOAT CosFov; - XMScalarSinCos(&SinFov, &CosFov, 0.5f * FovAngleY); - FLOAT fRange = FarZ / (FarZ-NearZ); - // Note: This is recorded on the stack - FLOAT Height = CosFov / SinFov; - XMVECTOR rMem = { - Height / AspectRatio, - Height, - fRange, - -fRange * NearZ - }; - // Copy from memory to SSE register - XMVECTOR vValues = rMem; - XMVECTOR vTemp = _mm_setzero_ps(); - // Copy x only - vTemp = _mm_move_ss(vTemp,vValues); - // CosFov / SinFov,0,0,0 - M.r[0] = vTemp; - // 0,Height / AspectRatio,0,0 - vTemp = vValues; - vTemp = _mm_and_ps(vTemp,g_XMMaskY); - M.r[1] = vTemp; - // x=fRange,y=-fRange * NearZ,0,1.0f - vTemp = _mm_setzero_ps(); - vValues = _mm_shuffle_ps(vValues,g_XMIdentityR3,_MM_SHUFFLE(3,2,3,2)); - // 0,0,fRange,1.0f - vTemp = _mm_shuffle_ps(vTemp,vValues,_MM_SHUFFLE(3,0,0,0)); - M.r[2] = vTemp; - // 0,0,-fRange * NearZ,0.0f - vTemp = _mm_shuffle_ps(vTemp,vValues,_MM_SHUFFLE(2,1,0,0)); - M.r[3] = vTemp; - return M; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMMATRIX XMMatrixPerspectiveFovRH -( - FLOAT FovAngleY, - FLOAT AspectRatio, - FLOAT NearZ, - FLOAT FarZ -) -{ -#if defined(_XM_NO_INTRINSICS_) - - FLOAT SinFov; - FLOAT CosFov; - FLOAT Height; - FLOAT Width; - XMMATRIX M; - - XMASSERT(!XMScalarNearEqual(FovAngleY, 0.0f, 0.00001f * 2.0f)); - XMASSERT(!XMScalarNearEqual(AspectRatio, 0.0f, 0.00001f)); - XMASSERT(!XMScalarNearEqual(FarZ, NearZ, 0.00001f)); - - XMScalarSinCos(&SinFov, &CosFov, 0.5f * FovAngleY); - - Height = CosFov / SinFov; - Width = Height / AspectRatio; - - M.r[0] = XMVectorSet(Width, 0.0f, 0.0f, 0.0f); - M.r[1] = XMVectorSet(0.0f, Height, 0.0f, 0.0f); - M.r[2] = XMVectorSet(0.0f, 0.0f, FarZ / (NearZ - FarZ), -1.0f); - M.r[3] = XMVectorSet(0.0f, 0.0f, M.r[2].vector4_f32[2] * NearZ, 0.0f); - - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(!XMScalarNearEqual(FovAngleY, 0.0f, 0.00001f * 2.0f)); - XMASSERT(!XMScalarNearEqual(AspectRatio, 0.0f, 0.00001f)); - XMASSERT(!XMScalarNearEqual(FarZ, NearZ, 0.00001f)); - XMMATRIX M; - FLOAT SinFov; - FLOAT CosFov; - XMScalarSinCos(&SinFov, &CosFov, 0.5f * FovAngleY); - FLOAT fRange = FarZ / (NearZ-FarZ); - // Note: This is recorded on the stack - FLOAT Height = CosFov / SinFov; - XMVECTOR rMem = { - Height / AspectRatio, - Height, - fRange, - fRange * NearZ - }; - // Copy from memory to SSE register - XMVECTOR vValues = rMem; - XMVECTOR vTemp = _mm_setzero_ps(); - // Copy x only - vTemp = _mm_move_ss(vTemp,vValues); - // CosFov / SinFov,0,0,0 - M.r[0] = vTemp; - // 0,Height / AspectRatio,0,0 - vTemp = vValues; - vTemp = _mm_and_ps(vTemp,g_XMMaskY); - M.r[1] = vTemp; - // x=fRange,y=-fRange * NearZ,0,-1.0f - vTemp = _mm_setzero_ps(); - vValues = _mm_shuffle_ps(vValues,g_XMNegIdentityR3,_MM_SHUFFLE(3,2,3,2)); - // 0,0,fRange,-1.0f - vTemp = _mm_shuffle_ps(vTemp,vValues,_MM_SHUFFLE(3,0,0,0)); - M.r[2] = vTemp; - // 0,0,fRange * NearZ,0.0f - vTemp = _mm_shuffle_ps(vTemp,vValues,_MM_SHUFFLE(2,1,0,0)); - M.r[3] = vTemp; - return M; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMMATRIX XMMatrixPerspectiveOffCenterLH -( - FLOAT ViewLeft, - FLOAT ViewRight, - FLOAT ViewBottom, - FLOAT ViewTop, - FLOAT NearZ, - FLOAT FarZ -) -{ -#if defined(_XM_NO_INTRINSICS_) - - FLOAT TwoNearZ; - FLOAT ReciprocalWidth; - FLOAT ReciprocalHeight; - XMMATRIX M; - - XMASSERT(!XMScalarNearEqual(ViewRight, ViewLeft, 0.00001f)); - XMASSERT(!XMScalarNearEqual(ViewTop, ViewBottom, 0.00001f)); - XMASSERT(!XMScalarNearEqual(FarZ, NearZ, 0.00001f)); - - TwoNearZ = NearZ + NearZ; - ReciprocalWidth = 1.0f / (ViewRight - ViewLeft); - ReciprocalHeight = 1.0f / (ViewTop - ViewBottom); - - M.r[0] = XMVectorSet(TwoNearZ * ReciprocalWidth, 0.0f, 0.0f, 0.0f); - M.r[1] = XMVectorSet(0.0f, TwoNearZ * ReciprocalHeight, 0.0f, 0.0f); - M.r[2] = XMVectorSet(-(ViewLeft + ViewRight) * ReciprocalWidth, - -(ViewTop + ViewBottom) * ReciprocalHeight, - FarZ / (FarZ - NearZ), - 1.0f); - M.r[3] = XMVectorSet(0.0f, 0.0f, -M.r[2].vector4_f32[2] * NearZ, 0.0f); - - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(!XMScalarNearEqual(ViewRight, ViewLeft, 0.00001f)); - XMASSERT(!XMScalarNearEqual(ViewTop, ViewBottom, 0.00001f)); - XMASSERT(!XMScalarNearEqual(FarZ, NearZ, 0.00001f)); - XMMATRIX M; - FLOAT TwoNearZ = NearZ+NearZ; - FLOAT ReciprocalWidth = 1.0f / (ViewRight - ViewLeft); - FLOAT ReciprocalHeight = 1.0f / (ViewTop - ViewBottom); - FLOAT fRange = FarZ / (FarZ-NearZ); - // Note: This is recorded on the stack - XMVECTOR rMem = { - TwoNearZ*ReciprocalWidth, - TwoNearZ*ReciprocalHeight, - -fRange * NearZ, - 0 - }; - // Copy from memory to SSE register - XMVECTOR vValues = rMem; - XMVECTOR vTemp = _mm_setzero_ps(); - // Copy x only - vTemp = _mm_move_ss(vTemp,vValues); - // TwoNearZ*ReciprocalWidth,0,0,0 - M.r[0] = vTemp; - // 0,TwoNearZ*ReciprocalHeight,0,0 - vTemp = vValues; - vTemp = _mm_and_ps(vTemp,g_XMMaskY); - M.r[1] = vTemp; - // 0,0,fRange,1.0f - M.m[2][0] = -(ViewLeft + ViewRight) * ReciprocalWidth; - M.m[2][1] = -(ViewTop + ViewBottom) * ReciprocalHeight; - M.m[2][2] = fRange; - M.m[2][3] = 1.0f; - // 0,0,-fRange * NearZ,0.0f - vValues = _mm_and_ps(vValues,g_XMMaskZ); - M.r[3] = vValues; - return M; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMMATRIX XMMatrixPerspectiveOffCenterRH -( - FLOAT ViewLeft, - FLOAT ViewRight, - FLOAT ViewBottom, - FLOAT ViewTop, - FLOAT NearZ, - FLOAT FarZ -) -{ -#if defined(_XM_NO_INTRINSICS_) - - FLOAT TwoNearZ; - FLOAT ReciprocalWidth; - FLOAT ReciprocalHeight; - XMMATRIX M; - - XMASSERT(!XMScalarNearEqual(ViewRight, ViewLeft, 0.00001f)); - XMASSERT(!XMScalarNearEqual(ViewTop, ViewBottom, 0.00001f)); - XMASSERT(!XMScalarNearEqual(FarZ, NearZ, 0.00001f)); - - TwoNearZ = NearZ + NearZ; - ReciprocalWidth = 1.0f / (ViewRight - ViewLeft); - ReciprocalHeight = 1.0f / (ViewTop - ViewBottom); - - M.r[0] = XMVectorSet(TwoNearZ * ReciprocalWidth, 0.0f, 0.0f, 0.0f); - M.r[1] = XMVectorSet(0.0f, TwoNearZ * ReciprocalHeight, 0.0f, 0.0f); - M.r[2] = XMVectorSet((ViewLeft + ViewRight) * ReciprocalWidth, - (ViewTop + ViewBottom) * ReciprocalHeight, - FarZ / (NearZ - FarZ), - -1.0f); - M.r[3] = XMVectorSet(0.0f, 0.0f, M.r[2].vector4_f32[2] * NearZ, 0.0f); - - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(!XMScalarNearEqual(ViewRight, ViewLeft, 0.00001f)); - XMASSERT(!XMScalarNearEqual(ViewTop, ViewBottom, 0.00001f)); - XMASSERT(!XMScalarNearEqual(FarZ, NearZ, 0.00001f)); - - XMMATRIX M; - FLOAT TwoNearZ = NearZ+NearZ; - FLOAT ReciprocalWidth = 1.0f / (ViewRight - ViewLeft); - FLOAT ReciprocalHeight = 1.0f / (ViewTop - ViewBottom); - FLOAT fRange = FarZ / (NearZ-FarZ); - // Note: This is recorded on the stack - XMVECTOR rMem = { - TwoNearZ*ReciprocalWidth, - TwoNearZ*ReciprocalHeight, - fRange * NearZ, - 0 - }; - // Copy from memory to SSE register - XMVECTOR vValues = rMem; - XMVECTOR vTemp = _mm_setzero_ps(); - // Copy x only - vTemp = _mm_move_ss(vTemp,vValues); - // TwoNearZ*ReciprocalWidth,0,0,0 - M.r[0] = vTemp; - // 0,TwoNearZ*ReciprocalHeight,0,0 - vTemp = vValues; - vTemp = _mm_and_ps(vTemp,g_XMMaskY); - M.r[1] = vTemp; - // 0,0,fRange,1.0f - M.m[2][0] = (ViewLeft + ViewRight) * ReciprocalWidth; - M.m[2][1] = (ViewTop + ViewBottom) * ReciprocalHeight; - M.m[2][2] = fRange; - M.m[2][3] = -1.0f; - // 0,0,-fRange * NearZ,0.0f - vValues = _mm_and_ps(vValues,g_XMMaskZ); - M.r[3] = vValues; - return M; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMMATRIX XMMatrixOrthographicLH -( - FLOAT ViewWidth, - FLOAT ViewHeight, - FLOAT NearZ, - FLOAT FarZ -) -{ -#if defined(_XM_NO_INTRINSICS_) - - FLOAT fRange; - XMMATRIX M; - - XMASSERT(!XMScalarNearEqual(ViewWidth, 0.0f, 0.00001f)); - XMASSERT(!XMScalarNearEqual(ViewHeight, 0.0f, 0.00001f)); - XMASSERT(!XMScalarNearEqual(FarZ, NearZ, 0.00001f)); - - fRange = 1.0f / (FarZ-NearZ); - M.r[0] = XMVectorSet(2.0f / ViewWidth, 0.0f, 0.0f, 0.0f); - M.r[1] = XMVectorSet(0.0f, 2.0f / ViewHeight, 0.0f, 0.0f); - M.r[2] = XMVectorSet(0.0f, 0.0f, fRange, 0.0f); - M.r[3] = XMVectorSet(0.0f, 0.0f, -fRange * NearZ, 1.0f); - - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(!XMScalarNearEqual(ViewWidth, 0.0f, 0.00001f)); - XMASSERT(!XMScalarNearEqual(ViewHeight, 0.0f, 0.00001f)); - XMASSERT(!XMScalarNearEqual(FarZ, NearZ, 0.00001f)); - XMMATRIX M; - FLOAT fRange = 1.0f / (FarZ-NearZ); - // Note: This is recorded on the stack - XMVECTOR rMem = { - 2.0f / ViewWidth, - 2.0f / ViewHeight, - fRange, - -fRange * NearZ - }; - // Copy from memory to SSE register - XMVECTOR vValues = rMem; - XMVECTOR vTemp = _mm_setzero_ps(); - // Copy x only - vTemp = _mm_move_ss(vTemp,vValues); - // 2.0f / ViewWidth,0,0,0 - M.r[0] = vTemp; - // 0,2.0f / ViewHeight,0,0 - vTemp = vValues; - vTemp = _mm_and_ps(vTemp,g_XMMaskY); - M.r[1] = vTemp; - // x=fRange,y=-fRange * NearZ,0,1.0f - vTemp = _mm_setzero_ps(); - vValues = _mm_shuffle_ps(vValues,g_XMIdentityR3,_MM_SHUFFLE(3,2,3,2)); - // 0,0,fRange,0.0f - vTemp = _mm_shuffle_ps(vTemp,vValues,_MM_SHUFFLE(2,0,0,0)); - M.r[2] = vTemp; - // 0,0,-fRange * NearZ,1.0f - vTemp = _mm_shuffle_ps(vTemp,vValues,_MM_SHUFFLE(3,1,0,0)); - M.r[3] = vTemp; - return M; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMMATRIX XMMatrixOrthographicRH -( - FLOAT ViewWidth, - FLOAT ViewHeight, - FLOAT NearZ, - FLOAT FarZ -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMMATRIX M; - - XMASSERT(!XMScalarNearEqual(ViewWidth, 0.0f, 0.00001f)); - XMASSERT(!XMScalarNearEqual(ViewHeight, 0.0f, 0.00001f)); - XMASSERT(!XMScalarNearEqual(FarZ, NearZ, 0.00001f)); - - M.r[0] = XMVectorSet(2.0f / ViewWidth, 0.0f, 0.0f, 0.0f); - M.r[1] = XMVectorSet(0.0f, 2.0f / ViewHeight, 0.0f, 0.0f); - M.r[2] = XMVectorSet(0.0f, 0.0f, 1.0f / (NearZ - FarZ), 0.0f); - M.r[3] = XMVectorSet(0.0f, 0.0f, M.r[2].vector4_f32[2] * NearZ, 1.0f); - - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(!XMScalarNearEqual(ViewWidth, 0.0f, 0.00001f)); - XMASSERT(!XMScalarNearEqual(ViewHeight, 0.0f, 0.00001f)); - XMASSERT(!XMScalarNearEqual(FarZ, NearZ, 0.00001f)); - XMMATRIX M; - FLOAT fRange = 1.0f / (NearZ-FarZ); - // Note: This is recorded on the stack - XMVECTOR rMem = { - 2.0f / ViewWidth, - 2.0f / ViewHeight, - fRange, - fRange * NearZ - }; - // Copy from memory to SSE register - XMVECTOR vValues = rMem; - XMVECTOR vTemp = _mm_setzero_ps(); - // Copy x only - vTemp = _mm_move_ss(vTemp,vValues); - // 2.0f / ViewWidth,0,0,0 - M.r[0] = vTemp; - // 0,2.0f / ViewHeight,0,0 - vTemp = vValues; - vTemp = _mm_and_ps(vTemp,g_XMMaskY); - M.r[1] = vTemp; - // x=fRange,y=fRange * NearZ,0,1.0f - vTemp = _mm_setzero_ps(); - vValues = _mm_shuffle_ps(vValues,g_XMIdentityR3,_MM_SHUFFLE(3,2,3,2)); - // 0,0,fRange,0.0f - vTemp = _mm_shuffle_ps(vTemp,vValues,_MM_SHUFFLE(2,0,0,0)); - M.r[2] = vTemp; - // 0,0,fRange * NearZ,1.0f - vTemp = _mm_shuffle_ps(vTemp,vValues,_MM_SHUFFLE(3,1,0,0)); - M.r[3] = vTemp; - return M; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMMATRIX XMMatrixOrthographicOffCenterLH -( - FLOAT ViewLeft, - FLOAT ViewRight, - FLOAT ViewBottom, - FLOAT ViewTop, - FLOAT NearZ, - FLOAT FarZ -) -{ -#if defined(_XM_NO_INTRINSICS_) - - FLOAT ReciprocalWidth; - FLOAT ReciprocalHeight; - XMMATRIX M; - - XMASSERT(!XMScalarNearEqual(ViewRight, ViewLeft, 0.00001f)); - XMASSERT(!XMScalarNearEqual(ViewTop, ViewBottom, 0.00001f)); - XMASSERT(!XMScalarNearEqual(FarZ, NearZ, 0.00001f)); - - ReciprocalWidth = 1.0f / (ViewRight - ViewLeft); - ReciprocalHeight = 1.0f / (ViewTop - ViewBottom); - - M.r[0] = XMVectorSet(ReciprocalWidth + ReciprocalWidth, 0.0f, 0.0f, 0.0f); - M.r[1] = XMVectorSet(0.0f, ReciprocalHeight + ReciprocalHeight, 0.0f, 0.0f); - M.r[2] = XMVectorSet(0.0f, 0.0f, 1.0f / (FarZ - NearZ), 0.0f); - M.r[3] = XMVectorSet(-(ViewLeft + ViewRight) * ReciprocalWidth, - -(ViewTop + ViewBottom) * ReciprocalHeight, - -M.r[2].vector4_f32[2] * NearZ, - 1.0f); - - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMMATRIX M; - FLOAT fReciprocalWidth = 1.0f / (ViewRight - ViewLeft); - FLOAT fReciprocalHeight = 1.0f / (ViewTop - ViewBottom); - FLOAT fRange = 1.0f / (FarZ-NearZ); - // Note: This is recorded on the stack - XMVECTOR rMem = { - fReciprocalWidth, - fReciprocalHeight, - fRange, - 1.0f - }; - XMVECTOR rMem2 = { - -(ViewLeft + ViewRight), - -(ViewTop + ViewBottom), - -NearZ, - 1.0f - }; - // Copy from memory to SSE register - XMVECTOR vValues = rMem; - XMVECTOR vTemp = _mm_setzero_ps(); - // Copy x only - vTemp = _mm_move_ss(vTemp,vValues); - // fReciprocalWidth*2,0,0,0 - vTemp = _mm_add_ss(vTemp,vTemp); - M.r[0] = vTemp; - // 0,fReciprocalHeight*2,0,0 - vTemp = vValues; - vTemp = _mm_and_ps(vTemp,g_XMMaskY); - vTemp = _mm_add_ps(vTemp,vTemp); - M.r[1] = vTemp; - // 0,0,fRange,0.0f - vTemp = vValues; - vTemp = _mm_and_ps(vTemp,g_XMMaskZ); - M.r[2] = vTemp; - // -(ViewLeft + ViewRight)*fReciprocalWidth,-(ViewTop + ViewBottom)*fReciprocalHeight,fRange*-NearZ,1.0f - vValues = _mm_mul_ps(vValues,rMem2); - M.r[3] = vValues; - return M; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMMATRIX XMMatrixOrthographicOffCenterRH -( - FLOAT ViewLeft, - FLOAT ViewRight, - FLOAT ViewBottom, - FLOAT ViewTop, - FLOAT NearZ, - FLOAT FarZ -) -{ -#if defined(_XM_NO_INTRINSICS_) - - FLOAT ReciprocalWidth; - FLOAT ReciprocalHeight; - XMMATRIX M; - - XMASSERT(!XMScalarNearEqual(ViewRight, ViewLeft, 0.00001f)); - XMASSERT(!XMScalarNearEqual(ViewTop, ViewBottom, 0.00001f)); - XMASSERT(!XMScalarNearEqual(FarZ, NearZ, 0.00001f)); - - ReciprocalWidth = 1.0f / (ViewRight - ViewLeft); - ReciprocalHeight = 1.0f / (ViewTop - ViewBottom); - - M.r[0] = XMVectorSet(ReciprocalWidth + ReciprocalWidth, 0.0f, 0.0f, 0.0f); - M.r[1] = XMVectorSet(0.0f, ReciprocalHeight + ReciprocalHeight, 0.0f, 0.0f); - M.r[2] = XMVectorSet(0.0f, 0.0f, 1.0f / (NearZ - FarZ), 0.0f); - M.r[3] = XMVectorSet(-(ViewLeft + ViewRight) * ReciprocalWidth, - -(ViewTop + ViewBottom) * ReciprocalHeight, - M.r[2].vector4_f32[2] * NearZ, - 1.0f); - - return M; - -#elif defined(_XM_SSE_INTRINSICS_) - XMMATRIX M; - FLOAT fReciprocalWidth = 1.0f / (ViewRight - ViewLeft); - FLOAT fReciprocalHeight = 1.0f / (ViewTop - ViewBottom); - FLOAT fRange = 1.0f / (NearZ-FarZ); - // Note: This is recorded on the stack - XMVECTOR rMem = { - fReciprocalWidth, - fReciprocalHeight, - fRange, - 1.0f - }; - XMVECTOR rMem2 = { - -(ViewLeft + ViewRight), - -(ViewTop + ViewBottom), - NearZ, - 1.0f - }; - // Copy from memory to SSE register - XMVECTOR vValues = rMem; - XMVECTOR vTemp = _mm_setzero_ps(); - // Copy x only - vTemp = _mm_move_ss(vTemp,vValues); - // fReciprocalWidth*2,0,0,0 - vTemp = _mm_add_ss(vTemp,vTemp); - M.r[0] = vTemp; - // 0,fReciprocalHeight*2,0,0 - vTemp = vValues; - vTemp = _mm_and_ps(vTemp,g_XMMaskY); - vTemp = _mm_add_ps(vTemp,vTemp); - M.r[1] = vTemp; - // 0,0,fRange,0.0f - vTemp = vValues; - vTemp = _mm_and_ps(vTemp,g_XMMaskZ); - M.r[2] = vTemp; - // -(ViewLeft + ViewRight)*fReciprocalWidth,-(ViewTop + ViewBottom)*fReciprocalHeight,fRange*-NearZ,1.0f - vValues = _mm_mul_ps(vValues,rMem2); - M.r[3] = vValues; - return M; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -#ifdef __cplusplus - -/**************************************************************************** - * - * XMMATRIX operators and methods - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMMATRIX::_XMMATRIX -( - FXMVECTOR R0, - FXMVECTOR R1, - FXMVECTOR R2, - CXMVECTOR R3 -) -{ - r[0] = R0; - r[1] = R1; - r[2] = R2; - r[3] = R3; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMMATRIX::_XMMATRIX -( - FLOAT m00, FLOAT m01, FLOAT m02, FLOAT m03, - FLOAT m10, FLOAT m11, FLOAT m12, FLOAT m13, - FLOAT m20, FLOAT m21, FLOAT m22, FLOAT m23, - FLOAT m30, FLOAT m31, FLOAT m32, FLOAT m33 -) -{ - r[0] = XMVectorSet(m00, m01, m02, m03); - r[1] = XMVectorSet(m10, m11, m12, m13); - r[2] = XMVectorSet(m20, m21, m22, m23); - r[3] = XMVectorSet(m30, m31, m32, m33); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMMATRIX::_XMMATRIX -( - CONST FLOAT* pArray -) -{ - r[0] = XMLoadFloat4((XMFLOAT4*)pArray); - r[1] = XMLoadFloat4((XMFLOAT4*)(pArray + 4)); - r[2] = XMLoadFloat4((XMFLOAT4*)(pArray + 8)); - r[3] = XMLoadFloat4((XMFLOAT4*)(pArray + 12)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMMATRIX& _XMMATRIX::operator= -( - CONST _XMMATRIX& M -) -{ - r[0] = M.r[0]; - r[1] = M.r[1]; - r[2] = M.r[2]; - r[3] = M.r[3]; - return *this; -} - -//------------------------------------------------------------------------------ - -#ifndef XM_NO_OPERATOR_OVERLOADS - -#if !defined(_XBOX_VER) && defined(_XM_ISVS2005_) && defined(_XM_X64_) -#pragma warning(push) -#pragma warning(disable : 4328) -#endif - -XMFINLINE _XMMATRIX& _XMMATRIX::operator*= -( - CONST _XMMATRIX& M -) -{ - *this = XMMatrixMultiply(*this, M); - return *this; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMMATRIX _XMMATRIX::operator* -( - CONST _XMMATRIX& M -) CONST -{ - return XMMatrixMultiply(*this, M); -} - -#if !defined(_XBOX_VER) && defined(_XM_ISVS2005_) && defined(_XM_X64_) -#pragma warning(pop) -#endif - -#endif // !XM_NO_OPERATOR_OVERLOADS - -/**************************************************************************** - * - * XMFLOAT3X3 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMFLOAT3X3::_XMFLOAT3X3 -( - FLOAT m00, FLOAT m01, FLOAT m02, - FLOAT m10, FLOAT m11, FLOAT m12, - FLOAT m20, FLOAT m21, FLOAT m22 -) -{ - m[0][0] = m00; - m[0][1] = m01; - m[0][2] = m02; - - m[1][0] = m10; - m[1][1] = m11; - m[1][2] = m12; - - m[2][0] = m20; - m[2][1] = m21; - m[2][2] = m22; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMFLOAT3X3::_XMFLOAT3X3 -( - CONST FLOAT* pArray -) -{ - UINT Row; - UINT Column; - - for (Row = 0; Row < 3; Row++) - { - for (Column = 0; Column < 3; Column++) - { - m[Row][Column] = pArray[Row * 3 + Column]; - } - } -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMFLOAT3X3& _XMFLOAT3X3::operator= -( - CONST _XMFLOAT3X3& Float3x3 -) -{ - _11 = Float3x3._11; - _12 = Float3x3._12; - _13 = Float3x3._13; - _21 = Float3x3._21; - _22 = Float3x3._22; - _23 = Float3x3._23; - _31 = Float3x3._31; - _32 = Float3x3._32; - _33 = Float3x3._33; - - return *this; -} - -/**************************************************************************** - * - * XMFLOAT4X3 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMFLOAT4X3::_XMFLOAT4X3 -( - FLOAT m00, FLOAT m01, FLOAT m02, - FLOAT m10, FLOAT m11, FLOAT m12, - FLOAT m20, FLOAT m21, FLOAT m22, - FLOAT m30, FLOAT m31, FLOAT m32 -) -{ - m[0][0] = m00; - m[0][1] = m01; - m[0][2] = m02; - - m[1][0] = m10; - m[1][1] = m11; - m[1][2] = m12; - - m[2][0] = m20; - m[2][1] = m21; - m[2][2] = m22; - - m[3][0] = m30; - m[3][1] = m31; - m[3][2] = m32; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMFLOAT4X3::_XMFLOAT4X3 -( - CONST FLOAT* pArray -) -{ - UINT Row; - UINT Column; - - for (Row = 0; Row < 4; Row++) - { - for (Column = 0; Column < 3; Column++) - { - m[Row][Column] = pArray[Row * 3 + Column]; - } - } -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMFLOAT4X3& _XMFLOAT4X3::operator= -( - CONST _XMFLOAT4X3& Float4x3 -) -{ - XMVECTOR V1 = XMLoadFloat4((XMFLOAT4*)&Float4x3._11); - XMVECTOR V2 = XMLoadFloat4((XMFLOAT4*)&Float4x3._22); - XMVECTOR V3 = XMLoadFloat4((XMFLOAT4*)&Float4x3._33); - - XMStoreFloat4((XMFLOAT4*)&_11, V1); - XMStoreFloat4((XMFLOAT4*)&_22, V2); - XMStoreFloat4((XMFLOAT4*)&_33, V3); - - return *this; -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMFLOAT4X3A& XMFLOAT4X3A::operator= -( - CONST XMFLOAT4X3A& Float4x3 -) -{ - XMVECTOR V1 = XMLoadFloat4A((XMFLOAT4A*)&Float4x3._11); - XMVECTOR V2 = XMLoadFloat4A((XMFLOAT4A*)&Float4x3._22); - XMVECTOR V3 = XMLoadFloat4A((XMFLOAT4A*)&Float4x3._33); - - XMStoreFloat4A((XMFLOAT4A*)&_11, V1); - XMStoreFloat4A((XMFLOAT4A*)&_22, V2); - XMStoreFloat4A((XMFLOAT4A*)&_33, V3); - - return *this; -} - -/**************************************************************************** - * - * XMFLOAT4X4 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMFLOAT4X4::_XMFLOAT4X4 -( - FLOAT m00, FLOAT m01, FLOAT m02, FLOAT m03, - FLOAT m10, FLOAT m11, FLOAT m12, FLOAT m13, - FLOAT m20, FLOAT m21, FLOAT m22, FLOAT m23, - FLOAT m30, FLOAT m31, FLOAT m32, FLOAT m33 -) -{ - m[0][0] = m00; - m[0][1] = m01; - m[0][2] = m02; - m[0][3] = m03; - - m[1][0] = m10; - m[1][1] = m11; - m[1][2] = m12; - m[1][3] = m13; - - m[2][0] = m20; - m[2][1] = m21; - m[2][2] = m22; - m[2][3] = m23; - - m[3][0] = m30; - m[3][1] = m31; - m[3][2] = m32; - m[3][3] = m33; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMFLOAT4X4::_XMFLOAT4X4 -( - CONST FLOAT* pArray -) -{ - UINT Row; - UINT Column; - - for (Row = 0; Row < 4; Row++) - { - for (Column = 0; Column < 4; Column++) - { - m[Row][Column] = pArray[Row * 4 + Column]; - } - } -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMFLOAT4X4& _XMFLOAT4X4::operator= -( - CONST _XMFLOAT4X4& Float4x4 -) -{ - XMVECTOR V1 = XMLoadFloat4((XMFLOAT4*)&Float4x4._11); - XMVECTOR V2 = XMLoadFloat4((XMFLOAT4*)&Float4x4._21); - XMVECTOR V3 = XMLoadFloat4((XMFLOAT4*)&Float4x4._31); - XMVECTOR V4 = XMLoadFloat4((XMFLOAT4*)&Float4x4._41); - - XMStoreFloat4((XMFLOAT4*)&_11, V1); - XMStoreFloat4((XMFLOAT4*)&_21, V2); - XMStoreFloat4((XMFLOAT4*)&_31, V3); - XMStoreFloat4((XMFLOAT4*)&_41, V4); - - return *this; -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMFLOAT4X4A& XMFLOAT4X4A::operator= -( - CONST XMFLOAT4X4A& Float4x4 -) -{ - XMVECTOR V1 = XMLoadFloat4A((XMFLOAT4A*)&Float4x4._11); - XMVECTOR V2 = XMLoadFloat4A((XMFLOAT4A*)&Float4x4._21); - XMVECTOR V3 = XMLoadFloat4A((XMFLOAT4A*)&Float4x4._31); - XMVECTOR V4 = XMLoadFloat4A((XMFLOAT4A*)&Float4x4._41); - - XMStoreFloat4A((XMFLOAT4A*)&_11, V1); - XMStoreFloat4A((XMFLOAT4A*)&_21, V2); - XMStoreFloat4A((XMFLOAT4A*)&_31, V3); - XMStoreFloat4A((XMFLOAT4A*)&_41, V4); - - return *this; -} - -#endif // __cplusplus - -#endif // __XNAMATHMATRIX_INL__ - diff --git a/SDK/Include/xnamathmisc.inl b/SDK/Include/xnamathmisc.inl deleted file mode 100644 index c937ee1..0000000 --- a/SDK/Include/xnamathmisc.inl +++ /dev/null @@ -1,2464 +0,0 @@ -/*++ - -Copyright (c) Microsoft Corporation. All rights reserved. - -Module Name: - - xnamathmisc.inl - -Abstract: - - XNA math library for Windows and Xbox 360: Quaternion, plane, and color functions. ---*/ - -#if defined(_MSC_VER) && (_MSC_VER > 1000) -#pragma once -#endif - -#ifndef __XNAMATHMISC_INL__ -#define __XNAMATHMISC_INL__ - -/**************************************************************************** - * - * Quaternion - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ -// Comparison operations -//------------------------------------------------------------------------------ - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMQuaternionEqual -( - FXMVECTOR Q1, - FXMVECTOR Q2 -) -{ - return XMVector4Equal(Q1, Q2); -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMQuaternionNotEqual -( - FXMVECTOR Q1, - FXMVECTOR Q2 -) -{ - return XMVector4NotEqual(Q1, Q2); -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMQuaternionIsNaN -( - FXMVECTOR Q -) -{ - return XMVector4IsNaN(Q); -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMQuaternionIsInfinite -( - FXMVECTOR Q -) -{ - return XMVector4IsInfinite(Q); -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMQuaternionIsIdentity -( - FXMVECTOR Q -) -{ -#if defined(_XM_NO_INTRINSICS_) - - return XMVector4Equal(Q, g_XMIdentityR3.v); - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp = _mm_cmpeq_ps(Q,g_XMIdentityR3); - return (_mm_movemask_ps(vTemp)==0x0f) ? true : false; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Computation operations -//------------------------------------------------------------------------------ - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMQuaternionDot -( - FXMVECTOR Q1, - FXMVECTOR Q2 -) -{ - return XMVector4Dot(Q1, Q2); -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMQuaternionMultiply -( - FXMVECTOR Q1, - FXMVECTOR Q2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR NegativeQ1; - XMVECTOR Q2X; - XMVECTOR Q2Y; - XMVECTOR Q2Z; - XMVECTOR Q2W; - XMVECTOR Q1WZYX; - XMVECTOR Q1ZWXY; - XMVECTOR Q1YXWZ; - XMVECTOR Result; - CONST XMVECTORU32 ControlWZYX = {XM_PERMUTE_0W, XM_PERMUTE_1Z, XM_PERMUTE_0Y, XM_PERMUTE_1X}; - CONST XMVECTORU32 ControlZWXY = {XM_PERMUTE_0Z, XM_PERMUTE_0W, XM_PERMUTE_1X, XM_PERMUTE_1Y}; - CONST XMVECTORU32 ControlYXWZ = {XM_PERMUTE_1Y, XM_PERMUTE_0X, XM_PERMUTE_0W, XM_PERMUTE_1Z}; - - NegativeQ1 = XMVectorNegate(Q1); - - Q2W = XMVectorSplatW(Q2); - Q2X = XMVectorSplatX(Q2); - Q2Y = XMVectorSplatY(Q2); - Q2Z = XMVectorSplatZ(Q2); - - Q1WZYX = XMVectorPermute(Q1, NegativeQ1, ControlWZYX.v); - Q1ZWXY = XMVectorPermute(Q1, NegativeQ1, ControlZWXY.v); - Q1YXWZ = XMVectorPermute(Q1, NegativeQ1, ControlYXWZ.v); - - Result = XMVectorMultiply(Q1, Q2W); - Result = XMVectorMultiplyAdd(Q1WZYX, Q2X, Result); - Result = XMVectorMultiplyAdd(Q1ZWXY, Q2Y, Result); - Result = XMVectorMultiplyAdd(Q1YXWZ, Q2Z, Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - static CONST XMVECTORF32 ControlWZYX = { 1.0f,-1.0f, 1.0f,-1.0f}; - static CONST XMVECTORF32 ControlZWXY = { 1.0f, 1.0f,-1.0f,-1.0f}; - static CONST XMVECTORF32 ControlYXWZ = {-1.0f, 1.0f, 1.0f,-1.0f}; - // Copy to SSE registers and use as few as possible for x86 - XMVECTOR Q2X = Q2; - XMVECTOR Q2Y = Q2; - XMVECTOR Q2Z = Q2; - XMVECTOR vResult = Q2; - // Splat with one instruction - vResult = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(3,3,3,3)); - Q2X = _mm_shuffle_ps(Q2X,Q2X,_MM_SHUFFLE(0,0,0,0)); - Q2Y = _mm_shuffle_ps(Q2Y,Q2Y,_MM_SHUFFLE(1,1,1,1)); - Q2Z = _mm_shuffle_ps(Q2Z,Q2Z,_MM_SHUFFLE(2,2,2,2)); - // Retire Q1 and perform Q1*Q2W - vResult = _mm_mul_ps(vResult,Q1); - XMVECTOR Q1Shuffle = Q1; - // Shuffle the copies of Q1 - Q1Shuffle = _mm_shuffle_ps(Q1Shuffle,Q1Shuffle,_MM_SHUFFLE(0,1,2,3)); - // Mul by Q1WZYX - Q2X = _mm_mul_ps(Q2X,Q1Shuffle); - Q1Shuffle = _mm_shuffle_ps(Q1Shuffle,Q1Shuffle,_MM_SHUFFLE(2,3,0,1)); - // Flip the signs on y and z - Q2X = _mm_mul_ps(Q2X,ControlWZYX); - // Mul by Q1ZWXY - Q2Y = _mm_mul_ps(Q2Y,Q1Shuffle); - Q1Shuffle = _mm_shuffle_ps(Q1Shuffle,Q1Shuffle,_MM_SHUFFLE(0,1,2,3)); - // Flip the signs on z and w - Q2Y = _mm_mul_ps(Q2Y,ControlZWXY); - // Mul by Q1YXWZ - Q2Z = _mm_mul_ps(Q2Z,Q1Shuffle); - vResult = _mm_add_ps(vResult,Q2X); - // Flip the signs on x and w - Q2Z = _mm_mul_ps(Q2Z,ControlYXWZ); - Q2Y = _mm_add_ps(Q2Y,Q2Z); - vResult = _mm_add_ps(vResult,Q2Y); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMQuaternionLengthSq -( - FXMVECTOR Q -) -{ - return XMVector4LengthSq(Q); -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMQuaternionReciprocalLength -( - FXMVECTOR Q -) -{ - return XMVector4ReciprocalLength(Q); -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMQuaternionLength -( - FXMVECTOR Q -) -{ - return XMVector4Length(Q); -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMQuaternionNormalizeEst -( - FXMVECTOR Q -) -{ - return XMVector4NormalizeEst(Q); -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMQuaternionNormalize -( - FXMVECTOR Q -) -{ - return XMVector4Normalize(Q); -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMQuaternionConjugate -( - FXMVECTOR Q -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result = { - -Q.vector4_f32[0], - -Q.vector4_f32[1], - -Q.vector4_f32[2], - Q.vector4_f32[3] - }; - return Result; -#elif defined(_XM_SSE_INTRINSICS_) - static const XMVECTORF32 NegativeOne3 = {-1.0f,-1.0f,-1.0f,1.0f}; - XMVECTOR Result = _mm_mul_ps(Q,NegativeOne3); - return Result; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMQuaternionInverse -( - FXMVECTOR Q -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Conjugate; - XMVECTOR L; - XMVECTOR Control; - XMVECTOR Result; - CONST XMVECTOR Zero = XMVectorZero(); - - L = XMVector4LengthSq(Q); - Conjugate = XMQuaternionConjugate(Q); - - Control = XMVectorLessOrEqual(L, g_XMEpsilon.v); - - L = XMVectorReciprocal(L); - Result = XMVectorMultiply(Conjugate, L); - - Result = XMVectorSelect(Result, Zero, Control); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR Conjugate; - XMVECTOR L; - XMVECTOR Control; - XMVECTOR Result; - XMVECTOR Zero = XMVectorZero(); - - L = XMVector4LengthSq(Q); - Conjugate = XMQuaternionConjugate(Q); - Control = XMVectorLessOrEqual(L, g_XMEpsilon); - Result = _mm_div_ps(Conjugate,L); - Result = XMVectorSelect(Result, Zero, Control); - return Result; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMQuaternionLn -( - FXMVECTOR Q -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Q0; - XMVECTOR QW; - XMVECTOR Theta; - XMVECTOR SinTheta; - XMVECTOR S; - XMVECTOR ControlW; - XMVECTOR Result; - static CONST XMVECTOR OneMinusEpsilon = {1.0f - 0.00001f, 1.0f - 0.00001f, 1.0f - 0.00001f, 1.0f - 0.00001f}; - - QW = XMVectorSplatW(Q); - Q0 = XMVectorSelect(g_XMSelect1110.v, Q, g_XMSelect1110.v); - - ControlW = XMVectorInBounds(QW, OneMinusEpsilon); - - Theta = XMVectorACos(QW); - SinTheta = XMVectorSin(Theta); - - S = XMVectorReciprocal(SinTheta); - S = XMVectorMultiply(Theta, S); - - Result = XMVectorMultiply(Q0, S); - - Result = XMVectorSelect(Q0, Result, ControlW); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - static CONST XMVECTORF32 OneMinusEpsilon = {1.0f - 0.00001f, 1.0f - 0.00001f, 1.0f - 0.00001f, 1.0f - 0.00001f}; - static CONST XMVECTORF32 NegOneMinusEpsilon = {-(1.0f - 0.00001f), -(1.0f - 0.00001f),-(1.0f - 0.00001f),-(1.0f - 0.00001f)}; - // Get W only - XMVECTOR QW = _mm_shuffle_ps(Q,Q,_MM_SHUFFLE(3,3,3,3)); - // W = 0 - XMVECTOR Q0 = _mm_and_ps(Q,g_XMMask3); - // Use W if within bounds - XMVECTOR ControlW = _mm_cmple_ps(QW,OneMinusEpsilon); - XMVECTOR vTemp2 = _mm_cmpge_ps(QW,NegOneMinusEpsilon); - ControlW = _mm_and_ps(ControlW,vTemp2); - // Get theta - XMVECTOR vTheta = XMVectorACos(QW); - // Get Sine of theta - vTemp2 = XMVectorSin(vTheta); - // theta/sine of theta - vTheta = _mm_div_ps(vTheta,vTemp2); - // Here's the answer - vTheta = _mm_mul_ps(vTheta,Q0); - // Was W in bounds? If not, return input as is - vTheta = XMVectorSelect(Q0,vTheta,ControlW); - return vTheta; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMQuaternionExp -( - FXMVECTOR Q -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Theta; - XMVECTOR SinTheta; - XMVECTOR CosTheta; - XMVECTOR S; - XMVECTOR Control; - XMVECTOR Zero; - XMVECTOR Result; - - Theta = XMVector3Length(Q); - XMVectorSinCos(&SinTheta, &CosTheta, Theta); - - S = XMVectorReciprocal(Theta); - S = XMVectorMultiply(SinTheta, S); - - Result = XMVectorMultiply(Q, S); - - Zero = XMVectorZero(); - Control = XMVectorNearEqual(Theta, Zero, g_XMEpsilon.v); - Result = XMVectorSelect(Result, Q, Control); - - Result = XMVectorSelect(CosTheta, Result, g_XMSelect1110.v); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR Theta; - XMVECTOR SinTheta; - XMVECTOR CosTheta; - XMVECTOR S; - XMVECTOR Control; - XMVECTOR Zero; - XMVECTOR Result; - Theta = XMVector3Length(Q); - XMVectorSinCos(&SinTheta, &CosTheta, Theta); - S = _mm_div_ps(SinTheta,Theta); - Result = _mm_mul_ps(Q, S); - Zero = XMVectorZero(); - Control = XMVectorNearEqual(Theta, Zero, g_XMEpsilon); - Result = XMVectorSelect(Result,Q,Control); - Result = _mm_and_ps(Result,g_XMMask3); - CosTheta = _mm_and_ps(CosTheta,g_XMMaskW); - Result = _mm_or_ps(Result,CosTheta); - return Result; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMVECTOR XMQuaternionSlerp -( - FXMVECTOR Q0, - FXMVECTOR Q1, - FLOAT t -) -{ - XMVECTOR T = XMVectorReplicate(t); - return XMQuaternionSlerpV(Q0, Q1, T); -} - -//------------------------------------------------------------------------------ - -XMINLINE XMVECTOR XMQuaternionSlerpV -( - FXMVECTOR Q0, - FXMVECTOR Q1, - FXMVECTOR T -) -{ -#if defined(_XM_NO_INTRINSICS_) - - // Result = Q0 * sin((1.0 - t) * Omega) / sin(Omega) + Q1 * sin(t * Omega) / sin(Omega) - XMVECTOR Omega; - XMVECTOR CosOmega; - XMVECTOR SinOmega; - XMVECTOR InvSinOmega; - XMVECTOR V01; - XMVECTOR C1000; - XMVECTOR SignMask; - XMVECTOR S0; - XMVECTOR S1; - XMVECTOR Sign; - XMVECTOR Control; - XMVECTOR Result; - XMVECTOR Zero; - CONST XMVECTOR OneMinusEpsilon = {1.0f - 0.00001f, 1.0f - 0.00001f, 1.0f - 0.00001f, 1.0f - 0.00001f}; - - XMASSERT((T.vector4_f32[1] == T.vector4_f32[0]) && (T.vector4_f32[2] == T.vector4_f32[0]) && (T.vector4_f32[3] == T.vector4_f32[0])); - - CosOmega = XMQuaternionDot(Q0, Q1); - - Zero = XMVectorZero(); - Control = XMVectorLess(CosOmega, Zero); - Sign = XMVectorSelect(g_XMOne.v, g_XMNegativeOne.v, Control); - - CosOmega = XMVectorMultiply(CosOmega, Sign); - - Control = XMVectorLess(CosOmega, OneMinusEpsilon); - - SinOmega = XMVectorNegativeMultiplySubtract(CosOmega, CosOmega, g_XMOne.v); - SinOmega = XMVectorSqrt(SinOmega); - - Omega = XMVectorATan2(SinOmega, CosOmega); - - SignMask = XMVectorSplatSignMask(); - C1000 = XMVectorSetBinaryConstant(1, 0, 0, 0); - V01 = XMVectorShiftLeft(T, Zero, 2); - SignMask = XMVectorShiftLeft(SignMask, Zero, 3); - V01 = XMVectorXorInt(V01, SignMask); - V01 = XMVectorAdd(C1000, V01); - - InvSinOmega = XMVectorReciprocal(SinOmega); - - S0 = XMVectorMultiply(V01, Omega); - S0 = XMVectorSin(S0); - S0 = XMVectorMultiply(S0, InvSinOmega); - - S0 = XMVectorSelect(V01, S0, Control); - - S1 = XMVectorSplatY(S0); - S0 = XMVectorSplatX(S0); - - S1 = XMVectorMultiply(S1, Sign); - - Result = XMVectorMultiply(Q0, S0); - Result = XMVectorMultiplyAdd(Q1, S1, Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Result = Q0 * sin((1.0 - t) * Omega) / sin(Omega) + Q1 * sin(t * Omega) / sin(Omega) - XMVECTOR Omega; - XMVECTOR CosOmega; - XMVECTOR SinOmega; - XMVECTOR V01; - XMVECTOR S0; - XMVECTOR S1; - XMVECTOR Sign; - XMVECTOR Control; - XMVECTOR Result; - XMVECTOR Zero; - static const XMVECTORF32 OneMinusEpsilon = {1.0f - 0.00001f, 1.0f - 0.00001f, 1.0f - 0.00001f, 1.0f - 0.00001f}; - static const XMVECTORI32 SignMask2 = {0x80000000,0x00000000,0x00000000,0x00000000}; - static const XMVECTORI32 MaskXY = {0xFFFFFFFF,0xFFFFFFFF,0x00000000,0x00000000}; - - XMASSERT((XMVectorGetY(T) == XMVectorGetX(T)) && (XMVectorGetZ(T) == XMVectorGetX(T)) && (XMVectorGetW(T) == XMVectorGetX(T))); - - CosOmega = XMQuaternionDot(Q0, Q1); - - Zero = XMVectorZero(); - Control = XMVectorLess(CosOmega, Zero); - Sign = XMVectorSelect(g_XMOne, g_XMNegativeOne, Control); - - CosOmega = _mm_mul_ps(CosOmega, Sign); - - Control = XMVectorLess(CosOmega, OneMinusEpsilon); - - SinOmega = _mm_mul_ps(CosOmega,CosOmega); - SinOmega = _mm_sub_ps(g_XMOne,SinOmega); - SinOmega = _mm_sqrt_ps(SinOmega); - - Omega = XMVectorATan2(SinOmega, CosOmega); - - V01 = _mm_shuffle_ps(T,T,_MM_SHUFFLE(2,3,0,1)); - V01 = _mm_and_ps(V01,MaskXY); - V01 = _mm_xor_ps(V01,SignMask2); - V01 = _mm_add_ps(g_XMIdentityR0, V01); - - S0 = _mm_mul_ps(V01, Omega); - S0 = XMVectorSin(S0); - S0 = _mm_div_ps(S0, SinOmega); - - S0 = XMVectorSelect(V01, S0, Control); - - S1 = XMVectorSplatY(S0); - S0 = XMVectorSplatX(S0); - - S1 = _mm_mul_ps(S1, Sign); - Result = _mm_mul_ps(Q0, S0); - S1 = _mm_mul_ps(S1, Q1); - Result = _mm_add_ps(Result,S1); - return Result; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMQuaternionSquad -( - FXMVECTOR Q0, - FXMVECTOR Q1, - FXMVECTOR Q2, - CXMVECTOR Q3, - FLOAT t -) -{ - XMVECTOR T = XMVectorReplicate(t); - return XMQuaternionSquadV(Q0, Q1, Q2, Q3, T); -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMQuaternionSquadV -( - FXMVECTOR Q0, - FXMVECTOR Q1, - FXMVECTOR Q2, - CXMVECTOR Q3, - CXMVECTOR T -) -{ - XMVECTOR Q03; - XMVECTOR Q12; - XMVECTOR TP; - XMVECTOR Two; - XMVECTOR Result; - - XMASSERT( (XMVectorGetY(T) == XMVectorGetX(T)) && (XMVectorGetZ(T) == XMVectorGetX(T)) && (XMVectorGetW(T) == XMVectorGetX(T)) ); - - TP = T; - Two = XMVectorSplatConstant(2, 0); - - Q03 = XMQuaternionSlerpV(Q0, Q3, T); - Q12 = XMQuaternionSlerpV(Q1, Q2, T); - - TP = XMVectorNegativeMultiplySubtract(TP, TP, TP); - TP = XMVectorMultiply(TP, Two); - - Result = XMQuaternionSlerpV(Q03, Q12, TP); - - return Result; - -} - -//------------------------------------------------------------------------------ - -XMINLINE VOID XMQuaternionSquadSetup -( - XMVECTOR* pA, - XMVECTOR* pB, - XMVECTOR* pC, - FXMVECTOR Q0, - FXMVECTOR Q1, - FXMVECTOR Q2, - CXMVECTOR Q3 -) -{ - XMVECTOR SQ0, SQ2, SQ3; - XMVECTOR InvQ1, InvQ2; - XMVECTOR LnQ0, LnQ1, LnQ2, LnQ3; - XMVECTOR ExpQ02, ExpQ13; - XMVECTOR LS01, LS12, LS23; - XMVECTOR LD01, LD12, LD23; - XMVECTOR Control0, Control1, Control2; - XMVECTOR NegativeOneQuarter; - - XMASSERT(pA); - XMASSERT(pB); - XMASSERT(pC); - - LS12 = XMQuaternionLengthSq(XMVectorAdd(Q1, Q2)); - LD12 = XMQuaternionLengthSq(XMVectorSubtract(Q1, Q2)); - SQ2 = XMVectorNegate(Q2); - - Control1 = XMVectorLess(LS12, LD12); - SQ2 = XMVectorSelect(Q2, SQ2, Control1); - - LS01 = XMQuaternionLengthSq(XMVectorAdd(Q0, Q1)); - LD01 = XMQuaternionLengthSq(XMVectorSubtract(Q0, Q1)); - SQ0 = XMVectorNegate(Q0); - - LS23 = XMQuaternionLengthSq(XMVectorAdd(SQ2, Q3)); - LD23 = XMQuaternionLengthSq(XMVectorSubtract(SQ2, Q3)); - SQ3 = XMVectorNegate(Q3); - - Control0 = XMVectorLess(LS01, LD01); - Control2 = XMVectorLess(LS23, LD23); - - SQ0 = XMVectorSelect(Q0, SQ0, Control0); - SQ3 = XMVectorSelect(Q3, SQ3, Control2); - - InvQ1 = XMQuaternionInverse(Q1); - InvQ2 = XMQuaternionInverse(SQ2); - - LnQ0 = XMQuaternionLn(XMQuaternionMultiply(InvQ1, SQ0)); - LnQ2 = XMQuaternionLn(XMQuaternionMultiply(InvQ1, SQ2)); - LnQ1 = XMQuaternionLn(XMQuaternionMultiply(InvQ2, Q1)); - LnQ3 = XMQuaternionLn(XMQuaternionMultiply(InvQ2, SQ3)); - - NegativeOneQuarter = XMVectorSplatConstant(-1, 2); - - ExpQ02 = XMVectorMultiply(XMVectorAdd(LnQ0, LnQ2), NegativeOneQuarter); - ExpQ13 = XMVectorMultiply(XMVectorAdd(LnQ1, LnQ3), NegativeOneQuarter); - ExpQ02 = XMQuaternionExp(ExpQ02); - ExpQ13 = XMQuaternionExp(ExpQ13); - - *pA = XMQuaternionMultiply(Q1, ExpQ02); - *pB = XMQuaternionMultiply(SQ2, ExpQ13); - *pC = SQ2; -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMQuaternionBaryCentric -( - FXMVECTOR Q0, - FXMVECTOR Q1, - FXMVECTOR Q2, - FLOAT f, - FLOAT g -) -{ - XMVECTOR Q01; - XMVECTOR Q02; - FLOAT s; - XMVECTOR Result; - - s = f + g; - - if ((s < 0.00001f) && (s > -0.00001f)) - { - Result = Q0; - } - else - { - Q01 = XMQuaternionSlerp(Q0, Q1, s); - Q02 = XMQuaternionSlerp(Q0, Q2, s); - - Result = XMQuaternionSlerp(Q01, Q02, g / s); - } - - return Result; -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMQuaternionBaryCentricV -( - FXMVECTOR Q0, - FXMVECTOR Q1, - FXMVECTOR Q2, - CXMVECTOR F, - CXMVECTOR G -) -{ - XMVECTOR Q01; - XMVECTOR Q02; - XMVECTOR S, GS; - XMVECTOR Epsilon; - XMVECTOR Result; - - XMASSERT( (XMVectorGetY(F) == XMVectorGetX(F)) && (XMVectorGetZ(F) == XMVectorGetX(F)) && (XMVectorGetW(F) == XMVectorGetX(F)) ); - XMASSERT( (XMVectorGetY(G) == XMVectorGetX(G)) && (XMVectorGetZ(G) == XMVectorGetX(G)) && (XMVectorGetW(G) == XMVectorGetX(G)) ); - - Epsilon = XMVectorSplatConstant(1, 16); - - S = XMVectorAdd(F, G); - - if (XMVector4InBounds(S, Epsilon)) - { - Result = Q0; - } - else - { - Q01 = XMQuaternionSlerpV(Q0, Q1, S); - Q02 = XMQuaternionSlerpV(Q0, Q2, S); - GS = XMVectorReciprocal(S); - GS = XMVectorMultiply(G, GS); - - Result = XMQuaternionSlerpV(Q01, Q02, GS); - } - - return Result; -} - -//------------------------------------------------------------------------------ -// Transformation operations -//------------------------------------------------------------------------------ - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMQuaternionIdentity() -{ -#if defined(_XM_NO_INTRINSICS_) - return g_XMIdentityR3.v; -#elif defined(_XM_SSE_INTRINSICS_) - return g_XMIdentityR3; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMQuaternionRotationRollPitchYaw -( - FLOAT Pitch, - FLOAT Yaw, - FLOAT Roll -) -{ - XMVECTOR Angles; - XMVECTOR Q; - - Angles = XMVectorSet(Pitch, Yaw, Roll, 0.0f); - Q = XMQuaternionRotationRollPitchYawFromVector(Angles); - - return Q; -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMQuaternionRotationRollPitchYawFromVector -( - FXMVECTOR Angles // -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Q, Q0, Q1; - XMVECTOR P0, P1, Y0, Y1, R0, R1; - XMVECTOR HalfAngles; - XMVECTOR SinAngles, CosAngles; - static CONST XMVECTORU32 ControlPitch = {XM_PERMUTE_0X, XM_PERMUTE_1X, XM_PERMUTE_1X, XM_PERMUTE_1X}; - static CONST XMVECTORU32 ControlYaw = {XM_PERMUTE_1Y, XM_PERMUTE_0Y, XM_PERMUTE_1Y, XM_PERMUTE_1Y}; - static CONST XMVECTORU32 ControlRoll = {XM_PERMUTE_1Z, XM_PERMUTE_1Z, XM_PERMUTE_0Z, XM_PERMUTE_1Z}; - static CONST XMVECTOR Sign = {1.0f, -1.0f, -1.0f, 1.0f}; - - HalfAngles = XMVectorMultiply(Angles, g_XMOneHalf.v); - XMVectorSinCos(&SinAngles, &CosAngles, HalfAngles); - - P0 = XMVectorPermute(SinAngles, CosAngles, ControlPitch.v); - Y0 = XMVectorPermute(SinAngles, CosAngles, ControlYaw.v); - R0 = XMVectorPermute(SinAngles, CosAngles, ControlRoll.v); - P1 = XMVectorPermute(CosAngles, SinAngles, ControlPitch.v); - Y1 = XMVectorPermute(CosAngles, SinAngles, ControlYaw.v); - R1 = XMVectorPermute(CosAngles, SinAngles, ControlRoll.v); - - Q1 = XMVectorMultiply(P1, Sign); - Q0 = XMVectorMultiply(P0, Y0); - Q1 = XMVectorMultiply(Q1, Y1); - Q0 = XMVectorMultiply(Q0, R0); - Q = XMVectorMultiplyAdd(Q1, R1, Q0); - - return Q; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR Q, Q0, Q1; - XMVECTOR P0, P1, Y0, Y1, R0, R1; - XMVECTOR HalfAngles; - XMVECTOR SinAngles, CosAngles; - static CONST XMVECTORI32 ControlPitch = {XM_PERMUTE_0X, XM_PERMUTE_1X, XM_PERMUTE_1X, XM_PERMUTE_1X}; - static CONST XMVECTORI32 ControlYaw = {XM_PERMUTE_1Y, XM_PERMUTE_0Y, XM_PERMUTE_1Y, XM_PERMUTE_1Y}; - static CONST XMVECTORI32 ControlRoll = {XM_PERMUTE_1Z, XM_PERMUTE_1Z, XM_PERMUTE_0Z, XM_PERMUTE_1Z}; - static CONST XMVECTORF32 Sign = {1.0f, -1.0f, -1.0f, 1.0f}; - - HalfAngles = _mm_mul_ps(Angles, g_XMOneHalf); - XMVectorSinCos(&SinAngles, &CosAngles, HalfAngles); - - P0 = XMVectorPermute(SinAngles, CosAngles, ControlPitch); - Y0 = XMVectorPermute(SinAngles, CosAngles, ControlYaw); - R0 = XMVectorPermute(SinAngles, CosAngles, ControlRoll); - P1 = XMVectorPermute(CosAngles, SinAngles, ControlPitch); - Y1 = XMVectorPermute(CosAngles, SinAngles, ControlYaw); - R1 = XMVectorPermute(CosAngles, SinAngles, ControlRoll); - - Q1 = _mm_mul_ps(P1, Sign); - Q0 = _mm_mul_ps(P0, Y0); - Q1 = _mm_mul_ps(Q1, Y1); - Q0 = _mm_mul_ps(Q0, R0); - Q = _mm_mul_ps(Q1, R1); - Q = _mm_add_ps(Q,Q0); - return Q; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMQuaternionRotationNormal -( - FXMVECTOR NormalAxis, - FLOAT Angle -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Q; - XMVECTOR N; - XMVECTOR Scale; - - N = XMVectorSelect(g_XMOne.v, NormalAxis, g_XMSelect1110.v); - - XMScalarSinCos(&Scale.vector4_f32[2], &Scale.vector4_f32[3], 0.5f * Angle); - - Scale.vector4_f32[0] = Scale.vector4_f32[1] = Scale.vector4_f32[2]; - - Q = XMVectorMultiply(N, Scale); - - return Q; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR N = _mm_and_ps(NormalAxis,g_XMMask3); - N = _mm_or_ps(N,g_XMIdentityR3); - XMVECTOR Scale = _mm_set_ps1(0.5f * Angle); - XMVECTOR vSine; - XMVECTOR vCosine; - XMVectorSinCos(&vSine,&vCosine,Scale); - Scale = _mm_and_ps(vSine,g_XMMask3); - vCosine = _mm_and_ps(vCosine,g_XMMaskW); - Scale = _mm_or_ps(Scale,vCosine); - N = _mm_mul_ps(N,Scale); - return N; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMQuaternionRotationAxis -( - FXMVECTOR Axis, - FLOAT Angle -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Normal; - XMVECTOR Q; - - XMASSERT(!XMVector3Equal(Axis, XMVectorZero())); - XMASSERT(!XMVector3IsInfinite(Axis)); - - Normal = XMVector3Normalize(Axis); - Q = XMQuaternionRotationNormal(Normal, Angle); - - return Q; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR Normal; - XMVECTOR Q; - - XMASSERT(!XMVector3Equal(Axis, XMVectorZero())); - XMASSERT(!XMVector3IsInfinite(Axis)); - - Normal = XMVector3Normalize(Axis); - Q = XMQuaternionRotationNormal(Normal, Angle); - return Q; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMVECTOR XMQuaternionRotationMatrix -( - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) || defined(_XM_SSE_INTRINSICS_) - - XMVECTOR Q0, Q1, Q2; - XMVECTOR M00, M11, M22; - XMVECTOR CQ0, CQ1, C; - XMVECTOR CX, CY, CZ, CW; - XMVECTOR SQ1, Scale; - XMVECTOR Rsq, Sqrt, VEqualsNaN; - XMVECTOR A, B, P; - XMVECTOR PermuteSplat, PermuteSplatT; - XMVECTOR SignB, SignBT; - XMVECTOR PermuteControl, PermuteControlT; - XMVECTOR Result; - static CONST XMVECTORF32 OneQuarter = {0.25f, 0.25f, 0.25f, 0.25f}; - static CONST XMVECTORF32 SignPNNP = {1.0f, -1.0f, -1.0f, 1.0f}; - static CONST XMVECTORF32 SignNPNP = {-1.0f, 1.0f, -1.0f, 1.0f}; - static CONST XMVECTORF32 SignNNPP = {-1.0f, -1.0f, 1.0f, 1.0f}; - static CONST XMVECTORF32 SignPNPP = {1.0f, -1.0f, 1.0f, 1.0f}; - static CONST XMVECTORF32 SignPPNP = {1.0f, 1.0f, -1.0f, 1.0f}; - static CONST XMVECTORF32 SignNPPP = {-1.0f, 1.0f, 1.0f, 1.0f}; - static CONST XMVECTORU32 Permute0X0X0Y0W = {XM_PERMUTE_0X, XM_PERMUTE_0X, XM_PERMUTE_0Y, XM_PERMUTE_0W}; - static CONST XMVECTORU32 Permute0Y0Z0Z1W = {XM_PERMUTE_0Y, XM_PERMUTE_0Z, XM_PERMUTE_0Z, XM_PERMUTE_1W}; - static CONST XMVECTORU32 SplatX = {XM_PERMUTE_0X, XM_PERMUTE_0X, XM_PERMUTE_0X, XM_PERMUTE_0X}; - static CONST XMVECTORU32 SplatY = {XM_PERMUTE_0Y, XM_PERMUTE_0Y, XM_PERMUTE_0Y, XM_PERMUTE_0Y}; - static CONST XMVECTORU32 SplatZ = {XM_PERMUTE_0Z, XM_PERMUTE_0Z, XM_PERMUTE_0Z, XM_PERMUTE_0Z}; - static CONST XMVECTORU32 SplatW = {XM_PERMUTE_0W, XM_PERMUTE_0W, XM_PERMUTE_0W, XM_PERMUTE_0W}; - static CONST XMVECTORU32 PermuteC = {XM_PERMUTE_0X, XM_PERMUTE_0Z, XM_PERMUTE_1X, XM_PERMUTE_1Y}; - static CONST XMVECTORU32 PermuteA = {XM_PERMUTE_0Y, XM_PERMUTE_1Y, XM_PERMUTE_1Z, XM_PERMUTE_0W}; - static CONST XMVECTORU32 PermuteB = {XM_PERMUTE_1X, XM_PERMUTE_1W, XM_PERMUTE_0Z, XM_PERMUTE_0W}; - static CONST XMVECTORU32 Permute0 = {XM_PERMUTE_0X, XM_PERMUTE_1X, XM_PERMUTE_1Z, XM_PERMUTE_1Y}; - static CONST XMVECTORU32 Permute1 = {XM_PERMUTE_1X, XM_PERMUTE_0Y, XM_PERMUTE_1Y, XM_PERMUTE_1Z}; - static CONST XMVECTORU32 Permute2 = {XM_PERMUTE_1Z, XM_PERMUTE_1Y, XM_PERMUTE_0Z, XM_PERMUTE_1X}; - static CONST XMVECTORU32 Permute3 = {XM_PERMUTE_1Y, XM_PERMUTE_1Z, XM_PERMUTE_1X, XM_PERMUTE_0W}; - - M00 = XMVectorSplatX(M.r[0]); - M11 = XMVectorSplatY(M.r[1]); - M22 = XMVectorSplatZ(M.r[2]); - - Q0 = XMVectorMultiply(SignPNNP.v, M00); - Q0 = XMVectorMultiplyAdd(SignNPNP.v, M11, Q0); - Q0 = XMVectorMultiplyAdd(SignNNPP.v, M22, Q0); - - Q1 = XMVectorAdd(Q0, g_XMOne.v); - - Rsq = XMVectorReciprocalSqrt(Q1); - VEqualsNaN = XMVectorIsNaN(Rsq); - Sqrt = XMVectorMultiply(Q1, Rsq); - Q1 = XMVectorSelect(Sqrt, Q1, VEqualsNaN); - - Q1 = XMVectorMultiply(Q1, g_XMOneHalf.v); - - SQ1 = XMVectorMultiply(Rsq, g_XMOneHalf.v); - - CQ0 = XMVectorPermute(Q0, Q0, Permute0X0X0Y0W.v); - CQ1 = XMVectorPermute(Q0, g_XMEpsilon.v, Permute0Y0Z0Z1W.v); - C = XMVectorGreaterOrEqual(CQ0, CQ1); - - CX = XMVectorSplatX(C); - CY = XMVectorSplatY(C); - CZ = XMVectorSplatZ(C); - CW = XMVectorSplatW(C); - - PermuteSplat = XMVectorSelect(SplatZ.v, SplatY.v, CZ); - SignB = XMVectorSelect(SignNPPP.v, SignPPNP.v, CZ); - PermuteControl = XMVectorSelect(Permute2.v, Permute1.v, CZ); - - PermuteSplat = XMVectorSelect(PermuteSplat, SplatZ.v, CX); - SignB = XMVectorSelect(SignB, SignNPPP.v, CX); - PermuteControl = XMVectorSelect(PermuteControl, Permute2.v, CX); - - PermuteSplatT = XMVectorSelect(PermuteSplat,SplatX.v, CY); - SignBT = XMVectorSelect(SignB, SignPNPP.v, CY); - PermuteControlT = XMVectorSelect(PermuteControl,Permute0.v, CY); - - PermuteSplat = XMVectorSelect(PermuteSplat, PermuteSplatT, CX); - SignB = XMVectorSelect(SignB, SignBT, CX); - PermuteControl = XMVectorSelect(PermuteControl, PermuteControlT, CX); - - PermuteSplat = XMVectorSelect(PermuteSplat,SplatW.v, CW); - SignB = XMVectorSelect(SignB, g_XMNegativeOne.v, CW); - PermuteControl = XMVectorSelect(PermuteControl,Permute3.v, CW); - - Scale = XMVectorPermute(SQ1, SQ1, PermuteSplat); - - P = XMVectorPermute(M.r[1], M.r[2],PermuteC.v); // {M10, M12, M20, M21} - A = XMVectorPermute(M.r[0], P, PermuteA.v); // {M01, M12, M20, M03} - B = XMVectorPermute(M.r[0], P, PermuteB.v); // {M10, M21, M02, M03} - - Q2 = XMVectorMultiplyAdd(SignB, B, A); - Q2 = XMVectorMultiply(Q2, Scale); - - Result = XMVectorPermute(Q1, Q2, PermuteControl); - - return Result; - -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Conversion operations -//------------------------------------------------------------------------------ - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMQuaternionToAxisAngle -( - XMVECTOR* pAxis, - FLOAT* pAngle, - FXMVECTOR Q -) -{ - XMASSERT(pAxis); - XMASSERT(pAngle); - - *pAxis = Q; - -#if defined(_XM_SSE_INTRINSICS_) && !defined(_XM_NO_INTRINSICS_) - *pAngle = 2.0f * acosf(XMVectorGetW(Q)); -#else - *pAngle = 2.0f * XMScalarACos(XMVectorGetW(Q)); -#endif -} - -/**************************************************************************** - * - * Plane - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ -// Comparison operations -//------------------------------------------------------------------------------ - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMPlaneEqual -( - FXMVECTOR P1, - FXMVECTOR P2 -) -{ - return XMVector4Equal(P1, P2); -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMPlaneNearEqual -( - FXMVECTOR P1, - FXMVECTOR P2, - FXMVECTOR Epsilon -) -{ - XMVECTOR NP1 = XMPlaneNormalize(P1); - XMVECTOR NP2 = XMPlaneNormalize(P2); - return XMVector4NearEqual(NP1, NP2, Epsilon); -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMPlaneNotEqual -( - FXMVECTOR P1, - FXMVECTOR P2 -) -{ - return XMVector4NotEqual(P1, P2); -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMPlaneIsNaN -( - FXMVECTOR P -) -{ - return XMVector4IsNaN(P); -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMPlaneIsInfinite -( - FXMVECTOR P -) -{ - return XMVector4IsInfinite(P); -} - -//------------------------------------------------------------------------------ -// Computation operations -//------------------------------------------------------------------------------ - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMPlaneDot -( - FXMVECTOR P, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - return XMVector4Dot(P, V); - -#elif defined(_XM_SSE_INTRINSICS_) - __m128 vTemp2 = V; - __m128 vTemp = _mm_mul_ps(P,vTemp2); - vTemp2 = _mm_shuffle_ps(vTemp2,vTemp,_MM_SHUFFLE(1,0,0,0)); // Copy X to the Z position and Y to the W position - vTemp2 = _mm_add_ps(vTemp2,vTemp); // Add Z = X+Z; W = Y+W; - vTemp = _mm_shuffle_ps(vTemp,vTemp2,_MM_SHUFFLE(0,3,0,0)); // Copy W to the Z position - vTemp = _mm_add_ps(vTemp,vTemp2); // Add Z and W together - return _mm_shuffle_ps(vTemp,vTemp,_MM_SHUFFLE(2,2,2,2)); // Splat Z and return -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMPlaneDotCoord -( - FXMVECTOR P, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V3; - XMVECTOR Result; - - // Result = P[0] * V[0] + P[1] * V[1] + P[2] * V[2] + P[3] - V3 = XMVectorSelect(g_XMOne.v, V, g_XMSelect1110.v); - Result = XMVector4Dot(P, V3); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp2 = _mm_and_ps(V,g_XMMask3); - vTemp2 = _mm_or_ps(vTemp2,g_XMIdentityR3); - XMVECTOR vTemp = _mm_mul_ps(P,vTemp2); - vTemp2 = _mm_shuffle_ps(vTemp2,vTemp,_MM_SHUFFLE(1,0,0,0)); // Copy X to the Z position and Y to the W position - vTemp2 = _mm_add_ps(vTemp2,vTemp); // Add Z = X+Z; W = Y+W; - vTemp = _mm_shuffle_ps(vTemp,vTemp2,_MM_SHUFFLE(0,3,0,0)); // Copy W to the Z position - vTemp = _mm_add_ps(vTemp,vTemp2); // Add Z and W together - return _mm_shuffle_ps(vTemp,vTemp,_MM_SHUFFLE(2,2,2,2)); // Splat Z and return -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMPlaneDotNormal -( - FXMVECTOR P, - FXMVECTOR V -) -{ - return XMVector3Dot(P, V); -} - -//------------------------------------------------------------------------------ -// XMPlaneNormalizeEst uses a reciprocal estimate and -// returns QNaN on zero and infinite vectors. - -XMFINLINE XMVECTOR XMPlaneNormalizeEst -( - FXMVECTOR P -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - Result = XMVector3ReciprocalLength(P); - Result = XMVectorMultiply(P, Result); - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Perform the dot product - XMVECTOR vDot = _mm_mul_ps(P,P); - // x=Dot.y, y=Dot.z - XMVECTOR vTemp = _mm_shuffle_ps(vDot,vDot,_MM_SHUFFLE(2,1,2,1)); - // Result.x = x+y - vDot = _mm_add_ss(vDot,vTemp); - // x=Dot.z - vTemp = _mm_shuffle_ps(vTemp,vTemp,_MM_SHUFFLE(1,1,1,1)); - // Result.x = (x+y)+z - vDot = _mm_add_ss(vDot,vTemp); - // Splat x - vDot = _mm_shuffle_ps(vDot,vDot,_MM_SHUFFLE(0,0,0,0)); - // Get the reciprocal - vDot = _mm_rsqrt_ps(vDot); - // Get the reciprocal - vDot = _mm_mul_ps(vDot,P); - return vDot; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMPlaneNormalize -( - FXMVECTOR P -) -{ -#if defined(_XM_NO_INTRINSICS_) - FLOAT fLengthSq = sqrtf((P.vector4_f32[0]*P.vector4_f32[0])+(P.vector4_f32[1]*P.vector4_f32[1])+(P.vector4_f32[2]*P.vector4_f32[2])); - // Prevent divide by zero - if (fLengthSq) { - fLengthSq = 1.0f/fLengthSq; - } - { - XMVECTOR vResult = { - P.vector4_f32[0]*fLengthSq, - P.vector4_f32[1]*fLengthSq, - P.vector4_f32[2]*fLengthSq, - P.vector4_f32[3]*fLengthSq - }; - return vResult; - } -#elif defined(_XM_SSE_INTRINSICS_) - // Perform the dot product on x,y and z only - XMVECTOR vLengthSq = _mm_mul_ps(P,P); - XMVECTOR vTemp = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(2,1,2,1)); - vLengthSq = _mm_add_ss(vLengthSq,vTemp); - vTemp = _mm_shuffle_ps(vTemp,vTemp,_MM_SHUFFLE(1,1,1,1)); - vLengthSq = _mm_add_ss(vLengthSq,vTemp); - vLengthSq = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(0,0,0,0)); - // Prepare for the division - XMVECTOR vResult = _mm_sqrt_ps(vLengthSq); - // Failsafe on zero (Or epsilon) length planes - // If the length is infinity, set the elements to zero - vLengthSq = _mm_cmpneq_ps(vLengthSq,g_XMInfinity); - // Reciprocal mul to perform the normalization - vResult = _mm_div_ps(P,vResult); - // Any that are infinity, set to zero - vResult = _mm_and_ps(vResult,vLengthSq); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMPlaneIntersectLine -( - FXMVECTOR P, - FXMVECTOR LinePoint1, - FXMVECTOR LinePoint2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V1; - XMVECTOR V2; - XMVECTOR D; - XMVECTOR ReciprocalD; - XMVECTOR VT; - XMVECTOR Point; - XMVECTOR Zero; - XMVECTOR Control; - XMVECTOR Result; - - V1 = XMVector3Dot(P, LinePoint1); - V2 = XMVector3Dot(P, LinePoint2); - D = XMVectorSubtract(V1, V2); - - ReciprocalD = XMVectorReciprocal(D); - VT = XMPlaneDotCoord(P, LinePoint1); - VT = XMVectorMultiply(VT, ReciprocalD); - - Point = XMVectorSubtract(LinePoint2, LinePoint1); - Point = XMVectorMultiplyAdd(Point, VT, LinePoint1); - - Zero = XMVectorZero(); - Control = XMVectorNearEqual(D, Zero, g_XMEpsilon.v); - - Result = XMVectorSelect(Point, g_XMQNaN.v, Control); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR V1; - XMVECTOR V2; - XMVECTOR D; - XMVECTOR VT; - XMVECTOR Point; - XMVECTOR Zero; - XMVECTOR Control; - XMVECTOR Result; - - V1 = XMVector3Dot(P, LinePoint1); - V2 = XMVector3Dot(P, LinePoint2); - D = _mm_sub_ps(V1, V2); - - VT = XMPlaneDotCoord(P, LinePoint1); - VT = _mm_div_ps(VT, D); - - Point = _mm_sub_ps(LinePoint2, LinePoint1); - Point = _mm_mul_ps(Point,VT); - Point = _mm_add_ps(Point,LinePoint1); - Zero = XMVectorZero(); - Control = XMVectorNearEqual(D, Zero, g_XMEpsilon); - Result = XMVectorSelect(Point, g_XMQNaN, Control); - return Result; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE VOID XMPlaneIntersectPlane -( - XMVECTOR* pLinePoint1, - XMVECTOR* pLinePoint2, - FXMVECTOR P1, - FXMVECTOR P2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V1; - XMVECTOR V2; - XMVECTOR V3; - XMVECTOR LengthSq; - XMVECTOR RcpLengthSq; - XMVECTOR Point; - XMVECTOR P1W; - XMVECTOR P2W; - XMVECTOR Control; - XMVECTOR LinePoint1; - XMVECTOR LinePoint2; - - XMASSERT(pLinePoint1); - XMASSERT(pLinePoint2); - - V1 = XMVector3Cross(P2, P1); - - LengthSq = XMVector3LengthSq(V1); - - V2 = XMVector3Cross(P2, V1); - - P1W = XMVectorSplatW(P1); - Point = XMVectorMultiply(V2, P1W); - - V3 = XMVector3Cross(V1, P1); - - P2W = XMVectorSplatW(P2); - Point = XMVectorMultiplyAdd(V3, P2W, Point); - - RcpLengthSq = XMVectorReciprocal(LengthSq); - LinePoint1 = XMVectorMultiply(Point, RcpLengthSq); - - LinePoint2 = XMVectorAdd(LinePoint1, V1); - - Control = XMVectorLessOrEqual(LengthSq, g_XMEpsilon.v); - *pLinePoint1 = XMVectorSelect(LinePoint1,g_XMQNaN.v, Control); - *pLinePoint2 = XMVectorSelect(LinePoint2,g_XMQNaN.v, Control); - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pLinePoint1); - XMASSERT(pLinePoint2); - XMVECTOR V1; - XMVECTOR V2; - XMVECTOR V3; - XMVECTOR LengthSq; - XMVECTOR Point; - XMVECTOR P1W; - XMVECTOR P2W; - XMVECTOR Control; - XMVECTOR LinePoint1; - XMVECTOR LinePoint2; - - V1 = XMVector3Cross(P2, P1); - - LengthSq = XMVector3LengthSq(V1); - - V2 = XMVector3Cross(P2, V1); - - P1W = _mm_shuffle_ps(P1,P1,_MM_SHUFFLE(3,3,3,3)); - Point = _mm_mul_ps(V2, P1W); - - V3 = XMVector3Cross(V1, P1); - - P2W = _mm_shuffle_ps(P2,P2,_MM_SHUFFLE(3,3,3,3)); - V3 = _mm_mul_ps(V3,P2W); - Point = _mm_add_ps(Point,V3); - LinePoint1 = _mm_div_ps(Point,LengthSq); - - LinePoint2 = _mm_add_ps(LinePoint1, V1); - - Control = XMVectorLessOrEqual(LengthSq, g_XMEpsilon); - *pLinePoint1 = XMVectorSelect(LinePoint1,g_XMQNaN, Control); - *pLinePoint2 = XMVectorSelect(LinePoint2,g_XMQNaN, Control); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMPlaneTransform -( - FXMVECTOR P, - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR X; - XMVECTOR Y; - XMVECTOR Z; - XMVECTOR W; - XMVECTOR Result; - - W = XMVectorSplatW(P); - Z = XMVectorSplatZ(P); - Y = XMVectorSplatY(P); - X = XMVectorSplatX(P); - - Result = XMVectorMultiply(W, M.r[3]); - Result = XMVectorMultiplyAdd(Z, M.r[2], Result); - Result = XMVectorMultiplyAdd(Y, M.r[1], Result); - Result = XMVectorMultiplyAdd(X, M.r[0], Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR X = _mm_shuffle_ps(P,P,_MM_SHUFFLE(0,0,0,0)); - XMVECTOR Y = _mm_shuffle_ps(P,P,_MM_SHUFFLE(1,1,1,1)); - XMVECTOR Z = _mm_shuffle_ps(P,P,_MM_SHUFFLE(2,2,2,2)); - XMVECTOR W = _mm_shuffle_ps(P,P,_MM_SHUFFLE(3,3,3,3)); - X = _mm_mul_ps(X, M.r[0]); - Y = _mm_mul_ps(Y, M.r[1]); - Z = _mm_mul_ps(Z, M.r[2]); - W = _mm_mul_ps(W, M.r[3]); - X = _mm_add_ps(X,Z); - Y = _mm_add_ps(Y,W); - X = _mm_add_ps(X,Y); - return X; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMFLOAT4* XMPlaneTransformStream -( - XMFLOAT4* pOutputStream, - UINT OutputStride, - CONST XMFLOAT4* pInputStream, - UINT InputStride, - UINT PlaneCount, - CXMMATRIX M -) -{ - return XMVector4TransformStream(pOutputStream, - OutputStride, - pInputStream, - InputStride, - PlaneCount, - M); -} - -//------------------------------------------------------------------------------ -// Conversion operations -//------------------------------------------------------------------------------ - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMPlaneFromPointNormal -( - FXMVECTOR Point, - FXMVECTOR Normal -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR W; - XMVECTOR Result; - - W = XMVector3Dot(Point, Normal); - W = XMVectorNegate(W); - Result = XMVectorSelect(W, Normal, g_XMSelect1110.v); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR W; - XMVECTOR Result; - W = XMVector3Dot(Point,Normal); - W = _mm_mul_ps(W,g_XMNegativeOne); - Result = _mm_and_ps(Normal,g_XMMask3); - W = _mm_and_ps(W,g_XMMaskW); - Result = _mm_or_ps(Result,W); - return Result; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMPlaneFromPoints -( - FXMVECTOR Point1, - FXMVECTOR Point2, - FXMVECTOR Point3 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR N; - XMVECTOR D; - XMVECTOR V21; - XMVECTOR V31; - XMVECTOR Result; - - V21 = XMVectorSubtract(Point1, Point2); - V31 = XMVectorSubtract(Point1, Point3); - - N = XMVector3Cross(V21, V31); - N = XMVector3Normalize(N); - - D = XMPlaneDotNormal(N, Point1); - D = XMVectorNegate(D); - - Result = XMVectorSelect(D, N, g_XMSelect1110.v); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR N; - XMVECTOR D; - XMVECTOR V21; - XMVECTOR V31; - XMVECTOR Result; - - V21 = _mm_sub_ps(Point1, Point2); - V31 = _mm_sub_ps(Point1, Point3); - - N = XMVector3Cross(V21, V31); - N = XMVector3Normalize(N); - - D = XMPlaneDotNormal(N, Point1); - D = _mm_mul_ps(D,g_XMNegativeOne); - N = _mm_and_ps(N,g_XMMask3); - D = _mm_and_ps(D,g_XMMaskW); - Result = _mm_or_ps(D,N); - return Result; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -/**************************************************************************** - * - * Color - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ -// Comparison operations -//------------------------------------------------------------------------------ - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMColorEqual -( - FXMVECTOR C1, - FXMVECTOR C2 -) -{ - return XMVector4Equal(C1, C2); -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMColorNotEqual -( - FXMVECTOR C1, - FXMVECTOR C2 -) -{ - return XMVector4NotEqual(C1, C2); -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMColorGreater -( - FXMVECTOR C1, - FXMVECTOR C2 -) -{ - return XMVector4Greater(C1, C2); -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMColorGreaterOrEqual -( - FXMVECTOR C1, - FXMVECTOR C2 -) -{ - return XMVector4GreaterOrEqual(C1, C2); -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMColorLess -( - FXMVECTOR C1, - FXMVECTOR C2 -) -{ - return XMVector4Less(C1, C2); -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMColorLessOrEqual -( - FXMVECTOR C1, - FXMVECTOR C2 -) -{ - return XMVector4LessOrEqual(C1, C2); -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMColorIsNaN -( - FXMVECTOR C -) -{ - return XMVector4IsNaN(C); -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMColorIsInfinite -( - FXMVECTOR C -) -{ - return XMVector4IsInfinite(C); -} - -//------------------------------------------------------------------------------ -// Computation operations -//------------------------------------------------------------------------------ - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMColorNegative -( - FXMVECTOR vColor -) -{ -#if defined(_XM_NO_INTRINSICS_) -// XMASSERT(XMVector4GreaterOrEqual(C, XMVectorReplicate(0.0f))); -// XMASSERT(XMVector4LessOrEqual(C, XMVectorReplicate(1.0f))); - XMVECTOR vResult = { - 1.0f - vColor.vector4_f32[0], - 1.0f - vColor.vector4_f32[1], - 1.0f - vColor.vector4_f32[2], - vColor.vector4_f32[3] - }; - return vResult; - -#elif defined(_XM_SSE_INTRINSICS_) - // Negate only x,y and z. - XMVECTOR vTemp = _mm_xor_ps(vColor,g_XMNegate3); - // Add 1,1,1,0 to -x,-y,-z,w - return _mm_add_ps(vTemp,g_XMOne3); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMColorModulate -( - FXMVECTOR C1, - FXMVECTOR C2 -) -{ - return XMVectorMultiply(C1, C2); -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMColorAdjustSaturation -( - FXMVECTOR vColor, - FLOAT fSaturation -) -{ -#if defined(_XM_NO_INTRINSICS_) - CONST XMVECTOR gvLuminance = {0.2125f, 0.7154f, 0.0721f, 0.0f}; - - // Luminance = 0.2125f * C[0] + 0.7154f * C[1] + 0.0721f * C[2]; - // Result = (C - Luminance) * Saturation + Luminance; - - FLOAT fLuminance = (vColor.vector4_f32[0]*gvLuminance.vector4_f32[0])+(vColor.vector4_f32[1]*gvLuminance.vector4_f32[1])+(vColor.vector4_f32[2]*gvLuminance.vector4_f32[2]); - XMVECTOR vResult = { - ((vColor.vector4_f32[0] - fLuminance)*fSaturation)+fLuminance, - ((vColor.vector4_f32[1] - fLuminance)*fSaturation)+fLuminance, - ((vColor.vector4_f32[2] - fLuminance)*fSaturation)+fLuminance, - vColor.vector4_f32[3]}; - return vResult; - -#elif defined(_XM_SSE_INTRINSICS_) - static const XMVECTORF32 gvLuminance = {0.2125f, 0.7154f, 0.0721f, 0.0f}; -// Mul RGB by intensity constants - XMVECTOR vLuminance = _mm_mul_ps(vColor,gvLuminance); -// vResult.x = vLuminance.y, vResult.y = vLuminance.y, -// vResult.z = vLuminance.z, vResult.w = vLuminance.z - XMVECTOR vResult = vLuminance; - vResult = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(2,2,1,1)); -// vLuminance.x += vLuminance.y - vLuminance = _mm_add_ss(vLuminance,vResult); -// Splat vLuminance.z - vResult = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(2,2,2,2)); -// vLuminance.x += vLuminance.z (Dot product) - vLuminance = _mm_add_ss(vLuminance,vResult); -// Splat vLuminance - vLuminance = _mm_shuffle_ps(vLuminance,vLuminance,_MM_SHUFFLE(0,0,0,0)); -// Splat fSaturation - XMVECTOR vSaturation = _mm_set_ps1(fSaturation); -// vResult = ((vColor-vLuminance)*vSaturation)+vLuminance; - vResult = _mm_sub_ps(vColor,vLuminance); - vResult = _mm_mul_ps(vResult,vSaturation); - vResult = _mm_add_ps(vResult,vLuminance); -// Retain w from the source color - vLuminance = _mm_shuffle_ps(vResult,vColor,_MM_SHUFFLE(3,2,2,2)); // x = vResult.z,y = vResult.z,z = vColor.z,w=vColor.w - vResult = _mm_shuffle_ps(vResult,vLuminance,_MM_SHUFFLE(3,0,1,0)); // x = vResult.x,y = vResult.y,z = vResult.z,w=vColor.w - return vResult; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMColorAdjustContrast -( - FXMVECTOR vColor, - FLOAT fContrast -) -{ -#if defined(_XM_NO_INTRINSICS_) - // Result = (vColor - 0.5f) * fContrast + 0.5f; - XMVECTOR vResult = { - ((vColor.vector4_f32[0]-0.5f) * fContrast) + 0.5f, - ((vColor.vector4_f32[1]-0.5f) * fContrast) + 0.5f, - ((vColor.vector4_f32[2]-0.5f) * fContrast) + 0.5f, - vColor.vector4_f32[3] // Leave W untouched - }; - return vResult; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vScale = _mm_set_ps1(fContrast); // Splat the scale - XMVECTOR vResult = _mm_sub_ps(vColor,g_XMOneHalf); // Subtract 0.5f from the source (Saving source) - vResult = _mm_mul_ps(vResult,vScale); // Mul by scale - vResult = _mm_add_ps(vResult,g_XMOneHalf); // Add 0.5f -// Retain w from the source color - vScale = _mm_shuffle_ps(vResult,vColor,_MM_SHUFFLE(3,2,2,2)); // x = vResult.z,y = vResult.z,z = vColor.z,w=vColor.w - vResult = _mm_shuffle_ps(vResult,vScale,_MM_SHUFFLE(3,0,1,0)); // x = vResult.x,y = vResult.y,z = vResult.z,w=vColor.w - return vResult; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -/**************************************************************************** - * - * Miscellaneous - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMINLINE BOOL XMVerifyCPUSupport() -{ -#if defined(_XM_NO_INTRINSICS_) || !defined(_XM_SSE_INTRINSICS_) - return TRUE; -#else // _XM_SSE_INTRINSICS_ - // Note that on Windows 2000 or older, SSE2 detection is not supported so this will always fail - // Detecting SSE2 on older versions of Windows would require using cpuid directly - return ( IsProcessorFeaturePresent( PF_XMMI_INSTRUCTIONS_AVAILABLE ) && IsProcessorFeaturePresent( PF_XMMI64_INSTRUCTIONS_AVAILABLE ) ); -#endif -} - - -//------------------------------------------------------------------------------ - -#define XMASSERT_LINE_STRING_SIZE 16 - -XMINLINE VOID XMAssert -( - CONST CHAR* pExpression, - CONST CHAR* pFileName, - UINT LineNumber -) -{ - CHAR aLineString[XMASSERT_LINE_STRING_SIZE]; - CHAR* pLineString; - UINT Line; - - aLineString[XMASSERT_LINE_STRING_SIZE - 2] = '0'; - aLineString[XMASSERT_LINE_STRING_SIZE - 1] = '\0'; - for (Line = LineNumber, pLineString = aLineString + XMASSERT_LINE_STRING_SIZE - 2; - Line != 0 && pLineString >= aLineString; - Line /= 10, pLineString--) - { - *pLineString = (CHAR)('0' + (Line % 10)); - } - -#ifndef NO_OUTPUT_DEBUG_STRING - OutputDebugStringA("Assertion failed: "); - OutputDebugStringA(pExpression); - OutputDebugStringA(", file "); - OutputDebugStringA(pFileName); - OutputDebugStringA(", line "); - OutputDebugStringA(pLineString + 1); - OutputDebugStringA("\r\n"); -#else - DbgPrint("Assertion failed: %s, file %s, line %d\r\n", pExpression, pFileName, LineNumber); -#endif - - __debugbreak(); -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMFresnelTerm -( - FXMVECTOR CosIncidentAngle, - FXMVECTOR RefractionIndex -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR G; - XMVECTOR D, S; - XMVECTOR V0, V1, V2, V3; - XMVECTOR Result; - - // Result = 0.5f * (g - c)^2 / (g + c)^2 * ((c * (g + c) - 1)^2 / (c * (g - c) + 1)^2 + 1) where - // c = CosIncidentAngle - // g = sqrt(c^2 + RefractionIndex^2 - 1) - - XMASSERT(!XMVector4IsInfinite(CosIncidentAngle)); - - G = XMVectorMultiplyAdd(RefractionIndex, RefractionIndex, g_XMNegativeOne.v); - G = XMVectorMultiplyAdd(CosIncidentAngle, CosIncidentAngle, G); - G = XMVectorAbs(G); - G = XMVectorSqrt(G); - - S = XMVectorAdd(G, CosIncidentAngle); - D = XMVectorSubtract(G, CosIncidentAngle); - - V0 = XMVectorMultiply(D, D); - V1 = XMVectorMultiply(S, S); - V1 = XMVectorReciprocal(V1); - V0 = XMVectorMultiply(g_XMOneHalf.v, V0); - V0 = XMVectorMultiply(V0, V1); - - V2 = XMVectorMultiplyAdd(CosIncidentAngle, S, g_XMNegativeOne.v); - V3 = XMVectorMultiplyAdd(CosIncidentAngle, D, g_XMOne.v); - V2 = XMVectorMultiply(V2, V2); - V3 = XMVectorMultiply(V3, V3); - V3 = XMVectorReciprocal(V3); - V2 = XMVectorMultiplyAdd(V2, V3, g_XMOne.v); - - Result = XMVectorMultiply(V0, V2); - - Result = XMVectorSaturate(Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Result = 0.5f * (g - c)^2 / (g + c)^2 * ((c * (g + c) - 1)^2 / (c * (g - c) + 1)^2 + 1) where - // c = CosIncidentAngle - // g = sqrt(c^2 + RefractionIndex^2 - 1) - - XMASSERT(!XMVector4IsInfinite(CosIncidentAngle)); - - // G = sqrt(abs((RefractionIndex^2-1) + CosIncidentAngle^2)) - XMVECTOR G = _mm_mul_ps(RefractionIndex,RefractionIndex); - XMVECTOR vTemp = _mm_mul_ps(CosIncidentAngle,CosIncidentAngle); - G = _mm_sub_ps(G,g_XMOne); - vTemp = _mm_add_ps(vTemp,G); - // max((0-vTemp),vTemp) == abs(vTemp) - // The abs is needed to deal with refraction and cosine being zero - G = _mm_setzero_ps(); - G = _mm_sub_ps(G,vTemp); - G = _mm_max_ps(G,vTemp); - // Last operation, the sqrt() - G = _mm_sqrt_ps(G); - - // Calc G-C and G+C - XMVECTOR GAddC = _mm_add_ps(G,CosIncidentAngle); - XMVECTOR GSubC = _mm_sub_ps(G,CosIncidentAngle); - // Perform the term (0.5f *(g - c)^2) / (g + c)^2 - XMVECTOR vResult = _mm_mul_ps(GSubC,GSubC); - vTemp = _mm_mul_ps(GAddC,GAddC); - vResult = _mm_mul_ps(vResult,g_XMOneHalf); - vResult = _mm_div_ps(vResult,vTemp); - // Perform the term ((c * (g + c) - 1)^2 / (c * (g - c) + 1)^2 + 1) - GAddC = _mm_mul_ps(GAddC,CosIncidentAngle); - GSubC = _mm_mul_ps(GSubC,CosIncidentAngle); - GAddC = _mm_sub_ps(GAddC,g_XMOne); - GSubC = _mm_add_ps(GSubC,g_XMOne); - GAddC = _mm_mul_ps(GAddC,GAddC); - GSubC = _mm_mul_ps(GSubC,GSubC); - GAddC = _mm_div_ps(GAddC,GSubC); - GAddC = _mm_add_ps(GAddC,g_XMOne); - // Multiply the two term parts - vResult = _mm_mul_ps(vResult,GAddC); - // Clamp to 0.0 - 1.0f - vResult = _mm_max_ps(vResult,g_XMZero); - vResult = _mm_min_ps(vResult,g_XMOne); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMScalarNearEqual -( - FLOAT S1, - FLOAT S2, - FLOAT Epsilon -) -{ - FLOAT Delta = S1 - S2; -#if defined(_XM_NO_INTRINSICS_) - UINT AbsDelta = *(UINT*)&Delta & 0x7FFFFFFF; - return (*(FLOAT*)&AbsDelta <= Epsilon); -#elif defined(_XM_SSE_INTRINSICS_) - return (fabsf(Delta) <= Epsilon); -#else - return (__fabs(Delta) <= Epsilon); -#endif -} - -//------------------------------------------------------------------------------ -// Modulo the range of the given angle such that -XM_PI <= Angle < XM_PI -XMFINLINE FLOAT XMScalarModAngle -( - FLOAT Angle -) -{ - // Note: The modulo is performed with unsigned math only to work - // around a precision error on numbers that are close to PI - float fTemp; -#if defined(_XM_NO_INTRINSICS_) || !defined(_XM_VMX128_INTRINSICS_) - // Normalize the range from 0.0f to XM_2PI - Angle = Angle + XM_PI; - // Perform the modulo, unsigned - fTemp = fabsf(Angle); - fTemp = fTemp - (XM_2PI * (FLOAT)((INT)(fTemp/XM_2PI))); - // Restore the number to the range of -XM_PI to XM_PI-epsilon - fTemp = fTemp - XM_PI; - // If the modulo'd value was negative, restore negation - if (Angle<0.0f) { - fTemp = -fTemp; - } - return fTemp; -#else -#endif -} - -//------------------------------------------------------------------------------ - -XMINLINE FLOAT XMScalarSin -( - FLOAT Value -) -{ -#if defined(_XM_NO_INTRINSICS_) - - FLOAT ValueMod; - FLOAT ValueSq; - XMVECTOR V0123, V0246, V1357, V9111315, V17192123; - XMVECTOR V1, V7, V8; - XMVECTOR R0, R1, R2; - - ValueMod = XMScalarModAngle(Value); - - // sin(V) ~= V - V^3 / 3! + V^5 / 5! - V^7 / 7! + V^9 / 9! - V^11 / 11! + V^13 / 13! - V^15 / 15! + - // V^17 / 17! - V^19 / 19! + V^21 / 21! - V^23 / 23! (for -PI <= V < PI) - - ValueSq = ValueMod * ValueMod; - - V0123 = XMVectorSet(1.0f, ValueMod, ValueSq, ValueSq * ValueMod); - V1 = XMVectorSplatY(V0123); - V0246 = XMVectorMultiply(V0123, V0123); - V1357 = XMVectorMultiply(V0246, V1); - V7 = XMVectorSplatW(V1357); - V8 = XMVectorMultiply(V7, V1); - V9111315 = XMVectorMultiply(V1357, V8); - V17192123 = XMVectorMultiply(V9111315, V8); - - R0 = XMVector4Dot(V1357, g_XMSinCoefficients0.v); - R1 = XMVector4Dot(V9111315, g_XMSinCoefficients1.v); - R2 = XMVector4Dot(V17192123, g_XMSinCoefficients2.v); - - return R0.vector4_f32[0] + R1.vector4_f32[0] + R2.vector4_f32[0]; - -#elif defined(_XM_SSE_INTRINSICS_) - return sinf( Value ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE FLOAT XMScalarCos -( - FLOAT Value -) -{ -#if defined(_XM_NO_INTRINSICS_) - - FLOAT ValueMod; - FLOAT ValueSq; - XMVECTOR V0123, V0246, V8101214, V16182022; - XMVECTOR V2, V6, V8; - XMVECTOR R0, R1, R2; - - ValueMod = XMScalarModAngle(Value); - - // cos(V) ~= 1 - V^2 / 2! + V^4 / 4! - V^6 / 6! + V^8 / 8! - V^10 / 10! + - // V^12 / 12! - V^14 / 14! + V^16 / 16! - V^18 / 18! + V^20 / 20! - V^22 / 22! (for -PI <= V < PI) - - ValueSq = ValueMod * ValueMod; - - V0123 = XMVectorSet(1.0f, ValueMod, ValueSq, ValueSq * ValueMod); - V0246 = XMVectorMultiply(V0123, V0123); - - V2 = XMVectorSplatZ(V0123); - V6 = XMVectorSplatW(V0246); - V8 = XMVectorMultiply(V6, V2); - - V8101214 = XMVectorMultiply(V0246, V8); - V16182022 = XMVectorMultiply(V8101214, V8); - - R0 = XMVector4Dot(V0246, g_XMCosCoefficients0.v); - R1 = XMVector4Dot(V8101214, g_XMCosCoefficients1.v); - R2 = XMVector4Dot(V16182022, g_XMCosCoefficients2.v); - - return R0.vector4_f32[0] + R1.vector4_f32[0] + R2.vector4_f32[0]; - -#elif defined(_XM_SSE_INTRINSICS_) - return cosf(Value); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE VOID XMScalarSinCos -( - FLOAT* pSin, - FLOAT* pCos, - FLOAT Value -) -{ -#if defined(_XM_NO_INTRINSICS_) - - FLOAT ValueMod; - FLOAT ValueSq; - XMVECTOR V0123, V0246, V1357, V8101214, V9111315, V16182022, V17192123; - XMVECTOR V1, V2, V6, V8; - XMVECTOR S0, S1, S2, C0, C1, C2; - - XMASSERT(pSin); - XMASSERT(pCos); - - ValueMod = XMScalarModAngle(Value); - - // sin(V) ~= V - V^3 / 3! + V^5 / 5! - V^7 / 7! + V^9 / 9! - V^11 / 11! + V^13 / 13! - V^15 / 15! + - // V^17 / 17! - V^19 / 19! + V^21 / 21! - V^23 / 23! (for -PI <= V < PI) - // cos(V) ~= 1 - V^2 / 2! + V^4 / 4! - V^6 / 6! + V^8 / 8! - V^10 / 10! + - // V^12 / 12! - V^14 / 14! + V^16 / 16! - V^18 / 18! + V^20 / 20! - V^22 / 22! (for -PI <= V < PI) - - ValueSq = ValueMod * ValueMod; - - V0123 = XMVectorSet(1.0f, ValueMod, ValueSq, ValueSq * ValueMod); - - V1 = XMVectorSplatY(V0123); - V2 = XMVectorSplatZ(V0123); - - V0246 = XMVectorMultiply(V0123, V0123); - V1357 = XMVectorMultiply(V0246, V1); - - V6 = XMVectorSplatW(V0246); - V8 = XMVectorMultiply(V6, V2); - - V8101214 = XMVectorMultiply(V0246, V8); - V9111315 = XMVectorMultiply(V1357, V8); - V16182022 = XMVectorMultiply(V8101214, V8); - V17192123 = XMVectorMultiply(V9111315, V8); - - C0 = XMVector4Dot(V0246, g_XMCosCoefficients0.v); - S0 = XMVector4Dot(V1357, g_XMSinCoefficients0.v); - C1 = XMVector4Dot(V8101214, g_XMCosCoefficients1.v); - S1 = XMVector4Dot(V9111315, g_XMSinCoefficients1.v); - C2 = XMVector4Dot(V16182022, g_XMCosCoefficients2.v); - S2 = XMVector4Dot(V17192123, g_XMSinCoefficients2.v); - - *pCos = C0.vector4_f32[0] + C1.vector4_f32[0] + C2.vector4_f32[0]; - *pSin = S0.vector4_f32[0] + S1.vector4_f32[0] + S2.vector4_f32[0]; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSin); - XMASSERT(pCos); - - *pSin = sinf(Value); - *pCos = cosf(Value); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE FLOAT XMScalarASin -( - FLOAT Value -) -{ -#if defined(_XM_NO_INTRINSICS_) - - FLOAT AbsValue, Value2, Value3, D; - XMVECTOR AbsV, R0, R1, Result; - XMVECTOR V3; - - *(UINT*)&AbsValue = *(UINT*)&Value & 0x7FFFFFFF; - - Value2 = Value * AbsValue; - Value3 = Value * Value2; - D = (Value - Value2) / sqrtf(1.00000011921f - AbsValue); - - AbsV = XMVectorReplicate(AbsValue); - - V3.vector4_f32[0] = Value3; - V3.vector4_f32[1] = 1.0f; - V3.vector4_f32[2] = Value3; - V3.vector4_f32[3] = 1.0f; - - R1 = XMVectorSet(D, D, Value, Value); - R1 = XMVectorMultiply(R1, V3); - - R0 = XMVectorMultiplyAdd(AbsV, g_XMASinCoefficients0.v, g_XMASinCoefficients1.v); - R0 = XMVectorMultiplyAdd(AbsV, R0, g_XMASinCoefficients2.v); - - Result = XMVector4Dot(R0, R1); - - return Result.vector4_f32[0]; - -#elif defined(_XM_SSE_INTRINSICS_) - return asinf(Value); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE FLOAT XMScalarACos -( - FLOAT Value -) -{ -#if defined(_XM_NO_INTRINSICS_) - - return XM_PIDIV2 - XMScalarASin(Value); - -#elif defined(_XM_SSE_INTRINSICS_) - return acosf(Value); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE FLOAT XMScalarSinEst -( - FLOAT Value -) -{ -#if defined(_XM_NO_INTRINSICS_) - - FLOAT ValueSq; - XMVECTOR V; - XMVECTOR Y; - XMVECTOR Result; - - XMASSERT(Value >= -XM_PI); - XMASSERT(Value < XM_PI); - - // sin(V) ~= V - V^3 / 3! + V^5 / 5! - V^7 / 7! (for -PI <= V < PI) - - ValueSq = Value * Value; - - V = XMVectorSet(1.0f, Value, ValueSq, ValueSq * Value); - Y = XMVectorSplatY(V); - V = XMVectorMultiply(V, V); - V = XMVectorMultiply(V, Y); - - Result = XMVector4Dot(V, g_XMSinEstCoefficients.v); - - return Result.vector4_f32[0]; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(Value >= -XM_PI); - XMASSERT(Value < XM_PI); - float ValueSq = Value*Value; - XMVECTOR vValue = _mm_set_ps1(Value); - XMVECTOR vTemp = _mm_set_ps(ValueSq * Value,ValueSq,Value,1.0f); - vTemp = _mm_mul_ps(vTemp,vTemp); - vTemp = _mm_mul_ps(vTemp,vValue); - // vTemp = Value,Value^3,Value^5,Value^7 - vTemp = _mm_mul_ps(vTemp,g_XMSinEstCoefficients); - vValue = _mm_shuffle_ps(vValue,vTemp,_MM_SHUFFLE(1,0,0,0)); // Copy X to the Z position and Y to the W position - vValue = _mm_add_ps(vValue,vTemp); // Add Z = X+Z; W = Y+W; - vTemp = _mm_shuffle_ps(vTemp,vValue,_MM_SHUFFLE(0,3,0,0)); // Copy W to the Z position - vTemp = _mm_add_ps(vTemp,vValue); // Add Z and W together - vTemp = _mm_shuffle_ps(vTemp,vTemp,_MM_SHUFFLE(2,2,2,2)); // Splat Z and return -#if defined(_MSC_VER) && (_MSC_VER>=1500) - return _mm_cvtss_f32(vTemp); -#else - return vTemp.m128_f32[0]; -#endif -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE FLOAT XMScalarCosEst -( - FLOAT Value -) -{ -#if defined(_XM_NO_INTRINSICS_) - FLOAT ValueSq; - XMVECTOR V; - XMVECTOR Result; - XMASSERT(Value >= -XM_PI); - XMASSERT(Value < XM_PI); - // cos(V) ~= 1 - V^2 / 2! + V^4 / 4! - V^6 / 6! (for -PI <= V < PI) - ValueSq = Value * Value; - V = XMVectorSet(1.0f, Value, ValueSq, ValueSq * Value); - V = XMVectorMultiply(V, V); - Result = XMVector4Dot(V, g_XMCosEstCoefficients.v); - return Result.vector4_f32[0]; -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(Value >= -XM_PI); - XMASSERT(Value < XM_PI); - float ValueSq = Value*Value; - XMVECTOR vValue = _mm_setzero_ps(); - XMVECTOR vTemp = _mm_set_ps(ValueSq * Value,ValueSq,Value,1.0f); - vTemp = _mm_mul_ps(vTemp,vTemp); - // vTemp = 1.0f,Value^2,Value^4,Value^6 - vTemp = _mm_mul_ps(vTemp,g_XMCosEstCoefficients); - vValue = _mm_shuffle_ps(vValue,vTemp,_MM_SHUFFLE(1,0,0,0)); // Copy X to the Z position and Y to the W position - vValue = _mm_add_ps(vValue,vTemp); // Add Z = X+Z; W = Y+W; - vTemp = _mm_shuffle_ps(vTemp,vValue,_MM_SHUFFLE(0,3,0,0)); // Copy W to the Z position - vTemp = _mm_add_ps(vTemp,vValue); // Add Z and W together - vTemp = _mm_shuffle_ps(vTemp,vTemp,_MM_SHUFFLE(2,2,2,2)); // Splat Z and return -#if defined(_MSC_VER) && (_MSC_VER>=1500) - return _mm_cvtss_f32(vTemp); -#else - return vTemp.m128_f32[0]; -#endif -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMScalarSinCosEst -( - FLOAT* pSin, - FLOAT* pCos, - FLOAT Value -) -{ -#if defined(_XM_NO_INTRINSICS_) - - FLOAT ValueSq; - XMVECTOR V, Sin, Cos; - XMVECTOR Y; - - XMASSERT(pSin); - XMASSERT(pCos); - XMASSERT(Value >= -XM_PI); - XMASSERT(Value < XM_PI); - - // sin(V) ~= V - V^3 / 3! + V^5 / 5! - V^7 / 7! (for -PI <= V < PI) - // cos(V) ~= 1 - V^2 / 2! + V^4 / 4! - V^6 / 6! (for -PI <= V < PI) - - ValueSq = Value * Value; - V = XMVectorSet(1.0f, Value, ValueSq, Value * ValueSq); - Y = XMVectorSplatY(V); - Cos = XMVectorMultiply(V, V); - Sin = XMVectorMultiply(Cos, Y); - - Cos = XMVector4Dot(Cos, g_XMCosEstCoefficients.v); - Sin = XMVector4Dot(Sin, g_XMSinEstCoefficients.v); - - *pCos = Cos.vector4_f32[0]; - *pSin = Sin.vector4_f32[0]; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSin); - XMASSERT(pCos); - XMASSERT(Value >= -XM_PI); - XMASSERT(Value < XM_PI); - float ValueSq = Value * Value; - XMVECTOR Cos = _mm_set_ps(Value * ValueSq,ValueSq,Value,1.0f); - XMVECTOR Sin = _mm_set_ps1(Value); - Cos = _mm_mul_ps(Cos,Cos); - Sin = _mm_mul_ps(Sin,Cos); - // Cos = 1.0f,Value^2,Value^4,Value^6 - Cos = XMVector4Dot(Cos,g_XMCosEstCoefficients); - _mm_store_ss(pCos,Cos); - // Sin = Value,Value^3,Value^5,Value^7 - Sin = XMVector4Dot(Sin, g_XMSinEstCoefficients); - _mm_store_ss(pSin,Sin); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE FLOAT XMScalarASinEst -( - FLOAT Value -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR VR, CR, CS; - XMVECTOR Result; - FLOAT AbsV, V2, D; - CONST FLOAT OnePlusEps = 1.00000011921f; - - *(UINT*)&AbsV = *(UINT*)&Value & 0x7FFFFFFF; - V2 = Value * AbsV; - D = OnePlusEps - AbsV; - - CS = XMVectorSet(Value, 1.0f, 1.0f, V2); - VR = XMVectorSet(sqrtf(D), Value, V2, D * AbsV); - CR = XMVectorMultiply(CS, g_XMASinEstCoefficients.v); - - Result = XMVector4Dot(VR, CR); - - return Result.vector4_f32[0]; - -#elif defined(_XM_SSE_INTRINSICS_) - CONST FLOAT OnePlusEps = 1.00000011921f; - FLOAT AbsV = fabsf(Value); - FLOAT V2 = Value * AbsV; // Square with sign retained - FLOAT D = OnePlusEps - AbsV; - - XMVECTOR Result = _mm_set_ps(V2,1.0f,1.0f,Value); - XMVECTOR VR = _mm_set_ps(D * AbsV,V2,Value,sqrtf(D)); - Result = _mm_mul_ps(Result, g_XMASinEstCoefficients); - Result = XMVector4Dot(VR,Result); -#if defined(_MSC_VER) && (_MSC_VER>=1500) - return _mm_cvtss_f32(Result); -#else - return Result.m128_f32[0]; -#endif -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE FLOAT XMScalarACosEst -( - FLOAT Value -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR VR, CR, CS; - XMVECTOR Result; - FLOAT AbsV, V2, D; - CONST FLOAT OnePlusEps = 1.00000011921f; - - // return XM_PIDIV2 - XMScalarASin(Value); - - *(UINT*)&AbsV = *(UINT*)&Value & 0x7FFFFFFF; - V2 = Value * AbsV; - D = OnePlusEps - AbsV; - - CS = XMVectorSet(Value, 1.0f, 1.0f, V2); - VR = XMVectorSet(sqrtf(D), Value, V2, D * AbsV); - CR = XMVectorMultiply(CS, g_XMASinEstCoefficients.v); - - Result = XMVector4Dot(VR, CR); - - return XM_PIDIV2 - Result.vector4_f32[0]; - -#elif defined(_XM_SSE_INTRINSICS_) - CONST FLOAT OnePlusEps = 1.00000011921f; - FLOAT AbsV = fabsf(Value); - FLOAT V2 = Value * AbsV; // Value^2 retaining sign - FLOAT D = OnePlusEps - AbsV; - XMVECTOR Result = _mm_set_ps(V2,1.0f,1.0f,Value); - XMVECTOR VR = _mm_set_ps(D * AbsV,V2,Value,sqrtf(D)); - Result = _mm_mul_ps(Result,g_XMASinEstCoefficients); - Result = XMVector4Dot(VR,Result); -#if defined(_MSC_VER) && (_MSC_VER>=1500) - return XM_PIDIV2 - _mm_cvtss_f32(Result); -#else - return XM_PIDIV2 - Result.m128_f32[0]; -#endif -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -#endif // __XNAMATHMISC_INL__ - diff --git a/SDK/Include/xnamathvector.inl b/SDK/Include/xnamathvector.inl deleted file mode 100644 index bfea1d0..0000000 --- a/SDK/Include/xnamathvector.inl +++ /dev/null @@ -1,13279 +0,0 @@ -/*++ - -Copyright (c) Microsoft Corporation. All rights reserved. - -Module Name: - - xnamathvector.inl - -Abstract: - - XNA math library for Windows and Xbox 360: Vector functions ---*/ - -#if defined(_MSC_VER) && (_MSC_VER > 1000) -#pragma once -#endif - -#ifndef __XNAMATHVECTOR_INL__ -#define __XNAMATHVECTOR_INL__ - -#if defined(_XM_NO_INTRINSICS_) -#define XMISNAN(x) ((*(UINT*)&(x) & 0x7F800000) == 0x7F800000 && (*(UINT*)&(x) & 0x7FFFFF) != 0) -#define XMISINF(x) ((*(UINT*)&(x) & 0x7FFFFFFF) == 0x7F800000) -#endif - -/**************************************************************************** - * - * General Vector - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ -// Assignment operations -//------------------------------------------------------------------------------ - -//------------------------------------------------------------------------------ -// Return a vector with all elements equaling zero -XMFINLINE XMVECTOR XMVectorZero() -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR vResult = {0.0f,0.0f,0.0f,0.0f}; - return vResult; -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_setzero_ps(); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Initialize a vector with four floating point values -XMFINLINE XMVECTOR XMVectorSet -( - FLOAT x, - FLOAT y, - FLOAT z, - FLOAT w -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTORF32 vResult = {x,y,z,w}; - return vResult.v; -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_set_ps( w, z, y, x ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Initialize a vector with four integer values -XMFINLINE XMVECTOR XMVectorSetInt -( - UINT x, - UINT y, - UINT z, - UINT w -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTORU32 vResult = {x,y,z,w}; - return vResult.v; -#elif defined(_XM_SSE_INTRINSICS_) - __m128i V = _mm_set_epi32( w, z, y, x ); - return reinterpret_cast<__m128 *>(&V)[0]; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Initialize a vector with a replicated floating point value -XMFINLINE XMVECTOR XMVectorReplicate -( - FLOAT Value -) -{ -#if defined(_XM_NO_INTRINSICS_) || defined(XM_NO_MISALIGNED_VECTOR_ACCESS) - XMVECTORF32 vResult = {Value,Value,Value,Value}; - return vResult.v; -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_set_ps1( Value ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Initialize a vector with a replicated floating point value passed by pointer -XMFINLINE XMVECTOR XMVectorReplicatePtr -( - CONST FLOAT *pValue -) -{ -#if defined(_XM_NO_INTRINSICS_) || defined(XM_NO_MISALIGNED_VECTOR_ACCESS) - FLOAT Value = pValue[0]; - XMVECTORF32 vResult = {Value,Value,Value,Value}; - return vResult.v; -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_load_ps1( pValue ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Initialize a vector with a replicated integer value -XMFINLINE XMVECTOR XMVectorReplicateInt -( - UINT Value -) -{ -#if defined(_XM_NO_INTRINSICS_) || defined(XM_NO_MISALIGNED_VECTOR_ACCESS) - XMVECTORU32 vResult = {Value,Value,Value,Value}; - return vResult.v; -#elif defined(_XM_SSE_INTRINSICS_) - __m128i vTemp = _mm_set1_epi32( Value ); - return reinterpret_cast(&vTemp)[0]; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Initialize a vector with a replicated integer value passed by pointer -XMFINLINE XMVECTOR XMVectorReplicateIntPtr -( - CONST UINT *pValue -) -{ -#if defined(_XM_NO_INTRINSICS_) || defined(XM_NO_MISALIGNED_VECTOR_ACCESS) - UINT Value = pValue[0]; - XMVECTORU32 vResult = {Value,Value,Value,Value}; - return vResult.v; -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_load_ps1(reinterpret_cast(pValue)); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Initialize a vector with all bits set (true mask) -XMFINLINE XMVECTOR XMVectorTrueInt() -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTORU32 vResult = {0xFFFFFFFFU,0xFFFFFFFFU,0xFFFFFFFFU,0xFFFFFFFFU}; - return vResult.v; -#elif defined(_XM_SSE_INTRINSICS_) - __m128i V = _mm_set1_epi32(-1); - return reinterpret_cast<__m128 *>(&V)[0]; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Initialize a vector with all bits clear (false mask) -XMFINLINE XMVECTOR XMVectorFalseInt() -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR vResult = {0.0f,0.0f,0.0f,0.0f}; - return vResult; -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_setzero_ps(); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Replicate the x component of the vector -XMFINLINE XMVECTOR XMVectorSplatX -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR vResult; - vResult.vector4_f32[0] = - vResult.vector4_f32[1] = - vResult.vector4_f32[2] = - vResult.vector4_f32[3] = V.vector4_f32[0]; - return vResult; -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_shuffle_ps( V, V, _MM_SHUFFLE(0, 0, 0, 0) ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Replicate the y component of the vector -XMFINLINE XMVECTOR XMVectorSplatY -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR vResult; - vResult.vector4_f32[0] = - vResult.vector4_f32[1] = - vResult.vector4_f32[2] = - vResult.vector4_f32[3] = V.vector4_f32[1]; - return vResult; -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_shuffle_ps( V, V, _MM_SHUFFLE(1, 1, 1, 1) ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Replicate the z component of the vector -XMFINLINE XMVECTOR XMVectorSplatZ -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR vResult; - vResult.vector4_f32[0] = - vResult.vector4_f32[1] = - vResult.vector4_f32[2] = - vResult.vector4_f32[3] = V.vector4_f32[2]; - return vResult; -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_shuffle_ps( V, V, _MM_SHUFFLE(2, 2, 2, 2) ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Replicate the w component of the vector -XMFINLINE XMVECTOR XMVectorSplatW -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR vResult; - vResult.vector4_f32[0] = - vResult.vector4_f32[1] = - vResult.vector4_f32[2] = - vResult.vector4_f32[3] = V.vector4_f32[3]; - return vResult; -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_shuffle_ps( V, V, _MM_SHUFFLE(3, 3, 3, 3) ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Return a vector of 1.0f,1.0f,1.0f,1.0f -XMFINLINE XMVECTOR XMVectorSplatOne() -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR vResult; - vResult.vector4_f32[0] = - vResult.vector4_f32[1] = - vResult.vector4_f32[2] = - vResult.vector4_f32[3] = 1.0f; - return vResult; -#elif defined(_XM_SSE_INTRINSICS_) - return g_XMOne; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Return a vector of INF,INF,INF,INF -XMFINLINE XMVECTOR XMVectorSplatInfinity() -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR vResult; - vResult.vector4_u32[0] = - vResult.vector4_u32[1] = - vResult.vector4_u32[2] = - vResult.vector4_u32[3] = 0x7F800000; - return vResult; -#elif defined(_XM_SSE_INTRINSICS_) - return g_XMInfinity; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Return a vector of Q_NAN,Q_NAN,Q_NAN,Q_NAN -XMFINLINE XMVECTOR XMVectorSplatQNaN() -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR vResult; - vResult.vector4_u32[0] = - vResult.vector4_u32[1] = - vResult.vector4_u32[2] = - vResult.vector4_u32[3] = 0x7FC00000; - return vResult; -#elif defined(_XM_SSE_INTRINSICS_) - return g_XMQNaN; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Return a vector of 1.192092896e-7f,1.192092896e-7f,1.192092896e-7f,1.192092896e-7f -XMFINLINE XMVECTOR XMVectorSplatEpsilon() -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR vResult; - vResult.vector4_u32[0] = - vResult.vector4_u32[1] = - vResult.vector4_u32[2] = - vResult.vector4_u32[3] = 0x34000000; - return vResult; -#elif defined(_XM_SSE_INTRINSICS_) - return g_XMEpsilon; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Return a vector of -0.0f (0x80000000),-0.0f,-0.0f,-0.0f -XMFINLINE XMVECTOR XMVectorSplatSignMask() -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR vResult; - vResult.vector4_u32[0] = - vResult.vector4_u32[1] = - vResult.vector4_u32[2] = - vResult.vector4_u32[3] = 0x80000000U; - return vResult; -#elif defined(_XM_SSE_INTRINSICS_) - __m128i V = _mm_set1_epi32( 0x80000000 ); - return reinterpret_cast<__m128*>(&V)[0]; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Return a floating point value via an index. This is not a recommended -// function to use due to performance loss. -XMFINLINE FLOAT XMVectorGetByIndex(FXMVECTOR V,UINT i) -{ - XMASSERT( i <= 3 ); -#if defined(_XM_NO_INTRINSICS_) - return V.vector4_f32[i]; -#elif defined(_XM_SSE_INTRINSICS_) - return V.m128_f32[i]; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Return the X component in an FPU register. -// This causes Load/Hit/Store on VMX targets -XMFINLINE FLOAT XMVectorGetX(FXMVECTOR V) -{ -#if defined(_XM_NO_INTRINSICS_) - return V.vector4_f32[0]; -#elif defined(_XM_SSE_INTRINSICS_) -#if defined(_MSC_VER) && (_MSC_VER>=1500) - return _mm_cvtss_f32(V); -#else - return V.m128_f32[0]; -#endif -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -// Return the Y component in an FPU register. -// This causes Load/Hit/Store on VMX targets -XMFINLINE FLOAT XMVectorGetY(FXMVECTOR V) -{ -#if defined(_XM_NO_INTRINSICS_) - return V.vector4_f32[1]; -#elif defined(_XM_SSE_INTRINSICS_) -#if defined(_MSC_VER) && (_MSC_VER>=1500) - XMVECTOR vTemp = _mm_shuffle_ps(V,V,_MM_SHUFFLE(1,1,1,1)); - return _mm_cvtss_f32(vTemp); -#else - return V.m128_f32[1]; -#endif -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -// Return the Z component in an FPU register. -// This causes Load/Hit/Store on VMX targets -XMFINLINE FLOAT XMVectorGetZ(FXMVECTOR V) -{ -#if defined(_XM_NO_INTRINSICS_) - return V.vector4_f32[2]; -#elif defined(_XM_SSE_INTRINSICS_) -#if defined(_MSC_VER) && (_MSC_VER>=1500) - XMVECTOR vTemp = _mm_shuffle_ps(V,V,_MM_SHUFFLE(2,2,2,2)); - return _mm_cvtss_f32(vTemp); -#else - return V.m128_f32[2]; -#endif -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -// Return the W component in an FPU register. -// This causes Load/Hit/Store on VMX targets -XMFINLINE FLOAT XMVectorGetW(FXMVECTOR V) -{ -#if defined(_XM_NO_INTRINSICS_) - return V.vector4_f32[3]; -#elif defined(_XM_SSE_INTRINSICS_) -#if defined(_MSC_VER) && (_MSC_VER>=1500) - XMVECTOR vTemp = _mm_shuffle_ps(V,V,_MM_SHUFFLE(3,3,3,3)); - return _mm_cvtss_f32(vTemp); -#else - return V.m128_f32[3]; -#endif -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -// Store a component indexed by i into a 32 bit float location in memory. -// This causes Load/Hit/Store on VMX targets -XMFINLINE VOID XMVectorGetByIndexPtr(FLOAT *f,FXMVECTOR V,UINT i) -{ - XMASSERT( f != 0 ); - XMASSERT( i < 4 ); -#if defined(_XM_NO_INTRINSICS_) - *f = V.vector4_f32[i]; -#elif defined(_XM_SSE_INTRINSICS_) - *f = V.m128_f32[i]; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -// Store the X component into a 32 bit float location in memory. -XMFINLINE VOID XMVectorGetXPtr(FLOAT *x,FXMVECTOR V) -{ - XMASSERT( x != 0 ); -#if defined(_XM_NO_INTRINSICS_) - *x = V.vector4_f32[0]; -#elif defined(_XM_SSE_INTRINSICS_) - _mm_store_ss(x,V); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -// Store the Y component into a 32 bit float location in memory. -XMFINLINE VOID XMVectorGetYPtr(FLOAT *y,FXMVECTOR V) -{ - XMASSERT( y != 0 ); -#if defined(_XM_NO_INTRINSICS_) - *y = V.vector4_f32[1]; -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(1,1,1,1)); - _mm_store_ss(y,vResult); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -// Store the Z component into a 32 bit float location in memory. -XMFINLINE VOID XMVectorGetZPtr(FLOAT *z,FXMVECTOR V) -{ - XMASSERT( z != 0 ); -#if defined(_XM_NO_INTRINSICS_) - *z = V.vector4_f32[2]; -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(2,2,2,2)); - _mm_store_ss(z,vResult); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -// Store the W component into a 32 bit float location in memory. -XMFINLINE VOID XMVectorGetWPtr(FLOAT *w,FXMVECTOR V) -{ - XMASSERT( w != 0 ); -#if defined(_XM_NO_INTRINSICS_) - *w = V.vector4_f32[3]; -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(3,3,3,3)); - _mm_store_ss(w,vResult); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -// Return an integer value via an index. This is not a recommended -// function to use due to performance loss. -XMFINLINE UINT XMVectorGetIntByIndex(FXMVECTOR V, UINT i) -{ - XMASSERT( i < 4 ); -#if defined(_XM_NO_INTRINSICS_) - return V.vector4_u32[i]; -#elif defined(_XM_SSE_INTRINSICS_) -#if defined(_MSC_VER) && (_MSC_VER<1400) - XMVECTORU32 tmp; - tmp.v = V; - return tmp.u[i]; -#else - return V.m128_u32[i]; -#endif -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -// Return the X component in an integer register. -// This causes Load/Hit/Store on VMX targets -XMFINLINE UINT XMVectorGetIntX(FXMVECTOR V) -{ -#if defined(_XM_NO_INTRINSICS_) - return V.vector4_u32[0]; -#elif defined(_XM_SSE_INTRINSICS_) - return static_cast(_mm_cvtsi128_si32(reinterpret_cast(&V)[0])); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -// Return the Y component in an integer register. -// This causes Load/Hit/Store on VMX targets -XMFINLINE UINT XMVectorGetIntY(FXMVECTOR V) -{ -#if defined(_XM_NO_INTRINSICS_) - return V.vector4_u32[1]; -#elif defined(_XM_SSE_INTRINSICS_) - __m128i vResulti = _mm_shuffle_epi32(reinterpret_cast(&V)[0],_MM_SHUFFLE(1,1,1,1)); - return static_cast(_mm_cvtsi128_si32(vResulti)); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -// Return the Z component in an integer register. -// This causes Load/Hit/Store on VMX targets -XMFINLINE UINT XMVectorGetIntZ(FXMVECTOR V) -{ -#if defined(_XM_NO_INTRINSICS_) - return V.vector4_u32[2]; -#elif defined(_XM_SSE_INTRINSICS_) - __m128i vResulti = _mm_shuffle_epi32(reinterpret_cast(&V)[0],_MM_SHUFFLE(2,2,2,2)); - return static_cast(_mm_cvtsi128_si32(vResulti)); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -// Return the W component in an integer register. -// This causes Load/Hit/Store on VMX targets -XMFINLINE UINT XMVectorGetIntW(FXMVECTOR V) -{ -#if defined(_XM_NO_INTRINSICS_) - return V.vector4_u32[3]; -#elif defined(_XM_SSE_INTRINSICS_) - __m128i vResulti = _mm_shuffle_epi32(reinterpret_cast(&V)[0],_MM_SHUFFLE(3,3,3,3)); - return static_cast(_mm_cvtsi128_si32(vResulti)); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -// Store a component indexed by i into a 32 bit integer location in memory. -// This causes Load/Hit/Store on VMX targets -XMFINLINE VOID XMVectorGetIntByIndexPtr(UINT *x,FXMVECTOR V,UINT i) -{ - XMASSERT( x != 0 ); - XMASSERT( i < 4 ); -#if defined(_XM_NO_INTRINSICS_) - *x = V.vector4_u32[i]; -#elif defined(_XM_SSE_INTRINSICS_) -#if defined(_MSC_VER) && (_MSC_VER<1400) - XMVECTORU32 tmp; - tmp.v = V; - *x = tmp.u[i]; -#else - *x = V.m128_u32[i]; -#endif -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -// Store the X component into a 32 bit integer location in memory. -XMFINLINE VOID XMVectorGetIntXPtr(UINT *x,FXMVECTOR V) -{ - XMASSERT( x != 0 ); -#if defined(_XM_NO_INTRINSICS_) - *x = V.vector4_u32[0]; -#elif defined(_XM_SSE_INTRINSICS_) - _mm_store_ss(reinterpret_cast(x),V); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -// Store the Y component into a 32 bit integer location in memory. -XMFINLINE VOID XMVectorGetIntYPtr(UINT *y,FXMVECTOR V) -{ - XMASSERT( y != 0 ); -#if defined(_XM_NO_INTRINSICS_) - *y = V.vector4_u32[1]; -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(1,1,1,1)); - _mm_store_ss(reinterpret_cast(y),vResult); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -// Store the Z component into a 32 bit integer locaCantion in memory. -XMFINLINE VOID XMVectorGetIntZPtr(UINT *z,FXMVECTOR V) -{ - XMASSERT( z != 0 ); -#if defined(_XM_NO_INTRINSICS_) - *z = V.vector4_u32[2]; -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(2,2,2,2)); - _mm_store_ss(reinterpret_cast(z),vResult); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -// Store the W component into a 32 bit integer location in memory. -XMFINLINE VOID XMVectorGetIntWPtr(UINT *w,FXMVECTOR V) -{ - XMASSERT( w != 0 ); -#if defined(_XM_NO_INTRINSICS_) - *w = V.vector4_u32[3]; -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(3,3,3,3)); - _mm_store_ss(reinterpret_cast(w),vResult); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -// Set a single indexed floating point component -// This causes Load/Hit/Store on VMX targets -XMFINLINE XMVECTOR XMVectorSetByIndex(FXMVECTOR V, FLOAT f,UINT i) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR U; - XMASSERT( i <= 3 ); - U = V; - U.vector4_f32[i] = f; - return U; -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT( i <= 3 ); - XMVECTOR U = V; - U.m128_f32[i] = f; - return U; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -// Sets the X component of a vector to a passed floating point value -// This causes Load/Hit/Store on VMX targets -XMFINLINE XMVECTOR XMVectorSetX(FXMVECTOR V, FLOAT x) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR U; - U.vector4_f32[0] = x; - U.vector4_f32[1] = V.vector4_f32[1]; - U.vector4_f32[2] = V.vector4_f32[2]; - U.vector4_f32[3] = V.vector4_f32[3]; - return U; -#elif defined(_XM_SSE_INTRINSICS_) -#if defined(_XM_ISVS2005_) - XMVECTOR vResult = V; - vResult.m128_f32[0] = x; - return vResult; -#else - XMVECTOR vResult = _mm_set_ss(x); - vResult = _mm_move_ss(V,vResult); - return vResult; -#endif // _XM_ISVS2005_ -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -// Sets the Y component of a vector to a passed floating point value -// This causes Load/Hit/Store on VMX targets -XMFINLINE XMVECTOR XMVectorSetY(FXMVECTOR V, FLOAT y) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR U; - U.vector4_f32[0] = V.vector4_f32[0]; - U.vector4_f32[1] = y; - U.vector4_f32[2] = V.vector4_f32[2]; - U.vector4_f32[3] = V.vector4_f32[3]; - return U; -#elif defined(_XM_SSE_INTRINSICS_) -#if defined(_XM_ISVS2005_) - XMVECTOR vResult = V; - vResult.m128_f32[1] = y; - return vResult; -#else - // Swap y and x - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(3,2,0,1)); - // Convert input to vector - XMVECTOR vTemp = _mm_set_ss(y); - // Replace the x component - vResult = _mm_move_ss(vResult,vTemp); - // Swap y and x again - vResult = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(3,2,0,1)); - return vResult; -#endif // _XM_ISVS2005_ -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} -// Sets the Z component of a vector to a passed floating point value -// This causes Load/Hit/Store on VMX targets -XMFINLINE XMVECTOR XMVectorSetZ(FXMVECTOR V, FLOAT z) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR U; - U.vector4_f32[0] = V.vector4_f32[0]; - U.vector4_f32[1] = V.vector4_f32[1]; - U.vector4_f32[2] = z; - U.vector4_f32[3] = V.vector4_f32[3]; - return U; -#elif defined(_XM_SSE_INTRINSICS_) -#if defined(_XM_ISVS2005_) - XMVECTOR vResult = V; - vResult.m128_f32[2] = z; - return vResult; -#else - // Swap z and x - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(3,0,1,2)); - // Convert input to vector - XMVECTOR vTemp = _mm_set_ss(z); - // Replace the x component - vResult = _mm_move_ss(vResult,vTemp); - // Swap z and x again - vResult = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(3,0,1,2)); - return vResult; -#endif // _XM_ISVS2005_ -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -// Sets the W component of a vector to a passed floating point value -// This causes Load/Hit/Store on VMX targets -XMFINLINE XMVECTOR XMVectorSetW(FXMVECTOR V, FLOAT w) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR U; - U.vector4_f32[0] = V.vector4_f32[0]; - U.vector4_f32[1] = V.vector4_f32[1]; - U.vector4_f32[2] = V.vector4_f32[2]; - U.vector4_f32[3] = w; - return U; -#elif defined(_XM_SSE_INTRINSICS_) -#if defined(_XM_ISVS2005_) - XMVECTOR vResult = V; - vResult.m128_f32[3] = w; - return vResult; -#else - // Swap w and x - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(0,2,1,3)); - // Convert input to vector - XMVECTOR vTemp = _mm_set_ss(w); - // Replace the x component - vResult = _mm_move_ss(vResult,vTemp); - // Swap w and x again - vResult = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(0,2,1,3)); - return vResult; -#endif // _XM_ISVS2005_ -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -// Sets a component of a vector to a floating point value passed by pointer -// This causes Load/Hit/Store on VMX targets -XMFINLINE XMVECTOR XMVectorSetByIndexPtr(FXMVECTOR V,CONST FLOAT *f,UINT i) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR U; - XMASSERT( f != 0 ); - XMASSERT( i <= 3 ); - U = V; - U.vector4_f32[i] = *f; - return U; -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT( f != 0 ); - XMASSERT( i <= 3 ); - XMVECTOR U = V; - U.m128_f32[i] = *f; - return U; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -// Sets the X component of a vector to a floating point value passed by pointer -XMFINLINE XMVECTOR XMVectorSetXPtr(FXMVECTOR V,CONST FLOAT *x) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR U; - XMASSERT( x != 0 ); - U.vector4_f32[0] = *x; - U.vector4_f32[1] = V.vector4_f32[1]; - U.vector4_f32[2] = V.vector4_f32[2]; - U.vector4_f32[3] = V.vector4_f32[3]; - return U; -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT( x != 0 ); - XMVECTOR vResult = _mm_load_ss(x); - vResult = _mm_move_ss(V,vResult); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -// Sets the Y component of a vector to a floating point value passed by pointer -XMFINLINE XMVECTOR XMVectorSetYPtr(FXMVECTOR V,CONST FLOAT *y) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR U; - XMASSERT( y != 0 ); - U.vector4_f32[0] = V.vector4_f32[0]; - U.vector4_f32[1] = *y; - U.vector4_f32[2] = V.vector4_f32[2]; - U.vector4_f32[3] = V.vector4_f32[3]; - return U; -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT( y != 0 ); - // Swap y and x - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(3,2,0,1)); - // Convert input to vector - XMVECTOR vTemp = _mm_load_ss(y); - // Replace the x component - vResult = _mm_move_ss(vResult,vTemp); - // Swap y and x again - vResult = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(3,2,0,1)); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -// Sets the Z component of a vector to a floating point value passed by pointer -XMFINLINE XMVECTOR XMVectorSetZPtr(FXMVECTOR V,CONST FLOAT *z) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR U; - XMASSERT( z != 0 ); - U.vector4_f32[0] = V.vector4_f32[0]; - U.vector4_f32[1] = V.vector4_f32[1]; - U.vector4_f32[2] = *z; - U.vector4_f32[3] = V.vector4_f32[3]; - return U; -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT( z != 0 ); - // Swap z and x - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(3,0,1,2)); - // Convert input to vector - XMVECTOR vTemp = _mm_load_ss(z); - // Replace the x component - vResult = _mm_move_ss(vResult,vTemp); - // Swap z and x again - vResult = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(3,0,1,2)); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -// Sets the W component of a vector to a floating point value passed by pointer -XMFINLINE XMVECTOR XMVectorSetWPtr(FXMVECTOR V,CONST FLOAT *w) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR U; - XMASSERT( w != 0 ); - U.vector4_f32[0] = V.vector4_f32[0]; - U.vector4_f32[1] = V.vector4_f32[1]; - U.vector4_f32[2] = V.vector4_f32[2]; - U.vector4_f32[3] = *w; - return U; -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT( w != 0 ); - // Swap w and x - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(0,2,1,3)); - // Convert input to vector - XMVECTOR vTemp = _mm_load_ss(w); - // Replace the x component - vResult = _mm_move_ss(vResult,vTemp); - // Swap w and x again - vResult = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(0,2,1,3)); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -// Sets a component of a vector to an integer passed by value -// This causes Load/Hit/Store on VMX targets -XMFINLINE XMVECTOR XMVectorSetIntByIndex(FXMVECTOR V, UINT x, UINT i) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR U; - XMASSERT( i <= 3 ); - U = V; - U.vector4_u32[i] = x; - return U; -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT( i <= 3 ); - XMVECTORU32 tmp; - tmp.v = V; - tmp.u[i] = x; - return tmp; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -// Sets the X component of a vector to an integer passed by value -// This causes Load/Hit/Store on VMX targets -XMFINLINE XMVECTOR XMVectorSetIntX(FXMVECTOR V, UINT x) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR U; - U.vector4_u32[0] = x; - U.vector4_u32[1] = V.vector4_u32[1]; - U.vector4_u32[2] = V.vector4_u32[2]; - U.vector4_u32[3] = V.vector4_u32[3]; - return U; -#elif defined(_XM_SSE_INTRINSICS_) -#if defined(_XM_ISVS2005_) - XMVECTOR vResult = V; - vResult.m128_i32[0] = x; - return vResult; -#else - __m128i vTemp = _mm_cvtsi32_si128(x); - XMVECTOR vResult = _mm_move_ss(V,reinterpret_cast(&vTemp)[0]); - return vResult; -#endif // _XM_ISVS2005_ -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -// Sets the Y component of a vector to an integer passed by value -// This causes Load/Hit/Store on VMX targets -XMFINLINE XMVECTOR XMVectorSetIntY(FXMVECTOR V, UINT y) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR U; - U.vector4_u32[0] = V.vector4_u32[0]; - U.vector4_u32[1] = y; - U.vector4_u32[2] = V.vector4_u32[2]; - U.vector4_u32[3] = V.vector4_u32[3]; - return U; -#elif defined(_XM_SSE_INTRINSICS_) -#if defined(_XM_ISVS2005_) - XMVECTOR vResult = V; - vResult.m128_i32[1] = y; - return vResult; -#else // Swap y and x - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(3,2,0,1)); - // Convert input to vector - __m128i vTemp = _mm_cvtsi32_si128(y); - // Replace the x component - vResult = _mm_move_ss(vResult,reinterpret_cast(&vTemp)[0]); - // Swap y and x again - vResult = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(3,2,0,1)); - return vResult; -#endif // _XM_ISVS2005_ -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -// Sets the Z component of a vector to an integer passed by value -// This causes Load/Hit/Store on VMX targets -XMFINLINE XMVECTOR XMVectorSetIntZ(FXMVECTOR V, UINT z) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR U; - U.vector4_u32[0] = V.vector4_u32[0]; - U.vector4_u32[1] = V.vector4_u32[1]; - U.vector4_u32[2] = z; - U.vector4_u32[3] = V.vector4_u32[3]; - return U; -#elif defined(_XM_SSE_INTRINSICS_) -#if defined(_XM_ISVS2005_) - XMVECTOR vResult = V; - vResult.m128_i32[2] = z; - return vResult; -#else - // Swap z and x - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(3,0,1,2)); - // Convert input to vector - __m128i vTemp = _mm_cvtsi32_si128(z); - // Replace the x component - vResult = _mm_move_ss(vResult,reinterpret_cast(&vTemp)[0]); - // Swap z and x again - vResult = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(3,0,1,2)); - return vResult; -#endif // _XM_ISVS2005_ -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -// Sets the W component of a vector to an integer passed by value -// This causes Load/Hit/Store on VMX targets -XMFINLINE XMVECTOR XMVectorSetIntW(FXMVECTOR V, UINT w) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR U; - U.vector4_u32[0] = V.vector4_u32[0]; - U.vector4_u32[1] = V.vector4_u32[1]; - U.vector4_u32[2] = V.vector4_u32[2]; - U.vector4_u32[3] = w; - return U; -#elif defined(_XM_SSE_INTRINSICS_) -#if defined(_XM_ISVS2005_) - XMVECTOR vResult = V; - vResult.m128_i32[3] = w; - return vResult; -#else - // Swap w and x - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(0,2,1,3)); - // Convert input to vector - __m128i vTemp = _mm_cvtsi32_si128(w); - // Replace the x component - vResult = _mm_move_ss(vResult,reinterpret_cast(&vTemp)[0]); - // Swap w and x again - vResult = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(0,2,1,3)); - return vResult; -#endif // _XM_ISVS2005_ -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -// Sets a component of a vector to an integer value passed by pointer -// This causes Load/Hit/Store on VMX targets -XMFINLINE XMVECTOR XMVectorSetIntByIndexPtr(FXMVECTOR V, CONST UINT *x,UINT i) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR U; - XMASSERT( x != 0 ); - XMASSERT( i <= 3 ); - U = V; - U.vector4_u32[i] = *x; - return U; -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT( x != 0 ); - XMASSERT( i <= 3 ); - XMVECTORU32 tmp; - tmp.v = V; - tmp.u[i] = *x; - return tmp; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -// Sets the X component of a vector to an integer value passed by pointer -XMFINLINE XMVECTOR XMVectorSetIntXPtr(FXMVECTOR V,CONST UINT *x) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR U; - XMASSERT( x != 0 ); - U.vector4_u32[0] = *x; - U.vector4_u32[1] = V.vector4_u32[1]; - U.vector4_u32[2] = V.vector4_u32[2]; - U.vector4_u32[3] = V.vector4_u32[3]; - return U; -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT( x != 0 ); - XMVECTOR vTemp = _mm_load_ss(reinterpret_cast(x)); - XMVECTOR vResult = _mm_move_ss(V,vTemp); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -// Sets the Y component of a vector to an integer value passed by pointer -XMFINLINE XMVECTOR XMVectorSetIntYPtr(FXMVECTOR V,CONST UINT *y) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR U; - XMASSERT( y != 0 ); - U.vector4_u32[0] = V.vector4_u32[0]; - U.vector4_u32[1] = *y; - U.vector4_u32[2] = V.vector4_u32[2]; - U.vector4_u32[3] = V.vector4_u32[3]; - return U; -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT( y != 0 ); - // Swap y and x - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(3,2,0,1)); - // Convert input to vector - XMVECTOR vTemp = _mm_load_ss(reinterpret_cast(y)); - // Replace the x component - vResult = _mm_move_ss(vResult,vTemp); - // Swap y and x again - vResult = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(3,2,0,1)); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -// Sets the Z component of a vector to an integer value passed by pointer -XMFINLINE XMVECTOR XMVectorSetIntZPtr(FXMVECTOR V,CONST UINT *z) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR U; - XMASSERT( z != 0 ); - U.vector4_u32[0] = V.vector4_u32[0]; - U.vector4_u32[1] = V.vector4_u32[1]; - U.vector4_u32[2] = *z; - U.vector4_u32[3] = V.vector4_u32[3]; - return U; -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT( z != 0 ); - // Swap z and x - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(3,0,1,2)); - // Convert input to vector - XMVECTOR vTemp = _mm_load_ss(reinterpret_cast(z)); - // Replace the x component - vResult = _mm_move_ss(vResult,vTemp); - // Swap z and x again - vResult = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(3,0,1,2)); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -// Sets the W component of a vector to an integer value passed by pointer -XMFINLINE XMVECTOR XMVectorSetIntWPtr(FXMVECTOR V,CONST UINT *w) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR U; - XMASSERT( w != 0 ); - U.vector4_u32[0] = V.vector4_u32[0]; - U.vector4_u32[1] = V.vector4_u32[1]; - U.vector4_u32[2] = V.vector4_u32[2]; - U.vector4_u32[3] = *w; - return U; -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT( w != 0 ); - // Swap w and x - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(0,2,1,3)); - // Convert input to vector - XMVECTOR vTemp = _mm_load_ss(reinterpret_cast(w)); - // Replace the x component - vResult = _mm_move_ss(vResult,vTemp); - // Swap w and x again - vResult = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(0,2,1,3)); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Define a control vector to be used in XMVectorPermute -// operations. Visualize the two vectors V1 and V2 given -// in a permute as arranged back to back in a linear fashion, -// such that they form an array of 8 floating point values. -// The four integers specified in XMVectorPermuteControl -// will serve as indices into the array to select components -// from the two vectors. ElementIndex0 is used to select -// an element from the vectors to be placed in the first -// component of the resulting vector, ElementIndex1 is used -// to select an element for the second component, etc. - -XMFINLINE XMVECTOR XMVectorPermuteControl -( - UINT ElementIndex0, - UINT ElementIndex1, - UINT ElementIndex2, - UINT ElementIndex3 -) -{ -#if defined(_XM_SSE_INTRINSICS_) || defined(_XM_NO_INTRINSICS_) - XMVECTORU32 vControl; - static CONST UINT ControlElement[] = { - XM_PERMUTE_0X, - XM_PERMUTE_0Y, - XM_PERMUTE_0Z, - XM_PERMUTE_0W, - XM_PERMUTE_1X, - XM_PERMUTE_1Y, - XM_PERMUTE_1Z, - XM_PERMUTE_1W - }; - XMASSERT(ElementIndex0 < 8); - XMASSERT(ElementIndex1 < 8); - XMASSERT(ElementIndex2 < 8); - XMASSERT(ElementIndex3 < 8); - - vControl.u[0] = ControlElement[ElementIndex0]; - vControl.u[1] = ControlElement[ElementIndex1]; - vControl.u[2] = ControlElement[ElementIndex2]; - vControl.u[3] = ControlElement[ElementIndex3]; - return vControl.v; -#else -#endif -} - -//------------------------------------------------------------------------------ - -// Using a control vector made up of 16 bytes from 0-31, remap V1 and V2's byte -// entries into a single 16 byte vector and return it. Index 0-15 = V1, -// 16-31 = V2 -XMFINLINE XMVECTOR XMVectorPermute -( - FXMVECTOR V1, - FXMVECTOR V2, - FXMVECTOR Control -) -{ -#if defined(_XM_NO_INTRINSICS_) - const BYTE *aByte[2]; - XMVECTOR Result; - UINT i, uIndex, VectorIndex; - const BYTE *pControl; - BYTE *pWork; - - // Indices must be in range from 0 to 31 - XMASSERT((Control.vector4_u32[0] & 0xE0E0E0E0) == 0); - XMASSERT((Control.vector4_u32[1] & 0xE0E0E0E0) == 0); - XMASSERT((Control.vector4_u32[2] & 0xE0E0E0E0) == 0); - XMASSERT((Control.vector4_u32[3] & 0xE0E0E0E0) == 0); - - // 0-15 = V1, 16-31 = V2 - aByte[0] = (const BYTE*)(&V1); - aByte[1] = (const BYTE*)(&V2); - i = 16; - pControl = (const BYTE *)(&Control); - pWork = (BYTE *)(&Result); - do { - // Get the byte to map from - uIndex = pControl[0]; - ++pControl; - VectorIndex = (uIndex>>4)&1; - uIndex &= 0x0F; -#if defined(_XM_LITTLEENDIAN_) - uIndex ^= 3; // Swap byte ordering on little endian machines -#endif - pWork[0] = aByte[VectorIndex][uIndex]; - ++pWork; - } while (--i); - return Result; -#elif defined(_XM_SSE_INTRINSICS_) -#if defined(_PREFAST_) || defined(XMDEBUG) - // Indices must be in range from 0 to 31 - static const XMVECTORI32 PremuteTest = {0xE0E0E0E0,0xE0E0E0E0,0xE0E0E0E0,0xE0E0E0E0}; - XMVECTOR vAssert = _mm_and_ps(Control,PremuteTest); - __m128i vAsserti = _mm_cmpeq_epi32(reinterpret_cast(&vAssert)[0],g_XMZero); - XMASSERT(_mm_movemask_ps(*reinterpret_cast(&vAsserti)) == 0xf); -#endif - // Store the vectors onto local memory on the stack - XMVECTOR Array[2]; - Array[0] = V1; - Array[1] = V2; - // Output vector, on the stack - XMVECTORU8 vResult; - // Get pointer to the two vectors on the stack - const BYTE *pInput = reinterpret_cast(Array); - // Store the Control vector on the stack to access the bytes - // don't use Control, it can cause a register variable to spill on the stack. - XMVECTORU8 vControl; - vControl.v = Control; // Write to memory - UINT i = 0; - do { - UINT ComponentIndex = vControl.u[i] & 0x1FU; - ComponentIndex ^= 3; // Swap byte ordering - vResult.u[i] = pInput[ComponentIndex]; - } while (++i<16); - return vResult; -#else // _XM_SSE_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Define a control vector to be used in XMVectorSelect -// operations. The four integers specified in XMVectorSelectControl -// serve as indices to select between components in two vectors. -// The first index controls selection for the first component of -// the vectors involved in a select operation, the second index -// controls selection for the second component etc. A value of -// zero for an index causes the corresponding component from the first -// vector to be selected whereas a one causes the component from the -// second vector to be selected instead. - -XMFINLINE XMVECTOR XMVectorSelectControl -( - UINT VectorIndex0, - UINT VectorIndex1, - UINT VectorIndex2, - UINT VectorIndex3 -) -{ -#if defined(_XM_SSE_INTRINSICS_) && !defined(_XM_NO_INTRINSICS_) - // x=Index0,y=Index1,z=Index2,w=Index3 - __m128i vTemp = _mm_set_epi32(VectorIndex3,VectorIndex2,VectorIndex1,VectorIndex0); - // Any non-zero entries become 0xFFFFFFFF else 0 - vTemp = _mm_cmpgt_epi32(vTemp,g_XMZero); - return reinterpret_cast<__m128 *>(&vTemp)[0]; -#else - XMVECTOR ControlVector; - CONST UINT ControlElement[] = - { - XM_SELECT_0, - XM_SELECT_1 - }; - - XMASSERT(VectorIndex0 < 2); - XMASSERT(VectorIndex1 < 2); - XMASSERT(VectorIndex2 < 2); - XMASSERT(VectorIndex3 < 2); - - ControlVector.vector4_u32[0] = ControlElement[VectorIndex0]; - ControlVector.vector4_u32[1] = ControlElement[VectorIndex1]; - ControlVector.vector4_u32[2] = ControlElement[VectorIndex2]; - ControlVector.vector4_u32[3] = ControlElement[VectorIndex3]; - - return ControlVector; - -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorSelect -( - FXMVECTOR V1, - FXMVECTOR V2, - FXMVECTOR Control -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - - Result.vector4_u32[0] = (V1.vector4_u32[0] & ~Control.vector4_u32[0]) | (V2.vector4_u32[0] & Control.vector4_u32[0]); - Result.vector4_u32[1] = (V1.vector4_u32[1] & ~Control.vector4_u32[1]) | (V2.vector4_u32[1] & Control.vector4_u32[1]); - Result.vector4_u32[2] = (V1.vector4_u32[2] & ~Control.vector4_u32[2]) | (V2.vector4_u32[2] & Control.vector4_u32[2]); - Result.vector4_u32[3] = (V1.vector4_u32[3] & ~Control.vector4_u32[3]) | (V2.vector4_u32[3] & Control.vector4_u32[3]); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp1 = _mm_andnot_ps(Control,V1); - XMVECTOR vTemp2 = _mm_and_ps(V2,Control); - return _mm_or_ps(vTemp1,vTemp2); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorMergeXY -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - - Result.vector4_u32[0] = V1.vector4_u32[0]; - Result.vector4_u32[1] = V2.vector4_u32[0]; - Result.vector4_u32[2] = V1.vector4_u32[1]; - Result.vector4_u32[3] = V2.vector4_u32[1]; - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_unpacklo_ps( V1, V2 ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorMergeZW -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - - Result.vector4_u32[0] = V1.vector4_u32[2]; - Result.vector4_u32[1] = V2.vector4_u32[2]; - Result.vector4_u32[2] = V1.vector4_u32[3]; - Result.vector4_u32[3] = V2.vector4_u32[3]; - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_unpackhi_ps( V1, V2 ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Comparison operations -//------------------------------------------------------------------------------ - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorEqual -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Control; - - Control.vector4_u32[0] = (V1.vector4_f32[0] == V2.vector4_f32[0]) ? 0xFFFFFFFF : 0; - Control.vector4_u32[1] = (V1.vector4_f32[1] == V2.vector4_f32[1]) ? 0xFFFFFFFF : 0; - Control.vector4_u32[2] = (V1.vector4_f32[2] == V2.vector4_f32[2]) ? 0xFFFFFFFF : 0; - Control.vector4_u32[3] = (V1.vector4_f32[3] == V2.vector4_f32[3]) ? 0xFFFFFFFF : 0; - - return Control; - -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_cmpeq_ps( V1, V2 ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorEqualR -( - UINT* pCR, - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - UINT ux, uy, uz, uw, CR; - XMVECTOR Control; - - XMASSERT( pCR ); - - ux = (V1.vector4_f32[0] == V2.vector4_f32[0]) ? 0xFFFFFFFFU : 0; - uy = (V1.vector4_f32[1] == V2.vector4_f32[1]) ? 0xFFFFFFFFU : 0; - uz = (V1.vector4_f32[2] == V2.vector4_f32[2]) ? 0xFFFFFFFFU : 0; - uw = (V1.vector4_f32[3] == V2.vector4_f32[3]) ? 0xFFFFFFFFU : 0; - CR = 0; - if (ux&uy&uz&uw) - { - // All elements are greater - CR = XM_CRMASK_CR6TRUE; - } - else if (!(ux|uy|uz|uw)) - { - // All elements are not greater - CR = XM_CRMASK_CR6FALSE; - } - *pCR = CR; - Control.vector4_u32[0] = ux; - Control.vector4_u32[1] = uy; - Control.vector4_u32[2] = uz; - Control.vector4_u32[3] = uw; - return Control; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT( pCR ); - XMVECTOR vTemp = _mm_cmpeq_ps(V1,V2); - UINT CR = 0; - int iTest = _mm_movemask_ps(vTemp); - if (iTest==0xf) - { - CR = XM_CRMASK_CR6TRUE; - } - else if (!iTest) - { - // All elements are not greater - CR = XM_CRMASK_CR6FALSE; - } - *pCR = CR; - return vTemp; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Treat the components of the vectors as unsigned integers and -// compare individual bits between the two. This is useful for -// comparing control vectors and result vectors returned from -// other comparison operations. - -XMFINLINE XMVECTOR XMVectorEqualInt -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Control; - - Control.vector4_u32[0] = (V1.vector4_u32[0] == V2.vector4_u32[0]) ? 0xFFFFFFFF : 0; - Control.vector4_u32[1] = (V1.vector4_u32[1] == V2.vector4_u32[1]) ? 0xFFFFFFFF : 0; - Control.vector4_u32[2] = (V1.vector4_u32[2] == V2.vector4_u32[2]) ? 0xFFFFFFFF : 0; - Control.vector4_u32[3] = (V1.vector4_u32[3] == V2.vector4_u32[3]) ? 0xFFFFFFFF : 0; - - return Control; - -#elif defined(_XM_SSE_INTRINSICS_) - __m128i V = _mm_cmpeq_epi32( reinterpret_cast(&V1)[0],reinterpret_cast(&V2)[0] ); - return reinterpret_cast<__m128 *>(&V)[0]; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorEqualIntR -( - UINT* pCR, - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Control; - - XMASSERT(pCR); - - Control = XMVectorEqualInt(V1, V2); - - *pCR = 0; - - if (XMVector4EqualInt(Control, XMVectorTrueInt())) - { - // All elements are equal - *pCR |= XM_CRMASK_CR6TRUE; - } - else if (XMVector4EqualInt(Control, XMVectorFalseInt())) - { - // All elements are not equal - *pCR |= XM_CRMASK_CR6FALSE; - } - - return Control; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pCR); - __m128i V = _mm_cmpeq_epi32( reinterpret_cast(&V1)[0],reinterpret_cast(&V2)[0] ); - int iTemp = _mm_movemask_ps(reinterpret_cast(&V)[0]); - UINT CR = 0; - if (iTemp==0x0F) - { - CR = XM_CRMASK_CR6TRUE; - } - else if (!iTemp) - { - CR = XM_CRMASK_CR6FALSE; - } - *pCR = CR; - return reinterpret_cast<__m128 *>(&V)[0]; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorNearEqual -( - FXMVECTOR V1, - FXMVECTOR V2, - FXMVECTOR Epsilon -) -{ -#if defined(_XM_NO_INTRINSICS_) - - FLOAT fDeltax, fDeltay, fDeltaz, fDeltaw; - XMVECTOR Control; - - fDeltax = V1.vector4_f32[0]-V2.vector4_f32[0]; - fDeltay = V1.vector4_f32[1]-V2.vector4_f32[1]; - fDeltaz = V1.vector4_f32[2]-V2.vector4_f32[2]; - fDeltaw = V1.vector4_f32[3]-V2.vector4_f32[3]; - - fDeltax = fabsf(fDeltax); - fDeltay = fabsf(fDeltay); - fDeltaz = fabsf(fDeltaz); - fDeltaw = fabsf(fDeltaw); - - Control.vector4_u32[0] = (fDeltax <= Epsilon.vector4_f32[0]) ? 0xFFFFFFFFU : 0; - Control.vector4_u32[1] = (fDeltay <= Epsilon.vector4_f32[1]) ? 0xFFFFFFFFU : 0; - Control.vector4_u32[2] = (fDeltaz <= Epsilon.vector4_f32[2]) ? 0xFFFFFFFFU : 0; - Control.vector4_u32[3] = (fDeltaw <= Epsilon.vector4_f32[3]) ? 0xFFFFFFFFU : 0; - - return Control; - -#elif defined(_XM_SSE_INTRINSICS_) - // Get the difference - XMVECTOR vDelta = _mm_sub_ps(V1,V2); - // Get the absolute value of the difference - XMVECTOR vTemp = _mm_setzero_ps(); - vTemp = _mm_sub_ps(vTemp,vDelta); - vTemp = _mm_max_ps(vTemp,vDelta); - vTemp = _mm_cmple_ps(vTemp,Epsilon); - return vTemp; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorNotEqual -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Control; - Control.vector4_u32[0] = (V1.vector4_f32[0] != V2.vector4_f32[0]) ? 0xFFFFFFFF : 0; - Control.vector4_u32[1] = (V1.vector4_f32[1] != V2.vector4_f32[1]) ? 0xFFFFFFFF : 0; - Control.vector4_u32[2] = (V1.vector4_f32[2] != V2.vector4_f32[2]) ? 0xFFFFFFFF : 0; - Control.vector4_u32[3] = (V1.vector4_f32[3] != V2.vector4_f32[3]) ? 0xFFFFFFFF : 0; - return Control; - -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_cmpneq_ps( V1, V2 ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorNotEqualInt -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Control; - Control.vector4_u32[0] = (V1.vector4_u32[0] != V2.vector4_u32[0]) ? 0xFFFFFFFFU : 0; - Control.vector4_u32[1] = (V1.vector4_u32[1] != V2.vector4_u32[1]) ? 0xFFFFFFFFU : 0; - Control.vector4_u32[2] = (V1.vector4_u32[2] != V2.vector4_u32[2]) ? 0xFFFFFFFFU : 0; - Control.vector4_u32[3] = (V1.vector4_u32[3] != V2.vector4_u32[3]) ? 0xFFFFFFFFU : 0; - return Control; - -#elif defined(_XM_SSE_INTRINSICS_) - __m128i V = _mm_cmpeq_epi32( reinterpret_cast(&V1)[0],reinterpret_cast(&V2)[0] ); - return _mm_xor_ps(reinterpret_cast<__m128 *>(&V)[0],g_XMNegOneMask); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorGreater -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Control; - Control.vector4_u32[0] = (V1.vector4_f32[0] > V2.vector4_f32[0]) ? 0xFFFFFFFF : 0; - Control.vector4_u32[1] = (V1.vector4_f32[1] > V2.vector4_f32[1]) ? 0xFFFFFFFF : 0; - Control.vector4_u32[2] = (V1.vector4_f32[2] > V2.vector4_f32[2]) ? 0xFFFFFFFF : 0; - Control.vector4_u32[3] = (V1.vector4_f32[3] > V2.vector4_f32[3]) ? 0xFFFFFFFF : 0; - return Control; - -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_cmpgt_ps( V1, V2 ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorGreaterR -( - UINT* pCR, - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - UINT ux, uy, uz, uw, CR; - XMVECTOR Control; - - XMASSERT( pCR ); - - ux = (V1.vector4_f32[0] > V2.vector4_f32[0]) ? 0xFFFFFFFFU : 0; - uy = (V1.vector4_f32[1] > V2.vector4_f32[1]) ? 0xFFFFFFFFU : 0; - uz = (V1.vector4_f32[2] > V2.vector4_f32[2]) ? 0xFFFFFFFFU : 0; - uw = (V1.vector4_f32[3] > V2.vector4_f32[3]) ? 0xFFFFFFFFU : 0; - CR = 0; - if (ux&uy&uz&uw) - { - // All elements are greater - CR = XM_CRMASK_CR6TRUE; - } - else if (!(ux|uy|uz|uw)) - { - // All elements are not greater - CR = XM_CRMASK_CR6FALSE; - } - *pCR = CR; - Control.vector4_u32[0] = ux; - Control.vector4_u32[1] = uy; - Control.vector4_u32[2] = uz; - Control.vector4_u32[3] = uw; - return Control; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT( pCR ); - XMVECTOR vTemp = _mm_cmpgt_ps(V1,V2); - UINT CR = 0; - int iTest = _mm_movemask_ps(vTemp); - if (iTest==0xf) - { - CR = XM_CRMASK_CR6TRUE; - } - else if (!iTest) - { - // All elements are not greater - CR = XM_CRMASK_CR6FALSE; - } - *pCR = CR; - return vTemp; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorGreaterOrEqual -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Control; - Control.vector4_u32[0] = (V1.vector4_f32[0] >= V2.vector4_f32[0]) ? 0xFFFFFFFF : 0; - Control.vector4_u32[1] = (V1.vector4_f32[1] >= V2.vector4_f32[1]) ? 0xFFFFFFFF : 0; - Control.vector4_u32[2] = (V1.vector4_f32[2] >= V2.vector4_f32[2]) ? 0xFFFFFFFF : 0; - Control.vector4_u32[3] = (V1.vector4_f32[3] >= V2.vector4_f32[3]) ? 0xFFFFFFFF : 0; - return Control; - -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_cmpge_ps( V1, V2 ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorGreaterOrEqualR -( - UINT* pCR, - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - UINT ux, uy, uz, uw, CR; - XMVECTOR Control; - - XMASSERT( pCR ); - - ux = (V1.vector4_f32[0] >= V2.vector4_f32[0]) ? 0xFFFFFFFFU : 0; - uy = (V1.vector4_f32[1] >= V2.vector4_f32[1]) ? 0xFFFFFFFFU : 0; - uz = (V1.vector4_f32[2] >= V2.vector4_f32[2]) ? 0xFFFFFFFFU : 0; - uw = (V1.vector4_f32[3] >= V2.vector4_f32[3]) ? 0xFFFFFFFFU : 0; - CR = 0; - if (ux&uy&uz&uw) - { - // All elements are greater - CR = XM_CRMASK_CR6TRUE; - } - else if (!(ux|uy|uz|uw)) - { - // All elements are not greater - CR = XM_CRMASK_CR6FALSE; - } - *pCR = CR; - Control.vector4_u32[0] = ux; - Control.vector4_u32[1] = uy; - Control.vector4_u32[2] = uz; - Control.vector4_u32[3] = uw; - return Control; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT( pCR ); - XMVECTOR vTemp = _mm_cmpge_ps(V1,V2); - UINT CR = 0; - int iTest = _mm_movemask_ps(vTemp); - if (iTest==0xf) - { - CR = XM_CRMASK_CR6TRUE; - } - else if (!iTest) - { - // All elements are not greater - CR = XM_CRMASK_CR6FALSE; - } - *pCR = CR; - return vTemp; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorLess -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Control; - Control.vector4_u32[0] = (V1.vector4_f32[0] < V2.vector4_f32[0]) ? 0xFFFFFFFF : 0; - Control.vector4_u32[1] = (V1.vector4_f32[1] < V2.vector4_f32[1]) ? 0xFFFFFFFF : 0; - Control.vector4_u32[2] = (V1.vector4_f32[2] < V2.vector4_f32[2]) ? 0xFFFFFFFF : 0; - Control.vector4_u32[3] = (V1.vector4_f32[3] < V2.vector4_f32[3]) ? 0xFFFFFFFF : 0; - return Control; - -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_cmplt_ps( V1, V2 ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorLessOrEqual -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Control; - Control.vector4_u32[0] = (V1.vector4_f32[0] <= V2.vector4_f32[0]) ? 0xFFFFFFFF : 0; - Control.vector4_u32[1] = (V1.vector4_f32[1] <= V2.vector4_f32[1]) ? 0xFFFFFFFF : 0; - Control.vector4_u32[2] = (V1.vector4_f32[2] <= V2.vector4_f32[2]) ? 0xFFFFFFFF : 0; - Control.vector4_u32[3] = (V1.vector4_f32[3] <= V2.vector4_f32[3]) ? 0xFFFFFFFF : 0; - return Control; - -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_cmple_ps( V1, V2 ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorInBounds -( - FXMVECTOR V, - FXMVECTOR Bounds -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Control; - Control.vector4_u32[0] = (V.vector4_f32[0] <= Bounds.vector4_f32[0] && V.vector4_f32[0] >= -Bounds.vector4_f32[0]) ? 0xFFFFFFFF : 0; - Control.vector4_u32[1] = (V.vector4_f32[1] <= Bounds.vector4_f32[1] && V.vector4_f32[1] >= -Bounds.vector4_f32[1]) ? 0xFFFFFFFF : 0; - Control.vector4_u32[2] = (V.vector4_f32[2] <= Bounds.vector4_f32[2] && V.vector4_f32[2] >= -Bounds.vector4_f32[2]) ? 0xFFFFFFFF : 0; - Control.vector4_u32[3] = (V.vector4_f32[3] <= Bounds.vector4_f32[3] && V.vector4_f32[3] >= -Bounds.vector4_f32[3]) ? 0xFFFFFFFF : 0; - return Control; - -#elif defined(_XM_SSE_INTRINSICS_) - // Test if less than or equal - XMVECTOR vTemp1 = _mm_cmple_ps(V,Bounds); - // Negate the bounds - XMVECTOR vTemp2 = _mm_mul_ps(Bounds,g_XMNegativeOne); - // Test if greater or equal (Reversed) - vTemp2 = _mm_cmple_ps(vTemp2,V); - // Blend answers - vTemp1 = _mm_and_ps(vTemp1,vTemp2); - return vTemp1; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorInBoundsR -( - UINT* pCR, - FXMVECTOR V, - FXMVECTOR Bounds -) -{ -#if defined(_XM_NO_INTRINSICS_) - UINT ux, uy, uz, uw, CR; - XMVECTOR Control; - - XMASSERT( pCR != 0 ); - - ux = (V.vector4_f32[0] <= Bounds.vector4_f32[0] && V.vector4_f32[0] >= -Bounds.vector4_f32[0]) ? 0xFFFFFFFFU : 0; - uy = (V.vector4_f32[1] <= Bounds.vector4_f32[1] && V.vector4_f32[1] >= -Bounds.vector4_f32[1]) ? 0xFFFFFFFFU : 0; - uz = (V.vector4_f32[2] <= Bounds.vector4_f32[2] && V.vector4_f32[2] >= -Bounds.vector4_f32[2]) ? 0xFFFFFFFFU : 0; - uw = (V.vector4_f32[3] <= Bounds.vector4_f32[3] && V.vector4_f32[3] >= -Bounds.vector4_f32[3]) ? 0xFFFFFFFFU : 0; - - CR = 0; - - if (ux&uy&uz&uw) - { - // All elements are in bounds - CR = XM_CRMASK_CR6BOUNDS; - } - *pCR = CR; - Control.vector4_u32[0] = ux; - Control.vector4_u32[1] = uy; - Control.vector4_u32[2] = uz; - Control.vector4_u32[3] = uw; - return Control; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT( pCR != 0 ); - // Test if less than or equal - XMVECTOR vTemp1 = _mm_cmple_ps(V,Bounds); - // Negate the bounds - XMVECTOR vTemp2 = _mm_mul_ps(Bounds,g_XMNegativeOne); - // Test if greater or equal (Reversed) - vTemp2 = _mm_cmple_ps(vTemp2,V); - // Blend answers - vTemp1 = _mm_and_ps(vTemp1,vTemp2); - - UINT CR = 0; - if (_mm_movemask_ps(vTemp1)==0xf) { - // All elements are in bounds - CR = XM_CRMASK_CR6BOUNDS; - } - *pCR = CR; - return vTemp1; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorIsNaN -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Control; - Control.vector4_u32[0] = XMISNAN(V.vector4_f32[0]) ? 0xFFFFFFFFU : 0; - Control.vector4_u32[1] = XMISNAN(V.vector4_f32[1]) ? 0xFFFFFFFFU : 0; - Control.vector4_u32[2] = XMISNAN(V.vector4_f32[2]) ? 0xFFFFFFFFU : 0; - Control.vector4_u32[3] = XMISNAN(V.vector4_f32[3]) ? 0xFFFFFFFFU : 0; - return Control; - -#elif defined(_XM_SSE_INTRINSICS_) - // Mask off the exponent - __m128i vTempInf = _mm_and_si128(reinterpret_cast(&V)[0],g_XMInfinity); - // Mask off the mantissa - __m128i vTempNan = _mm_and_si128(reinterpret_cast(&V)[0],g_XMQNaNTest); - // Are any of the exponents == 0x7F800000? - vTempInf = _mm_cmpeq_epi32(vTempInf,g_XMInfinity); - // Are any of the mantissa's zero? (SSE2 doesn't have a neq test) - vTempNan = _mm_cmpeq_epi32(vTempNan,g_XMZero); - // Perform a not on the NaN test to be true on NON-zero mantissas - vTempNan = _mm_andnot_si128(vTempNan,vTempInf); - // If any are NaN, the signs are true after the merge above - return reinterpret_cast(&vTempNan)[0]; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorIsInfinite -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Control; - Control.vector4_u32[0] = XMISINF(V.vector4_f32[0]) ? 0xFFFFFFFFU : 0; - Control.vector4_u32[1] = XMISINF(V.vector4_f32[1]) ? 0xFFFFFFFFU : 0; - Control.vector4_u32[2] = XMISINF(V.vector4_f32[2]) ? 0xFFFFFFFFU : 0; - Control.vector4_u32[3] = XMISINF(V.vector4_f32[3]) ? 0xFFFFFFFFU : 0; - return Control; - -#elif defined(_XM_SSE_INTRINSICS_) - // Mask off the sign bit - __m128 vTemp = _mm_and_ps(V,g_XMAbsMask); - // Compare to infinity - vTemp = _mm_cmpeq_ps(vTemp,g_XMInfinity); - // If any are infinity, the signs are true. - return vTemp; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Rounding and clamping operations -//------------------------------------------------------------------------------ - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorMin -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - Result.vector4_f32[0] = (V1.vector4_f32[0] < V2.vector4_f32[0]) ? V1.vector4_f32[0] : V2.vector4_f32[0]; - Result.vector4_f32[1] = (V1.vector4_f32[1] < V2.vector4_f32[1]) ? V1.vector4_f32[1] : V2.vector4_f32[1]; - Result.vector4_f32[2] = (V1.vector4_f32[2] < V2.vector4_f32[2]) ? V1.vector4_f32[2] : V2.vector4_f32[2]; - Result.vector4_f32[3] = (V1.vector4_f32[3] < V2.vector4_f32[3]) ? V1.vector4_f32[3] : V2.vector4_f32[3]; - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_min_ps( V1, V2 ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorMax -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - Result.vector4_f32[0] = (V1.vector4_f32[0] > V2.vector4_f32[0]) ? V1.vector4_f32[0] : V2.vector4_f32[0]; - Result.vector4_f32[1] = (V1.vector4_f32[1] > V2.vector4_f32[1]) ? V1.vector4_f32[1] : V2.vector4_f32[1]; - Result.vector4_f32[2] = (V1.vector4_f32[2] > V2.vector4_f32[2]) ? V1.vector4_f32[2] : V2.vector4_f32[2]; - Result.vector4_f32[3] = (V1.vector4_f32[3] > V2.vector4_f32[3]) ? V1.vector4_f32[3] : V2.vector4_f32[3]; - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_max_ps( V1, V2 ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorRound -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - XMVECTOR Bias; - CONST XMVECTOR Zero = XMVectorZero(); - CONST XMVECTOR BiasPos = XMVectorReplicate(0.5f); - CONST XMVECTOR BiasNeg = XMVectorReplicate(-0.5f); - - Bias = XMVectorLess(V, Zero); - Bias = XMVectorSelect(BiasPos, BiasNeg, Bias); - Result = XMVectorAdd(V, Bias); - Result = XMVectorTruncate(Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // To handle NAN, INF and numbers greater than 8388608, use masking - // Get the abs value - __m128i vTest = _mm_and_si128(reinterpret_cast(&V)[0],g_XMAbsMask); - // Test for greater than 8388608 (All floats with NO fractionals, NAN and INF - vTest = _mm_cmplt_epi32(vTest,g_XMNoFraction); - // Convert to int and back to float for rounding - __m128i vInt = _mm_cvtps_epi32(V); - // Convert back to floats - XMVECTOR vResult = _mm_cvtepi32_ps(vInt); - // All numbers less than 8388608 will use the round to int - vResult = _mm_and_ps(vResult,reinterpret_cast(&vTest)[0]); - // All others, use the ORIGINAL value - vTest = _mm_andnot_si128(vTest,reinterpret_cast(&V)[0]); - vResult = _mm_or_ps(vResult,reinterpret_cast(&vTest)[0]); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorTruncate -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR Result; - UINT i; - - // Avoid C4701 - Result.vector4_f32[0] = 0.0f; - - for (i = 0; i < 4; i++) - { - if (XMISNAN(V.vector4_f32[i])) - { - Result.vector4_u32[i] = 0x7FC00000; - } - else if (fabsf(V.vector4_f32[i]) < 8388608.0f) - { - Result.vector4_f32[i] = (FLOAT)((INT)V.vector4_f32[i]); - } - else - { - Result.vector4_f32[i] = V.vector4_f32[i]; - } - } - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // To handle NAN, INF and numbers greater than 8388608, use masking - // Get the abs value - __m128i vTest = _mm_and_si128(reinterpret_cast(&V)[0],g_XMAbsMask); - // Test for greater than 8388608 (All floats with NO fractionals, NAN and INF - vTest = _mm_cmplt_epi32(vTest,g_XMNoFraction); - // Convert to int and back to float for rounding with truncation - __m128i vInt = _mm_cvttps_epi32(V); - // Convert back to floats - XMVECTOR vResult = _mm_cvtepi32_ps(vInt); - // All numbers less than 8388608 will use the round to int - vResult = _mm_and_ps(vResult,reinterpret_cast(&vTest)[0]); - // All others, use the ORIGINAL value - vTest = _mm_andnot_si128(vTest,reinterpret_cast(&V)[0]); - vResult = _mm_or_ps(vResult,reinterpret_cast(&vTest)[0]); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorFloor -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR vResult = { - floorf(V.vector4_f32[0]), - floorf(V.vector4_f32[1]), - floorf(V.vector4_f32[2]), - floorf(V.vector4_f32[3]) - }; - return vResult; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vResult = _mm_sub_ps(V,g_XMOneHalfMinusEpsilon); - __m128i vInt = _mm_cvtps_epi32(vResult); - vResult = _mm_cvtepi32_ps(vInt); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorCeiling -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR vResult = { - ceilf(V.vector4_f32[0]), - ceilf(V.vector4_f32[1]), - ceilf(V.vector4_f32[2]), - ceilf(V.vector4_f32[3]) - }; - return vResult; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vResult = _mm_add_ps(V,g_XMOneHalfMinusEpsilon); - __m128i vInt = _mm_cvtps_epi32(vResult); - vResult = _mm_cvtepi32_ps(vInt); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorClamp -( - FXMVECTOR V, - FXMVECTOR Min, - FXMVECTOR Max -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - - XMASSERT(XMVector4LessOrEqual(Min, Max)); - - Result = XMVectorMax(Min, V); - Result = XMVectorMin(Max, Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vResult; - XMASSERT(XMVector4LessOrEqual(Min, Max)); - vResult = _mm_max_ps(Min,V); - vResult = _mm_min_ps(vResult,Max); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorSaturate -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - CONST XMVECTOR Zero = XMVectorZero(); - - return XMVectorClamp(V, Zero, g_XMOne.v); - -#elif defined(_XM_SSE_INTRINSICS_) - // Set <0 to 0 - XMVECTOR vResult = _mm_max_ps(V,g_XMZero); - // Set>1 to 1 - return _mm_min_ps(vResult,g_XMOne); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Bitwise logical operations -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorAndInt -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - - Result.vector4_u32[0] = V1.vector4_u32[0] & V2.vector4_u32[0]; - Result.vector4_u32[1] = V1.vector4_u32[1] & V2.vector4_u32[1]; - Result.vector4_u32[2] = V1.vector4_u32[2] & V2.vector4_u32[2]; - Result.vector4_u32[3] = V1.vector4_u32[3] & V2.vector4_u32[3]; - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_and_ps(V1,V2); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorAndCInt -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - - Result.vector4_u32[0] = V1.vector4_u32[0] & ~V2.vector4_u32[0]; - Result.vector4_u32[1] = V1.vector4_u32[1] & ~V2.vector4_u32[1]; - Result.vector4_u32[2] = V1.vector4_u32[2] & ~V2.vector4_u32[2]; - Result.vector4_u32[3] = V1.vector4_u32[3] & ~V2.vector4_u32[3]; - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - __m128i V = _mm_andnot_si128( reinterpret_cast(&V2)[0], reinterpret_cast(&V1)[0] ); - return reinterpret_cast<__m128 *>(&V)[0]; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorOrInt -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - - Result.vector4_u32[0] = V1.vector4_u32[0] | V2.vector4_u32[0]; - Result.vector4_u32[1] = V1.vector4_u32[1] | V2.vector4_u32[1]; - Result.vector4_u32[2] = V1.vector4_u32[2] | V2.vector4_u32[2]; - Result.vector4_u32[3] = V1.vector4_u32[3] | V2.vector4_u32[3]; - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - __m128i V = _mm_or_si128( reinterpret_cast(&V1)[0], reinterpret_cast(&V2)[0] ); - return reinterpret_cast<__m128 *>(&V)[0]; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorNorInt -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - - Result.vector4_u32[0] = ~(V1.vector4_u32[0] | V2.vector4_u32[0]); - Result.vector4_u32[1] = ~(V1.vector4_u32[1] | V2.vector4_u32[1]); - Result.vector4_u32[2] = ~(V1.vector4_u32[2] | V2.vector4_u32[2]); - Result.vector4_u32[3] = ~(V1.vector4_u32[3] | V2.vector4_u32[3]); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - __m128i Result; - Result = _mm_or_si128( reinterpret_cast(&V1)[0], reinterpret_cast(&V2)[0] ); - Result = _mm_andnot_si128( Result,g_XMNegOneMask); - return reinterpret_cast<__m128 *>(&Result)[0]; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorXorInt -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - - Result.vector4_u32[0] = V1.vector4_u32[0] ^ V2.vector4_u32[0]; - Result.vector4_u32[1] = V1.vector4_u32[1] ^ V2.vector4_u32[1]; - Result.vector4_u32[2] = V1.vector4_u32[2] ^ V2.vector4_u32[2]; - Result.vector4_u32[3] = V1.vector4_u32[3] ^ V2.vector4_u32[3]; - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - __m128i V = _mm_xor_si128( reinterpret_cast(&V1)[0], reinterpret_cast(&V2)[0] ); - return reinterpret_cast<__m128 *>(&V)[0]; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Computation operations -//------------------------------------------------------------------------------ - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorNegate -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - - Result.vector4_f32[0] = -V.vector4_f32[0]; - Result.vector4_f32[1] = -V.vector4_f32[1]; - Result.vector4_f32[2] = -V.vector4_f32[2]; - Result.vector4_f32[3] = -V.vector4_f32[3]; - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR Z; - - Z = _mm_setzero_ps(); - - return _mm_sub_ps( Z, V ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorAdd -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - - Result.vector4_f32[0] = V1.vector4_f32[0] + V2.vector4_f32[0]; - Result.vector4_f32[1] = V1.vector4_f32[1] + V2.vector4_f32[1]; - Result.vector4_f32[2] = V1.vector4_f32[2] + V2.vector4_f32[2]; - Result.vector4_f32[3] = V1.vector4_f32[3] + V2.vector4_f32[3]; - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_add_ps( V1, V2 ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorAddAngles -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Mask; - XMVECTOR Offset; - XMVECTOR Result; - CONST XMVECTOR Zero = XMVectorZero(); - - // Add the given angles together. If the range of V1 is such - // that -Pi <= V1 < Pi and the range of V2 is such that - // -2Pi <= V2 <= 2Pi, then the range of the resulting angle - // will be -Pi <= Result < Pi. - Result = XMVectorAdd(V1, V2); - - Mask = XMVectorLess(Result, g_XMNegativePi.v); - Offset = XMVectorSelect(Zero, g_XMTwoPi.v, Mask); - - Mask = XMVectorGreaterOrEqual(Result, g_XMPi.v); - Offset = XMVectorSelect(Offset, g_XMNegativeTwoPi.v, Mask); - - Result = XMVectorAdd(Result, Offset); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Adjust the angles - XMVECTOR vResult = _mm_add_ps(V1,V2); - // Less than Pi? - XMVECTOR vOffset = _mm_cmplt_ps(vResult,g_XMNegativePi); - vOffset = _mm_and_ps(vOffset,g_XMTwoPi); - // Add 2Pi to all entries less than -Pi - vResult = _mm_add_ps(vResult,vOffset); - // Greater than or equal to Pi? - vOffset = _mm_cmpge_ps(vResult,g_XMPi); - vOffset = _mm_and_ps(vOffset,g_XMTwoPi); - // Sub 2Pi to all entries greater than Pi - vResult = _mm_sub_ps(vResult,vOffset); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorSubtract -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - - Result.vector4_f32[0] = V1.vector4_f32[0] - V2.vector4_f32[0]; - Result.vector4_f32[1] = V1.vector4_f32[1] - V2.vector4_f32[1]; - Result.vector4_f32[2] = V1.vector4_f32[2] - V2.vector4_f32[2]; - Result.vector4_f32[3] = V1.vector4_f32[3] - V2.vector4_f32[3]; - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_sub_ps( V1, V2 ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorSubtractAngles -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Mask; - XMVECTOR Offset; - XMVECTOR Result; - CONST XMVECTOR Zero = XMVectorZero(); - - // Subtract the given angles. If the range of V1 is such - // that -Pi <= V1 < Pi and the range of V2 is such that - // -2Pi <= V2 <= 2Pi, then the range of the resulting angle - // will be -Pi <= Result < Pi. - Result = XMVectorSubtract(V1, V2); - - Mask = XMVectorLess(Result, g_XMNegativePi.v); - Offset = XMVectorSelect(Zero, g_XMTwoPi.v, Mask); - - Mask = XMVectorGreaterOrEqual(Result, g_XMPi.v); - Offset = XMVectorSelect(Offset, g_XMNegativeTwoPi.v, Mask); - - Result = XMVectorAdd(Result, Offset); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Adjust the angles - XMVECTOR vResult = _mm_sub_ps(V1,V2); - // Less than Pi? - XMVECTOR vOffset = _mm_cmplt_ps(vResult,g_XMNegativePi); - vOffset = _mm_and_ps(vOffset,g_XMTwoPi); - // Add 2Pi to all entries less than -Pi - vResult = _mm_add_ps(vResult,vOffset); - // Greater than or equal to Pi? - vOffset = _mm_cmpge_ps(vResult,g_XMPi); - vOffset = _mm_and_ps(vOffset,g_XMTwoPi); - // Sub 2Pi to all entries greater than Pi - vResult = _mm_sub_ps(vResult,vOffset); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorMultiply -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR Result = { - V1.vector4_f32[0] * V2.vector4_f32[0], - V1.vector4_f32[1] * V2.vector4_f32[1], - V1.vector4_f32[2] * V2.vector4_f32[2], - V1.vector4_f32[3] * V2.vector4_f32[3] - }; - return Result; -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_mul_ps( V1, V2 ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorMultiplyAdd -( - FXMVECTOR V1, - FXMVECTOR V2, - FXMVECTOR V3 -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR vResult = { - (V1.vector4_f32[0] * V2.vector4_f32[0]) + V3.vector4_f32[0], - (V1.vector4_f32[1] * V2.vector4_f32[1]) + V3.vector4_f32[1], - (V1.vector4_f32[2] * V2.vector4_f32[2]) + V3.vector4_f32[2], - (V1.vector4_f32[3] * V2.vector4_f32[3]) + V3.vector4_f32[3] - }; - return vResult; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vResult = _mm_mul_ps( V1, V2 ); - return _mm_add_ps(vResult, V3 ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorDivide -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR Result; - Result.vector4_f32[0] = V1.vector4_f32[0] / V2.vector4_f32[0]; - Result.vector4_f32[1] = V1.vector4_f32[1] / V2.vector4_f32[1]; - Result.vector4_f32[2] = V1.vector4_f32[2] / V2.vector4_f32[2]; - Result.vector4_f32[3] = V1.vector4_f32[3] / V2.vector4_f32[3]; - return Result; -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_div_ps( V1, V2 ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorNegativeMultiplySubtract -( - FXMVECTOR V1, - FXMVECTOR V2, - FXMVECTOR V3 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR vResult = { - V3.vector4_f32[0] - (V1.vector4_f32[0] * V2.vector4_f32[0]), - V3.vector4_f32[1] - (V1.vector4_f32[1] * V2.vector4_f32[1]), - V3.vector4_f32[2] - (V1.vector4_f32[2] * V2.vector4_f32[2]), - V3.vector4_f32[3] - (V1.vector4_f32[3] * V2.vector4_f32[3]) - }; - return vResult; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR R = _mm_mul_ps( V1, V2 ); - return _mm_sub_ps( V3, R ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorScale -( - FXMVECTOR V, - FLOAT ScaleFactor -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR vResult = { - V.vector4_f32[0] * ScaleFactor, - V.vector4_f32[1] * ScaleFactor, - V.vector4_f32[2] * ScaleFactor, - V.vector4_f32[3] * ScaleFactor - }; - return vResult; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vResult = _mm_set_ps1(ScaleFactor); - return _mm_mul_ps(vResult,V); -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorReciprocalEst -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR Result; - UINT i; - - // Avoid C4701 - Result.vector4_f32[0] = 0.0f; - - for (i = 0; i < 4; i++) - { - if (XMISNAN(V.vector4_f32[i])) - { - Result.vector4_u32[i] = 0x7FC00000; - } - else if (V.vector4_f32[i] == 0.0f || V.vector4_f32[i] == -0.0f) - { - Result.vector4_u32[i] = 0x7F800000 | (V.vector4_u32[i] & 0x80000000); - } - else - { - Result.vector4_f32[i] = 1.f / V.vector4_f32[i]; - } - } - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_rcp_ps(V); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorReciprocal -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - return XMVectorReciprocalEst(V); - -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_div_ps(g_XMOne,V); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Return an estimated square root -XMFINLINE XMVECTOR XMVectorSqrtEst -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR Select; - - // if (x == +Infinity) sqrt(x) = +Infinity - // if (x == +0.0f) sqrt(x) = +0.0f - // if (x == -0.0f) sqrt(x) = -0.0f - // if (x < 0.0f) sqrt(x) = QNaN - - XMVECTOR Result = XMVectorReciprocalSqrtEst(V); - XMVECTOR Zero = XMVectorZero(); - XMVECTOR VEqualsInfinity = XMVectorEqualInt(V, g_XMInfinity.v); - XMVECTOR VEqualsZero = XMVectorEqual(V, Zero); - Result = XMVectorMultiply(V, Result); - Select = XMVectorEqualInt(VEqualsInfinity, VEqualsZero); - Result = XMVectorSelect(V, Result, Select); - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_sqrt_ps(V); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorSqrt -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Zero; - XMVECTOR VEqualsInfinity, VEqualsZero; - XMVECTOR Select; - XMVECTOR Result; - - // if (x == +Infinity) sqrt(x) = +Infinity - // if (x == +0.0f) sqrt(x) = +0.0f - // if (x == -0.0f) sqrt(x) = -0.0f - // if (x < 0.0f) sqrt(x) = QNaN - - Result = XMVectorReciprocalSqrt(V); - Zero = XMVectorZero(); - VEqualsInfinity = XMVectorEqualInt(V, g_XMInfinity.v); - VEqualsZero = XMVectorEqual(V, Zero); - Result = XMVectorMultiply(V, Result); - Select = XMVectorEqualInt(VEqualsInfinity, VEqualsZero); - Result = XMVectorSelect(V, Result, Select); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_sqrt_ps(V); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorReciprocalSqrtEst -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - // if (x == +Infinity) rsqrt(x) = 0 - // if (x == +0.0f) rsqrt(x) = +Infinity - // if (x == -0.0f) rsqrt(x) = -Infinity - // if (x < 0.0f) rsqrt(x) = QNaN - - XMVECTOR Result; - UINT i; - - // Avoid C4701 - Result.vector4_f32[0] = 0.0f; - - for (i = 0; i < 4; i++) - { - if (XMISNAN(V.vector4_f32[i])) - { - Result.vector4_u32[i] = 0x7FC00000; - } - else if (V.vector4_f32[i] == 0.0f || V.vector4_f32[i] == -0.0f) - { - Result.vector4_u32[i] = 0x7F800000 | (V.vector4_u32[i] & 0x80000000); - } - else if (V.vector4_f32[i] < 0.0f) - { - Result.vector4_u32[i] = 0x7FFFFFFF; - } - else if (XMISINF(V.vector4_f32[i])) - { - Result.vector4_f32[i] = 0.0f; - } - else - { - Result.vector4_f32[i] = 1.0f / sqrtf(V.vector4_f32[i]); - } - } - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - return _mm_rsqrt_ps(V); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorReciprocalSqrt -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - return XMVectorReciprocalSqrtEst(V); - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vResult = _mm_sqrt_ps(V); - vResult = _mm_div_ps(g_XMOne,vResult); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorExpEst -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - Result.vector4_f32[0] = powf(2.0f, V.vector4_f32[0]); - Result.vector4_f32[1] = powf(2.0f, V.vector4_f32[1]); - Result.vector4_f32[2] = powf(2.0f, V.vector4_f32[2]); - Result.vector4_f32[3] = powf(2.0f, V.vector4_f32[3]); - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vResult = _mm_setr_ps( - powf(2.0f,XMVectorGetX(V)), - powf(2.0f,XMVectorGetY(V)), - powf(2.0f,XMVectorGetZ(V)), - powf(2.0f,XMVectorGetW(V))); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMVECTOR XMVectorExp -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR E, S; - XMVECTOR R, R2, R3, R4; - XMVECTOR V0, V1; - XMVECTOR C0X, C0Y, C0Z, C0W; - XMVECTOR C1X, C1Y, C1Z, C1W; - XMVECTOR Result; - static CONST XMVECTOR C0 = {1.0f, -6.93147182e-1f, 2.40226462e-1f, -5.55036440e-2f}; - static CONST XMVECTOR C1 = {9.61597636e-3f, -1.32823968e-3f, 1.47491097e-4f, -1.08635004e-5f}; - - R = XMVectorFloor(V); - E = XMVectorExpEst(R); - R = XMVectorSubtract(V, R); - R2 = XMVectorMultiply(R, R); - R3 = XMVectorMultiply(R, R2); - R4 = XMVectorMultiply(R2, R2); - - C0X = XMVectorSplatX(C0); - C0Y = XMVectorSplatY(C0); - C0Z = XMVectorSplatZ(C0); - C0W = XMVectorSplatW(C0); - - C1X = XMVectorSplatX(C1); - C1Y = XMVectorSplatY(C1); - C1Z = XMVectorSplatZ(C1); - C1W = XMVectorSplatW(C1); - - V0 = XMVectorMultiplyAdd(R, C0Y, C0X); - V0 = XMVectorMultiplyAdd(R2, C0Z, V0); - V0 = XMVectorMultiplyAdd(R3, C0W, V0); - - V1 = XMVectorMultiplyAdd(R, C1Y, C1X); - V1 = XMVectorMultiplyAdd(R2, C1Z, V1); - V1 = XMVectorMultiplyAdd(R3, C1W, V1); - - S = XMVectorMultiplyAdd(R4, V1, V0); - - S = XMVectorReciprocal(S); - Result = XMVectorMultiply(E, S); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - static CONST XMVECTORF32 C0 = {1.0f, -6.93147182e-1f, 2.40226462e-1f, -5.55036440e-2f}; - static CONST XMVECTORF32 C1 = {9.61597636e-3f, -1.32823968e-3f, 1.47491097e-4f, -1.08635004e-5f}; - - // Get the integer of the input - XMVECTOR R = XMVectorFloor(V); - // Get the exponent estimate - XMVECTOR E = XMVectorExpEst(R); - // Get the fractional only - R = _mm_sub_ps(V,R); - // Get R^2 - XMVECTOR R2 = _mm_mul_ps(R,R); - // And R^3 - XMVECTOR R3 = _mm_mul_ps(R,R2); - - XMVECTOR V0 = _mm_load_ps1(&C0.f[1]); - V0 = _mm_mul_ps(V0,R); - XMVECTOR vConstants = _mm_load_ps1(&C0.f[0]); - V0 = _mm_add_ps(V0,vConstants); - vConstants = _mm_load_ps1(&C0.f[2]); - vConstants = _mm_mul_ps(vConstants,R2); - V0 = _mm_add_ps(V0,vConstants); - vConstants = _mm_load_ps1(&C0.f[3]); - vConstants = _mm_mul_ps(vConstants,R3); - V0 = _mm_add_ps(V0,vConstants); - - XMVECTOR V1 = _mm_load_ps1(&C1.f[1]); - V1 = _mm_mul_ps(V1,R); - vConstants = _mm_load_ps1(&C1.f[0]); - V1 = _mm_add_ps(V1,vConstants); - vConstants = _mm_load_ps1(&C1.f[2]); - vConstants = _mm_mul_ps(vConstants,R2); - V1 = _mm_add_ps(V1,vConstants); - vConstants = _mm_load_ps1(&C1.f[3]); - vConstants = _mm_mul_ps(vConstants,R3); - V1 = _mm_add_ps(V1,vConstants); - // R2 = R^4 - R2 = _mm_mul_ps(R2,R2); - R2 = _mm_mul_ps(R2,V1); - R2 = _mm_add_ps(R2,V0); - E = _mm_div_ps(E,R2); - return E; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorLogEst -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - FLOAT fScale = (1.0f / logf(2.0f)); - XMVECTOR Result; - - Result.vector4_f32[0] = logf(V.vector4_f32[0])*fScale; - Result.vector4_f32[1] = logf(V.vector4_f32[1])*fScale; - Result.vector4_f32[2] = logf(V.vector4_f32[2])*fScale; - Result.vector4_f32[3] = logf(V.vector4_f32[3])*fScale; - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vScale = _mm_set_ps1(1.0f / logf(2.0f)); - XMVECTOR vResult = _mm_setr_ps( - logf(XMVectorGetX(V)), - logf(XMVectorGetY(V)), - logf(XMVectorGetZ(V)), - logf(XMVectorGetW(V))); - vResult = _mm_mul_ps(vResult,vScale); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMVECTOR XMVectorLog -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - FLOAT fScale = (1.0f / logf(2.0f)); - XMVECTOR Result; - - Result.vector4_f32[0] = logf(V.vector4_f32[0])*fScale; - Result.vector4_f32[1] = logf(V.vector4_f32[1])*fScale; - Result.vector4_f32[2] = logf(V.vector4_f32[2])*fScale; - Result.vector4_f32[3] = logf(V.vector4_f32[3])*fScale; - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vScale = _mm_set_ps1(1.0f / logf(2.0f)); - XMVECTOR vResult = _mm_setr_ps( - logf(XMVectorGetX(V)), - logf(XMVectorGetY(V)), - logf(XMVectorGetZ(V)), - logf(XMVectorGetW(V))); - vResult = _mm_mul_ps(vResult,vScale); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorPowEst -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - - Result.vector4_f32[0] = powf(V1.vector4_f32[0], V2.vector4_f32[0]); - Result.vector4_f32[1] = powf(V1.vector4_f32[1], V2.vector4_f32[1]); - Result.vector4_f32[2] = powf(V1.vector4_f32[2], V2.vector4_f32[2]); - Result.vector4_f32[3] = powf(V1.vector4_f32[3], V2.vector4_f32[3]); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vResult = _mm_setr_ps( - powf(XMVectorGetX(V1),XMVectorGetX(V2)), - powf(XMVectorGetY(V1),XMVectorGetY(V2)), - powf(XMVectorGetZ(V1),XMVectorGetZ(V2)), - powf(XMVectorGetW(V1),XMVectorGetW(V2))); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorPow -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) || defined(_XM_SSE_INTRINSICS_) - - return XMVectorPowEst(V1, V2); - -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorAbs -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR vResult = { - fabsf(V.vector4_f32[0]), - fabsf(V.vector4_f32[1]), - fabsf(V.vector4_f32[2]), - fabsf(V.vector4_f32[3]) - }; - return vResult; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vResult = _mm_setzero_ps(); - vResult = _mm_sub_ps(vResult,V); - vResult = _mm_max_ps(vResult,V); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorMod -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Reciprocal; - XMVECTOR Quotient; - XMVECTOR Result; - - // V1 % V2 = V1 - V2 * truncate(V1 / V2) - Reciprocal = XMVectorReciprocal(V2); - Quotient = XMVectorMultiply(V1, Reciprocal); - Quotient = XMVectorTruncate(Quotient); - Result = XMVectorNegativeMultiplySubtract(V2, Quotient, V1); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vResult = _mm_div_ps(V1, V2); - vResult = XMVectorTruncate(vResult); - vResult = _mm_mul_ps(vResult,V2); - vResult = _mm_sub_ps(V1,vResult); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorModAngles -( - FXMVECTOR Angles -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - XMVECTOR Result; - - // Modulo the range of the given angles such that -XM_PI <= Angles < XM_PI - V = XMVectorMultiply(Angles, g_XMReciprocalTwoPi.v); - V = XMVectorRound(V); - Result = XMVectorNegativeMultiplySubtract(g_XMTwoPi.v, V, Angles); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Modulo the range of the given angles such that -XM_PI <= Angles < XM_PI - XMVECTOR vResult = _mm_mul_ps(Angles,g_XMReciprocalTwoPi); - // Use the inline function due to complexity for rounding - vResult = XMVectorRound(vResult); - vResult = _mm_mul_ps(vResult,g_XMTwoPi); - vResult = _mm_sub_ps(Angles,vResult); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMVECTOR XMVectorSin -( - FXMVECTOR V -) -{ - -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V1, V2, V3, V5, V7, V9, V11, V13, V15, V17, V19, V21, V23; - XMVECTOR S1, S2, S3, S4, S5, S6, S7, S8, S9, S10, S11; - XMVECTOR Result; - - V1 = XMVectorModAngles(V); - - // sin(V) ~= V - V^3 / 3! + V^5 / 5! - V^7 / 7! + V^9 / 9! - V^11 / 11! + V^13 / 13! - - // V^15 / 15! + V^17 / 17! - V^19 / 19! + V^21 / 21! - V^23 / 23! (for -PI <= V < PI) - V2 = XMVectorMultiply(V1, V1); - V3 = XMVectorMultiply(V2, V1); - V5 = XMVectorMultiply(V3, V2); - V7 = XMVectorMultiply(V5, V2); - V9 = XMVectorMultiply(V7, V2); - V11 = XMVectorMultiply(V9, V2); - V13 = XMVectorMultiply(V11, V2); - V15 = XMVectorMultiply(V13, V2); - V17 = XMVectorMultiply(V15, V2); - V19 = XMVectorMultiply(V17, V2); - V21 = XMVectorMultiply(V19, V2); - V23 = XMVectorMultiply(V21, V2); - - S1 = XMVectorSplatY(g_XMSinCoefficients0.v); - S2 = XMVectorSplatZ(g_XMSinCoefficients0.v); - S3 = XMVectorSplatW(g_XMSinCoefficients0.v); - S4 = XMVectorSplatX(g_XMSinCoefficients1.v); - S5 = XMVectorSplatY(g_XMSinCoefficients1.v); - S6 = XMVectorSplatZ(g_XMSinCoefficients1.v); - S7 = XMVectorSplatW(g_XMSinCoefficients1.v); - S8 = XMVectorSplatX(g_XMSinCoefficients2.v); - S9 = XMVectorSplatY(g_XMSinCoefficients2.v); - S10 = XMVectorSplatZ(g_XMSinCoefficients2.v); - S11 = XMVectorSplatW(g_XMSinCoefficients2.v); - - Result = XMVectorMultiplyAdd(S1, V3, V1); - Result = XMVectorMultiplyAdd(S2, V5, Result); - Result = XMVectorMultiplyAdd(S3, V7, Result); - Result = XMVectorMultiplyAdd(S4, V9, Result); - Result = XMVectorMultiplyAdd(S5, V11, Result); - Result = XMVectorMultiplyAdd(S6, V13, Result); - Result = XMVectorMultiplyAdd(S7, V15, Result); - Result = XMVectorMultiplyAdd(S8, V17, Result); - Result = XMVectorMultiplyAdd(S9, V19, Result); - Result = XMVectorMultiplyAdd(S10, V21, Result); - Result = XMVectorMultiplyAdd(S11, V23, Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Force the value within the bounds of pi - XMVECTOR vResult = XMVectorModAngles(V); - // Each on is V to the "num" power - // V2 = V1^2 - XMVECTOR V2 = _mm_mul_ps(vResult,vResult); - // V1^3 - XMVECTOR vPower = _mm_mul_ps(vResult,V2); - XMVECTOR vConstants = _mm_load_ps1(&g_XMSinCoefficients0.f[1]); - vConstants = _mm_mul_ps(vConstants,vPower); - vResult = _mm_add_ps(vResult,vConstants); - - // V^5 - vPower = _mm_mul_ps(vPower,V2); - vConstants = _mm_load_ps1(&g_XMSinCoefficients0.f[2]); - vConstants = _mm_mul_ps(vConstants,vPower); - vResult = _mm_add_ps(vResult,vConstants); - - // V^7 - vPower = _mm_mul_ps(vPower,V2); - vConstants = _mm_load_ps1(&g_XMSinCoefficients0.f[3]); - vConstants = _mm_mul_ps(vConstants,vPower); - vResult = _mm_add_ps(vResult,vConstants); - - // V^9 - vPower = _mm_mul_ps(vPower,V2); - vConstants = _mm_load_ps1(&g_XMSinCoefficients1.f[0]); - vConstants = _mm_mul_ps(vConstants,vPower); - vResult = _mm_add_ps(vResult,vConstants); - - // V^11 - vPower = _mm_mul_ps(vPower,V2); - vConstants = _mm_load_ps1(&g_XMSinCoefficients1.f[1]); - vConstants = _mm_mul_ps(vConstants,vPower); - vResult = _mm_add_ps(vResult,vConstants); - - // V^13 - vPower = _mm_mul_ps(vPower,V2); - vConstants = _mm_load_ps1(&g_XMSinCoefficients1.f[2]); - vConstants = _mm_mul_ps(vConstants,vPower); - vResult = _mm_add_ps(vResult,vConstants); - - // V^15 - vPower = _mm_mul_ps(vPower,V2); - vConstants = _mm_load_ps1(&g_XMSinCoefficients1.f[3]); - vConstants = _mm_mul_ps(vConstants,vPower); - vResult = _mm_add_ps(vResult,vConstants); - - // V^17 - vPower = _mm_mul_ps(vPower,V2); - vConstants = _mm_load_ps1(&g_XMSinCoefficients2.f[0]); - vConstants = _mm_mul_ps(vConstants,vPower); - vResult = _mm_add_ps(vResult,vConstants); - - // V^19 - vPower = _mm_mul_ps(vPower,V2); - vConstants = _mm_load_ps1(&g_XMSinCoefficients2.f[1]); - vConstants = _mm_mul_ps(vConstants,vPower); - vResult = _mm_add_ps(vResult,vConstants); - - // V^21 - vPower = _mm_mul_ps(vPower,V2); - vConstants = _mm_load_ps1(&g_XMSinCoefficients2.f[2]); - vConstants = _mm_mul_ps(vConstants,vPower); - vResult = _mm_add_ps(vResult,vConstants); - - // V^23 - vPower = _mm_mul_ps(vPower,V2); - vConstants = _mm_load_ps1(&g_XMSinCoefficients2.f[3]); - vConstants = _mm_mul_ps(vConstants,vPower); - vResult = _mm_add_ps(vResult,vConstants); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMVECTOR XMVectorCos -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V1, V2, V4, V6, V8, V10, V12, V14, V16, V18, V20, V22; - XMVECTOR C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11; - XMVECTOR Result; - - V1 = XMVectorModAngles(V); - - // cos(V) ~= 1 - V^2 / 2! + V^4 / 4! - V^6 / 6! + V^8 / 8! - V^10 / 10! + V^12 / 12! - - // V^14 / 14! + V^16 / 16! - V^18 / 18! + V^20 / 20! - V^22 / 22! (for -PI <= V < PI) - V2 = XMVectorMultiply(V1, V1); - V4 = XMVectorMultiply(V2, V2); - V6 = XMVectorMultiply(V4, V2); - V8 = XMVectorMultiply(V4, V4); - V10 = XMVectorMultiply(V6, V4); - V12 = XMVectorMultiply(V6, V6); - V14 = XMVectorMultiply(V8, V6); - V16 = XMVectorMultiply(V8, V8); - V18 = XMVectorMultiply(V10, V8); - V20 = XMVectorMultiply(V10, V10); - V22 = XMVectorMultiply(V12, V10); - - C1 = XMVectorSplatY(g_XMCosCoefficients0.v); - C2 = XMVectorSplatZ(g_XMCosCoefficients0.v); - C3 = XMVectorSplatW(g_XMCosCoefficients0.v); - C4 = XMVectorSplatX(g_XMCosCoefficients1.v); - C5 = XMVectorSplatY(g_XMCosCoefficients1.v); - C6 = XMVectorSplatZ(g_XMCosCoefficients1.v); - C7 = XMVectorSplatW(g_XMCosCoefficients1.v); - C8 = XMVectorSplatX(g_XMCosCoefficients2.v); - C9 = XMVectorSplatY(g_XMCosCoefficients2.v); - C10 = XMVectorSplatZ(g_XMCosCoefficients2.v); - C11 = XMVectorSplatW(g_XMCosCoefficients2.v); - - Result = XMVectorMultiplyAdd(C1, V2, g_XMOne.v); - Result = XMVectorMultiplyAdd(C2, V4, Result); - Result = XMVectorMultiplyAdd(C3, V6, Result); - Result = XMVectorMultiplyAdd(C4, V8, Result); - Result = XMVectorMultiplyAdd(C5, V10, Result); - Result = XMVectorMultiplyAdd(C6, V12, Result); - Result = XMVectorMultiplyAdd(C7, V14, Result); - Result = XMVectorMultiplyAdd(C8, V16, Result); - Result = XMVectorMultiplyAdd(C9, V18, Result); - Result = XMVectorMultiplyAdd(C10, V20, Result); - Result = XMVectorMultiplyAdd(C11, V22, Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Force the value within the bounds of pi - XMVECTOR V2 = XMVectorModAngles(V); - // Each on is V to the "num" power - // V2 = V1^2 - V2 = _mm_mul_ps(V2,V2); - // V^2 - XMVECTOR vConstants = _mm_load_ps1(&g_XMCosCoefficients0.f[1]); - vConstants = _mm_mul_ps(vConstants,V2); - XMVECTOR vResult = _mm_add_ps(vConstants,g_XMOne); - - // V^4 - XMVECTOR vPower = _mm_mul_ps(V2,V2); - vConstants = _mm_load_ps1(&g_XMCosCoefficients0.f[2]); - vConstants = _mm_mul_ps(vConstants,vPower); - vResult = _mm_add_ps(vResult,vConstants); - - // V^6 - vPower = _mm_mul_ps(vPower,V2); - vConstants = _mm_load_ps1(&g_XMCosCoefficients0.f[3]); - vConstants = _mm_mul_ps(vConstants,vPower); - vResult = _mm_add_ps(vResult,vConstants); - - // V^8 - vPower = _mm_mul_ps(vPower,V2); - vConstants = _mm_load_ps1(&g_XMCosCoefficients1.f[0]); - vConstants = _mm_mul_ps(vConstants,vPower); - vResult = _mm_add_ps(vResult,vConstants); - - // V^10 - vPower = _mm_mul_ps(vPower,V2); - vConstants = _mm_load_ps1(&g_XMCosCoefficients1.f[1]); - vConstants = _mm_mul_ps(vConstants,vPower); - vResult = _mm_add_ps(vResult,vConstants); - - // V^12 - vPower = _mm_mul_ps(vPower,V2); - vConstants = _mm_load_ps1(&g_XMCosCoefficients1.f[2]); - vConstants = _mm_mul_ps(vConstants,vPower); - vResult = _mm_add_ps(vResult,vConstants); - - // V^14 - vPower = _mm_mul_ps(vPower,V2); - vConstants = _mm_load_ps1(&g_XMCosCoefficients1.f[3]); - vConstants = _mm_mul_ps(vConstants,vPower); - vResult = _mm_add_ps(vResult,vConstants); - - // V^16 - vPower = _mm_mul_ps(vPower,V2); - vConstants = _mm_load_ps1(&g_XMCosCoefficients2.f[0]); - vConstants = _mm_mul_ps(vConstants,vPower); - vResult = _mm_add_ps(vResult,vConstants); - - // V^18 - vPower = _mm_mul_ps(vPower,V2); - vConstants = _mm_load_ps1(&g_XMCosCoefficients2.f[1]); - vConstants = _mm_mul_ps(vConstants,vPower); - vResult = _mm_add_ps(vResult,vConstants); - - // V^20 - vPower = _mm_mul_ps(vPower,V2); - vConstants = _mm_load_ps1(&g_XMCosCoefficients2.f[2]); - vConstants = _mm_mul_ps(vConstants,vPower); - vResult = _mm_add_ps(vResult,vConstants); - - // V^22 - vPower = _mm_mul_ps(vPower,V2); - vConstants = _mm_load_ps1(&g_XMCosCoefficients2.f[3]); - vConstants = _mm_mul_ps(vConstants,vPower); - vResult = _mm_add_ps(vResult,vConstants); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE VOID XMVectorSinCos -( - XMVECTOR* pSin, - XMVECTOR* pCos, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V1, V2, V3, V4, V5, V6, V7, V8, V9, V10, V11, V12, V13; - XMVECTOR V14, V15, V16, V17, V18, V19, V20, V21, V22, V23; - XMVECTOR S1, S2, S3, S4, S5, S6, S7, S8, S9, S10, S11; - XMVECTOR C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11; - XMVECTOR Sin, Cos; - - XMASSERT(pSin); - XMASSERT(pCos); - - V1 = XMVectorModAngles(V); - - // sin(V) ~= V - V^3 / 3! + V^5 / 5! - V^7 / 7! + V^9 / 9! - V^11 / 11! + V^13 / 13! - - // V^15 / 15! + V^17 / 17! - V^19 / 19! + V^21 / 21! - V^23 / 23! (for -PI <= V < PI) - // cos(V) ~= 1 - V^2 / 2! + V^4 / 4! - V^6 / 6! + V^8 / 8! - V^10 / 10! + V^12 / 12! - - // V^14 / 14! + V^16 / 16! - V^18 / 18! + V^20 / 20! - V^22 / 22! (for -PI <= V < PI) - - V2 = XMVectorMultiply(V1, V1); - V3 = XMVectorMultiply(V2, V1); - V4 = XMVectorMultiply(V2, V2); - V5 = XMVectorMultiply(V3, V2); - V6 = XMVectorMultiply(V3, V3); - V7 = XMVectorMultiply(V4, V3); - V8 = XMVectorMultiply(V4, V4); - V9 = XMVectorMultiply(V5, V4); - V10 = XMVectorMultiply(V5, V5); - V11 = XMVectorMultiply(V6, V5); - V12 = XMVectorMultiply(V6, V6); - V13 = XMVectorMultiply(V7, V6); - V14 = XMVectorMultiply(V7, V7); - V15 = XMVectorMultiply(V8, V7); - V16 = XMVectorMultiply(V8, V8); - V17 = XMVectorMultiply(V9, V8); - V18 = XMVectorMultiply(V9, V9); - V19 = XMVectorMultiply(V10, V9); - V20 = XMVectorMultiply(V10, V10); - V21 = XMVectorMultiply(V11, V10); - V22 = XMVectorMultiply(V11, V11); - V23 = XMVectorMultiply(V12, V11); - - S1 = XMVectorSplatY(g_XMSinCoefficients0.v); - S2 = XMVectorSplatZ(g_XMSinCoefficients0.v); - S3 = XMVectorSplatW(g_XMSinCoefficients0.v); - S4 = XMVectorSplatX(g_XMSinCoefficients1.v); - S5 = XMVectorSplatY(g_XMSinCoefficients1.v); - S6 = XMVectorSplatZ(g_XMSinCoefficients1.v); - S7 = XMVectorSplatW(g_XMSinCoefficients1.v); - S8 = XMVectorSplatX(g_XMSinCoefficients2.v); - S9 = XMVectorSplatY(g_XMSinCoefficients2.v); - S10 = XMVectorSplatZ(g_XMSinCoefficients2.v); - S11 = XMVectorSplatW(g_XMSinCoefficients2.v); - - C1 = XMVectorSplatY(g_XMCosCoefficients0.v); - C2 = XMVectorSplatZ(g_XMCosCoefficients0.v); - C3 = XMVectorSplatW(g_XMCosCoefficients0.v); - C4 = XMVectorSplatX(g_XMCosCoefficients1.v); - C5 = XMVectorSplatY(g_XMCosCoefficients1.v); - C6 = XMVectorSplatZ(g_XMCosCoefficients1.v); - C7 = XMVectorSplatW(g_XMCosCoefficients1.v); - C8 = XMVectorSplatX(g_XMCosCoefficients2.v); - C9 = XMVectorSplatY(g_XMCosCoefficients2.v); - C10 = XMVectorSplatZ(g_XMCosCoefficients2.v); - C11 = XMVectorSplatW(g_XMCosCoefficients2.v); - - Sin = XMVectorMultiplyAdd(S1, V3, V1); - Sin = XMVectorMultiplyAdd(S2, V5, Sin); - Sin = XMVectorMultiplyAdd(S3, V7, Sin); - Sin = XMVectorMultiplyAdd(S4, V9, Sin); - Sin = XMVectorMultiplyAdd(S5, V11, Sin); - Sin = XMVectorMultiplyAdd(S6, V13, Sin); - Sin = XMVectorMultiplyAdd(S7, V15, Sin); - Sin = XMVectorMultiplyAdd(S8, V17, Sin); - Sin = XMVectorMultiplyAdd(S9, V19, Sin); - Sin = XMVectorMultiplyAdd(S10, V21, Sin); - Sin = XMVectorMultiplyAdd(S11, V23, Sin); - - Cos = XMVectorMultiplyAdd(C1, V2, g_XMOne.v); - Cos = XMVectorMultiplyAdd(C2, V4, Cos); - Cos = XMVectorMultiplyAdd(C3, V6, Cos); - Cos = XMVectorMultiplyAdd(C4, V8, Cos); - Cos = XMVectorMultiplyAdd(C5, V10, Cos); - Cos = XMVectorMultiplyAdd(C6, V12, Cos); - Cos = XMVectorMultiplyAdd(C7, V14, Cos); - Cos = XMVectorMultiplyAdd(C8, V16, Cos); - Cos = XMVectorMultiplyAdd(C9, V18, Cos); - Cos = XMVectorMultiplyAdd(C10, V20, Cos); - Cos = XMVectorMultiplyAdd(C11, V22, Cos); - - *pSin = Sin; - *pCos = Cos; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSin); - XMASSERT(pCos); - XMVECTOR V1, V2, V3, V4, V5, V6, V7, V8, V9, V10, V11, V12, V13; - XMVECTOR V14, V15, V16, V17, V18, V19, V20, V21, V22, V23; - XMVECTOR S1, S2, S3, S4, S5, S6, S7, S8, S9, S10, S11; - XMVECTOR C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11; - XMVECTOR Sin, Cos; - - V1 = XMVectorModAngles(V); - - // sin(V) ~= V - V^3 / 3! + V^5 / 5! - V^7 / 7! + V^9 / 9! - V^11 / 11! + V^13 / 13! - - // V^15 / 15! + V^17 / 17! - V^19 / 19! + V^21 / 21! - V^23 / 23! (for -PI <= V < PI) - // cos(V) ~= 1 - V^2 / 2! + V^4 / 4! - V^6 / 6! + V^8 / 8! - V^10 / 10! + V^12 / 12! - - // V^14 / 14! + V^16 / 16! - V^18 / 18! + V^20 / 20! - V^22 / 22! (for -PI <= V < PI) - - V2 = XMVectorMultiply(V1, V1); - V3 = XMVectorMultiply(V2, V1); - V4 = XMVectorMultiply(V2, V2); - V5 = XMVectorMultiply(V3, V2); - V6 = XMVectorMultiply(V3, V3); - V7 = XMVectorMultiply(V4, V3); - V8 = XMVectorMultiply(V4, V4); - V9 = XMVectorMultiply(V5, V4); - V10 = XMVectorMultiply(V5, V5); - V11 = XMVectorMultiply(V6, V5); - V12 = XMVectorMultiply(V6, V6); - V13 = XMVectorMultiply(V7, V6); - V14 = XMVectorMultiply(V7, V7); - V15 = XMVectorMultiply(V8, V7); - V16 = XMVectorMultiply(V8, V8); - V17 = XMVectorMultiply(V9, V8); - V18 = XMVectorMultiply(V9, V9); - V19 = XMVectorMultiply(V10, V9); - V20 = XMVectorMultiply(V10, V10); - V21 = XMVectorMultiply(V11, V10); - V22 = XMVectorMultiply(V11, V11); - V23 = XMVectorMultiply(V12, V11); - - S1 = _mm_load_ps1(&g_XMSinCoefficients0.f[1]); - S2 = _mm_load_ps1(&g_XMSinCoefficients0.f[2]); - S3 = _mm_load_ps1(&g_XMSinCoefficients0.f[3]); - S4 = _mm_load_ps1(&g_XMSinCoefficients1.f[0]); - S5 = _mm_load_ps1(&g_XMSinCoefficients1.f[1]); - S6 = _mm_load_ps1(&g_XMSinCoefficients1.f[2]); - S7 = _mm_load_ps1(&g_XMSinCoefficients1.f[3]); - S8 = _mm_load_ps1(&g_XMSinCoefficients2.f[0]); - S9 = _mm_load_ps1(&g_XMSinCoefficients2.f[1]); - S10 = _mm_load_ps1(&g_XMSinCoefficients2.f[2]); - S11 = _mm_load_ps1(&g_XMSinCoefficients2.f[3]); - - C1 = _mm_load_ps1(&g_XMCosCoefficients0.f[1]); - C2 = _mm_load_ps1(&g_XMCosCoefficients0.f[2]); - C3 = _mm_load_ps1(&g_XMCosCoefficients0.f[3]); - C4 = _mm_load_ps1(&g_XMCosCoefficients1.f[0]); - C5 = _mm_load_ps1(&g_XMCosCoefficients1.f[1]); - C6 = _mm_load_ps1(&g_XMCosCoefficients1.f[2]); - C7 = _mm_load_ps1(&g_XMCosCoefficients1.f[3]); - C8 = _mm_load_ps1(&g_XMCosCoefficients2.f[0]); - C9 = _mm_load_ps1(&g_XMCosCoefficients2.f[1]); - C10 = _mm_load_ps1(&g_XMCosCoefficients2.f[2]); - C11 = _mm_load_ps1(&g_XMCosCoefficients2.f[3]); - - S1 = _mm_mul_ps(S1,V3); - Sin = _mm_add_ps(S1,V1); - Sin = XMVectorMultiplyAdd(S2, V5, Sin); - Sin = XMVectorMultiplyAdd(S3, V7, Sin); - Sin = XMVectorMultiplyAdd(S4, V9, Sin); - Sin = XMVectorMultiplyAdd(S5, V11, Sin); - Sin = XMVectorMultiplyAdd(S6, V13, Sin); - Sin = XMVectorMultiplyAdd(S7, V15, Sin); - Sin = XMVectorMultiplyAdd(S8, V17, Sin); - Sin = XMVectorMultiplyAdd(S9, V19, Sin); - Sin = XMVectorMultiplyAdd(S10, V21, Sin); - Sin = XMVectorMultiplyAdd(S11, V23, Sin); - - Cos = _mm_mul_ps(C1,V2); - Cos = _mm_add_ps(Cos,g_XMOne); - Cos = XMVectorMultiplyAdd(C2, V4, Cos); - Cos = XMVectorMultiplyAdd(C3, V6, Cos); - Cos = XMVectorMultiplyAdd(C4, V8, Cos); - Cos = XMVectorMultiplyAdd(C5, V10, Cos); - Cos = XMVectorMultiplyAdd(C6, V12, Cos); - Cos = XMVectorMultiplyAdd(C7, V14, Cos); - Cos = XMVectorMultiplyAdd(C8, V16, Cos); - Cos = XMVectorMultiplyAdd(C9, V18, Cos); - Cos = XMVectorMultiplyAdd(C10, V20, Cos); - Cos = XMVectorMultiplyAdd(C11, V22, Cos); - - *pSin = Sin; - *pCos = Cos; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMVECTOR XMVectorTan -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - // Cody and Waite algorithm to compute tangent. - - XMVECTOR VA, VB, VC, VC2; - XMVECTOR T0, T1, T2, T3, T4, T5, T6, T7; - XMVECTOR C0, C1, TwoDivPi, Epsilon; - XMVECTOR N, D; - XMVECTOR R0, R1; - XMVECTOR VIsZero, VCNearZero, VBIsEven; - XMVECTOR Zero; - XMVECTOR Result; - UINT i; - static CONST XMVECTOR TanCoefficients0 = {1.0f, -4.667168334e-1f, 2.566383229e-2f, -3.118153191e-4f}; - static CONST XMVECTOR TanCoefficients1 = {4.981943399e-7f, -1.333835001e-1f, 3.424887824e-3f, -1.786170734e-5f}; - static CONST XMVECTOR TanConstants = {1.570796371f, 6.077100628e-11f, 0.000244140625f, 2.0f / XM_PI}; - static CONST XMVECTORU32 Mask = {0x1, 0x1, 0x1, 0x1}; - - TwoDivPi = XMVectorSplatW(TanConstants); - - Zero = XMVectorZero(); - - C0 = XMVectorSplatX(TanConstants); - C1 = XMVectorSplatY(TanConstants); - Epsilon = XMVectorSplatZ(TanConstants); - - VA = XMVectorMultiply(V, TwoDivPi); - - VA = XMVectorRound(VA); - - VC = XMVectorNegativeMultiplySubtract(VA, C0, V); - - VB = XMVectorAbs(VA); - - VC = XMVectorNegativeMultiplySubtract(VA, C1, VC); - - for (i = 0; i < 4; i++) - { - VB.vector4_u32[i] = (UINT)VB.vector4_f32[i]; - } - - VC2 = XMVectorMultiply(VC, VC); - - T7 = XMVectorSplatW(TanCoefficients1); - T6 = XMVectorSplatZ(TanCoefficients1); - T4 = XMVectorSplatX(TanCoefficients1); - T3 = XMVectorSplatW(TanCoefficients0); - T5 = XMVectorSplatY(TanCoefficients1); - T2 = XMVectorSplatZ(TanCoefficients0); - T1 = XMVectorSplatY(TanCoefficients0); - T0 = XMVectorSplatX(TanCoefficients0); - - VBIsEven = XMVectorAndInt(VB, Mask.v); - VBIsEven = XMVectorEqualInt(VBIsEven, Zero); - - N = XMVectorMultiplyAdd(VC2, T7, T6); - D = XMVectorMultiplyAdd(VC2, T4, T3); - N = XMVectorMultiplyAdd(VC2, N, T5); - D = XMVectorMultiplyAdd(VC2, D, T2); - N = XMVectorMultiply(VC2, N); - D = XMVectorMultiplyAdd(VC2, D, T1); - N = XMVectorMultiplyAdd(VC, N, VC); - VCNearZero = XMVectorInBounds(VC, Epsilon); - D = XMVectorMultiplyAdd(VC2, D, T0); - - N = XMVectorSelect(N, VC, VCNearZero); - D = XMVectorSelect(D, g_XMOne.v, VCNearZero); - - R0 = XMVectorNegate(N); - R1 = XMVectorReciprocal(D); - R0 = XMVectorReciprocal(R0); - R1 = XMVectorMultiply(N, R1); - R0 = XMVectorMultiply(D, R0); - - VIsZero = XMVectorEqual(V, Zero); - - Result = XMVectorSelect(R0, R1, VBIsEven); - - Result = XMVectorSelect(Result, Zero, VIsZero); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Cody and Waite algorithm to compute tangent. - - XMVECTOR VA, VB, VC, VC2; - XMVECTOR T0, T1, T2, T3, T4, T5, T6, T7; - XMVECTOR C0, C1, TwoDivPi, Epsilon; - XMVECTOR N, D; - XMVECTOR R0, R1; - XMVECTOR VIsZero, VCNearZero, VBIsEven; - XMVECTOR Zero; - XMVECTOR Result; - static CONST XMVECTORF32 TanCoefficients0 = {1.0f, -4.667168334e-1f, 2.566383229e-2f, -3.118153191e-4f}; - static CONST XMVECTORF32 TanCoefficients1 = {4.981943399e-7f, -1.333835001e-1f, 3.424887824e-3f, -1.786170734e-5f}; - static CONST XMVECTORF32 TanConstants = {1.570796371f, 6.077100628e-11f, 0.000244140625f, 2.0f / XM_PI}; - static CONST XMVECTORI32 Mask = {0x1, 0x1, 0x1, 0x1}; - - TwoDivPi = XMVectorSplatW(TanConstants); - - Zero = XMVectorZero(); - - C0 = XMVectorSplatX(TanConstants); - C1 = XMVectorSplatY(TanConstants); - Epsilon = XMVectorSplatZ(TanConstants); - - VA = XMVectorMultiply(V, TwoDivPi); - - VA = XMVectorRound(VA); - - VC = XMVectorNegativeMultiplySubtract(VA, C0, V); - - VB = XMVectorAbs(VA); - - VC = XMVectorNegativeMultiplySubtract(VA, C1, VC); - - reinterpret_cast<__m128i *>(&VB)[0] = _mm_cvttps_epi32(VB); - - VC2 = XMVectorMultiply(VC, VC); - - T7 = XMVectorSplatW(TanCoefficients1); - T6 = XMVectorSplatZ(TanCoefficients1); - T4 = XMVectorSplatX(TanCoefficients1); - T3 = XMVectorSplatW(TanCoefficients0); - T5 = XMVectorSplatY(TanCoefficients1); - T2 = XMVectorSplatZ(TanCoefficients0); - T1 = XMVectorSplatY(TanCoefficients0); - T0 = XMVectorSplatX(TanCoefficients0); - - VBIsEven = XMVectorAndInt(VB,Mask); - VBIsEven = XMVectorEqualInt(VBIsEven, Zero); - - N = XMVectorMultiplyAdd(VC2, T7, T6); - D = XMVectorMultiplyAdd(VC2, T4, T3); - N = XMVectorMultiplyAdd(VC2, N, T5); - D = XMVectorMultiplyAdd(VC2, D, T2); - N = XMVectorMultiply(VC2, N); - D = XMVectorMultiplyAdd(VC2, D, T1); - N = XMVectorMultiplyAdd(VC, N, VC); - VCNearZero = XMVectorInBounds(VC, Epsilon); - D = XMVectorMultiplyAdd(VC2, D, T0); - - N = XMVectorSelect(N, VC, VCNearZero); - D = XMVectorSelect(D, g_XMOne, VCNearZero); - R0 = XMVectorNegate(N); - R1 = _mm_div_ps(N,D); - R0 = _mm_div_ps(D,R0); - VIsZero = XMVectorEqual(V, Zero); - Result = XMVectorSelect(R0, R1, VBIsEven); - Result = XMVectorSelect(Result, Zero, VIsZero); - - return Result; - -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMVECTOR XMVectorSinH -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V1, V2; - XMVECTOR E1, E2; - XMVECTOR Result; - static CONST XMVECTORF32 Scale = {1.442695040888963f, 1.442695040888963f, 1.442695040888963f, 1.442695040888963f}; // 1.0f / ln(2.0f) - - V1 = XMVectorMultiplyAdd(V, Scale.v, g_XMNegativeOne.v); - V2 = XMVectorNegativeMultiplySubtract(V, Scale.v, g_XMNegativeOne.v); - - E1 = XMVectorExp(V1); - E2 = XMVectorExp(V2); - - Result = XMVectorSubtract(E1, E2); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR V1, V2; - XMVECTOR E1, E2; - XMVECTOR Result; - static CONST XMVECTORF32 Scale = {1.442695040888963f, 1.442695040888963f, 1.442695040888963f, 1.442695040888963f}; // 1.0f / ln(2.0f) - - V1 = _mm_mul_ps(V, Scale); - V1 = _mm_add_ps(V1,g_XMNegativeOne); - V2 = _mm_mul_ps(V, Scale); - V2 = _mm_sub_ps(g_XMNegativeOne,V2); - E1 = XMVectorExp(V1); - E2 = XMVectorExp(V2); - - Result = _mm_sub_ps(E1, E2); - - return Result; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMVECTOR XMVectorCosH -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V1, V2; - XMVECTOR E1, E2; - XMVECTOR Result; - static CONST XMVECTOR Scale = {1.442695040888963f, 1.442695040888963f, 1.442695040888963f, 1.442695040888963f}; // 1.0f / ln(2.0f) - - V1 = XMVectorMultiplyAdd(V, Scale, g_XMNegativeOne.v); - V2 = XMVectorNegativeMultiplySubtract(V, Scale, g_XMNegativeOne.v); - - E1 = XMVectorExp(V1); - E2 = XMVectorExp(V2); - - Result = XMVectorAdd(E1, E2); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR V1, V2; - XMVECTOR E1, E2; - XMVECTOR Result; - static CONST XMVECTORF32 Scale = {1.442695040888963f, 1.442695040888963f, 1.442695040888963f, 1.442695040888963f}; // 1.0f / ln(2.0f) - - V1 = _mm_mul_ps(V,Scale); - V1 = _mm_add_ps(V1,g_XMNegativeOne); - V2 = _mm_mul_ps(V, Scale); - V2 = _mm_sub_ps(g_XMNegativeOne,V2); - E1 = XMVectorExp(V1); - E2 = XMVectorExp(V2); - Result = _mm_add_ps(E1, E2); - return Result; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMVECTOR XMVectorTanH -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR E; - XMVECTOR Result; - static CONST XMVECTORF32 Scale = {2.8853900817779268f, 2.8853900817779268f, 2.8853900817779268f, 2.8853900817779268f}; // 2.0f / ln(2.0f) - - E = XMVectorMultiply(V, Scale.v); - E = XMVectorExp(E); - E = XMVectorMultiplyAdd(E, g_XMOneHalf.v, g_XMOneHalf.v); - E = XMVectorReciprocal(E); - - Result = XMVectorSubtract(g_XMOne.v, E); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - static CONST XMVECTORF32 Scale = {2.8853900817779268f, 2.8853900817779268f, 2.8853900817779268f, 2.8853900817779268f}; // 2.0f / ln(2.0f) - - XMVECTOR E = _mm_mul_ps(V, Scale); - E = XMVectorExp(E); - E = _mm_mul_ps(E,g_XMOneHalf); - E = _mm_add_ps(E,g_XMOneHalf); - E = XMVectorReciprocal(E); - E = _mm_sub_ps(g_XMOne, E); - return E; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMVECTOR XMVectorASin -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V2, V3, AbsV; - XMVECTOR C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11; - XMVECTOR R0, R1, R2, R3, R4; - XMVECTOR OneMinusAbsV; - XMVECTOR Rsq; - XMVECTOR Result; - static CONST XMVECTOR OnePlusEpsilon = {1.00000011921f, 1.00000011921f, 1.00000011921f, 1.00000011921f}; - - // asin(V) = V * (C0 + C1 * V + C2 * V^2 + C3 * V^3 + C4 * V^4 + C5 * V^5) + (1 - V) * rsq(1 - V) * - // V * (C6 + C7 * V + C8 * V^2 + C9 * V^3 + C10 * V^4 + C11 * V^5) - - AbsV = XMVectorAbs(V); - - V2 = XMVectorMultiply(V, V); - V3 = XMVectorMultiply(V2, AbsV); - - R4 = XMVectorNegativeMultiplySubtract(AbsV, V, V); - - OneMinusAbsV = XMVectorSubtract(OnePlusEpsilon, AbsV); - Rsq = XMVectorReciprocalSqrt(OneMinusAbsV); - - C0 = XMVectorSplatX(g_XMASinCoefficients0.v); - C1 = XMVectorSplatY(g_XMASinCoefficients0.v); - C2 = XMVectorSplatZ(g_XMASinCoefficients0.v); - C3 = XMVectorSplatW(g_XMASinCoefficients0.v); - - C4 = XMVectorSplatX(g_XMASinCoefficients1.v); - C5 = XMVectorSplatY(g_XMASinCoefficients1.v); - C6 = XMVectorSplatZ(g_XMASinCoefficients1.v); - C7 = XMVectorSplatW(g_XMASinCoefficients1.v); - - C8 = XMVectorSplatX(g_XMASinCoefficients2.v); - C9 = XMVectorSplatY(g_XMASinCoefficients2.v); - C10 = XMVectorSplatZ(g_XMASinCoefficients2.v); - C11 = XMVectorSplatW(g_XMASinCoefficients2.v); - - R0 = XMVectorMultiplyAdd(C3, AbsV, C7); - R1 = XMVectorMultiplyAdd(C1, AbsV, C5); - R2 = XMVectorMultiplyAdd(C2, AbsV, C6); - R3 = XMVectorMultiplyAdd(C0, AbsV, C4); - - R0 = XMVectorMultiplyAdd(R0, AbsV, C11); - R1 = XMVectorMultiplyAdd(R1, AbsV, C9); - R2 = XMVectorMultiplyAdd(R2, AbsV, C10); - R3 = XMVectorMultiplyAdd(R3, AbsV, C8); - - R0 = XMVectorMultiplyAdd(R2, V3, R0); - R1 = XMVectorMultiplyAdd(R3, V3, R1); - - R0 = XMVectorMultiply(V, R0); - R1 = XMVectorMultiply(R4, R1); - - Result = XMVectorMultiplyAdd(R1, Rsq, R0); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - static CONST XMVECTORF32 OnePlusEpsilon = {1.00000011921f, 1.00000011921f, 1.00000011921f, 1.00000011921f}; - - // asin(V) = V * (C0 + C1 * V + C2 * V^2 + C3 * V^3 + C4 * V^4 + C5 * V^5) + (1 - V) * rsq(1 - V) * - // V * (C6 + C7 * V + C8 * V^2 + C9 * V^3 + C10 * V^4 + C11 * V^5) - // Get abs(V) - XMVECTOR vAbsV = _mm_setzero_ps(); - vAbsV = _mm_sub_ps(vAbsV,V); - vAbsV = _mm_max_ps(vAbsV,V); - - XMVECTOR R0 = vAbsV; - XMVECTOR vConstants = _mm_load_ps1(&g_XMASinCoefficients0.f[3]); - R0 = _mm_mul_ps(R0,vConstants); - vConstants = _mm_load_ps1(&g_XMASinCoefficients1.f[3]); - R0 = _mm_add_ps(R0,vConstants); - - XMVECTOR R1 = vAbsV; - vConstants = _mm_load_ps1(&g_XMASinCoefficients0.f[1]); - R1 = _mm_mul_ps(R1,vConstants); - vConstants = _mm_load_ps1(&g_XMASinCoefficients1.f[1]); - R1 = _mm_add_ps(R1, vConstants); - - XMVECTOR R2 = vAbsV; - vConstants = _mm_load_ps1(&g_XMASinCoefficients0.f[2]); - R2 = _mm_mul_ps(R2,vConstants); - vConstants = _mm_load_ps1(&g_XMASinCoefficients1.f[2]); - R2 = _mm_add_ps(R2, vConstants); - - XMVECTOR R3 = vAbsV; - vConstants = _mm_load_ps1(&g_XMASinCoefficients0.f[0]); - R3 = _mm_mul_ps(R3,vConstants); - vConstants = _mm_load_ps1(&g_XMASinCoefficients1.f[0]); - R3 = _mm_add_ps(R3, vConstants); - - vConstants = _mm_load_ps1(&g_XMASinCoefficients2.f[3]); - R0 = _mm_mul_ps(R0,vAbsV); - R0 = _mm_add_ps(R0,vConstants); - - vConstants = _mm_load_ps1(&g_XMASinCoefficients2.f[1]); - R1 = _mm_mul_ps(R1,vAbsV); - R1 = _mm_add_ps(R1,vConstants); - - vConstants = _mm_load_ps1(&g_XMASinCoefficients2.f[2]); - R2 = _mm_mul_ps(R2,vAbsV); - R2 = _mm_add_ps(R2,vConstants); - - vConstants = _mm_load_ps1(&g_XMASinCoefficients2.f[0]); - R3 = _mm_mul_ps(R3,vAbsV); - R3 = _mm_add_ps(R3,vConstants); - - // V3 = V^3 - vConstants = _mm_mul_ps(V,V); - vConstants = _mm_mul_ps(vConstants, vAbsV); - // Mul by V^3 - R2 = _mm_mul_ps(R2,vConstants); - R3 = _mm_mul_ps(R3,vConstants); - // Merge the results - R0 = _mm_add_ps(R0,R2); - R1 = _mm_add_ps(R1,R3); - - R0 = _mm_mul_ps(R0,V); - // vConstants = V-(V^2 retaining sign) - vConstants = _mm_mul_ps(vAbsV, V); - vConstants = _mm_sub_ps(V,vConstants); - R1 = _mm_mul_ps(R1,vConstants); - vConstants = _mm_sub_ps(OnePlusEpsilon,vAbsV); - // Do NOT use rsqrt/mul. This needs the precision - vConstants = _mm_sqrt_ps(vConstants); - R1 = _mm_div_ps(R1,vConstants); - R0 = _mm_add_ps(R0,R1); - return R0; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMVECTOR XMVectorACos -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V2, V3, AbsV; - XMVECTOR C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11; - XMVECTOR R0, R1, R2, R3, R4; - XMVECTOR OneMinusAbsV; - XMVECTOR Rsq; - XMVECTOR Result; - static CONST XMVECTOR OnePlusEpsilon = {1.00000011921f, 1.00000011921f, 1.00000011921f, 1.00000011921f}; - - // acos(V) = PI / 2 - asin(V) - - AbsV = XMVectorAbs(V); - - V2 = XMVectorMultiply(V, V); - V3 = XMVectorMultiply(V2, AbsV); - - R4 = XMVectorNegativeMultiplySubtract(AbsV, V, V); - - OneMinusAbsV = XMVectorSubtract(OnePlusEpsilon, AbsV); - Rsq = XMVectorReciprocalSqrt(OneMinusAbsV); - - C0 = XMVectorSplatX(g_XMASinCoefficients0.v); - C1 = XMVectorSplatY(g_XMASinCoefficients0.v); - C2 = XMVectorSplatZ(g_XMASinCoefficients0.v); - C3 = XMVectorSplatW(g_XMASinCoefficients0.v); - - C4 = XMVectorSplatX(g_XMASinCoefficients1.v); - C5 = XMVectorSplatY(g_XMASinCoefficients1.v); - C6 = XMVectorSplatZ(g_XMASinCoefficients1.v); - C7 = XMVectorSplatW(g_XMASinCoefficients1.v); - - C8 = XMVectorSplatX(g_XMASinCoefficients2.v); - C9 = XMVectorSplatY(g_XMASinCoefficients2.v); - C10 = XMVectorSplatZ(g_XMASinCoefficients2.v); - C11 = XMVectorSplatW(g_XMASinCoefficients2.v); - - R0 = XMVectorMultiplyAdd(C3, AbsV, C7); - R1 = XMVectorMultiplyAdd(C1, AbsV, C5); - R2 = XMVectorMultiplyAdd(C2, AbsV, C6); - R3 = XMVectorMultiplyAdd(C0, AbsV, C4); - - R0 = XMVectorMultiplyAdd(R0, AbsV, C11); - R1 = XMVectorMultiplyAdd(R1, AbsV, C9); - R2 = XMVectorMultiplyAdd(R2, AbsV, C10); - R3 = XMVectorMultiplyAdd(R3, AbsV, C8); - - R0 = XMVectorMultiplyAdd(R2, V3, R0); - R1 = XMVectorMultiplyAdd(R3, V3, R1); - - R0 = XMVectorMultiply(V, R0); - R1 = XMVectorMultiply(R4, R1); - - Result = XMVectorMultiplyAdd(R1, Rsq, R0); - - Result = XMVectorSubtract(g_XMHalfPi.v, Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - static CONST XMVECTORF32 OnePlusEpsilon = {1.00000011921f, 1.00000011921f, 1.00000011921f, 1.00000011921f}; - // Uses only 6 registers for good code on x86 targets - // acos(V) = PI / 2 - asin(V) - // Get abs(V) - XMVECTOR vAbsV = _mm_setzero_ps(); - vAbsV = _mm_sub_ps(vAbsV,V); - vAbsV = _mm_max_ps(vAbsV,V); - // Perform the series in precision groups to - // retain precision across 20 bits. (3 bits of imprecision due to operations) - XMVECTOR R0 = vAbsV; - XMVECTOR vConstants = _mm_load_ps1(&g_XMASinCoefficients0.f[3]); - R0 = _mm_mul_ps(R0,vConstants); - vConstants = _mm_load_ps1(&g_XMASinCoefficients1.f[3]); - R0 = _mm_add_ps(R0,vConstants); - R0 = _mm_mul_ps(R0,vAbsV); - vConstants = _mm_load_ps1(&g_XMASinCoefficients2.f[3]); - R0 = _mm_add_ps(R0,vConstants); - - XMVECTOR R1 = vAbsV; - vConstants = _mm_load_ps1(&g_XMASinCoefficients0.f[1]); - R1 = _mm_mul_ps(R1,vConstants); - vConstants = _mm_load_ps1(&g_XMASinCoefficients1.f[1]); - R1 = _mm_add_ps(R1,vConstants); - R1 = _mm_mul_ps(R1, vAbsV); - vConstants = _mm_load_ps1(&g_XMASinCoefficients2.f[1]); - R1 = _mm_add_ps(R1,vConstants); - - XMVECTOR R2 = vAbsV; - vConstants = _mm_load_ps1(&g_XMASinCoefficients0.f[2]); - R2 = _mm_mul_ps(R2,vConstants); - vConstants = _mm_load_ps1(&g_XMASinCoefficients1.f[2]); - R2 = _mm_add_ps(R2,vConstants); - R2 = _mm_mul_ps(R2, vAbsV); - vConstants = _mm_load_ps1(&g_XMASinCoefficients2.f[2]); - R2 = _mm_add_ps(R2,vConstants); - - XMVECTOR R3 = vAbsV; - vConstants = _mm_load_ps1(&g_XMASinCoefficients0.f[0]); - R3 = _mm_mul_ps(R3,vConstants); - vConstants = _mm_load_ps1(&g_XMASinCoefficients1.f[0]); - R3 = _mm_add_ps(R3,vConstants); - R3 = _mm_mul_ps(R3, vAbsV); - vConstants = _mm_load_ps1(&g_XMASinCoefficients2.f[0]); - R3 = _mm_add_ps(R3,vConstants); - - // vConstants = V^3 - vConstants = _mm_mul_ps(V,V); - vConstants = _mm_mul_ps(vConstants,vAbsV); - R2 = _mm_mul_ps(R2,vConstants); - R3 = _mm_mul_ps(R3,vConstants); - // Add the pair of values together here to retain - // as much precision as possible - R0 = _mm_add_ps(R0,R2); - R1 = _mm_add_ps(R1,R3); - - R0 = _mm_mul_ps(R0,V); - // vConstants = V-(V*abs(V)) - vConstants = _mm_mul_ps(V,vAbsV); - vConstants = _mm_sub_ps(V,vConstants); - R1 = _mm_mul_ps(R1,vConstants); - // Episilon exists to allow 1.0 as an answer - vConstants = _mm_sub_ps(OnePlusEpsilon, vAbsV); - // Use sqrt instead of rsqrt for precision - vConstants = _mm_sqrt_ps(vConstants); - R1 = _mm_div_ps(R1,vConstants); - R1 = _mm_add_ps(R1,R0); - vConstants = _mm_sub_ps(g_XMHalfPi,R1); - return vConstants; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMVECTOR XMVectorATan -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - // Cody and Waite algorithm to compute inverse tangent. - - XMVECTOR N, D; - XMVECTOR VF, G, ReciprocalF, AbsF, FA, FB; - XMVECTOR Sqrt3, Sqrt3MinusOne, TwoMinusSqrt3; - XMVECTOR HalfPi, OneThirdPi, OneSixthPi, Epsilon, MinV, MaxV; - XMVECTOR Zero; - XMVECTOR NegativeHalfPi; - XMVECTOR Angle1, Angle2; - XMVECTOR F_GT_One, F_GT_TwoMinusSqrt3, AbsF_LT_Epsilon, V_LT_Zero, V_GT_MaxV, V_LT_MinV; - XMVECTOR NegativeResult, Result; - XMVECTOR P0, P1, P2, P3, Q0, Q1, Q2, Q3; - static CONST XMVECTOR ATanConstants0 = {-1.3688768894e+1f, -2.0505855195e+1f, -8.4946240351f, -8.3758299368e-1f}; - static CONST XMVECTOR ATanConstants1 = {4.1066306682e+1f, 8.6157349597e+1f, 5.9578436142e+1f, 1.5024001160e+1f}; - static CONST XMVECTOR ATanConstants2 = {1.732050808f, 7.320508076e-1f, 2.679491924e-1f, 0.000244140625f}; // - static CONST XMVECTOR ATanConstants3 = {XM_PIDIV2, XM_PI / 3.0f, XM_PI / 6.0f, 8.507059173e+37f}; // - - Zero = XMVectorZero(); - - P0 = XMVectorSplatX(ATanConstants0); - P1 = XMVectorSplatY(ATanConstants0); - P2 = XMVectorSplatZ(ATanConstants0); - P3 = XMVectorSplatW(ATanConstants0); - - Q0 = XMVectorSplatX(ATanConstants1); - Q1 = XMVectorSplatY(ATanConstants1); - Q2 = XMVectorSplatZ(ATanConstants1); - Q3 = XMVectorSplatW(ATanConstants1); - - Sqrt3 = XMVectorSplatX(ATanConstants2); - Sqrt3MinusOne = XMVectorSplatY(ATanConstants2); - TwoMinusSqrt3 = XMVectorSplatZ(ATanConstants2); - Epsilon = XMVectorSplatW(ATanConstants2); - - HalfPi = XMVectorSplatX(ATanConstants3); - OneThirdPi = XMVectorSplatY(ATanConstants3); - OneSixthPi = XMVectorSplatZ(ATanConstants3); - MaxV = XMVectorSplatW(ATanConstants3); - - VF = XMVectorAbs(V); - ReciprocalF = XMVectorReciprocal(VF); - - F_GT_One = XMVectorGreater(VF, g_XMOne.v); - - VF = XMVectorSelect(VF, ReciprocalF, F_GT_One); - Angle1 = XMVectorSelect(Zero, HalfPi, F_GT_One); - Angle2 = XMVectorSelect(OneSixthPi, OneThirdPi, F_GT_One); - - F_GT_TwoMinusSqrt3 = XMVectorGreater(VF, TwoMinusSqrt3); - - FA = XMVectorMultiplyAdd(Sqrt3MinusOne, VF, VF); - FA = XMVectorAdd(FA, g_XMNegativeOne.v); - FB = XMVectorAdd(VF, Sqrt3); - FB = XMVectorReciprocal(FB); - FA = XMVectorMultiply(FA, FB); - - VF = XMVectorSelect(VF, FA, F_GT_TwoMinusSqrt3); - Angle1 = XMVectorSelect(Angle1, Angle2, F_GT_TwoMinusSqrt3); - - AbsF = XMVectorAbs(VF); - AbsF_LT_Epsilon = XMVectorLess(AbsF, Epsilon); - - G = XMVectorMultiply(VF, VF); - - D = XMVectorAdd(G, Q3); - D = XMVectorMultiplyAdd(D, G, Q2); - D = XMVectorMultiplyAdd(D, G, Q1); - D = XMVectorMultiplyAdd(D, G, Q0); - D = XMVectorReciprocal(D); - - N = XMVectorMultiplyAdd(P3, G, P2); - N = XMVectorMultiplyAdd(N, G, P1); - N = XMVectorMultiplyAdd(N, G, P0); - N = XMVectorMultiply(N, G); - Result = XMVectorMultiply(N, D); - - Result = XMVectorMultiplyAdd(Result, VF, VF); - - Result = XMVectorSelect(Result, VF, AbsF_LT_Epsilon); - - NegativeResult = XMVectorNegate(Result); - Result = XMVectorSelect(Result, NegativeResult, F_GT_One); - - Result = XMVectorAdd(Result, Angle1); - - V_LT_Zero = XMVectorLess(V, Zero); - NegativeResult = XMVectorNegate(Result); - Result = XMVectorSelect(Result, NegativeResult, V_LT_Zero); - - MinV = XMVectorNegate(MaxV); - NegativeHalfPi = XMVectorNegate(HalfPi); - V_GT_MaxV = XMVectorGreater(V, MaxV); - V_LT_MinV = XMVectorLess(V, MinV); - Result = XMVectorSelect(Result, g_XMHalfPi.v, V_GT_MaxV); - Result = XMVectorSelect(Result, NegativeHalfPi, V_LT_MinV); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - static CONST XMVECTORF32 ATanConstants0 = {-1.3688768894e+1f, -2.0505855195e+1f, -8.4946240351f, -8.3758299368e-1f}; - static CONST XMVECTORF32 ATanConstants1 = {4.1066306682e+1f, 8.6157349597e+1f, 5.9578436142e+1f, 1.5024001160e+1f}; - static CONST XMVECTORF32 ATanConstants2 = {1.732050808f, 7.320508076e-1f, 2.679491924e-1f, 0.000244140625f}; // - static CONST XMVECTORF32 ATanConstants3 = {XM_PIDIV2, XM_PI / 3.0f, XM_PI / 6.0f, 8.507059173e+37f}; // - - XMVECTOR VF = XMVectorAbs(V); - XMVECTOR F_GT_One = _mm_cmpgt_ps(VF,g_XMOne); - XMVECTOR ReciprocalF = XMVectorReciprocal(VF); - VF = XMVectorSelect(VF, ReciprocalF, F_GT_One); - XMVECTOR Zero = XMVectorZero(); - XMVECTOR HalfPi = _mm_load_ps1(&ATanConstants3.f[0]); - XMVECTOR Angle1 = XMVectorSelect(Zero, HalfPi, F_GT_One); - // Pi/3 - XMVECTOR vConstants = _mm_load_ps1(&ATanConstants3.f[1]); - // Pi/6 - XMVECTOR Angle2 = _mm_load_ps1(&ATanConstants3.f[2]); - Angle2 = XMVectorSelect(Angle2, vConstants, F_GT_One); - - // 1-sqrt(3) - XMVECTOR FA = _mm_load_ps1(&ATanConstants2.f[1]); - FA = _mm_mul_ps(FA,VF); - FA = _mm_add_ps(FA,VF); - FA = _mm_add_ps(FA,g_XMNegativeOne); - // sqrt(3) - vConstants = _mm_load_ps1(&ATanConstants2.f[0]); - vConstants = _mm_add_ps(vConstants,VF); - FA = _mm_div_ps(FA,vConstants); - - // 2-sqrt(3) - vConstants = _mm_load_ps1(&ATanConstants2.f[2]); - // >2-sqrt(3)? - vConstants = _mm_cmpgt_ps(VF,vConstants); - VF = XMVectorSelect(VF, FA, vConstants); - Angle1 = XMVectorSelect(Angle1, Angle2, vConstants); - - XMVECTOR AbsF = XMVectorAbs(VF); - - XMVECTOR G = _mm_mul_ps(VF,VF); - XMVECTOR D = _mm_load_ps1(&ATanConstants1.f[3]); - D = _mm_add_ps(D,G); - D = _mm_mul_ps(D,G); - vConstants = _mm_load_ps1(&ATanConstants1.f[2]); - D = _mm_add_ps(D,vConstants); - D = _mm_mul_ps(D,G); - vConstants = _mm_load_ps1(&ATanConstants1.f[1]); - D = _mm_add_ps(D,vConstants); - D = _mm_mul_ps(D,G); - vConstants = _mm_load_ps1(&ATanConstants1.f[0]); - D = _mm_add_ps(D,vConstants); - - XMVECTOR N = _mm_load_ps1(&ATanConstants0.f[3]); - N = _mm_mul_ps(N,G); - vConstants = _mm_load_ps1(&ATanConstants0.f[2]); - N = _mm_add_ps(N,vConstants); - N = _mm_mul_ps(N,G); - vConstants = _mm_load_ps1(&ATanConstants0.f[1]); - N = _mm_add_ps(N,vConstants); - N = _mm_mul_ps(N,G); - vConstants = _mm_load_ps1(&ATanConstants0.f[0]); - N = _mm_add_ps(N,vConstants); - N = _mm_mul_ps(N,G); - XMVECTOR Result = _mm_div_ps(N,D); - - Result = _mm_mul_ps(Result,VF); - Result = _mm_add_ps(Result,VF); - // Epsilon - vConstants = _mm_load_ps1(&ATanConstants2.f[3]); - vConstants = _mm_cmpge_ps(vConstants,AbsF); - Result = XMVectorSelect(Result,VF,vConstants); - - XMVECTOR NegativeResult = _mm_mul_ps(Result,g_XMNegativeOne); - Result = XMVectorSelect(Result,NegativeResult,F_GT_One); - Result = _mm_add_ps(Result,Angle1); - - Zero = _mm_cmpge_ps(Zero,V); - NegativeResult = _mm_mul_ps(Result,g_XMNegativeOne); - Result = XMVectorSelect(Result,NegativeResult,Zero); - - XMVECTOR MaxV = _mm_load_ps1(&ATanConstants3.f[3]); - XMVECTOR MinV = _mm_mul_ps(MaxV,g_XMNegativeOne); - // Negate HalfPi - HalfPi = _mm_mul_ps(HalfPi,g_XMNegativeOne); - MaxV = _mm_cmple_ps(MaxV,V); - MinV = _mm_cmpge_ps(MinV,V); - Result = XMVectorSelect(Result,g_XMHalfPi,MaxV); - // HalfPi = -HalfPi - Result = XMVectorSelect(Result,HalfPi,MinV); - return Result; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMVECTOR XMVectorATan2 -( - FXMVECTOR Y, - FXMVECTOR X -) -{ -#if defined(_XM_NO_INTRINSICS_) - - // Return the inverse tangent of Y / X in the range of -Pi to Pi with the following exceptions: - - // Y == 0 and X is Negative -> Pi with the sign of Y - // y == 0 and x is positive -> 0 with the sign of y - // Y != 0 and X == 0 -> Pi / 2 with the sign of Y - // Y != 0 and X is Negative -> atan(y/x) + (PI with the sign of Y) - // X == -Infinity and Finite Y -> Pi with the sign of Y - // X == +Infinity and Finite Y -> 0 with the sign of Y - // Y == Infinity and X is Finite -> Pi / 2 with the sign of Y - // Y == Infinity and X == -Infinity -> 3Pi / 4 with the sign of Y - // Y == Infinity and X == +Infinity -> Pi / 4 with the sign of Y - - XMVECTOR Reciprocal; - XMVECTOR V; - XMVECTOR YSign; - XMVECTOR Pi, PiOverTwo, PiOverFour, ThreePiOverFour; - XMVECTOR YEqualsZero, XEqualsZero, XIsPositive, YEqualsInfinity, XEqualsInfinity; - XMVECTOR ATanResultValid; - XMVECTOR R0, R1, R2, R3, R4, R5; - XMVECTOR Zero; - XMVECTOR Result; - static CONST XMVECTOR ATan2Constants = {XM_PI, XM_PIDIV2, XM_PIDIV4, XM_PI * 3.0f / 4.0f}; - - Zero = XMVectorZero(); - ATanResultValid = XMVectorTrueInt(); - - Pi = XMVectorSplatX(ATan2Constants); - PiOverTwo = XMVectorSplatY(ATan2Constants); - PiOverFour = XMVectorSplatZ(ATan2Constants); - ThreePiOverFour = XMVectorSplatW(ATan2Constants); - - YEqualsZero = XMVectorEqual(Y, Zero); - XEqualsZero = XMVectorEqual(X, Zero); - XIsPositive = XMVectorAndInt(X, g_XMNegativeZero.v); - XIsPositive = XMVectorEqualInt(XIsPositive, Zero); - YEqualsInfinity = XMVectorIsInfinite(Y); - XEqualsInfinity = XMVectorIsInfinite(X); - - YSign = XMVectorAndInt(Y, g_XMNegativeZero.v); - Pi = XMVectorOrInt(Pi, YSign); - PiOverTwo = XMVectorOrInt(PiOverTwo, YSign); - PiOverFour = XMVectorOrInt(PiOverFour, YSign); - ThreePiOverFour = XMVectorOrInt(ThreePiOverFour, YSign); - - R1 = XMVectorSelect(Pi, YSign, XIsPositive); - R2 = XMVectorSelect(ATanResultValid, PiOverTwo, XEqualsZero); - R3 = XMVectorSelect(R2, R1, YEqualsZero); - R4 = XMVectorSelect(ThreePiOverFour, PiOverFour, XIsPositive); - R5 = XMVectorSelect(PiOverTwo, R4, XEqualsInfinity); - Result = XMVectorSelect(R3, R5, YEqualsInfinity); - ATanResultValid = XMVectorEqualInt(Result, ATanResultValid); - - Reciprocal = XMVectorReciprocal(X); - V = XMVectorMultiply(Y, Reciprocal); - R0 = XMVectorATan(V); - - R1 = XMVectorSelect( Pi, Zero, XIsPositive ); - R2 = XMVectorAdd(R0, R1); - - Result = XMVectorSelect(Result, R2, ATanResultValid); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - static CONST XMVECTORF32 ATan2Constants = {XM_PI, XM_PIDIV2, XM_PIDIV4, XM_PI * 3.0f / 4.0f}; - - // Mask if Y>0 && Y!=INF - XMVECTOR YEqualsInfinity = XMVectorIsInfinite(Y); - // Get the sign of (Y&0x80000000) - XMVECTOR YSign = _mm_and_ps(Y, g_XMNegativeZero); - // Get the sign bits of X - XMVECTOR XIsPositive = _mm_and_ps(X,g_XMNegativeZero); - // Change them to masks - XIsPositive = XMVectorEqualInt(XIsPositive,g_XMZero); - // Get Pi - XMVECTOR Pi = _mm_load_ps1(&ATan2Constants.f[0]); - // Copy the sign of Y - Pi = _mm_or_ps(Pi,YSign); - XMVECTOR R1 = XMVectorSelect(Pi,YSign,XIsPositive); - // Mask for X==0 - XMVECTOR vConstants = _mm_cmpeq_ps(X,g_XMZero); - // Get Pi/2 with with sign of Y - XMVECTOR PiOverTwo = _mm_load_ps1(&ATan2Constants.f[1]); - PiOverTwo = _mm_or_ps(PiOverTwo,YSign); - XMVECTOR R2 = XMVectorSelect(g_XMNegOneMask,PiOverTwo,vConstants); - // Mask for Y==0 - vConstants = _mm_cmpeq_ps(Y,g_XMZero); - R2 = XMVectorSelect(R2,R1,vConstants); - // Get Pi/4 with sign of Y - XMVECTOR PiOverFour = _mm_load_ps1(&ATan2Constants.f[2]); - PiOverFour = _mm_or_ps(PiOverFour,YSign); - // Get (Pi*3)/4 with sign of Y - XMVECTOR ThreePiOverFour = _mm_load_ps1(&ATan2Constants.f[3]); - ThreePiOverFour = _mm_or_ps(ThreePiOverFour,YSign); - vConstants = XMVectorSelect(ThreePiOverFour, PiOverFour, XIsPositive); - XMVECTOR XEqualsInfinity = XMVectorIsInfinite(X); - vConstants = XMVectorSelect(PiOverTwo,vConstants,XEqualsInfinity); - - XMVECTOR vResult = XMVectorSelect(R2,vConstants,YEqualsInfinity); - vConstants = XMVectorSelect(R1,vResult,YEqualsInfinity); - // At this point, any entry that's zero will get the result - // from XMVectorATan(), otherwise, return the failsafe value - vResult = XMVectorSelect(vResult,vConstants,XEqualsInfinity); - // Any entries not 0xFFFFFFFF, are considered precalculated - XMVECTOR ATanResultValid = XMVectorEqualInt(vResult,g_XMNegOneMask); - // Let's do the ATan2 function - vConstants = _mm_div_ps(Y,X); - vConstants = XMVectorATan(vConstants); - // Discard entries that have been declared void - - XMVECTOR R3 = XMVectorSelect( Pi, g_XMZero, XIsPositive ); - vConstants = _mm_add_ps( vConstants, R3 ); - - vResult = XMVectorSelect(vResult,vConstants,ATanResultValid); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorSinEst -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V2, V3, V5, V7; - XMVECTOR S1, S2, S3; - XMVECTOR Result; - - // sin(V) ~= V - V^3 / 3! + V^5 / 5! - V^7 / 7! (for -PI <= V < PI) - V2 = XMVectorMultiply(V, V); - V3 = XMVectorMultiply(V2, V); - V5 = XMVectorMultiply(V3, V2); - V7 = XMVectorMultiply(V5, V2); - - S1 = XMVectorSplatY(g_XMSinEstCoefficients.v); - S2 = XMVectorSplatZ(g_XMSinEstCoefficients.v); - S3 = XMVectorSplatW(g_XMSinEstCoefficients.v); - - Result = XMVectorMultiplyAdd(S1, V3, V); - Result = XMVectorMultiplyAdd(S2, V5, Result); - Result = XMVectorMultiplyAdd(S3, V7, Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // sin(V) ~= V - V^3 / 3! + V^5 / 5! - V^7 / 7! (for -PI <= V < PI) - XMVECTOR V2 = _mm_mul_ps(V,V); - XMVECTOR V3 = _mm_mul_ps(V2,V); - XMVECTOR vResult = _mm_load_ps1(&g_XMSinEstCoefficients.f[1]); - vResult = _mm_mul_ps(vResult,V3); - vResult = _mm_add_ps(vResult,V); - XMVECTOR vConstants = _mm_load_ps1(&g_XMSinEstCoefficients.f[2]); - // V^5 - V3 = _mm_mul_ps(V3,V2); - vConstants = _mm_mul_ps(vConstants,V3); - vResult = _mm_add_ps(vResult,vConstants); - vConstants = _mm_load_ps1(&g_XMSinEstCoefficients.f[3]); - // V^7 - V3 = _mm_mul_ps(V3,V2); - vConstants = _mm_mul_ps(vConstants,V3); - vResult = _mm_add_ps(vResult,vConstants); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorCosEst -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V2, V4, V6; - XMVECTOR C0, C1, C2, C3; - XMVECTOR Result; - - V2 = XMVectorMultiply(V, V); - V4 = XMVectorMultiply(V2, V2); - V6 = XMVectorMultiply(V4, V2); - - C0 = XMVectorSplatX(g_XMCosEstCoefficients.v); - C1 = XMVectorSplatY(g_XMCosEstCoefficients.v); - C2 = XMVectorSplatZ(g_XMCosEstCoefficients.v); - C3 = XMVectorSplatW(g_XMCosEstCoefficients.v); - - Result = XMVectorMultiplyAdd(C1, V2, C0); - Result = XMVectorMultiplyAdd(C2, V4, Result); - Result = XMVectorMultiplyAdd(C3, V6, Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Get V^2 - XMVECTOR V2 = _mm_mul_ps(V,V); - XMVECTOR vResult = _mm_load_ps1(&g_XMCosEstCoefficients.f[1]); - vResult = _mm_mul_ps(vResult,V2); - XMVECTOR vConstants = _mm_load_ps1(&g_XMCosEstCoefficients.f[0]); - vResult = _mm_add_ps(vResult,vConstants); - vConstants = _mm_load_ps1(&g_XMCosEstCoefficients.f[2]); - // Get V^4 - XMVECTOR V4 = _mm_mul_ps(V2, V2); - vConstants = _mm_mul_ps(vConstants,V4); - vResult = _mm_add_ps(vResult,vConstants); - vConstants = _mm_load_ps1(&g_XMCosEstCoefficients.f[3]); - // It's really V^6 - V4 = _mm_mul_ps(V4,V2); - vConstants = _mm_mul_ps(vConstants,V4); - vResult = _mm_add_ps(vResult,vConstants); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMVectorSinCosEst -( - XMVECTOR* pSin, - XMVECTOR* pCos, - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V2, V3, V4, V5, V6, V7; - XMVECTOR S1, S2, S3; - XMVECTOR C0, C1, C2, C3; - XMVECTOR Sin, Cos; - - XMASSERT(pSin); - XMASSERT(pCos); - - // sin(V) ~= V - V^3 / 3! + V^5 / 5! - V^7 / 7! (for -PI <= V < PI) - // cos(V) ~= 1 - V^2 / 2! + V^4 / 4! - V^6 / 6! (for -PI <= V < PI) - V2 = XMVectorMultiply(V, V); - V3 = XMVectorMultiply(V2, V); - V4 = XMVectorMultiply(V2, V2); - V5 = XMVectorMultiply(V3, V2); - V6 = XMVectorMultiply(V3, V3); - V7 = XMVectorMultiply(V4, V3); - - S1 = XMVectorSplatY(g_XMSinEstCoefficients.v); - S2 = XMVectorSplatZ(g_XMSinEstCoefficients.v); - S3 = XMVectorSplatW(g_XMSinEstCoefficients.v); - - C0 = XMVectorSplatX(g_XMCosEstCoefficients.v); - C1 = XMVectorSplatY(g_XMCosEstCoefficients.v); - C2 = XMVectorSplatZ(g_XMCosEstCoefficients.v); - C3 = XMVectorSplatW(g_XMCosEstCoefficients.v); - - Sin = XMVectorMultiplyAdd(S1, V3, V); - Sin = XMVectorMultiplyAdd(S2, V5, Sin); - Sin = XMVectorMultiplyAdd(S3, V7, Sin); - - Cos = XMVectorMultiplyAdd(C1, V2, C0); - Cos = XMVectorMultiplyAdd(C2, V4, Cos); - Cos = XMVectorMultiplyAdd(C3, V6, Cos); - - *pSin = Sin; - *pCos = Cos; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pSin); - XMASSERT(pCos); - XMVECTOR V2, V3, V4, V5, V6, V7; - XMVECTOR S1, S2, S3; - XMVECTOR C0, C1, C2, C3; - XMVECTOR Sin, Cos; - - // sin(V) ~= V - V^3 / 3! + V^5 / 5! - V^7 / 7! (for -PI <= V < PI) - // cos(V) ~= 1 - V^2 / 2! + V^4 / 4! - V^6 / 6! (for -PI <= V < PI) - V2 = XMVectorMultiply(V, V); - V3 = XMVectorMultiply(V2, V); - V4 = XMVectorMultiply(V2, V2); - V5 = XMVectorMultiply(V3, V2); - V6 = XMVectorMultiply(V3, V3); - V7 = XMVectorMultiply(V4, V3); - - S1 = _mm_load_ps1(&g_XMSinEstCoefficients.f[1]); - S2 = _mm_load_ps1(&g_XMSinEstCoefficients.f[2]); - S3 = _mm_load_ps1(&g_XMSinEstCoefficients.f[3]); - - C0 = _mm_load_ps1(&g_XMCosEstCoefficients.f[0]); - C1 = _mm_load_ps1(&g_XMCosEstCoefficients.f[1]); - C2 = _mm_load_ps1(&g_XMCosEstCoefficients.f[2]); - C3 = _mm_load_ps1(&g_XMCosEstCoefficients.f[3]); - - Sin = XMVectorMultiplyAdd(S1, V3, V); - Sin = XMVectorMultiplyAdd(S2, V5, Sin); - Sin = XMVectorMultiplyAdd(S3, V7, Sin); - - Cos = XMVectorMultiplyAdd(C1, V2, C0); - Cos = XMVectorMultiplyAdd(C2, V4, Cos); - Cos = XMVectorMultiplyAdd(C3, V6, Cos); - - *pSin = Sin; - *pCos = Cos; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorTanEst -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V1, V2, V1T0, V1T1, V2T2; - XMVECTOR T0, T1, T2; - XMVECTOR N, D; - XMVECTOR OneOverPi; - XMVECTOR Result; - - OneOverPi = XMVectorSplatW(g_XMTanEstCoefficients.v); - - V1 = XMVectorMultiply(V, OneOverPi); - V1 = XMVectorRound(V1); - - V1 = XMVectorNegativeMultiplySubtract(g_XMPi.v, V1, V); - - T0 = XMVectorSplatX(g_XMTanEstCoefficients.v); - T1 = XMVectorSplatY(g_XMTanEstCoefficients.v); - T2 = XMVectorSplatZ(g_XMTanEstCoefficients.v); - - V2T2 = XMVectorNegativeMultiplySubtract(V1, V1, T2); - V2 = XMVectorMultiply(V1, V1); - V1T0 = XMVectorMultiply(V1, T0); - V1T1 = XMVectorMultiply(V1, T1); - - D = XMVectorReciprocalEst(V2T2); - N = XMVectorMultiplyAdd(V2, V1T1, V1T0); - - Result = XMVectorMultiply(N, D); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR V1, V2, V1T0, V1T1, V2T2; - XMVECTOR T0, T1, T2; - XMVECTOR N, D; - XMVECTOR OneOverPi; - XMVECTOR Result; - - OneOverPi = XMVectorSplatW(g_XMTanEstCoefficients); - - V1 = XMVectorMultiply(V, OneOverPi); - V1 = XMVectorRound(V1); - - V1 = XMVectorNegativeMultiplySubtract(g_XMPi, V1, V); - - T0 = XMVectorSplatX(g_XMTanEstCoefficients); - T1 = XMVectorSplatY(g_XMTanEstCoefficients); - T2 = XMVectorSplatZ(g_XMTanEstCoefficients); - - V2T2 = XMVectorNegativeMultiplySubtract(V1, V1, T2); - V2 = XMVectorMultiply(V1, V1); - V1T0 = XMVectorMultiply(V1, T0); - V1T1 = XMVectorMultiply(V1, T1); - - D = XMVectorReciprocalEst(V2T2); - N = XMVectorMultiplyAdd(V2, V1T1, V1T0); - - Result = XMVectorMultiply(N, D); - - return Result; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorSinHEst -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V1, V2; - XMVECTOR E1, E2; - XMVECTOR Result; - static CONST XMVECTORF32 Scale = {1.442695040888963f, 1.442695040888963f, 1.442695040888963f, 1.442695040888963f}; // 1.0f / ln(2.0f) - - V1 = XMVectorMultiplyAdd(V, Scale.v, g_XMNegativeOne.v); - V2 = XMVectorNegativeMultiplySubtract(V, Scale.v, g_XMNegativeOne.v); - - E1 = XMVectorExpEst(V1); - E2 = XMVectorExpEst(V2); - - Result = XMVectorSubtract(E1, E2); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR V1, V2; - XMVECTOR E1, E2; - XMVECTOR Result; - static CONST XMVECTORF32 Scale = {1.442695040888963f, 1.442695040888963f, 1.442695040888963f, 1.442695040888963f}; // 1.0f / ln(2.0f) - - V1 = _mm_mul_ps(V,Scale); - V1 = _mm_add_ps(V1,g_XMNegativeOne); - V2 = _mm_mul_ps(V,Scale); - V2 = _mm_sub_ps(g_XMNegativeOne,V2); - E1 = XMVectorExpEst(V1); - E2 = XMVectorExpEst(V2); - Result = _mm_sub_ps(E1, E2); - return Result; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorCosHEst -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V1, V2; - XMVECTOR E1, E2; - XMVECTOR Result; - static CONST XMVECTOR Scale = {1.442695040888963f, 1.442695040888963f, 1.442695040888963f, 1.442695040888963f}; // 1.0f / ln(2.0f) - - V1 = XMVectorMultiplyAdd(V, Scale, g_XMNegativeOne.v); - V2 = XMVectorNegativeMultiplySubtract(V, Scale, g_XMNegativeOne.v); - - E1 = XMVectorExpEst(V1); - E2 = XMVectorExpEst(V2); - - Result = XMVectorAdd(E1, E2); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR V1, V2; - XMVECTOR E1, E2; - XMVECTOR Result; - static CONST XMVECTORF32 Scale = {1.442695040888963f, 1.442695040888963f, 1.442695040888963f, 1.442695040888963f}; // 1.0f / ln(2.0f) - - V1 = _mm_mul_ps(V,Scale); - V1 = _mm_add_ps(V1,g_XMNegativeOne); - V2 = _mm_mul_ps(V, Scale); - V2 = _mm_sub_ps(g_XMNegativeOne,V2); - E1 = XMVectorExpEst(V1); - E2 = XMVectorExpEst(V2); - Result = _mm_add_ps(E1, E2); - return Result; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorTanHEst -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR E; - XMVECTOR Result; - static CONST XMVECTOR Scale = {2.8853900817779268f, 2.8853900817779268f, 2.8853900817779268f, 2.8853900817779268f}; // 2.0f / ln(2.0f) - - E = XMVectorMultiply(V, Scale); - E = XMVectorExpEst(E); - E = XMVectorMultiplyAdd(E, g_XMOneHalf.v, g_XMOneHalf.v); - E = XMVectorReciprocalEst(E); - - Result = XMVectorSubtract(g_XMOne.v, E); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - static CONST XMVECTORF32 Scale = {2.8853900817779268f, 2.8853900817779268f, 2.8853900817779268f, 2.8853900817779268f}; // 2.0f / ln(2.0f) - - XMVECTOR E = _mm_mul_ps(V, Scale); - E = XMVectorExpEst(E); - E = _mm_mul_ps(E,g_XMOneHalf); - E = _mm_add_ps(E,g_XMOneHalf); - E = XMVectorReciprocalEst(E); - E = _mm_sub_ps(g_XMOne, E); - return E; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorASinEst -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR AbsV, V2, VD, VC0, V2C3; - XMVECTOR C0, C1, C2, C3; - XMVECTOR D, Rsq, SqrtD; - XMVECTOR OnePlusEps; - XMVECTOR Result; - - AbsV = XMVectorAbs(V); - - OnePlusEps = XMVectorSplatX(g_XMASinEstConstants.v); - - C0 = XMVectorSplatX(g_XMASinEstCoefficients.v); - C1 = XMVectorSplatY(g_XMASinEstCoefficients.v); - C2 = XMVectorSplatZ(g_XMASinEstCoefficients.v); - C3 = XMVectorSplatW(g_XMASinEstCoefficients.v); - - D = XMVectorSubtract(OnePlusEps, AbsV); - - Rsq = XMVectorReciprocalSqrtEst(D); - SqrtD = XMVectorMultiply(D, Rsq); - - V2 = XMVectorMultiply(V, AbsV); - V2C3 = XMVectorMultiply(V2, C3); - VD = XMVectorMultiply(D, AbsV); - VC0 = XMVectorMultiply(V, C0); - - Result = XMVectorMultiply(V, C1); - Result = XMVectorMultiplyAdd(V2, C2, Result); - Result = XMVectorMultiplyAdd(V2C3, VD, Result); - Result = XMVectorMultiplyAdd(VC0, SqrtD, Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Get abs(V) - XMVECTOR vAbsV = _mm_setzero_ps(); - vAbsV = _mm_sub_ps(vAbsV,V); - vAbsV = _mm_max_ps(vAbsV,V); - - XMVECTOR D = _mm_load_ps1(&g_XMASinEstConstants.f[0]); - D = _mm_sub_ps(D,vAbsV); - // Since this is an estimate, rqsrt is okay - XMVECTOR vConstants = _mm_rsqrt_ps(D); - XMVECTOR SqrtD = _mm_mul_ps(D,vConstants); - // V2 = V^2 retaining sign - XMVECTOR V2 = _mm_mul_ps(V,vAbsV); - D = _mm_mul_ps(D,vAbsV); - - XMVECTOR vResult = _mm_load_ps1(&g_XMASinEstCoefficients.f[1]); - vResult = _mm_mul_ps(vResult,V); - vConstants = _mm_load_ps1(&g_XMASinEstCoefficients.f[2]); - vConstants = _mm_mul_ps(vConstants,V2); - vResult = _mm_add_ps(vResult,vConstants); - - vConstants = _mm_load_ps1(&g_XMASinEstCoefficients.f[3]); - vConstants = _mm_mul_ps(vConstants,V2); - vConstants = _mm_mul_ps(vConstants,D); - vResult = _mm_add_ps(vResult,vConstants); - - vConstants = _mm_load_ps1(&g_XMASinEstCoefficients.f[0]); - vConstants = _mm_mul_ps(vConstants,V); - vConstants = _mm_mul_ps(vConstants,SqrtD); - vResult = _mm_add_ps(vResult,vConstants); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorACosEst -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR AbsV, V2, VD, VC0, V2C3; - XMVECTOR C0, C1, C2, C3; - XMVECTOR D, Rsq, SqrtD; - XMVECTOR OnePlusEps, HalfPi; - XMVECTOR Result; - - // acos(V) = PI / 2 - asin(V) - - AbsV = XMVectorAbs(V); - - OnePlusEps = XMVectorSplatX(g_XMASinEstConstants.v); - HalfPi = XMVectorSplatY(g_XMASinEstConstants.v); - - C0 = XMVectorSplatX(g_XMASinEstCoefficients.v); - C1 = XMVectorSplatY(g_XMASinEstCoefficients.v); - C2 = XMVectorSplatZ(g_XMASinEstCoefficients.v); - C3 = XMVectorSplatW(g_XMASinEstCoefficients.v); - - D = XMVectorSubtract(OnePlusEps, AbsV); - - Rsq = XMVectorReciprocalSqrtEst(D); - SqrtD = XMVectorMultiply(D, Rsq); - - V2 = XMVectorMultiply(V, AbsV); - V2C3 = XMVectorMultiply(V2, C3); - VD = XMVectorMultiply(D, AbsV); - VC0 = XMVectorMultiply(V, C0); - - Result = XMVectorMultiply(V, C1); - Result = XMVectorMultiplyAdd(V2, C2, Result); - Result = XMVectorMultiplyAdd(V2C3, VD, Result); - Result = XMVectorMultiplyAdd(VC0, SqrtD, Result); - Result = XMVectorSubtract(HalfPi, Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // acos(V) = PI / 2 - asin(V) - // Get abs(V) - XMVECTOR vAbsV = _mm_setzero_ps(); - vAbsV = _mm_sub_ps(vAbsV,V); - vAbsV = _mm_max_ps(vAbsV,V); - // Calc D - XMVECTOR D = _mm_load_ps1(&g_XMASinEstConstants.f[0]); - D = _mm_sub_ps(D,vAbsV); - // SqrtD = sqrt(D-abs(V)) estimated - XMVECTOR vConstants = _mm_rsqrt_ps(D); - XMVECTOR SqrtD = _mm_mul_ps(D,vConstants); - // V2 = V^2 while retaining sign - XMVECTOR V2 = _mm_mul_ps(V, vAbsV); - // Drop vAbsV here. D = (Const-abs(V))*abs(V) - D = _mm_mul_ps(D, vAbsV); - - XMVECTOR vResult = _mm_load_ps1(&g_XMASinEstCoefficients.f[1]); - vResult = _mm_mul_ps(vResult,V); - vConstants = _mm_load_ps1(&g_XMASinEstCoefficients.f[2]); - vConstants = _mm_mul_ps(vConstants,V2); - vResult = _mm_add_ps(vResult,vConstants); - - vConstants = _mm_load_ps1(&g_XMASinEstCoefficients.f[3]); - vConstants = _mm_mul_ps(vConstants,V2); - vConstants = _mm_mul_ps(vConstants,D); - vResult = _mm_add_ps(vResult,vConstants); - - vConstants = _mm_load_ps1(&g_XMASinEstCoefficients.f[0]); - vConstants = _mm_mul_ps(vConstants,V); - vConstants = _mm_mul_ps(vConstants,SqrtD); - vResult = _mm_add_ps(vResult,vConstants); - - vConstants = _mm_load_ps1(&g_XMASinEstConstants.f[1]); - vResult = _mm_sub_ps(vConstants,vResult); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorATanEst -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR AbsV, V2S2, N, D; - XMVECTOR S0, S1, S2; - XMVECTOR HalfPi; - XMVECTOR Result; - - S0 = XMVectorSplatX(g_XMATanEstCoefficients.v); - S1 = XMVectorSplatY(g_XMATanEstCoefficients.v); - S2 = XMVectorSplatZ(g_XMATanEstCoefficients.v); - HalfPi = XMVectorSplatW(g_XMATanEstCoefficients.v); - - AbsV = XMVectorAbs(V); - - V2S2 = XMVectorMultiplyAdd(V, V, S2); - N = XMVectorMultiplyAdd(AbsV, HalfPi, S0); - D = XMVectorMultiplyAdd(AbsV, S1, V2S2); - N = XMVectorMultiply(N, V); - D = XMVectorReciprocalEst(D); - - Result = XMVectorMultiply(N, D); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Get abs(V) - XMVECTOR vAbsV = _mm_setzero_ps(); - vAbsV = _mm_sub_ps(vAbsV,V); - vAbsV = _mm_max_ps(vAbsV,V); - - XMVECTOR vResult = _mm_load_ps1(&g_XMATanEstCoefficients.f[3]); - vResult = _mm_mul_ps(vResult,vAbsV); - XMVECTOR vConstants = _mm_load_ps1(&g_XMATanEstCoefficients.f[0]); - vResult = _mm_add_ps(vResult,vConstants); - vResult = _mm_mul_ps(vResult,V); - - XMVECTOR D = _mm_mul_ps(V,V); - vConstants = _mm_load_ps1(&g_XMATanEstCoefficients.f[2]); - D = _mm_add_ps(D,vConstants); - vConstants = _mm_load_ps1(&g_XMATanEstCoefficients.f[1]); - vConstants = _mm_mul_ps(vConstants,vAbsV); - D = _mm_add_ps(D,vConstants); - vResult = _mm_div_ps(vResult,D); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorATan2Est -( - FXMVECTOR Y, - FXMVECTOR X -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Reciprocal; - XMVECTOR V; - XMVECTOR YSign; - XMVECTOR Pi, PiOverTwo, PiOverFour, ThreePiOverFour; - XMVECTOR YEqualsZero, XEqualsZero, XIsPositive, YEqualsInfinity, XEqualsInfinity; - XMVECTOR ATanResultValid; - XMVECTOR R0, R1, R2, R3, R4, R5; - XMVECTOR Zero; - XMVECTOR Result; - static CONST XMVECTOR ATan2Constants = {XM_PI, XM_PIDIV2, XM_PIDIV4, XM_PI * 3.0f / 4.0f}; - - Zero = XMVectorZero(); - ATanResultValid = XMVectorTrueInt(); - - Pi = XMVectorSplatX(ATan2Constants); - PiOverTwo = XMVectorSplatY(ATan2Constants); - PiOverFour = XMVectorSplatZ(ATan2Constants); - ThreePiOverFour = XMVectorSplatW(ATan2Constants); - - YEqualsZero = XMVectorEqual(Y, Zero); - XEqualsZero = XMVectorEqual(X, Zero); - XIsPositive = XMVectorAndInt(X, g_XMNegativeZero.v); - XIsPositive = XMVectorEqualInt(XIsPositive, Zero); - YEqualsInfinity = XMVectorIsInfinite(Y); - XEqualsInfinity = XMVectorIsInfinite(X); - - YSign = XMVectorAndInt(Y, g_XMNegativeZero.v); - Pi = XMVectorOrInt(Pi, YSign); - PiOverTwo = XMVectorOrInt(PiOverTwo, YSign); - PiOverFour = XMVectorOrInt(PiOverFour, YSign); - ThreePiOverFour = XMVectorOrInt(ThreePiOverFour, YSign); - - R1 = XMVectorSelect(Pi, YSign, XIsPositive); - R2 = XMVectorSelect(ATanResultValid, PiOverTwo, XEqualsZero); - R3 = XMVectorSelect(R2, R1, YEqualsZero); - R4 = XMVectorSelect(ThreePiOverFour, PiOverFour, XIsPositive); - R5 = XMVectorSelect(PiOverTwo, R4, XEqualsInfinity); - Result = XMVectorSelect(R3, R5, YEqualsInfinity); - ATanResultValid = XMVectorEqualInt(Result, ATanResultValid); - - Reciprocal = XMVectorReciprocalEst(X); - V = XMVectorMultiply(Y, Reciprocal); - R0 = XMVectorATanEst(V); - - R1 = XMVectorSelect( Pi, Zero, XIsPositive ); - R2 = XMVectorAdd(R0, R1); - - Result = XMVectorSelect(Result, R2, ATanResultValid); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - static CONST XMVECTORF32 ATan2Constants = {XM_PI, XM_PIDIV2, XM_PIDIV4, XM_PI * 3.0f / 4.0f}; - - // Mask if Y>0 && Y!=INF - XMVECTOR YEqualsInfinity = XMVectorIsInfinite(Y); - // Get the sign of (Y&0x80000000) - XMVECTOR YSign = _mm_and_ps(Y, g_XMNegativeZero); - // Get the sign bits of X - XMVECTOR XIsPositive = _mm_and_ps(X,g_XMNegativeZero); - // Change them to masks - XIsPositive = XMVectorEqualInt(XIsPositive,g_XMZero); - // Get Pi - XMVECTOR Pi = _mm_load_ps1(&ATan2Constants.f[0]); - // Copy the sign of Y - Pi = _mm_or_ps(Pi,YSign); - XMVECTOR R1 = XMVectorSelect(Pi,YSign,XIsPositive); - // Mask for X==0 - XMVECTOR vConstants = _mm_cmpeq_ps(X,g_XMZero); - // Get Pi/2 with with sign of Y - XMVECTOR PiOverTwo = _mm_load_ps1(&ATan2Constants.f[1]); - PiOverTwo = _mm_or_ps(PiOverTwo,YSign); - XMVECTOR R2 = XMVectorSelect(g_XMNegOneMask,PiOverTwo,vConstants); - // Mask for Y==0 - vConstants = _mm_cmpeq_ps(Y,g_XMZero); - R2 = XMVectorSelect(R2,R1,vConstants); - // Get Pi/4 with sign of Y - XMVECTOR PiOverFour = _mm_load_ps1(&ATan2Constants.f[2]); - PiOverFour = _mm_or_ps(PiOverFour,YSign); - // Get (Pi*3)/4 with sign of Y - XMVECTOR ThreePiOverFour = _mm_load_ps1(&ATan2Constants.f[3]); - ThreePiOverFour = _mm_or_ps(ThreePiOverFour,YSign); - vConstants = XMVectorSelect(ThreePiOverFour, PiOverFour, XIsPositive); - XMVECTOR XEqualsInfinity = XMVectorIsInfinite(X); - vConstants = XMVectorSelect(PiOverTwo,vConstants,XEqualsInfinity); - - XMVECTOR vResult = XMVectorSelect(R2,vConstants,YEqualsInfinity); - vConstants = XMVectorSelect(R1,vResult,YEqualsInfinity); - // At this point, any entry that's zero will get the result - // from XMVectorATan(), otherwise, return the failsafe value - vResult = XMVectorSelect(vResult,vConstants,XEqualsInfinity); - // Any entries not 0xFFFFFFFF, are considered precalculated - XMVECTOR ATanResultValid = XMVectorEqualInt(vResult,g_XMNegOneMask); - // Let's do the ATan2 function - XMVECTOR Reciprocal = _mm_rcp_ps(X); - vConstants = _mm_mul_ps(Y, Reciprocal); - vConstants = XMVectorATanEst(vConstants); - // Discard entries that have been declared void - - XMVECTOR R3 = XMVectorSelect( Pi, g_XMZero, XIsPositive ); - vConstants = _mm_add_ps( vConstants, R3 ); - - vResult = XMVectorSelect(vResult,vConstants,ATanResultValid); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorLerp -( - FXMVECTOR V0, - FXMVECTOR V1, - FLOAT t -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Scale; - XMVECTOR Length; - XMVECTOR Result; - - // V0 + t * (V1 - V0) - Scale = XMVectorReplicate(t); - Length = XMVectorSubtract(V1, V0); - Result = XMVectorMultiplyAdd(Length, Scale, V0); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR L, S; - XMVECTOR Result; - - L = _mm_sub_ps( V1, V0 ); - - S = _mm_set_ps1( t ); - - Result = _mm_mul_ps( L, S ); - - return _mm_add_ps( Result, V0 ); -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorLerpV -( - FXMVECTOR V0, - FXMVECTOR V1, - FXMVECTOR T -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Length; - XMVECTOR Result; - - // V0 + T * (V1 - V0) - Length = XMVectorSubtract(V1, V0); - Result = XMVectorMultiplyAdd(Length, T, V0); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR Length; - XMVECTOR Result; - - Length = _mm_sub_ps( V1, V0 ); - - Result = _mm_mul_ps( Length, T ); - - return _mm_add_ps( Result, V0 ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorHermite -( - FXMVECTOR Position0, - FXMVECTOR Tangent0, - FXMVECTOR Position1, - CXMVECTOR Tangent1, - FLOAT t -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR P0; - XMVECTOR T0; - XMVECTOR P1; - XMVECTOR T1; - XMVECTOR Result; - FLOAT t2; - FLOAT t3; - - // Result = (2 * t^3 - 3 * t^2 + 1) * Position0 + - // (t^3 - 2 * t^2 + t) * Tangent0 + - // (-2 * t^3 + 3 * t^2) * Position1 + - // (t^3 - t^2) * Tangent1 - t2 = t * t; - t3 = t * t2; - - P0 = XMVectorReplicate(2.0f * t3 - 3.0f * t2 + 1.0f); - T0 = XMVectorReplicate(t3 - 2.0f * t2 + t); - P1 = XMVectorReplicate(-2.0f * t3 + 3.0f * t2); - T1 = XMVectorReplicate(t3 - t2); - - Result = XMVectorMultiply(P0, Position0); - Result = XMVectorMultiplyAdd(T0, Tangent0, Result); - Result = XMVectorMultiplyAdd(P1, Position1, Result); - Result = XMVectorMultiplyAdd(T1, Tangent1, Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - FLOAT t2 = t * t; - FLOAT t3 = t * t2; - - XMVECTOR P0 = _mm_set_ps1(2.0f * t3 - 3.0f * t2 + 1.0f); - XMVECTOR T0 = _mm_set_ps1(t3 - 2.0f * t2 + t); - XMVECTOR P1 = _mm_set_ps1(-2.0f * t3 + 3.0f * t2); - XMVECTOR T1 = _mm_set_ps1(t3 - t2); - - XMVECTOR vResult = _mm_mul_ps(P0, Position0); - XMVECTOR vTemp = _mm_mul_ps(T0, Tangent0); - vResult = _mm_add_ps(vResult,vTemp); - vTemp = _mm_mul_ps(P1, Position1); - vResult = _mm_add_ps(vResult,vTemp); - vTemp = _mm_mul_ps(T1, Tangent1); - vResult = _mm_add_ps(vResult,vTemp); - return vResult; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorHermiteV -( - FXMVECTOR Position0, - FXMVECTOR Tangent0, - FXMVECTOR Position1, - CXMVECTOR Tangent1, - CXMVECTOR T -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR P0; - XMVECTOR T0; - XMVECTOR P1; - XMVECTOR T1; - XMVECTOR Result; - XMVECTOR T2; - XMVECTOR T3; - - // Result = (2 * t^3 - 3 * t^2 + 1) * Position0 + - // (t^3 - 2 * t^2 + t) * Tangent0 + - // (-2 * t^3 + 3 * t^2) * Position1 + - // (t^3 - t^2) * Tangent1 - T2 = XMVectorMultiply(T, T); - T3 = XMVectorMultiply(T , T2); - - P0 = XMVectorReplicate(2.0f * T3.vector4_f32[0] - 3.0f * T2.vector4_f32[0] + 1.0f); - T0 = XMVectorReplicate(T3.vector4_f32[1] - 2.0f * T2.vector4_f32[1] + T.vector4_f32[1]); - P1 = XMVectorReplicate(-2.0f * T3.vector4_f32[2] + 3.0f * T2.vector4_f32[2]); - T1 = XMVectorReplicate(T3.vector4_f32[3] - T2.vector4_f32[3]); - - Result = XMVectorMultiply(P0, Position0); - Result = XMVectorMultiplyAdd(T0, Tangent0, Result); - Result = XMVectorMultiplyAdd(P1, Position1, Result); - Result = XMVectorMultiplyAdd(T1, Tangent1, Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - static const XMVECTORF32 CatMulT2 = {-3.0f,-2.0f,3.0f,-1.0f}; - static const XMVECTORF32 CatMulT3 = {2.0f,1.0f,-2.0f,1.0f}; - - // Result = (2 * t^3 - 3 * t^2 + 1) * Position0 + - // (t^3 - 2 * t^2 + t) * Tangent0 + - // (-2 * t^3 + 3 * t^2) * Position1 + - // (t^3 - t^2) * Tangent1 - XMVECTOR T2 = _mm_mul_ps(T,T); - XMVECTOR T3 = _mm_mul_ps(T,T2); - // Mul by the constants against t^2 - T2 = _mm_mul_ps(T2,CatMulT2); - // Mul by the constants against t^3 - T3 = _mm_mul_ps(T3,CatMulT3); - // T3 now has the pre-result. - T3 = _mm_add_ps(T3,T2); - // I need to add t.y only - T2 = _mm_and_ps(T,g_XMMaskY); - T3 = _mm_add_ps(T3,T2); - // Add 1.0f to x - T3 = _mm_add_ps(T3,g_XMIdentityR0); - // Now, I have the constants created - // Mul the x constant to Position0 - XMVECTOR vResult = _mm_shuffle_ps(T3,T3,_MM_SHUFFLE(0,0,0,0)); - vResult = _mm_mul_ps(vResult,Position0); - // Mul the y constant to Tangent0 - T2 = _mm_shuffle_ps(T3,T3,_MM_SHUFFLE(1,1,1,1)); - T2 = _mm_mul_ps(T2,Tangent0); - vResult = _mm_add_ps(vResult,T2); - // Mul the z constant to Position1 - T2 = _mm_shuffle_ps(T3,T3,_MM_SHUFFLE(2,2,2,2)); - T2 = _mm_mul_ps(T2,Position1); - vResult = _mm_add_ps(vResult,T2); - // Mul the w constant to Tangent1 - T3 = _mm_shuffle_ps(T3,T3,_MM_SHUFFLE(3,3,3,3)); - T3 = _mm_mul_ps(T3,Tangent1); - vResult = _mm_add_ps(vResult,T3); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorCatmullRom -( - FXMVECTOR Position0, - FXMVECTOR Position1, - FXMVECTOR Position2, - CXMVECTOR Position3, - FLOAT t -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR P0; - XMVECTOR P1; - XMVECTOR P2; - XMVECTOR P3; - XMVECTOR Result; - FLOAT t2; - FLOAT t3; - - // Result = ((-t^3 + 2 * t^2 - t) * Position0 + - // (3 * t^3 - 5 * t^2 + 2) * Position1 + - // (-3 * t^3 + 4 * t^2 + t) * Position2 + - // (t^3 - t^2) * Position3) * 0.5 - t2 = t * t; - t3 = t * t2; - - P0 = XMVectorReplicate((-t3 + 2.0f * t2 - t) * 0.5f); - P1 = XMVectorReplicate((3.0f * t3 - 5.0f * t2 + 2.0f) * 0.5f); - P2 = XMVectorReplicate((-3.0f * t3 + 4.0f * t2 + t) * 0.5f); - P3 = XMVectorReplicate((t3 - t2) * 0.5f); - - Result = XMVectorMultiply(P0, Position0); - Result = XMVectorMultiplyAdd(P1, Position1, Result); - Result = XMVectorMultiplyAdd(P2, Position2, Result); - Result = XMVectorMultiplyAdd(P3, Position3, Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - FLOAT t2 = t * t; - FLOAT t3 = t * t2; - - XMVECTOR P0 = _mm_set_ps1((-t3 + 2.0f * t2 - t) * 0.5f); - XMVECTOR P1 = _mm_set_ps1((3.0f * t3 - 5.0f * t2 + 2.0f) * 0.5f); - XMVECTOR P2 = _mm_set_ps1((-3.0f * t3 + 4.0f * t2 + t) * 0.5f); - XMVECTOR P3 = _mm_set_ps1((t3 - t2) * 0.5f); - - P0 = _mm_mul_ps(P0, Position0); - P1 = _mm_mul_ps(P1, Position1); - P2 = _mm_mul_ps(P2, Position2); - P3 = _mm_mul_ps(P3, Position3); - P0 = _mm_add_ps(P0,P1); - P2 = _mm_add_ps(P2,P3); - P0 = _mm_add_ps(P0,P2); - return P0; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorCatmullRomV -( - FXMVECTOR Position0, - FXMVECTOR Position1, - FXMVECTOR Position2, - CXMVECTOR Position3, - CXMVECTOR T -) -{ -#if defined(_XM_NO_INTRINSICS_) - float fx = T.vector4_f32[0]; - float fy = T.vector4_f32[1]; - float fz = T.vector4_f32[2]; - float fw = T.vector4_f32[3]; - XMVECTOR vResult = { - 0.5f*((-fx*fx*fx+2*fx*fx-fx)*Position0.vector4_f32[0]+ - (3*fx*fx*fx-5*fx*fx+2)*Position1.vector4_f32[0]+ - (-3*fx*fx*fx+4*fx*fx+fx)*Position2.vector4_f32[0]+ - (fx*fx*fx-fx*fx)*Position3.vector4_f32[0]), - 0.5f*((-fy*fy*fy+2*fy*fy-fy)*Position0.vector4_f32[1]+ - (3*fy*fy*fy-5*fy*fy+2)*Position1.vector4_f32[1]+ - (-3*fy*fy*fy+4*fy*fy+fy)*Position2.vector4_f32[1]+ - (fy*fy*fy-fy*fy)*Position3.vector4_f32[1]), - 0.5f*((-fz*fz*fz+2*fz*fz-fz)*Position0.vector4_f32[2]+ - (3*fz*fz*fz-5*fz*fz+2)*Position1.vector4_f32[2]+ - (-3*fz*fz*fz+4*fz*fz+fz)*Position2.vector4_f32[2]+ - (fz*fz*fz-fz*fz)*Position3.vector4_f32[2]), - 0.5f*((-fw*fw*fw+2*fw*fw-fw)*Position0.vector4_f32[3]+ - (3*fw*fw*fw-5*fw*fw+2)*Position1.vector4_f32[3]+ - (-3*fw*fw*fw+4*fw*fw+fw)*Position2.vector4_f32[3]+ - (fw*fw*fw-fw*fw)*Position3.vector4_f32[3]) - }; - return vResult; -#elif defined(_XM_SSE_INTRINSICS_) - static const XMVECTORF32 Catmul2 = {2.0f,2.0f,2.0f,2.0f}; - static const XMVECTORF32 Catmul3 = {3.0f,3.0f,3.0f,3.0f}; - static const XMVECTORF32 Catmul4 = {4.0f,4.0f,4.0f,4.0f}; - static const XMVECTORF32 Catmul5 = {5.0f,5.0f,5.0f,5.0f}; - // Cache T^2 and T^3 - XMVECTOR T2 = _mm_mul_ps(T,T); - XMVECTOR T3 = _mm_mul_ps(T,T2); - // Perform the Position0 term - XMVECTOR vResult = _mm_add_ps(T2,T2); - vResult = _mm_sub_ps(vResult,T); - vResult = _mm_sub_ps(vResult,T3); - vResult = _mm_mul_ps(vResult,Position0); - // Perform the Position1 term and add - XMVECTOR vTemp = _mm_mul_ps(T3,Catmul3); - XMVECTOR vTemp2 = _mm_mul_ps(T2,Catmul5); - vTemp = _mm_sub_ps(vTemp,vTemp2); - vTemp = _mm_add_ps(vTemp,Catmul2); - vTemp = _mm_mul_ps(vTemp,Position1); - vResult = _mm_add_ps(vResult,vTemp); - // Perform the Position2 term and add - vTemp = _mm_mul_ps(T2,Catmul4); - vTemp2 = _mm_mul_ps(T3,Catmul3); - vTemp = _mm_sub_ps(vTemp,vTemp2); - vTemp = _mm_add_ps(vTemp,T); - vTemp = _mm_mul_ps(vTemp,Position2); - vResult = _mm_add_ps(vResult,vTemp); - // Position3 is the last term - T3 = _mm_sub_ps(T3,T2); - T3 = _mm_mul_ps(T3,Position3); - vResult = _mm_add_ps(vResult,T3); - // Multiply by 0.5f and exit - vResult = _mm_mul_ps(vResult,g_XMOneHalf); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorBaryCentric -( - FXMVECTOR Position0, - FXMVECTOR Position1, - FXMVECTOR Position2, - FLOAT f, - FLOAT g -) -{ -#if defined(_XM_NO_INTRINSICS_) - - // Result = Position0 + f * (Position1 - Position0) + g * (Position2 - Position0) - XMVECTOR P10; - XMVECTOR P20; - XMVECTOR ScaleF; - XMVECTOR ScaleG; - XMVECTOR Result; - - P10 = XMVectorSubtract(Position1, Position0); - ScaleF = XMVectorReplicate(f); - - P20 = XMVectorSubtract(Position2, Position0); - ScaleG = XMVectorReplicate(g); - - Result = XMVectorMultiplyAdd(P10, ScaleF, Position0); - Result = XMVectorMultiplyAdd(P20, ScaleG, Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR R1 = _mm_sub_ps(Position1,Position0); - XMVECTOR SF = _mm_set_ps1(f); - XMVECTOR R2 = _mm_sub_ps(Position2,Position0); - XMVECTOR SG = _mm_set_ps1(g); - R1 = _mm_mul_ps(R1,SF); - R2 = _mm_mul_ps(R2,SG); - R1 = _mm_add_ps(R1,Position0); - R1 = _mm_add_ps(R1,R2); - return R1; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVectorBaryCentricV -( - FXMVECTOR Position0, - FXMVECTOR Position1, - FXMVECTOR Position2, - CXMVECTOR F, - CXMVECTOR G -) -{ -#if defined(_XM_NO_INTRINSICS_) - - // Result = Position0 + f * (Position1 - Position0) + g * (Position2 - Position0) - XMVECTOR P10; - XMVECTOR P20; - XMVECTOR Result; - - P10 = XMVectorSubtract(Position1, Position0); - P20 = XMVectorSubtract(Position2, Position0); - - Result = XMVectorMultiplyAdd(P10, F, Position0); - Result = XMVectorMultiplyAdd(P20, G, Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR R1 = _mm_sub_ps(Position1,Position0); - XMVECTOR R2 = _mm_sub_ps(Position2,Position0); - R1 = _mm_mul_ps(R1,F); - R2 = _mm_mul_ps(R2,G); - R1 = _mm_add_ps(R1,Position0); - R1 = _mm_add_ps(R1,R2); - return R1; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -/**************************************************************************** - * - * 2D Vector - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ -// Comparison operations -//------------------------------------------------------------------------------ - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector2Equal -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - return (((V1.vector4_f32[0] == V2.vector4_f32[0]) && (V1.vector4_f32[1] == V2.vector4_f32[1])) != 0); -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp = _mm_cmpeq_ps(V1,V2); -// z and w are don't care - return (((_mm_movemask_ps(vTemp)&3)==3) != 0); -#else // _XM_VMX128_INTRINSICS_ - return XMComparisonAllTrue(XMVector2EqualR(V1, V2)); -#endif -} - - -//------------------------------------------------------------------------------ - -XMFINLINE UINT XMVector2EqualR -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - UINT CR = 0; - - if ((V1.vector4_f32[0] == V2.vector4_f32[0]) && - (V1.vector4_f32[1] == V2.vector4_f32[1])) - { - CR = XM_CRMASK_CR6TRUE; - } - else if ((V1.vector4_f32[0] != V2.vector4_f32[0]) && - (V1.vector4_f32[1] != V2.vector4_f32[1])) - { - CR = XM_CRMASK_CR6FALSE; - } - return CR; -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp = _mm_cmpeq_ps(V1,V2); -// z and w are don't care - int iTest = _mm_movemask_ps(vTemp)&3; - UINT CR = 0; - if (iTest==3) - { - CR = XM_CRMASK_CR6TRUE; - } - else if (!iTest) - { - CR = XM_CRMASK_CR6FALSE; - } - return CR; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector2EqualInt -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - return (((V1.vector4_u32[0] == V2.vector4_u32[0]) && (V1.vector4_u32[1] == V2.vector4_u32[1])) != 0); -#elif defined(_XM_SSE_INTRINSICS_) - __m128i vTemp = _mm_cmpeq_epi32(reinterpret_cast(&V1)[0],reinterpret_cast(&V2)[0]); - return (((_mm_movemask_ps(reinterpret_cast(&vTemp)[0])&3)==3) != 0); -#else // _XM_VMX128_INTRINSICS_ - return XMComparisonAllTrue(XMVector2EqualIntR(V1, V2)); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE UINT XMVector2EqualIntR -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - UINT CR = 0; - if ((V1.vector4_u32[0] == V2.vector4_u32[0]) && - (V1.vector4_u32[1] == V2.vector4_u32[1])) - { - CR = XM_CRMASK_CR6TRUE; - } - else if ((V1.vector4_u32[0] != V2.vector4_u32[0]) && - (V1.vector4_u32[1] != V2.vector4_u32[1])) - { - CR = XM_CRMASK_CR6FALSE; - } - return CR; - -#elif defined(_XM_SSE_INTRINSICS_) - __m128i vTemp = _mm_cmpeq_epi32(reinterpret_cast(&V1)[0],reinterpret_cast(&V2)[0]); - int iTest = _mm_movemask_ps(reinterpret_cast(&vTemp)[0])&3; - UINT CR = 0; - if (iTest==3) - { - CR = XM_CRMASK_CR6TRUE; - } - else if (!iTest) - { - CR = XM_CRMASK_CR6FALSE; - } - return CR; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector2NearEqual -( - FXMVECTOR V1, - FXMVECTOR V2, - FXMVECTOR Epsilon -) -{ -#if defined(_XM_NO_INTRINSICS_) - FLOAT dx, dy; - dx = fabsf(V1.vector4_f32[0]-V2.vector4_f32[0]); - dy = fabsf(V1.vector4_f32[1]-V2.vector4_f32[1]); - return ((dx <= Epsilon.vector4_f32[0]) && - (dy <= Epsilon.vector4_f32[1])); -#elif defined(_XM_SSE_INTRINSICS_) - // Get the difference - XMVECTOR vDelta = _mm_sub_ps(V1,V2); - // Get the absolute value of the difference - XMVECTOR vTemp = _mm_setzero_ps(); - vTemp = _mm_sub_ps(vTemp,vDelta); - vTemp = _mm_max_ps(vTemp,vDelta); - vTemp = _mm_cmple_ps(vTemp,Epsilon); - // z and w are don't care - return (((_mm_movemask_ps(vTemp)&3)==0x3) != 0); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector2NotEqual -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - return (((V1.vector4_f32[0] != V2.vector4_f32[0]) || (V1.vector4_f32[1] != V2.vector4_f32[1])) != 0); -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp = _mm_cmpeq_ps(V1,V2); -// z and w are don't care - return (((_mm_movemask_ps(vTemp)&3)!=3) != 0); -#else // _XM_VMX128_INTRINSICS_ - return XMComparisonAnyFalse(XMVector2EqualR(V1, V2)); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector2NotEqualInt -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - return (((V1.vector4_u32[0] != V2.vector4_u32[0]) || (V1.vector4_u32[1] != V2.vector4_u32[1])) != 0); -#elif defined(_XM_SSE_INTRINSICS_) - __m128i vTemp = _mm_cmpeq_epi32(reinterpret_cast(&V1)[0],reinterpret_cast(&V2)[0]); - return (((_mm_movemask_ps(reinterpret_cast(&vTemp)[0])&3)!=3) != 0); -#else // _XM_VMX128_INTRINSICS_ - return XMComparisonAnyFalse(XMVector2EqualIntR(V1, V2)); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector2Greater -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - return (((V1.vector4_f32[0] > V2.vector4_f32[0]) && (V1.vector4_f32[1] > V2.vector4_f32[1])) != 0); - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp = _mm_cmpgt_ps(V1,V2); -// z and w are don't care - return (((_mm_movemask_ps(vTemp)&3)==3) != 0); -#else // _XM_VMX128_INTRINSICS_ - return XMComparisonAllTrue(XMVector2GreaterR(V1, V2)); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE UINT XMVector2GreaterR -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - UINT CR = 0; - if ((V1.vector4_f32[0] > V2.vector4_f32[0]) && - (V1.vector4_f32[1] > V2.vector4_f32[1])) - { - CR = XM_CRMASK_CR6TRUE; - } - else if ((V1.vector4_f32[0] <= V2.vector4_f32[0]) && - (V1.vector4_f32[1] <= V2.vector4_f32[1])) - { - CR = XM_CRMASK_CR6FALSE; - } - return CR; -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp = _mm_cmpgt_ps(V1,V2); - int iTest = _mm_movemask_ps(vTemp)&3; - UINT CR = 0; - if (iTest==3) - { - CR = XM_CRMASK_CR6TRUE; - } - else if (!iTest) - { - CR = XM_CRMASK_CR6FALSE; - } - return CR; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector2GreaterOrEqual -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - return (((V1.vector4_f32[0] >= V2.vector4_f32[0]) && (V1.vector4_f32[1] >= V2.vector4_f32[1])) != 0); -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp = _mm_cmpge_ps(V1,V2); - return (((_mm_movemask_ps(vTemp)&3)==3) != 0); -#else // _XM_VMX128_INTRINSICS_ - return XMComparisonAllTrue(XMVector2GreaterOrEqualR(V1, V2)); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE UINT XMVector2GreaterOrEqualR -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - UINT CR = 0; - if ((V1.vector4_f32[0] >= V2.vector4_f32[0]) && - (V1.vector4_f32[1] >= V2.vector4_f32[1])) - { - CR = XM_CRMASK_CR6TRUE; - } - else if ((V1.vector4_f32[0] < V2.vector4_f32[0]) && - (V1.vector4_f32[1] < V2.vector4_f32[1])) - { - CR = XM_CRMASK_CR6FALSE; - } - return CR; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp = _mm_cmpge_ps(V1,V2); - int iTest = _mm_movemask_ps(vTemp)&3; - UINT CR = 0; - if (iTest == 3) - { - CR = XM_CRMASK_CR6TRUE; - } - else if (!iTest) - { - CR = XM_CRMASK_CR6FALSE; - } - return CR; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector2Less -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - return (((V1.vector4_f32[0] < V2.vector4_f32[0]) && (V1.vector4_f32[1] < V2.vector4_f32[1])) != 0); -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp = _mm_cmplt_ps(V1,V2); - return (((_mm_movemask_ps(vTemp)&3)==3) != 0); -#else // _XM_VMX128_INTRINSICS_ - return XMComparisonAllTrue(XMVector2GreaterR(V2, V1)); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector2LessOrEqual -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - return (((V1.vector4_f32[0] <= V2.vector4_f32[0]) && (V1.vector4_f32[1] <= V2.vector4_f32[1])) != 0); -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp = _mm_cmple_ps(V1,V2); - return (((_mm_movemask_ps(vTemp)&3)==3) != 0); -#else // _XM_VMX128_INTRINSICS_ - return XMComparisonAllTrue(XMVector2GreaterOrEqualR(V2, V1)); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector2InBounds -( - FXMVECTOR V, - FXMVECTOR Bounds -) -{ - #if defined(_XM_NO_INTRINSICS_) - return (((V.vector4_f32[0] <= Bounds.vector4_f32[0] && V.vector4_f32[0] >= -Bounds.vector4_f32[0]) && - (V.vector4_f32[1] <= Bounds.vector4_f32[1] && V.vector4_f32[1] >= -Bounds.vector4_f32[1])) != 0); - #elif defined(_XM_SSE_INTRINSICS_) - // Test if less than or equal - XMVECTOR vTemp1 = _mm_cmple_ps(V,Bounds); - // Negate the bounds - XMVECTOR vTemp2 = _mm_mul_ps(Bounds,g_XMNegativeOne); - // Test if greater or equal (Reversed) - vTemp2 = _mm_cmple_ps(vTemp2,V); - // Blend answers - vTemp1 = _mm_and_ps(vTemp1,vTemp2); - // x and y in bounds? (z and w are don't care) - return (((_mm_movemask_ps(vTemp1)&0x3)==0x3) != 0); -#else // _XM_VMX128_INTRINSICS_ - return XMComparisonAllInBounds(XMVector2InBoundsR(V, Bounds)); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE UINT XMVector2InBoundsR -( - FXMVECTOR V, - FXMVECTOR Bounds -) -{ -#if defined(_XM_NO_INTRINSICS_) - UINT CR = 0; - if ((V.vector4_f32[0] <= Bounds.vector4_f32[0] && V.vector4_f32[0] >= -Bounds.vector4_f32[0]) && - (V.vector4_f32[1] <= Bounds.vector4_f32[1] && V.vector4_f32[1] >= -Bounds.vector4_f32[1])) - { - CR = XM_CRMASK_CR6BOUNDS; - } - return CR; - -#elif defined(_XM_SSE_INTRINSICS_) - // Test if less than or equal - XMVECTOR vTemp1 = _mm_cmple_ps(V,Bounds); - // Negate the bounds - XMVECTOR vTemp2 = _mm_mul_ps(Bounds,g_XMNegativeOne); - // Test if greater or equal (Reversed) - vTemp2 = _mm_cmple_ps(vTemp2,V); - // Blend answers - vTemp1 = _mm_and_ps(vTemp1,vTemp2); - // x and y in bounds? (z and w are don't care) - return ((_mm_movemask_ps(vTemp1)&0x3)==0x3) ? XM_CRMASK_CR6BOUNDS : 0; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector2IsNaN -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - return (XMISNAN(V.vector4_f32[0]) || - XMISNAN(V.vector4_f32[1])); -#elif defined(_XM_SSE_INTRINSICS_) - // Mask off the exponent - __m128i vTempInf = _mm_and_si128(reinterpret_cast(&V)[0],g_XMInfinity); - // Mask off the mantissa - __m128i vTempNan = _mm_and_si128(reinterpret_cast(&V)[0],g_XMQNaNTest); - // Are any of the exponents == 0x7F800000? - vTempInf = _mm_cmpeq_epi32(vTempInf,g_XMInfinity); - // Are any of the mantissa's zero? (SSE2 doesn't have a neq test) - vTempNan = _mm_cmpeq_epi32(vTempNan,g_XMZero); - // Perform a not on the NaN test to be true on NON-zero mantissas - vTempNan = _mm_andnot_si128(vTempNan,vTempInf); - // If x or y are NaN, the signs are true after the merge above - return ((_mm_movemask_ps(reinterpret_cast(&vTempNan)[0])&3) != 0); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector2IsInfinite -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - return (XMISINF(V.vector4_f32[0]) || - XMISINF(V.vector4_f32[1])); -#elif defined(_XM_SSE_INTRINSICS_) - // Mask off the sign bit - __m128 vTemp = _mm_and_ps(V,g_XMAbsMask); - // Compare to infinity - vTemp = _mm_cmpeq_ps(vTemp,g_XMInfinity); - // If x or z are infinity, the signs are true. - return ((_mm_movemask_ps(vTemp)&3) != 0); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Computation operations -//------------------------------------------------------------------------------ - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector2Dot -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - - Result.vector4_f32[0] = - Result.vector4_f32[1] = - Result.vector4_f32[2] = - Result.vector4_f32[3] = V1.vector4_f32[0] * V2.vector4_f32[0] + V1.vector4_f32[1] * V2.vector4_f32[1]; - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Perform the dot product on x and y - XMVECTOR vLengthSq = _mm_mul_ps(V1,V2); - // vTemp has y splatted - XMVECTOR vTemp = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(1,1,1,1)); - // x+y - vLengthSq = _mm_add_ss(vLengthSq,vTemp); - vLengthSq = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(0,0,0,0)); - return vLengthSq; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector2Cross -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - FLOAT fCross = (V1.vector4_f32[0] * V2.vector4_f32[1]) - (V1.vector4_f32[1] * V2.vector4_f32[0]); - XMVECTOR vResult = { - fCross, - fCross, - fCross, - fCross - }; - return vResult; -#elif defined(_XM_SSE_INTRINSICS_) - // Swap x and y - XMVECTOR vResult = _mm_shuffle_ps(V2,V2,_MM_SHUFFLE(0,1,0,1)); - // Perform the muls - vResult = _mm_mul_ps(vResult,V1); - // Splat y - XMVECTOR vTemp = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(1,1,1,1)); - // Sub the values - vResult = _mm_sub_ss(vResult,vTemp); - // Splat the cross product - vResult = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(0,0,0,0)); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector2LengthSq -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - return XMVector2Dot(V, V); -#elif defined(_XM_SSE_INTRINSICS_) - // Perform the dot product on x and y - XMVECTOR vLengthSq = _mm_mul_ps(V,V); - // vTemp has y splatted - XMVECTOR vTemp = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(1,1,1,1)); - // x+y - vLengthSq = _mm_add_ss(vLengthSq,vTemp); - vLengthSq = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(0,0,0,0)); - return vLengthSq; -#else - return XMVector2Dot(V, V); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector2ReciprocalLengthEst -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - - Result = XMVector2LengthSq(V); - Result = XMVectorReciprocalSqrtEst(Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Perform the dot product on x and y - XMVECTOR vLengthSq = _mm_mul_ps(V,V); - // vTemp has y splatted - XMVECTOR vTemp = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(1,1,1,1)); - // x+y - vLengthSq = _mm_add_ss(vLengthSq,vTemp); - vLengthSq = _mm_rsqrt_ss(vLengthSq); - vLengthSq = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(0,0,0,0)); - return vLengthSq; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector2ReciprocalLength -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - - Result = XMVector2LengthSq(V); - Result = XMVectorReciprocalSqrt(Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Perform the dot product on x and y - XMVECTOR vLengthSq = _mm_mul_ps(V,V); - // vTemp has y splatted - XMVECTOR vTemp = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(1,1,1,1)); - // x+y - vLengthSq = _mm_add_ss(vLengthSq,vTemp); - vLengthSq = _mm_sqrt_ss(vLengthSq); - vLengthSq = _mm_div_ss(g_XMOne,vLengthSq); - vLengthSq = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(0,0,0,0)); - return vLengthSq; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector2LengthEst -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR Result; - Result = XMVector2LengthSq(V); - Result = XMVectorSqrtEst(Result); - return Result; -#elif defined(_XM_SSE_INTRINSICS_) - // Perform the dot product on x and y - XMVECTOR vLengthSq = _mm_mul_ps(V,V); - // vTemp has y splatted - XMVECTOR vTemp = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(1,1,1,1)); - // x+y - vLengthSq = _mm_add_ss(vLengthSq,vTemp); - vLengthSq = _mm_sqrt_ss(vLengthSq); - vLengthSq = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(0,0,0,0)); - return vLengthSq; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector2Length -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - Result = XMVector2LengthSq(V); - Result = XMVectorSqrt(Result); - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Perform the dot product on x and y - XMVECTOR vLengthSq = _mm_mul_ps(V,V); - // vTemp has y splatted - XMVECTOR vTemp = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(1,1,1,1)); - // x+y - vLengthSq = _mm_add_ss(vLengthSq,vTemp); - vLengthSq = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(0,0,0,0)); - vLengthSq = _mm_sqrt_ps(vLengthSq); - return vLengthSq; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// XMVector2NormalizeEst uses a reciprocal estimate and -// returns QNaN on zero and infinite vectors. - -XMFINLINE XMVECTOR XMVector2NormalizeEst -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - Result = XMVector2ReciprocalLength(V); - Result = XMVectorMultiply(V, Result); - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Perform the dot product on x and y - XMVECTOR vLengthSq = _mm_mul_ps(V,V); - // vTemp has y splatted - XMVECTOR vTemp = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(1,1,1,1)); - // x+y - vLengthSq = _mm_add_ss(vLengthSq,vTemp); - vLengthSq = _mm_rsqrt_ss(vLengthSq); - vLengthSq = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(0,0,0,0)); - vLengthSq = _mm_mul_ps(vLengthSq,V); - return vLengthSq; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector2Normalize -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - FLOAT fLength; - XMVECTOR vResult; - - vResult = XMVector2Length( V ); - fLength = vResult.vector4_f32[0]; - - // Prevent divide by zero - if (fLength > 0) { - fLength = 1.0f/fLength; - } - - vResult.vector4_f32[0] = V.vector4_f32[0]*fLength; - vResult.vector4_f32[1] = V.vector4_f32[1]*fLength; - vResult.vector4_f32[2] = V.vector4_f32[2]*fLength; - vResult.vector4_f32[3] = V.vector4_f32[3]*fLength; - return vResult; - -#elif defined(_XM_SSE_INTRINSICS_) - // Perform the dot product on x and y only - XMVECTOR vLengthSq = _mm_mul_ps(V,V); - XMVECTOR vTemp = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(1,1,1,1)); - vLengthSq = _mm_add_ss(vLengthSq,vTemp); - vLengthSq = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(0,0,0,0)); - // Prepare for the division - XMVECTOR vResult = _mm_sqrt_ps(vLengthSq); - // Create zero with a single instruction - XMVECTOR vZeroMask = _mm_setzero_ps(); - // Test for a divide by zero (Must be FP to detect -0.0) - vZeroMask = _mm_cmpneq_ps(vZeroMask,vResult); - // Failsafe on zero (Or epsilon) length planes - // If the length is infinity, set the elements to zero - vLengthSq = _mm_cmpneq_ps(vLengthSq,g_XMInfinity); - // Reciprocal mul to perform the normalization - vResult = _mm_div_ps(V,vResult); - // Any that are infinity, set to zero - vResult = _mm_and_ps(vResult,vZeroMask); - // Select qnan or result based on infinite length - XMVECTOR vTemp1 = _mm_andnot_ps(vLengthSq,g_XMQNaN); - XMVECTOR vTemp2 = _mm_and_ps(vResult,vLengthSq); - vResult = _mm_or_ps(vTemp1,vTemp2); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector2ClampLength -( - FXMVECTOR V, - FLOAT LengthMin, - FLOAT LengthMax -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR ClampMax; - XMVECTOR ClampMin; - - ClampMax = XMVectorReplicate(LengthMax); - ClampMin = XMVectorReplicate(LengthMin); - - return XMVector2ClampLengthV(V, ClampMin, ClampMax); - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR ClampMax = _mm_set_ps1(LengthMax); - XMVECTOR ClampMin = _mm_set_ps1(LengthMin); - return XMVector2ClampLengthV(V, ClampMin, ClampMax); -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector2ClampLengthV -( - FXMVECTOR V, - FXMVECTOR LengthMin, - FXMVECTOR LengthMax -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR ClampLength; - XMVECTOR LengthSq; - XMVECTOR RcpLength; - XMVECTOR Length; - XMVECTOR Normal; - XMVECTOR Zero; - XMVECTOR InfiniteLength; - XMVECTOR ZeroLength; - XMVECTOR Select; - XMVECTOR ControlMax; - XMVECTOR ControlMin; - XMVECTOR Control; - XMVECTOR Result; - - XMASSERT((LengthMin.vector4_f32[1] == LengthMin.vector4_f32[0])); - XMASSERT((LengthMax.vector4_f32[1] == LengthMax.vector4_f32[0])); - XMASSERT(XMVector2GreaterOrEqual(LengthMin, XMVectorZero())); - XMASSERT(XMVector2GreaterOrEqual(LengthMax, XMVectorZero())); - XMASSERT(XMVector2GreaterOrEqual(LengthMax, LengthMin)); - - LengthSq = XMVector2LengthSq(V); - - Zero = XMVectorZero(); - - RcpLength = XMVectorReciprocalSqrt(LengthSq); - - InfiniteLength = XMVectorEqualInt(LengthSq, g_XMInfinity.v); - ZeroLength = XMVectorEqual(LengthSq, Zero); - - Length = XMVectorMultiply(LengthSq, RcpLength); - - Normal = XMVectorMultiply(V, RcpLength); - - Select = XMVectorEqualInt(InfiniteLength, ZeroLength); - Length = XMVectorSelect(LengthSq, Length, Select); - Normal = XMVectorSelect(LengthSq, Normal, Select); - - ControlMax = XMVectorGreater(Length, LengthMax); - ControlMin = XMVectorLess(Length, LengthMin); - - ClampLength = XMVectorSelect(Length, LengthMax, ControlMax); - ClampLength = XMVectorSelect(ClampLength, LengthMin, ControlMin); - - Result = XMVectorMultiply(Normal, ClampLength); - - // Preserve the original vector (with no precision loss) if the length falls within the given range - Control = XMVectorEqualInt(ControlMax, ControlMin); - Result = XMVectorSelect(Result, V, Control); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR ClampLength; - XMVECTOR LengthSq; - XMVECTOR RcpLength; - XMVECTOR Length; - XMVECTOR Normal; - XMVECTOR InfiniteLength; - XMVECTOR ZeroLength; - XMVECTOR Select; - XMVECTOR ControlMax; - XMVECTOR ControlMin; - XMVECTOR Control; - XMVECTOR Result; - - XMASSERT((XMVectorGetY(LengthMin) == XMVectorGetX(LengthMin))); - XMASSERT((XMVectorGetY(LengthMax) == XMVectorGetX(LengthMax))); - XMASSERT(XMVector2GreaterOrEqual(LengthMin, g_XMZero)); - XMASSERT(XMVector2GreaterOrEqual(LengthMax, g_XMZero)); - XMASSERT(XMVector2GreaterOrEqual(LengthMax, LengthMin)); - LengthSq = XMVector2LengthSq(V); - RcpLength = XMVectorReciprocalSqrt(LengthSq); - InfiniteLength = XMVectorEqualInt(LengthSq, g_XMInfinity); - ZeroLength = XMVectorEqual(LengthSq, g_XMZero); - Length = _mm_mul_ps(LengthSq, RcpLength); - Normal = _mm_mul_ps(V, RcpLength); - Select = XMVectorEqualInt(InfiniteLength, ZeroLength); - Length = XMVectorSelect(LengthSq, Length, Select); - Normal = XMVectorSelect(LengthSq, Normal, Select); - ControlMax = XMVectorGreater(Length, LengthMax); - ControlMin = XMVectorLess(Length, LengthMin); - ClampLength = XMVectorSelect(Length, LengthMax, ControlMax); - ClampLength = XMVectorSelect(ClampLength, LengthMin, ControlMin); - Result = _mm_mul_ps(Normal, ClampLength); - // Preserve the original vector (with no precision loss) if the length falls within the given range - Control = XMVectorEqualInt(ControlMax, ControlMin); - Result = XMVectorSelect(Result, V, Control); - return Result; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector2Reflect -( - FXMVECTOR Incident, - FXMVECTOR Normal -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - - // Result = Incident - (2 * dot(Incident, Normal)) * Normal - Result = XMVector2Dot(Incident, Normal); - Result = XMVectorAdd(Result, Result); - Result = XMVectorNegativeMultiplySubtract(Result, Normal, Incident); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Result = Incident - (2 * dot(Incident, Normal)) * Normal - XMVECTOR Result = XMVector2Dot(Incident,Normal); - Result = _mm_add_ps(Result, Result); - Result = _mm_mul_ps(Result, Normal); - Result = _mm_sub_ps(Incident,Result); - return Result; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector2Refract -( - FXMVECTOR Incident, - FXMVECTOR Normal, - FLOAT RefractionIndex -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR Index; - Index = XMVectorReplicate(RefractionIndex); - return XMVector2RefractV(Incident, Normal, Index); - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR Index = _mm_set_ps1(RefractionIndex); - return XMVector2RefractV(Incident,Normal,Index); -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -// Return the refraction of a 2D vector -XMFINLINE XMVECTOR XMVector2RefractV -( - FXMVECTOR Incident, - FXMVECTOR Normal, - FXMVECTOR RefractionIndex -) -{ -#if defined(_XM_NO_INTRINSICS_) - float IDotN; - float RX,RY; - XMVECTOR vResult; - // Result = RefractionIndex * Incident - Normal * (RefractionIndex * dot(Incident, Normal) + - // sqrt(1 - RefractionIndex * RefractionIndex * (1 - dot(Incident, Normal) * dot(Incident, Normal)))) - IDotN = (Incident.vector4_f32[0]*Normal.vector4_f32[0])+(Incident.vector4_f32[1]*Normal.vector4_f32[1]); - // R = 1.0f - RefractionIndex * RefractionIndex * (1.0f - IDotN * IDotN) - RY = 1.0f-(IDotN*IDotN); - RX = 1.0f-(RY*RefractionIndex.vector4_f32[0]*RefractionIndex.vector4_f32[0]); - RY = 1.0f-(RY*RefractionIndex.vector4_f32[1]*RefractionIndex.vector4_f32[1]); - if (RX>=0.0f) { - RX = (RefractionIndex.vector4_f32[0]*Incident.vector4_f32[0])-(Normal.vector4_f32[0]*((RefractionIndex.vector4_f32[0]*IDotN)+sqrtf(RX))); - } else { - RX = 0.0f; - } - if (RY>=0.0f) { - RY = (RefractionIndex.vector4_f32[1]*Incident.vector4_f32[1])-(Normal.vector4_f32[1]*((RefractionIndex.vector4_f32[1]*IDotN)+sqrtf(RY))); - } else { - RY = 0.0f; - } - vResult.vector4_f32[0] = RX; - vResult.vector4_f32[1] = RY; - vResult.vector4_f32[2] = 0.0f; - vResult.vector4_f32[3] = 0.0f; - return vResult; -#elif defined(_XM_SSE_INTRINSICS_) - // Result = RefractionIndex * Incident - Normal * (RefractionIndex * dot(Incident, Normal) + - // sqrt(1 - RefractionIndex * RefractionIndex * (1 - dot(Incident, Normal) * dot(Incident, Normal)))) - // Get the 2D Dot product of Incident-Normal - XMVECTOR IDotN = _mm_mul_ps(Incident,Normal); - XMVECTOR vTemp = _mm_shuffle_ps(IDotN,IDotN,_MM_SHUFFLE(1,1,1,1)); - IDotN = _mm_add_ss(IDotN,vTemp); - IDotN = _mm_shuffle_ps(IDotN,IDotN,_MM_SHUFFLE(0,0,0,0)); - // vTemp = 1.0f - RefractionIndex * RefractionIndex * (1.0f - IDotN * IDotN) - vTemp = _mm_mul_ps(IDotN,IDotN); - vTemp = _mm_sub_ps(g_XMOne,vTemp); - vTemp = _mm_mul_ps(vTemp,RefractionIndex); - vTemp = _mm_mul_ps(vTemp,RefractionIndex); - vTemp = _mm_sub_ps(g_XMOne,vTemp); - // If any terms are <=0, sqrt() will fail, punt to zero - XMVECTOR vMask = _mm_cmpgt_ps(vTemp,g_XMZero); - // R = RefractionIndex * IDotN + sqrt(R) - vTemp = _mm_sqrt_ps(vTemp); - XMVECTOR vResult = _mm_mul_ps(RefractionIndex,IDotN); - vTemp = _mm_add_ps(vTemp,vResult); - // Result = RefractionIndex * Incident - Normal * R - vResult = _mm_mul_ps(RefractionIndex,Incident); - vTemp = _mm_mul_ps(vTemp,Normal); - vResult = _mm_sub_ps(vResult,vTemp); - vResult = _mm_and_ps(vResult,vMask); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector2Orthogonal -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - - Result.vector4_f32[0] = -V.vector4_f32[1]; - Result.vector4_f32[1] = V.vector4_f32[0]; - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(3,2,0,1)); - vResult = _mm_mul_ps(vResult,g_XMNegateX); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector2AngleBetweenNormalsEst -( - FXMVECTOR N1, - FXMVECTOR N2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR NegativeOne; - XMVECTOR One; - XMVECTOR Result; - - Result = XMVector2Dot(N1, N2); - NegativeOne = XMVectorSplatConstant(-1, 0); - One = XMVectorSplatOne(); - Result = XMVectorClamp(Result, NegativeOne, One); - Result = XMVectorACosEst(Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vResult = XMVector2Dot(N1,N2); - // Clamp to -1.0f to 1.0f - vResult = _mm_max_ps(vResult,g_XMNegativeOne); - vResult = _mm_min_ps(vResult,g_XMOne);; - vResult = XMVectorACosEst(vResult); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector2AngleBetweenNormals -( - FXMVECTOR N1, - FXMVECTOR N2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR NegativeOne; - XMVECTOR One; - XMVECTOR Result; - - Result = XMVector2Dot(N1, N2); - NegativeOne = XMVectorSplatConstant(-1, 0); - One = XMVectorSplatOne(); - Result = XMVectorClamp(Result, NegativeOne, One); - Result = XMVectorACos(Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vResult = XMVector2Dot(N1,N2); - // Clamp to -1.0f to 1.0f - vResult = _mm_max_ps(vResult,g_XMNegativeOne); - vResult = _mm_min_ps(vResult,g_XMOne);; - vResult = XMVectorACos(vResult); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector2AngleBetweenVectors -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR L1; - XMVECTOR L2; - XMVECTOR Dot; - XMVECTOR CosAngle; - XMVECTOR NegativeOne; - XMVECTOR One; - XMVECTOR Result; - - L1 = XMVector2ReciprocalLength(V1); - L2 = XMVector2ReciprocalLength(V2); - - Dot = XMVector2Dot(V1, V2); - - L1 = XMVectorMultiply(L1, L2); - - CosAngle = XMVectorMultiply(Dot, L1); - NegativeOne = XMVectorSplatConstant(-1, 0); - One = XMVectorSplatOne(); - CosAngle = XMVectorClamp(CosAngle, NegativeOne, One); - - Result = XMVectorACos(CosAngle); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR L1; - XMVECTOR L2; - XMVECTOR Dot; - XMVECTOR CosAngle; - XMVECTOR Result; - L1 = XMVector2ReciprocalLength(V1); - L2 = XMVector2ReciprocalLength(V2); - Dot = XMVector2Dot(V1, V2); - L1 = _mm_mul_ps(L1, L2); - CosAngle = _mm_mul_ps(Dot, L1); - CosAngle = XMVectorClamp(CosAngle, g_XMNegativeOne,g_XMOne); - Result = XMVectorACos(CosAngle); - return Result; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector2LinePointDistance -( - FXMVECTOR LinePoint1, - FXMVECTOR LinePoint2, - FXMVECTOR Point -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR PointVector; - XMVECTOR LineVector; - XMVECTOR ReciprocalLengthSq; - XMVECTOR PointProjectionScale; - XMVECTOR DistanceVector; - XMVECTOR Result; - - // Given a vector PointVector from LinePoint1 to Point and a vector - // LineVector from LinePoint1 to LinePoint2, the scaled distance - // PointProjectionScale from LinePoint1 to the perpendicular projection - // of PointVector onto the line is defined as: - // - // PointProjectionScale = dot(PointVector, LineVector) / LengthSq(LineVector) - - PointVector = XMVectorSubtract(Point, LinePoint1); - LineVector = XMVectorSubtract(LinePoint2, LinePoint1); - - ReciprocalLengthSq = XMVector2LengthSq(LineVector); - ReciprocalLengthSq = XMVectorReciprocal(ReciprocalLengthSq); - - PointProjectionScale = XMVector2Dot(PointVector, LineVector); - PointProjectionScale = XMVectorMultiply(PointProjectionScale, ReciprocalLengthSq); - - DistanceVector = XMVectorMultiply(LineVector, PointProjectionScale); - DistanceVector = XMVectorSubtract(PointVector, DistanceVector); - - Result = XMVector2Length(DistanceVector); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR PointVector = _mm_sub_ps(Point,LinePoint1); - XMVECTOR LineVector = _mm_sub_ps(LinePoint2,LinePoint1); - XMVECTOR ReciprocalLengthSq = XMVector2LengthSq(LineVector); - XMVECTOR vResult = XMVector2Dot(PointVector,LineVector); - vResult = _mm_div_ps(vResult,ReciprocalLengthSq); - vResult = _mm_mul_ps(vResult,LineVector); - vResult = _mm_sub_ps(PointVector,vResult); - vResult = XMVector2Length(vResult); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector2IntersectLine -( - FXMVECTOR Line1Point1, - FXMVECTOR Line1Point2, - FXMVECTOR Line2Point1, - CXMVECTOR Line2Point2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V1; - XMVECTOR V2; - XMVECTOR V3; - XMVECTOR C1; - XMVECTOR C2; - XMVECTOR Result; - CONST XMVECTOR Zero = XMVectorZero(); - - V1 = XMVectorSubtract(Line1Point2, Line1Point1); - V2 = XMVectorSubtract(Line2Point2, Line2Point1); - V3 = XMVectorSubtract(Line1Point1, Line2Point1); - - C1 = XMVector2Cross(V1, V2); - C2 = XMVector2Cross(V2, V3); - - if (XMVector2NearEqual(C1, Zero, g_XMEpsilon.v)) - { - if (XMVector2NearEqual(C2, Zero, g_XMEpsilon.v)) - { - // Coincident - Result = g_XMInfinity.v; - } - else - { - // Parallel - Result = g_XMQNaN.v; - } - } - else - { - // Intersection point = Line1Point1 + V1 * (C2 / C1) - XMVECTOR Scale; - Scale = XMVectorReciprocal(C1); - Scale = XMVectorMultiply(C2, Scale); - Result = XMVectorMultiplyAdd(V1, Scale, Line1Point1); - } - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR V1 = _mm_sub_ps(Line1Point2, Line1Point1); - XMVECTOR V2 = _mm_sub_ps(Line2Point2, Line2Point1); - XMVECTOR V3 = _mm_sub_ps(Line1Point1, Line2Point1); - // Generate the cross products - XMVECTOR C1 = XMVector2Cross(V1, V2); - XMVECTOR C2 = XMVector2Cross(V2, V3); - // If C1 is not close to epsilon, use the calculated value - XMVECTOR vResultMask = _mm_setzero_ps(); - vResultMask = _mm_sub_ps(vResultMask,C1); - vResultMask = _mm_max_ps(vResultMask,C1); - // 0xFFFFFFFF if the calculated value is to be used - vResultMask = _mm_cmpgt_ps(vResultMask,g_XMEpsilon); - // If C1 is close to epsilon, which fail type is it? INFINITY or NAN? - XMVECTOR vFailMask = _mm_setzero_ps(); - vFailMask = _mm_sub_ps(vFailMask,C2); - vFailMask = _mm_max_ps(vFailMask,C2); - vFailMask = _mm_cmple_ps(vFailMask,g_XMEpsilon); - XMVECTOR vFail = _mm_and_ps(vFailMask,g_XMInfinity); - vFailMask = _mm_andnot_ps(vFailMask,g_XMQNaN); - // vFail is NAN or INF - vFail = _mm_or_ps(vFail,vFailMask); - // Intersection point = Line1Point1 + V1 * (C2 / C1) - XMVECTOR vResult = _mm_div_ps(C2,C1); - vResult = _mm_mul_ps(vResult,V1); - vResult = _mm_add_ps(vResult,Line1Point1); - // Use result, or failure value - vResult = _mm_and_ps(vResult,vResultMask); - vResultMask = _mm_andnot_ps(vResultMask,vFail); - vResult = _mm_or_ps(vResult,vResultMask); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector2Transform -( - FXMVECTOR V, - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR X; - XMVECTOR Y; - XMVECTOR Result; - - Y = XMVectorSplatY(V); - X = XMVectorSplatX(V); - - Result = XMVectorMultiplyAdd(Y, M.r[1], M.r[3]); - Result = XMVectorMultiplyAdd(X, M.r[0], Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(0,0,0,0)); - vResult = _mm_mul_ps(vResult,M.r[0]); - XMVECTOR vTemp = _mm_shuffle_ps(V,V,_MM_SHUFFLE(1,1,1,1)); - vTemp = _mm_mul_ps(vTemp,M.r[1]); - vResult = _mm_add_ps(vResult,vTemp); - vResult = _mm_add_ps(vResult,M.r[3]); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMFLOAT4* XMVector2TransformStream -( - XMFLOAT4* pOutputStream, - UINT OutputStride, - CONST XMFLOAT2* pInputStream, - UINT InputStride, - UINT VectorCount, - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - XMVECTOR X; - XMVECTOR Y; - XMVECTOR Result; - UINT i; - BYTE* pInputVector = (BYTE*)pInputStream; - BYTE* pOutputVector = (BYTE*)pOutputStream; - - XMASSERT(pOutputStream); - XMASSERT(pInputStream); - - for (i = 0; i < VectorCount; i++) - { - V = XMLoadFloat2((XMFLOAT2*)pInputVector); - Y = XMVectorSplatY(V); - X = XMVectorSplatX(V); -// Y = XMVectorReplicate(((XMFLOAT2*)pInputVector)->y); -// X = XMVectorReplicate(((XMFLOAT2*)pInputVector)->x); - - Result = XMVectorMultiplyAdd(Y, M.r[1], M.r[3]); - Result = XMVectorMultiplyAdd(X, M.r[0], Result); - - XMStoreFloat4((XMFLOAT4*)pOutputVector, Result); - - pInputVector += InputStride; - pOutputVector += OutputStride; - } - - return pOutputStream; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pOutputStream); - XMASSERT(pInputStream); - UINT i; - const BYTE* pInputVector = (const BYTE*)pInputStream; - BYTE* pOutputVector = (BYTE*)pOutputStream; - - for (i = 0; i < VectorCount; i++) - { - XMVECTOR X = _mm_load_ps1(&reinterpret_cast(pInputVector)->x); - XMVECTOR vResult = _mm_load_ps1(&reinterpret_cast(pInputVector)->y); - vResult = _mm_mul_ps(vResult,M.r[1]); - vResult = _mm_add_ps(vResult,M.r[3]); - X = _mm_mul_ps(X,M.r[0]); - vResult = _mm_add_ps(vResult,X); - _mm_storeu_ps(reinterpret_cast(pOutputVector),vResult); - pInputVector += InputStride; - pOutputVector += OutputStride; - } - return pOutputStream; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMFLOAT4* XMVector2TransformStreamNC -( - XMFLOAT4* pOutputStream, - UINT OutputStride, - CONST XMFLOAT2* pInputStream, - UINT InputStride, - UINT VectorCount, - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) || defined(XM_NO_MISALIGNED_VECTOR_ACCESS) || defined(_XM_SSE_INTRINSICS_) - return XMVector2TransformStream( pOutputStream, OutputStride, pInputStream, InputStride, VectorCount, M ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector2TransformCoord -( - FXMVECTOR V, - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR X; - XMVECTOR Y; - XMVECTOR InverseW; - XMVECTOR Result; - - Y = XMVectorSplatY(V); - X = XMVectorSplatX(V); - - Result = XMVectorMultiplyAdd(Y, M.r[1], M.r[3]); - Result = XMVectorMultiplyAdd(X, M.r[0], Result); - - InverseW = XMVectorSplatW(Result); - InverseW = XMVectorReciprocal(InverseW); - - Result = XMVectorMultiply(Result, InverseW); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(0,0,0,0)); - vResult = _mm_mul_ps(vResult,M.r[0]); - XMVECTOR vTemp = _mm_shuffle_ps(V,V,_MM_SHUFFLE(1,1,1,1)); - vTemp = _mm_mul_ps(vTemp,M.r[1]); - vResult = _mm_add_ps(vResult,vTemp); - vResult = _mm_add_ps(vResult,M.r[3]); - vTemp = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(3,3,3,3)); - vResult = _mm_div_ps(vResult,vTemp); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMFLOAT2* XMVector2TransformCoordStream -( - XMFLOAT2* pOutputStream, - UINT OutputStride, - CONST XMFLOAT2* pInputStream, - UINT InputStride, - UINT VectorCount, - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - XMVECTOR X; - XMVECTOR Y; - XMVECTOR InverseW; - XMVECTOR Result; - UINT i; - BYTE* pInputVector = (BYTE*)pInputStream; - BYTE* pOutputVector = (BYTE*)pOutputStream; - - XMASSERT(pOutputStream); - XMASSERT(pInputStream); - - for (i = 0; i < VectorCount; i++) - { - V = XMLoadFloat2((XMFLOAT2*)pInputVector); - Y = XMVectorSplatY(V); - X = XMVectorSplatX(V); -// Y = XMVectorReplicate(((XMFLOAT2*)pInputVector)->y); -// X = XMVectorReplicate(((XMFLOAT2*)pInputVector)->x); - - Result = XMVectorMultiplyAdd(Y, M.r[1], M.r[3]); - Result = XMVectorMultiplyAdd(X, M.r[0], Result); - - InverseW = XMVectorSplatW(Result); - InverseW = XMVectorReciprocal(InverseW); - - Result = XMVectorMultiply(Result, InverseW); - - XMStoreFloat2((XMFLOAT2*)pOutputVector, Result); - - pInputVector += InputStride; - pOutputVector += OutputStride; - } - - return pOutputStream; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pOutputStream); - XMASSERT(pInputStream); - UINT i; - const BYTE *pInputVector = (BYTE*)pInputStream; - BYTE *pOutputVector = (BYTE*)pOutputStream; - - for (i = 0; i < VectorCount; i++) - { - XMVECTOR X = _mm_load_ps1(&reinterpret_cast(pInputVector)->x); - XMVECTOR vResult = _mm_load_ps1(&reinterpret_cast(pInputVector)->y); - vResult = _mm_mul_ps(vResult,M.r[1]); - vResult = _mm_add_ps(vResult,M.r[3]); - X = _mm_mul_ps(X,M.r[0]); - vResult = _mm_add_ps(vResult,X); - X = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(3,3,3,3)); - vResult = _mm_div_ps(vResult,X); - _mm_store_sd(reinterpret_cast(pOutputVector),reinterpret_cast<__m128d *>(&vResult)[0]); - pInputVector += InputStride; - pOutputVector += OutputStride; - } - return pOutputStream; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector2TransformNormal -( - FXMVECTOR V, - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR X; - XMVECTOR Y; - XMVECTOR Result; - - Y = XMVectorSplatY(V); - X = XMVectorSplatX(V); - - Result = XMVectorMultiply(Y, M.r[1]); - Result = XMVectorMultiplyAdd(X, M.r[0], Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(0,0,0,0)); - vResult = _mm_mul_ps(vResult,M.r[0]); - XMVECTOR vTemp = _mm_shuffle_ps(V,V,_MM_SHUFFLE(1,1,1,1)); - vTemp = _mm_mul_ps(vTemp,M.r[1]); - vResult = _mm_add_ps(vResult,vTemp); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMFLOAT2* XMVector2TransformNormalStream -( - XMFLOAT2* pOutputStream, - UINT OutputStride, - CONST XMFLOAT2* pInputStream, - UINT InputStride, - UINT VectorCount, - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - XMVECTOR X; - XMVECTOR Y; - XMVECTOR Result; - UINT i; - BYTE* pInputVector = (BYTE*)pInputStream; - BYTE* pOutputVector = (BYTE*)pOutputStream; - - XMASSERT(pOutputStream); - XMASSERT(pInputStream); - - for (i = 0; i < VectorCount; i++) - { - V = XMLoadFloat2((XMFLOAT2*)pInputVector); - Y = XMVectorSplatY(V); - X = XMVectorSplatX(V); -// Y = XMVectorReplicate(((XMFLOAT2*)pInputVector)->y); -// X = XMVectorReplicate(((XMFLOAT2*)pInputVector)->x); - - Result = XMVectorMultiply(Y, M.r[1]); - Result = XMVectorMultiplyAdd(X, M.r[0], Result); - - XMStoreFloat2((XMFLOAT2*)pOutputVector, Result); - - pInputVector += InputStride; - pOutputVector += OutputStride; - } - - return pOutputStream; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pOutputStream); - XMASSERT(pInputStream); - UINT i; - const BYTE*pInputVector = (const BYTE*)pInputStream; - BYTE *pOutputVector = (BYTE*)pOutputStream; - for (i = 0; i < VectorCount; i++) - { - XMVECTOR X = _mm_load_ps1(&reinterpret_cast(pInputVector)->x); - XMVECTOR vResult = _mm_load_ps1(&reinterpret_cast(pInputVector)->y); - vResult = _mm_mul_ps(vResult,M.r[1]); - X = _mm_mul_ps(X,M.r[0]); - vResult = _mm_add_ps(vResult,X); - _mm_store_sd(reinterpret_cast(pOutputVector),reinterpret_cast(&vResult)[0]); - - pInputVector += InputStride; - pOutputVector += OutputStride; - } - - return pOutputStream; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -/**************************************************************************** - * - * 3D Vector - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ -// Comparison operations -//------------------------------------------------------------------------------ - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector3Equal -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - return (((V1.vector4_f32[0] == V2.vector4_f32[0]) && (V1.vector4_f32[1] == V2.vector4_f32[1]) && (V1.vector4_f32[2] == V2.vector4_f32[2])) != 0); -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp = _mm_cmpeq_ps(V1,V2); - return (((_mm_movemask_ps(vTemp)&7)==7) != 0); -#else // _XM_VMX128_INTRINSICS_ - return XMComparisonAllTrue(XMVector3EqualR(V1, V2)); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE UINT XMVector3EqualR -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - UINT CR = 0; - if ((V1.vector4_f32[0] == V2.vector4_f32[0]) && - (V1.vector4_f32[1] == V2.vector4_f32[1]) && - (V1.vector4_f32[2] == V2.vector4_f32[2])) - { - CR = XM_CRMASK_CR6TRUE; - } - else if ((V1.vector4_f32[0] != V2.vector4_f32[0]) && - (V1.vector4_f32[1] != V2.vector4_f32[1]) && - (V1.vector4_f32[2] != V2.vector4_f32[2])) - { - CR = XM_CRMASK_CR6FALSE; - } - return CR; -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp = _mm_cmpeq_ps(V1,V2); - int iTest = _mm_movemask_ps(vTemp)&7; - UINT CR = 0; - if (iTest==7) - { - CR = XM_CRMASK_CR6TRUE; - } - else if (!iTest) - { - CR = XM_CRMASK_CR6FALSE; - } - return CR; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector3EqualInt -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - return (((V1.vector4_u32[0] == V2.vector4_u32[0]) && (V1.vector4_u32[1] == V2.vector4_u32[1]) && (V1.vector4_u32[2] == V2.vector4_u32[2])) != 0); -#elif defined(_XM_SSE_INTRINSICS_) - __m128i vTemp = _mm_cmpeq_epi32(reinterpret_cast(&V1)[0],reinterpret_cast(&V2)[0]); - return (((_mm_movemask_ps(reinterpret_cast(&vTemp)[0])&7)==7) != 0); -#else // _XM_VMX128_INTRINSICS_ - return XMComparisonAllTrue(XMVector3EqualIntR(V1, V2)); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE UINT XMVector3EqualIntR -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - UINT CR = 0; - if ((V1.vector4_u32[0] == V2.vector4_u32[0]) && - (V1.vector4_u32[1] == V2.vector4_u32[1]) && - (V1.vector4_u32[2] == V2.vector4_u32[2])) - { - CR = XM_CRMASK_CR6TRUE; - } - else if ((V1.vector4_u32[0] != V2.vector4_u32[0]) && - (V1.vector4_u32[1] != V2.vector4_u32[1]) && - (V1.vector4_u32[2] != V2.vector4_u32[2])) - { - CR = XM_CRMASK_CR6FALSE; - } - return CR; -#elif defined(_XM_SSE_INTRINSICS_) - __m128i vTemp = _mm_cmpeq_epi32(reinterpret_cast(&V1)[0],reinterpret_cast(&V2)[0]); - int iTemp = _mm_movemask_ps(reinterpret_cast(&vTemp)[0])&7; - UINT CR = 0; - if (iTemp==7) - { - CR = XM_CRMASK_CR6TRUE; - } - else if (!iTemp) - { - CR = XM_CRMASK_CR6FALSE; - } - return CR; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector3NearEqual -( - FXMVECTOR V1, - FXMVECTOR V2, - FXMVECTOR Epsilon -) -{ -#if defined(_XM_NO_INTRINSICS_) - FLOAT dx, dy, dz; - - dx = fabsf(V1.vector4_f32[0]-V2.vector4_f32[0]); - dy = fabsf(V1.vector4_f32[1]-V2.vector4_f32[1]); - dz = fabsf(V1.vector4_f32[2]-V2.vector4_f32[2]); - return (((dx <= Epsilon.vector4_f32[0]) && - (dy <= Epsilon.vector4_f32[1]) && - (dz <= Epsilon.vector4_f32[2])) != 0); -#elif defined(_XM_SSE_INTRINSICS_) - // Get the difference - XMVECTOR vDelta = _mm_sub_ps(V1,V2); - // Get the absolute value of the difference - XMVECTOR vTemp = _mm_setzero_ps(); - vTemp = _mm_sub_ps(vTemp,vDelta); - vTemp = _mm_max_ps(vTemp,vDelta); - vTemp = _mm_cmple_ps(vTemp,Epsilon); - // w is don't care - return (((_mm_movemask_ps(vTemp)&7)==0x7) != 0); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector3NotEqual -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - return (((V1.vector4_f32[0] != V2.vector4_f32[0]) || (V1.vector4_f32[1] != V2.vector4_f32[1]) || (V1.vector4_f32[2] != V2.vector4_f32[2])) != 0); -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp = _mm_cmpeq_ps(V1,V2); - return (((_mm_movemask_ps(vTemp)&7)!=7) != 0); -#else // _XM_VMX128_INTRINSICS_ - return XMComparisonAnyFalse(XMVector3EqualR(V1, V2)); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector3NotEqualInt -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - return (((V1.vector4_u32[0] != V2.vector4_u32[0]) || (V1.vector4_u32[1] != V2.vector4_u32[1]) || (V1.vector4_u32[2] != V2.vector4_u32[2])) != 0); -#elif defined(_XM_SSE_INTRINSICS_) - __m128i vTemp = _mm_cmpeq_epi32(reinterpret_cast(&V1)[0],reinterpret_cast(&V2)[0]); - return (((_mm_movemask_ps(reinterpret_cast(&vTemp)[0])&7)!=7) != 0); -#else // _XM_VMX128_INTRINSICS_ - return XMComparisonAnyFalse(XMVector3EqualIntR(V1, V2)); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector3Greater -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - return (((V1.vector4_f32[0] > V2.vector4_f32[0]) && (V1.vector4_f32[1] > V2.vector4_f32[1]) && (V1.vector4_f32[2] > V2.vector4_f32[2])) != 0); -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp = _mm_cmpgt_ps(V1,V2); - return (((_mm_movemask_ps(vTemp)&7)==7) != 0); -#else // _XM_VMX128_INTRINSICS_ - return XMComparisonAllTrue(XMVector3GreaterR(V1, V2)); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE UINT XMVector3GreaterR -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - UINT CR = 0; - if ((V1.vector4_f32[0] > V2.vector4_f32[0]) && - (V1.vector4_f32[1] > V2.vector4_f32[1]) && - (V1.vector4_f32[2] > V2.vector4_f32[2])) - { - CR = XM_CRMASK_CR6TRUE; - } - else if ((V1.vector4_f32[0] <= V2.vector4_f32[0]) && - (V1.vector4_f32[1] <= V2.vector4_f32[1]) && - (V1.vector4_f32[2] <= V2.vector4_f32[2])) - { - CR = XM_CRMASK_CR6FALSE; - } - return CR; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp = _mm_cmpgt_ps(V1,V2); - UINT CR = 0; - int iTest = _mm_movemask_ps(vTemp)&7; - if (iTest==7) - { - CR = XM_CRMASK_CR6TRUE; - } - else if (!iTest) - { - CR = XM_CRMASK_CR6FALSE; - } - return CR; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector3GreaterOrEqual -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - return (((V1.vector4_f32[0] >= V2.vector4_f32[0]) && (V1.vector4_f32[1] >= V2.vector4_f32[1]) && (V1.vector4_f32[2] >= V2.vector4_f32[2])) != 0); -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp = _mm_cmpge_ps(V1,V2); - return (((_mm_movemask_ps(vTemp)&7)==7) != 0); -#else // _XM_VMX128_INTRINSICS_ - return XMComparisonAllTrue(XMVector3GreaterOrEqualR(V1, V2)); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE UINT XMVector3GreaterOrEqualR -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - UINT CR = 0; - if ((V1.vector4_f32[0] >= V2.vector4_f32[0]) && - (V1.vector4_f32[1] >= V2.vector4_f32[1]) && - (V1.vector4_f32[2] >= V2.vector4_f32[2])) - { - CR = XM_CRMASK_CR6TRUE; - } - else if ((V1.vector4_f32[0] < V2.vector4_f32[0]) && - (V1.vector4_f32[1] < V2.vector4_f32[1]) && - (V1.vector4_f32[2] < V2.vector4_f32[2])) - { - CR = XM_CRMASK_CR6FALSE; - } - return CR; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp = _mm_cmpge_ps(V1,V2); - UINT CR = 0; - int iTest = _mm_movemask_ps(vTemp)&7; - if (iTest==7) - { - CR = XM_CRMASK_CR6TRUE; - } - else if (!iTest) - { - CR = XM_CRMASK_CR6FALSE; - } - return CR; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector3Less -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - return (((V1.vector4_f32[0] < V2.vector4_f32[0]) && (V1.vector4_f32[1] < V2.vector4_f32[1]) && (V1.vector4_f32[2] < V2.vector4_f32[2])) != 0); -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp = _mm_cmplt_ps(V1,V2); - return (((_mm_movemask_ps(vTemp)&7)==7) != 0); -#else // _XM_VMX128_INTRINSICS_ - return XMComparisonAllTrue(XMVector3GreaterR(V2, V1)); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector3LessOrEqual -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - return (((V1.vector4_f32[0] <= V2.vector4_f32[0]) && (V1.vector4_f32[1] <= V2.vector4_f32[1]) && (V1.vector4_f32[2] <= V2.vector4_f32[2])) != 0); -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp = _mm_cmple_ps(V1,V2); - return (((_mm_movemask_ps(vTemp)&7)==7) != 0); -#else // _XM_VMX128_INTRINSICS_ - return XMComparisonAllTrue(XMVector3GreaterOrEqualR(V2, V1)); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector3InBounds -( - FXMVECTOR V, - FXMVECTOR Bounds -) -{ -#if defined(_XM_NO_INTRINSICS_) - return (((V.vector4_f32[0] <= Bounds.vector4_f32[0] && V.vector4_f32[0] >= -Bounds.vector4_f32[0]) && - (V.vector4_f32[1] <= Bounds.vector4_f32[1] && V.vector4_f32[1] >= -Bounds.vector4_f32[1]) && - (V.vector4_f32[2] <= Bounds.vector4_f32[2] && V.vector4_f32[2] >= -Bounds.vector4_f32[2])) != 0); -#elif defined(_XM_SSE_INTRINSICS_) - // Test if less than or equal - XMVECTOR vTemp1 = _mm_cmple_ps(V,Bounds); - // Negate the bounds - XMVECTOR vTemp2 = _mm_mul_ps(Bounds,g_XMNegativeOne); - // Test if greater or equal (Reversed) - vTemp2 = _mm_cmple_ps(vTemp2,V); - // Blend answers - vTemp1 = _mm_and_ps(vTemp1,vTemp2); - // x,y and z in bounds? (w is don't care) - return (((_mm_movemask_ps(vTemp1)&0x7)==0x7) != 0); -#else - return XMComparisonAllInBounds(XMVector3InBoundsR(V, Bounds)); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE UINT XMVector3InBoundsR -( - FXMVECTOR V, - FXMVECTOR Bounds -) -{ -#if defined(_XM_NO_INTRINSICS_) - UINT CR = 0; - if ((V.vector4_f32[0] <= Bounds.vector4_f32[0] && V.vector4_f32[0] >= -Bounds.vector4_f32[0]) && - (V.vector4_f32[1] <= Bounds.vector4_f32[1] && V.vector4_f32[1] >= -Bounds.vector4_f32[1]) && - (V.vector4_f32[2] <= Bounds.vector4_f32[2] && V.vector4_f32[2] >= -Bounds.vector4_f32[2])) - { - CR = XM_CRMASK_CR6BOUNDS; - } - return CR; - -#elif defined(_XM_SSE_INTRINSICS_) - // Test if less than or equal - XMVECTOR vTemp1 = _mm_cmple_ps(V,Bounds); - // Negate the bounds - XMVECTOR vTemp2 = _mm_mul_ps(Bounds,g_XMNegativeOne); - // Test if greater or equal (Reversed) - vTemp2 = _mm_cmple_ps(vTemp2,V); - // Blend answers - vTemp1 = _mm_and_ps(vTemp1,vTemp2); - // x,y and z in bounds? (w is don't care) - return ((_mm_movemask_ps(vTemp1)&0x7)==0x7) ? XM_CRMASK_CR6BOUNDS : 0; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector3IsNaN -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - return (XMISNAN(V.vector4_f32[0]) || - XMISNAN(V.vector4_f32[1]) || - XMISNAN(V.vector4_f32[2])); - -#elif defined(_XM_SSE_INTRINSICS_) - // Mask off the exponent - __m128i vTempInf = _mm_and_si128(reinterpret_cast(&V)[0],g_XMInfinity); - // Mask off the mantissa - __m128i vTempNan = _mm_and_si128(reinterpret_cast(&V)[0],g_XMQNaNTest); - // Are any of the exponents == 0x7F800000? - vTempInf = _mm_cmpeq_epi32(vTempInf,g_XMInfinity); - // Are any of the mantissa's zero? (SSE2 doesn't have a neq test) - vTempNan = _mm_cmpeq_epi32(vTempNan,g_XMZero); - // Perform a not on the NaN test to be true on NON-zero mantissas - vTempNan = _mm_andnot_si128(vTempNan,vTempInf); - // If x, y or z are NaN, the signs are true after the merge above - return ((_mm_movemask_ps(reinterpret_cast(&vTempNan)[0])&7) != 0); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector3IsInfinite -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - return (XMISINF(V.vector4_f32[0]) || - XMISINF(V.vector4_f32[1]) || - XMISINF(V.vector4_f32[2])); -#elif defined(_XM_SSE_INTRINSICS_) - // Mask off the sign bit - __m128 vTemp = _mm_and_ps(V,g_XMAbsMask); - // Compare to infinity - vTemp = _mm_cmpeq_ps(vTemp,g_XMInfinity); - // If x,y or z are infinity, the signs are true. - return ((_mm_movemask_ps(vTemp)&7) != 0); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Computation operations -//------------------------------------------------------------------------------ - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector3Dot -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - FLOAT fValue = V1.vector4_f32[0] * V2.vector4_f32[0] + V1.vector4_f32[1] * V2.vector4_f32[1] + V1.vector4_f32[2] * V2.vector4_f32[2]; - XMVECTOR vResult = { - fValue, - fValue, - fValue, - fValue - }; - return vResult; - -#elif defined(_XM_SSE_INTRINSICS_) - // Perform the dot product - XMVECTOR vDot = _mm_mul_ps(V1,V2); - // x=Dot.vector4_f32[1], y=Dot.vector4_f32[2] - XMVECTOR vTemp = _mm_shuffle_ps(vDot,vDot,_MM_SHUFFLE(2,1,2,1)); - // Result.vector4_f32[0] = x+y - vDot = _mm_add_ss(vDot,vTemp); - // x=Dot.vector4_f32[2] - vTemp = _mm_shuffle_ps(vTemp,vTemp,_MM_SHUFFLE(1,1,1,1)); - // Result.vector4_f32[0] = (x+y)+z - vDot = _mm_add_ss(vDot,vTemp); - // Splat x - return _mm_shuffle_ps(vDot,vDot,_MM_SHUFFLE(0,0,0,0)); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector3Cross -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR vResult = { - (V1.vector4_f32[1] * V2.vector4_f32[2]) - (V1.vector4_f32[2] * V2.vector4_f32[1]), - (V1.vector4_f32[2] * V2.vector4_f32[0]) - (V1.vector4_f32[0] * V2.vector4_f32[2]), - (V1.vector4_f32[0] * V2.vector4_f32[1]) - (V1.vector4_f32[1] * V2.vector4_f32[0]), - 0.0f - }; - return vResult; - -#elif defined(_XM_SSE_INTRINSICS_) - // y1,z1,x1,w1 - XMVECTOR vTemp1 = _mm_shuffle_ps(V1,V1,_MM_SHUFFLE(3,0,2,1)); - // z2,x2,y2,w2 - XMVECTOR vTemp2 = _mm_shuffle_ps(V2,V2,_MM_SHUFFLE(3,1,0,2)); - // Perform the left operation - XMVECTOR vResult = _mm_mul_ps(vTemp1,vTemp2); - // z1,x1,y1,w1 - vTemp1 = _mm_shuffle_ps(vTemp1,vTemp1,_MM_SHUFFLE(3,0,2,1)); - // y2,z2,x2,w2 - vTemp2 = _mm_shuffle_ps(vTemp2,vTemp2,_MM_SHUFFLE(3,1,0,2)); - // Perform the right operation - vTemp1 = _mm_mul_ps(vTemp1,vTemp2); - // Subract the right from left, and return answer - vResult = _mm_sub_ps(vResult,vTemp1); - // Set w to zero - return _mm_and_ps(vResult,g_XMMask3); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector3LengthSq -( - FXMVECTOR V -) -{ - return XMVector3Dot(V, V); -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector3ReciprocalLengthEst -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - - Result = XMVector3LengthSq(V); - Result = XMVectorReciprocalSqrtEst(Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Perform the dot product on x,y and z - XMVECTOR vLengthSq = _mm_mul_ps(V,V); - // vTemp has z and y - XMVECTOR vTemp = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(1,2,1,2)); - // x+z, y - vLengthSq = _mm_add_ss(vLengthSq,vTemp); - // y,y,y,y - vTemp = _mm_shuffle_ps(vTemp,vTemp,_MM_SHUFFLE(1,1,1,1)); - // x+z+y,??,??,?? - vLengthSq = _mm_add_ss(vLengthSq,vTemp); - // Splat the length squared - vLengthSq = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(0,0,0,0)); - // Get the reciprocal - vLengthSq = _mm_rsqrt_ps(vLengthSq); - return vLengthSq; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector3ReciprocalLength -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - - Result = XMVector3LengthSq(V); - Result = XMVectorReciprocalSqrt(Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Perform the dot product - XMVECTOR vDot = _mm_mul_ps(V,V); - // x=Dot.y, y=Dot.z - XMVECTOR vTemp = _mm_shuffle_ps(vDot,vDot,_MM_SHUFFLE(2,1,2,1)); - // Result.x = x+y - vDot = _mm_add_ss(vDot,vTemp); - // x=Dot.z - vTemp = _mm_shuffle_ps(vTemp,vTemp,_MM_SHUFFLE(1,1,1,1)); - // Result.x = (x+y)+z - vDot = _mm_add_ss(vDot,vTemp); - // Splat x - vDot = _mm_shuffle_ps(vDot,vDot,_MM_SHUFFLE(0,0,0,0)); - // Get the reciprocal - vDot = _mm_sqrt_ps(vDot); - // Get the reciprocal - vDot = _mm_div_ps(g_XMOne,vDot); - return vDot; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector3LengthEst -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - - Result = XMVector3LengthSq(V); - Result = XMVectorSqrtEst(Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Perform the dot product on x,y and z - XMVECTOR vLengthSq = _mm_mul_ps(V,V); - // vTemp has z and y - XMVECTOR vTemp = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(1,2,1,2)); - // x+z, y - vLengthSq = _mm_add_ss(vLengthSq,vTemp); - // y,y,y,y - vTemp = _mm_shuffle_ps(vTemp,vTemp,_MM_SHUFFLE(1,1,1,1)); - // x+z+y,??,??,?? - vLengthSq = _mm_add_ss(vLengthSq,vTemp); - // Splat the length squared - vLengthSq = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(0,0,0,0)); - // Get the length - vLengthSq = _mm_sqrt_ps(vLengthSq); - return vLengthSq; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector3Length -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - - Result = XMVector3LengthSq(V); - Result = XMVectorSqrt(Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Perform the dot product on x,y and z - XMVECTOR vLengthSq = _mm_mul_ps(V,V); - // vTemp has z and y - XMVECTOR vTemp = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(1,2,1,2)); - // x+z, y - vLengthSq = _mm_add_ss(vLengthSq,vTemp); - // y,y,y,y - vTemp = _mm_shuffle_ps(vTemp,vTemp,_MM_SHUFFLE(1,1,1,1)); - // x+z+y,??,??,?? - vLengthSq = _mm_add_ss(vLengthSq,vTemp); - // Splat the length squared - vLengthSq = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(0,0,0,0)); - // Get the length - vLengthSq = _mm_sqrt_ps(vLengthSq); - return vLengthSq; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// XMVector3NormalizeEst uses a reciprocal estimate and -// returns QNaN on zero and infinite vectors. - -XMFINLINE XMVECTOR XMVector3NormalizeEst -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - Result = XMVector3ReciprocalLength(V); - Result = XMVectorMultiply(V, Result); - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Perform the dot product - XMVECTOR vDot = _mm_mul_ps(V,V); - // x=Dot.y, y=Dot.z - XMVECTOR vTemp = _mm_shuffle_ps(vDot,vDot,_MM_SHUFFLE(2,1,2,1)); - // Result.x = x+y - vDot = _mm_add_ss(vDot,vTemp); - // x=Dot.z - vTemp = _mm_shuffle_ps(vTemp,vTemp,_MM_SHUFFLE(1,1,1,1)); - // Result.x = (x+y)+z - vDot = _mm_add_ss(vDot,vTemp); - // Splat x - vDot = _mm_shuffle_ps(vDot,vDot,_MM_SHUFFLE(0,0,0,0)); - // Get the reciprocal - vDot = _mm_rsqrt_ps(vDot); - // Perform the normalization - vDot = _mm_mul_ps(vDot,V); - return vDot; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector3Normalize -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - FLOAT fLength; - XMVECTOR vResult; - - vResult = XMVector3Length( V ); - fLength = vResult.vector4_f32[0]; - - // Prevent divide by zero - if (fLength > 0) { - fLength = 1.0f/fLength; - } - - vResult.vector4_f32[0] = V.vector4_f32[0]*fLength; - vResult.vector4_f32[1] = V.vector4_f32[1]*fLength; - vResult.vector4_f32[2] = V.vector4_f32[2]*fLength; - vResult.vector4_f32[3] = V.vector4_f32[3]*fLength; - return vResult; - -#elif defined(_XM_SSE_INTRINSICS_) - // Perform the dot product on x,y and z only - XMVECTOR vLengthSq = _mm_mul_ps(V,V); - XMVECTOR vTemp = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(2,1,2,1)); - vLengthSq = _mm_add_ss(vLengthSq,vTemp); - vTemp = _mm_shuffle_ps(vTemp,vTemp,_MM_SHUFFLE(1,1,1,1)); - vLengthSq = _mm_add_ss(vLengthSq,vTemp); - vLengthSq = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(0,0,0,0)); - // Prepare for the division - XMVECTOR vResult = _mm_sqrt_ps(vLengthSq); - // Create zero with a single instruction - XMVECTOR vZeroMask = _mm_setzero_ps(); - // Test for a divide by zero (Must be FP to detect -0.0) - vZeroMask = _mm_cmpneq_ps(vZeroMask,vResult); - // Failsafe on zero (Or epsilon) length planes - // If the length is infinity, set the elements to zero - vLengthSq = _mm_cmpneq_ps(vLengthSq,g_XMInfinity); - // Divide to perform the normalization - vResult = _mm_div_ps(V,vResult); - // Any that are infinity, set to zero - vResult = _mm_and_ps(vResult,vZeroMask); - // Select qnan or result based on infinite length - XMVECTOR vTemp1 = _mm_andnot_ps(vLengthSq,g_XMQNaN); - XMVECTOR vTemp2 = _mm_and_ps(vResult,vLengthSq); - vResult = _mm_or_ps(vTemp1,vTemp2); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector3ClampLength -( - FXMVECTOR V, - FLOAT LengthMin, - FLOAT LengthMax -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR ClampMax; - XMVECTOR ClampMin; - - ClampMax = XMVectorReplicate(LengthMax); - ClampMin = XMVectorReplicate(LengthMin); - - return XMVector3ClampLengthV(V, ClampMin, ClampMax); - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR ClampMax = _mm_set_ps1(LengthMax); - XMVECTOR ClampMin = _mm_set_ps1(LengthMin); - return XMVector3ClampLengthV(V,ClampMin,ClampMax); -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector3ClampLengthV -( - FXMVECTOR V, - FXMVECTOR LengthMin, - FXMVECTOR LengthMax -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR ClampLength; - XMVECTOR LengthSq; - XMVECTOR RcpLength; - XMVECTOR Length; - XMVECTOR Normal; - XMVECTOR Zero; - XMVECTOR InfiniteLength; - XMVECTOR ZeroLength; - XMVECTOR Select; - XMVECTOR ControlMax; - XMVECTOR ControlMin; - XMVECTOR Control; - XMVECTOR Result; - - XMASSERT((LengthMin.vector4_f32[1] == LengthMin.vector4_f32[0]) && (LengthMin.vector4_f32[2] == LengthMin.vector4_f32[0])); - XMASSERT((LengthMax.vector4_f32[1] == LengthMax.vector4_f32[0]) && (LengthMax.vector4_f32[2] == LengthMax.vector4_f32[0])); - XMASSERT(XMVector3GreaterOrEqual(LengthMin, XMVectorZero())); - XMASSERT(XMVector3GreaterOrEqual(LengthMax, XMVectorZero())); - XMASSERT(XMVector3GreaterOrEqual(LengthMax, LengthMin)); - - LengthSq = XMVector3LengthSq(V); - - Zero = XMVectorZero(); - - RcpLength = XMVectorReciprocalSqrt(LengthSq); - - InfiniteLength = XMVectorEqualInt(LengthSq, g_XMInfinity.v); - ZeroLength = XMVectorEqual(LengthSq, Zero); - - Normal = XMVectorMultiply(V, RcpLength); - - Length = XMVectorMultiply(LengthSq, RcpLength); - - Select = XMVectorEqualInt(InfiniteLength, ZeroLength); - Length = XMVectorSelect(LengthSq, Length, Select); - Normal = XMVectorSelect(LengthSq, Normal, Select); - - ControlMax = XMVectorGreater(Length, LengthMax); - ControlMin = XMVectorLess(Length, LengthMin); - - ClampLength = XMVectorSelect(Length, LengthMax, ControlMax); - ClampLength = XMVectorSelect(ClampLength, LengthMin, ControlMin); - - Result = XMVectorMultiply(Normal, ClampLength); - - // Preserve the original vector (with no precision loss) if the length falls within the given range - Control = XMVectorEqualInt(ControlMax, ControlMin); - Result = XMVectorSelect(Result, V, Control); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR ClampLength; - XMVECTOR LengthSq; - XMVECTOR RcpLength; - XMVECTOR Length; - XMVECTOR Normal; - XMVECTOR InfiniteLength; - XMVECTOR ZeroLength; - XMVECTOR Select; - XMVECTOR ControlMax; - XMVECTOR ControlMin; - XMVECTOR Control; - XMVECTOR Result; - - XMASSERT((XMVectorGetY(LengthMin) == XMVectorGetX(LengthMin)) && (XMVectorGetZ(LengthMin) == XMVectorGetX(LengthMin))); - XMASSERT((XMVectorGetY(LengthMax) == XMVectorGetX(LengthMax)) && (XMVectorGetZ(LengthMax) == XMVectorGetX(LengthMax))); - XMASSERT(XMVector3GreaterOrEqual(LengthMin, g_XMZero)); - XMASSERT(XMVector3GreaterOrEqual(LengthMax, g_XMZero)); - XMASSERT(XMVector3GreaterOrEqual(LengthMax, LengthMin)); - - LengthSq = XMVector3LengthSq(V); - RcpLength = XMVectorReciprocalSqrt(LengthSq); - InfiniteLength = XMVectorEqualInt(LengthSq, g_XMInfinity); - ZeroLength = XMVectorEqual(LengthSq,g_XMZero); - Normal = _mm_mul_ps(V, RcpLength); - Length = _mm_mul_ps(LengthSq, RcpLength); - Select = XMVectorEqualInt(InfiniteLength, ZeroLength); - Length = XMVectorSelect(LengthSq, Length, Select); - Normal = XMVectorSelect(LengthSq, Normal, Select); - ControlMax = XMVectorGreater(Length, LengthMax); - ControlMin = XMVectorLess(Length, LengthMin); - ClampLength = XMVectorSelect(Length, LengthMax, ControlMax); - ClampLength = XMVectorSelect(ClampLength, LengthMin, ControlMin); - Result = _mm_mul_ps(Normal, ClampLength); - // Preserve the original vector (with no precision loss) if the length falls within the given range - Control = XMVectorEqualInt(ControlMax, ControlMin); - Result = XMVectorSelect(Result, V, Control); - return Result; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector3Reflect -( - FXMVECTOR Incident, - FXMVECTOR Normal -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - - // Result = Incident - (2 * dot(Incident, Normal)) * Normal - Result = XMVector3Dot(Incident, Normal); - Result = XMVectorAdd(Result, Result); - Result = XMVectorNegativeMultiplySubtract(Result, Normal, Incident); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Result = Incident - (2 * dot(Incident, Normal)) * Normal - XMVECTOR Result = XMVector3Dot(Incident, Normal); - Result = _mm_add_ps(Result, Result); - Result = _mm_mul_ps(Result, Normal); - Result = _mm_sub_ps(Incident,Result); - return Result; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector3Refract -( - FXMVECTOR Incident, - FXMVECTOR Normal, - FLOAT RefractionIndex -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Index; - Index = XMVectorReplicate(RefractionIndex); - return XMVector3RefractV(Incident, Normal, Index); - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR Index = _mm_set_ps1(RefractionIndex); - return XMVector3RefractV(Incident,Normal,Index); -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector3RefractV -( - FXMVECTOR Incident, - FXMVECTOR Normal, - FXMVECTOR RefractionIndex -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR IDotN; - XMVECTOR R; - CONST XMVECTOR Zero = XMVectorZero(); - - // Result = RefractionIndex * Incident - Normal * (RefractionIndex * dot(Incident, Normal) + - // sqrt(1 - RefractionIndex * RefractionIndex * (1 - dot(Incident, Normal) * dot(Incident, Normal)))) - - IDotN = XMVector3Dot(Incident, Normal); - - // R = 1.0f - RefractionIndex * RefractionIndex * (1.0f - IDotN * IDotN) - R = XMVectorNegativeMultiplySubtract(IDotN, IDotN, g_XMOne.v); - R = XMVectorMultiply(R, RefractionIndex); - R = XMVectorNegativeMultiplySubtract(R, RefractionIndex, g_XMOne.v); - - if (XMVector4LessOrEqual(R, Zero)) - { - // Total internal reflection - return Zero; - } - else - { - XMVECTOR Result; - - // R = RefractionIndex * IDotN + sqrt(R) - R = XMVectorSqrt(R); - R = XMVectorMultiplyAdd(RefractionIndex, IDotN, R); - - // Result = RefractionIndex * Incident - Normal * R - Result = XMVectorMultiply(RefractionIndex, Incident); - Result = XMVectorNegativeMultiplySubtract(Normal, R, Result); - - return Result; - } - -#elif defined(_XM_SSE_INTRINSICS_) - // Result = RefractionIndex * Incident - Normal * (RefractionIndex * dot(Incident, Normal) + - // sqrt(1 - RefractionIndex * RefractionIndex * (1 - dot(Incident, Normal) * dot(Incident, Normal)))) - XMVECTOR IDotN = XMVector3Dot(Incident, Normal); - // R = 1.0f - RefractionIndex * RefractionIndex * (1.0f - IDotN * IDotN) - XMVECTOR R = _mm_mul_ps(IDotN, IDotN); - R = _mm_sub_ps(g_XMOne,R); - R = _mm_mul_ps(R, RefractionIndex); - R = _mm_mul_ps(R, RefractionIndex); - R = _mm_sub_ps(g_XMOne,R); - - XMVECTOR vResult = _mm_cmple_ps(R,g_XMZero); - if (_mm_movemask_ps(vResult)==0x0f) - { - // Total internal reflection - vResult = g_XMZero; - } - else - { - // R = RefractionIndex * IDotN + sqrt(R) - R = _mm_sqrt_ps(R); - vResult = _mm_mul_ps(RefractionIndex,IDotN); - R = _mm_add_ps(R,vResult); - // Result = RefractionIndex * Incident - Normal * R - vResult = _mm_mul_ps(RefractionIndex, Incident); - R = _mm_mul_ps(R,Normal); - vResult = _mm_sub_ps(vResult,R); - } - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector3Orthogonal -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR NegativeV; - XMVECTOR Z, YZYY; - XMVECTOR ZIsNegative, YZYYIsNegative; - XMVECTOR S, D; - XMVECTOR R0, R1; - XMVECTOR Select; - XMVECTOR Zero; - XMVECTOR Result; - static CONST XMVECTORU32 Permute1X0X0X0X = {XM_PERMUTE_1X, XM_PERMUTE_0X, XM_PERMUTE_0X, XM_PERMUTE_0X}; - static CONST XMVECTORU32 Permute0Y0Z0Y0Y= {XM_PERMUTE_0Y, XM_PERMUTE_0Z, XM_PERMUTE_0Y, XM_PERMUTE_0Y}; - - Zero = XMVectorZero(); - Z = XMVectorSplatZ(V); - YZYY = XMVectorPermute(V, V, Permute0Y0Z0Y0Y.v); - - NegativeV = XMVectorSubtract(Zero, V); - - ZIsNegative = XMVectorLess(Z, Zero); - YZYYIsNegative = XMVectorLess(YZYY, Zero); - - S = XMVectorAdd(YZYY, Z); - D = XMVectorSubtract(YZYY, Z); - - Select = XMVectorEqualInt(ZIsNegative, YZYYIsNegative); - - R0 = XMVectorPermute(NegativeV, S, Permute1X0X0X0X.v); - R1 = XMVectorPermute(V, D, Permute1X0X0X0X.v); - - Result = XMVectorSelect(R1, R0, Select); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR NegativeV; - XMVECTOR Z, YZYY; - XMVECTOR ZIsNegative, YZYYIsNegative; - XMVECTOR S, D; - XMVECTOR R0, R1; - XMVECTOR Select; - XMVECTOR Zero; - XMVECTOR Result; - static CONST XMVECTORI32 Permute1X0X0X0X = {XM_PERMUTE_1X, XM_PERMUTE_0X, XM_PERMUTE_0X, XM_PERMUTE_0X}; - static CONST XMVECTORI32 Permute0Y0Z0Y0Y= {XM_PERMUTE_0Y, XM_PERMUTE_0Z, XM_PERMUTE_0Y, XM_PERMUTE_0Y}; - - Zero = XMVectorZero(); - Z = XMVectorSplatZ(V); - YZYY = XMVectorPermute(V, V, Permute0Y0Z0Y0Y); - - NegativeV = _mm_sub_ps(Zero, V); - - ZIsNegative = XMVectorLess(Z, Zero); - YZYYIsNegative = XMVectorLess(YZYY, Zero); - - S = _mm_add_ps(YZYY, Z); - D = _mm_sub_ps(YZYY, Z); - - Select = XMVectorEqualInt(ZIsNegative, YZYYIsNegative); - - R0 = XMVectorPermute(NegativeV, S, Permute1X0X0X0X); - R1 = XMVectorPermute(V, D,Permute1X0X0X0X); - Result = XMVectorSelect(R1, R0, Select); - return Result; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector3AngleBetweenNormalsEst -( - FXMVECTOR N1, - FXMVECTOR N2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - XMVECTOR NegativeOne; - XMVECTOR One; - - Result = XMVector3Dot(N1, N2); - NegativeOne = XMVectorSplatConstant(-1, 0); - One = XMVectorSplatOne(); - Result = XMVectorClamp(Result, NegativeOne, One); - Result = XMVectorACosEst(Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vResult = XMVector3Dot(N1,N2); - // Clamp to -1.0f to 1.0f - vResult = _mm_max_ps(vResult,g_XMNegativeOne); - vResult = _mm_min_ps(vResult,g_XMOne); - vResult = XMVectorACosEst(vResult); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector3AngleBetweenNormals -( - FXMVECTOR N1, - FXMVECTOR N2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - XMVECTOR NegativeOne; - XMVECTOR One; - - Result = XMVector3Dot(N1, N2); - NegativeOne = XMVectorSplatConstant(-1, 0); - One = XMVectorSplatOne(); - Result = XMVectorClamp(Result, NegativeOne, One); - Result = XMVectorACos(Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vResult = XMVector3Dot(N1,N2); - // Clamp to -1.0f to 1.0f - vResult = _mm_max_ps(vResult,g_XMNegativeOne); - vResult = _mm_min_ps(vResult,g_XMOne); - vResult = XMVectorACos(vResult); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector3AngleBetweenVectors -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR L1; - XMVECTOR L2; - XMVECTOR Dot; - XMVECTOR CosAngle; - XMVECTOR NegativeOne; - XMVECTOR One; - XMVECTOR Result; - - L1 = XMVector3ReciprocalLength(V1); - L2 = XMVector3ReciprocalLength(V2); - - Dot = XMVector3Dot(V1, V2); - - L1 = XMVectorMultiply(L1, L2); - - NegativeOne = XMVectorSplatConstant(-1, 0); - One = XMVectorSplatOne(); - - CosAngle = XMVectorMultiply(Dot, L1); - - CosAngle = XMVectorClamp(CosAngle, NegativeOne, One); - - Result = XMVectorACos(CosAngle); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR L1; - XMVECTOR L2; - XMVECTOR Dot; - XMVECTOR CosAngle; - XMVECTOR Result; - - L1 = XMVector3ReciprocalLength(V1); - L2 = XMVector3ReciprocalLength(V2); - Dot = XMVector3Dot(V1, V2); - L1 = _mm_mul_ps(L1, L2); - CosAngle = _mm_mul_ps(Dot, L1); - CosAngle = XMVectorClamp(CosAngle,g_XMNegativeOne,g_XMOne); - Result = XMVectorACos(CosAngle); - return Result; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector3LinePointDistance -( - FXMVECTOR LinePoint1, - FXMVECTOR LinePoint2, - FXMVECTOR Point -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR PointVector; - XMVECTOR LineVector; - XMVECTOR ReciprocalLengthSq; - XMVECTOR PointProjectionScale; - XMVECTOR DistanceVector; - XMVECTOR Result; - - // Given a vector PointVector from LinePoint1 to Point and a vector - // LineVector from LinePoint1 to LinePoint2, the scaled distance - // PointProjectionScale from LinePoint1 to the perpendicular projection - // of PointVector onto the line is defined as: - // - // PointProjectionScale = dot(PointVector, LineVector) / LengthSq(LineVector) - - PointVector = XMVectorSubtract(Point, LinePoint1); - LineVector = XMVectorSubtract(LinePoint2, LinePoint1); - - ReciprocalLengthSq = XMVector3LengthSq(LineVector); - ReciprocalLengthSq = XMVectorReciprocal(ReciprocalLengthSq); - - PointProjectionScale = XMVector3Dot(PointVector, LineVector); - PointProjectionScale = XMVectorMultiply(PointProjectionScale, ReciprocalLengthSq); - - DistanceVector = XMVectorMultiply(LineVector, PointProjectionScale); - DistanceVector = XMVectorSubtract(PointVector, DistanceVector); - - Result = XMVector3Length(DistanceVector); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR PointVector = _mm_sub_ps(Point,LinePoint1); - XMVECTOR LineVector = _mm_sub_ps(LinePoint2,LinePoint1); - XMVECTOR ReciprocalLengthSq = XMVector3LengthSq(LineVector); - XMVECTOR vResult = XMVector3Dot(PointVector,LineVector); - vResult = _mm_div_ps(vResult,ReciprocalLengthSq); - vResult = _mm_mul_ps(vResult,LineVector); - vResult = _mm_sub_ps(PointVector,vResult); - vResult = XMVector3Length(vResult); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE VOID XMVector3ComponentsFromNormal -( - XMVECTOR* pParallel, - XMVECTOR* pPerpendicular, - FXMVECTOR V, - FXMVECTOR Normal -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Parallel; - XMVECTOR Scale; - - XMASSERT(pParallel); - XMASSERT(pPerpendicular); - - Scale = XMVector3Dot(V, Normal); - - Parallel = XMVectorMultiply(Normal, Scale); - - *pParallel = Parallel; - *pPerpendicular = XMVectorSubtract(V, Parallel); - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pParallel); - XMASSERT(pPerpendicular); - XMVECTOR Scale = XMVector3Dot(V, Normal); - XMVECTOR Parallel = _mm_mul_ps(Normal,Scale); - *pParallel = Parallel; - *pPerpendicular = _mm_sub_ps(V,Parallel); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Transform a vector using a rotation expressed as a unit quaternion - -XMFINLINE XMVECTOR XMVector3Rotate -( - FXMVECTOR V, - FXMVECTOR RotationQuaternion -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR A; - XMVECTOR Q; - XMVECTOR Result; - - A = XMVectorSelect(g_XMSelect1110.v, V, g_XMSelect1110.v); - Q = XMQuaternionConjugate(RotationQuaternion); - Result = XMQuaternionMultiply(Q, A); - Result = XMQuaternionMultiply(Result, RotationQuaternion); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR A; - XMVECTOR Q; - XMVECTOR Result; - - A = _mm_and_ps(V,g_XMMask3); - Q = XMQuaternionConjugate(RotationQuaternion); - Result = XMQuaternionMultiply(Q, A); - Result = XMQuaternionMultiply(Result, RotationQuaternion); - return Result; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Transform a vector using the inverse of a rotation expressed as a unit quaternion - -XMFINLINE XMVECTOR XMVector3InverseRotate -( - FXMVECTOR V, - FXMVECTOR RotationQuaternion -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR A; - XMVECTOR Q; - XMVECTOR Result; - - A = XMVectorSelect(g_XMSelect1110.v, V, g_XMSelect1110.v); - Result = XMQuaternionMultiply(RotationQuaternion, A); - Q = XMQuaternionConjugate(RotationQuaternion); - Result = XMQuaternionMultiply(Result, Q); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR A; - XMVECTOR Q; - XMVECTOR Result; - A = _mm_and_ps(V,g_XMMask3); - Result = XMQuaternionMultiply(RotationQuaternion, A); - Q = XMQuaternionConjugate(RotationQuaternion); - Result = XMQuaternionMultiply(Result, Q); - return Result; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector3Transform -( - FXMVECTOR V, - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR X; - XMVECTOR Y; - XMVECTOR Z; - XMVECTOR Result; - - Z = XMVectorSplatZ(V); - Y = XMVectorSplatY(V); - X = XMVectorSplatX(V); - - Result = XMVectorMultiplyAdd(Z, M.r[2], M.r[3]); - Result = XMVectorMultiplyAdd(Y, M.r[1], Result); - Result = XMVectorMultiplyAdd(X, M.r[0], Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(0,0,0,0)); - vResult = _mm_mul_ps(vResult,M.r[0]); - XMVECTOR vTemp = _mm_shuffle_ps(V,V,_MM_SHUFFLE(1,1,1,1)); - vTemp = _mm_mul_ps(vTemp,M.r[1]); - vResult = _mm_add_ps(vResult,vTemp); - vTemp = _mm_shuffle_ps(V,V,_MM_SHUFFLE(2,2,2,2)); - vTemp = _mm_mul_ps(vTemp,M.r[2]); - vResult = _mm_add_ps(vResult,vTemp); - vResult = _mm_add_ps(vResult,M.r[3]); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMFLOAT4* XMVector3TransformStream -( - XMFLOAT4* pOutputStream, - UINT OutputStride, - CONST XMFLOAT3* pInputStream, - UINT InputStride, - UINT VectorCount, - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - XMVECTOR X; - XMVECTOR Y; - XMVECTOR Z; - XMVECTOR Result; - UINT i; - BYTE* pInputVector = (BYTE*)pInputStream; - BYTE* pOutputVector = (BYTE*)pOutputStream; - - XMASSERT(pOutputStream); - XMASSERT(pInputStream); - - for (i = 0; i < VectorCount; i++) - { - V = XMLoadFloat3((XMFLOAT3*)pInputVector); - Z = XMVectorSplatZ(V); - Y = XMVectorSplatY(V); - X = XMVectorSplatX(V); - - Result = XMVectorMultiplyAdd(Z, M.r[2], M.r[3]); - Result = XMVectorMultiplyAdd(Y, M.r[1], Result); - Result = XMVectorMultiplyAdd(X, M.r[0], Result); - - XMStoreFloat4((XMFLOAT4*)pOutputVector, Result); - - pInputVector += InputStride; - pOutputVector += OutputStride; - } - - return pOutputStream; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pOutputStream); - XMASSERT(pInputStream); - UINT i; - const BYTE* pInputVector = (const BYTE*)pInputStream; - BYTE* pOutputVector = (BYTE*)pOutputStream; - - for (i = 0; i < VectorCount; i++) - { - XMVECTOR X = _mm_load_ps1(&reinterpret_cast(pInputVector)->x); - XMVECTOR Y = _mm_load_ps1(&reinterpret_cast(pInputVector)->y); - XMVECTOR vResult = _mm_load_ps1(&reinterpret_cast(pInputVector)->z); - vResult = _mm_mul_ps(vResult,M.r[2]); - vResult = _mm_add_ps(vResult,M.r[3]); - Y = _mm_mul_ps(Y,M.r[1]); - vResult = _mm_add_ps(vResult,Y); - X = _mm_mul_ps(X,M.r[0]); - vResult = _mm_add_ps(vResult,X); - _mm_storeu_ps(reinterpret_cast(pOutputVector),vResult); - pInputVector += InputStride; - pOutputVector += OutputStride; - } - - return pOutputStream; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMFLOAT4* XMVector3TransformStreamNC -( - XMFLOAT4* pOutputStream, - UINT OutputStride, - CONST XMFLOAT3* pInputStream, - UINT InputStride, - UINT VectorCount, - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) || defined(XM_NO_MISALIGNED_VECTOR_ACCESS) || defined(_XM_SSE_INTRINSICS_) - return XMVector3TransformStream( pOutputStream, OutputStride, pInputStream, InputStride, VectorCount, M ); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector3TransformCoord -( - FXMVECTOR V, - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR X; - XMVECTOR Y; - XMVECTOR Z; - XMVECTOR InverseW; - XMVECTOR Result; - - Z = XMVectorSplatZ(V); - Y = XMVectorSplatY(V); - X = XMVectorSplatX(V); - - Result = XMVectorMultiplyAdd(Z, M.r[2], M.r[3]); - Result = XMVectorMultiplyAdd(Y, M.r[1], Result); - Result = XMVectorMultiplyAdd(X, M.r[0], Result); - - InverseW = XMVectorSplatW(Result); - InverseW = XMVectorReciprocal(InverseW); - - Result = XMVectorMultiply(Result, InverseW); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(0,0,0,0)); - vResult = _mm_mul_ps(vResult,M.r[0]); - XMVECTOR vTemp = _mm_shuffle_ps(V,V,_MM_SHUFFLE(1,1,1,1)); - vTemp = _mm_mul_ps(vTemp,M.r[1]); - vResult = _mm_add_ps(vResult,vTemp); - vTemp = _mm_shuffle_ps(V,V,_MM_SHUFFLE(2,2,2,2)); - vTemp = _mm_mul_ps(vTemp,M.r[2]); - vResult = _mm_add_ps(vResult,vTemp); - vResult = _mm_add_ps(vResult,M.r[3]); - vTemp = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(3,3,3,3)); - vResult = _mm_div_ps(vResult,vTemp); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMFLOAT3* XMVector3TransformCoordStream -( - XMFLOAT3* pOutputStream, - UINT OutputStride, - CONST XMFLOAT3* pInputStream, - UINT InputStride, - UINT VectorCount, - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - XMVECTOR X; - XMVECTOR Y; - XMVECTOR Z; - XMVECTOR InverseW; - XMVECTOR Result; - UINT i; - BYTE* pInputVector = (BYTE*)pInputStream; - BYTE* pOutputVector = (BYTE*)pOutputStream; - - XMASSERT(pOutputStream); - XMASSERT(pInputStream); - - for (i = 0; i < VectorCount; i++) - { - V = XMLoadFloat3((XMFLOAT3*)pInputVector); - Z = XMVectorSplatZ(V); - Y = XMVectorSplatY(V); - X = XMVectorSplatX(V); -// Z = XMVectorReplicate(((XMFLOAT3*)pInputVector)->z); -// Y = XMVectorReplicate(((XMFLOAT3*)pInputVector)->y); -// X = XMVectorReplicate(((XMFLOAT3*)pInputVector)->x); - - Result = XMVectorMultiplyAdd(Z, M.r[2], M.r[3]); - Result = XMVectorMultiplyAdd(Y, M.r[1], Result); - Result = XMVectorMultiplyAdd(X, M.r[0], Result); - - InverseW = XMVectorSplatW(Result); - InverseW = XMVectorReciprocal(InverseW); - - Result = XMVectorMultiply(Result, InverseW); - - XMStoreFloat3((XMFLOAT3*)pOutputVector, Result); - - pInputVector += InputStride; - pOutputVector += OutputStride; - } - - return pOutputStream; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pOutputStream); - XMASSERT(pInputStream); - - UINT i; - const BYTE *pInputVector = (BYTE*)pInputStream; - BYTE *pOutputVector = (BYTE*)pOutputStream; - - for (i = 0; i < VectorCount; i++) - { - XMVECTOR X = _mm_load_ps1(&reinterpret_cast(pInputVector)->x); - XMVECTOR Y = _mm_load_ps1(&reinterpret_cast(pInputVector)->y); - XMVECTOR vResult = _mm_load_ps1(&reinterpret_cast(pInputVector)->z); - vResult = _mm_mul_ps(vResult,M.r[2]); - vResult = _mm_add_ps(vResult,M.r[3]); - Y = _mm_mul_ps(Y,M.r[1]); - vResult = _mm_add_ps(vResult,Y); - X = _mm_mul_ps(X,M.r[0]); - vResult = _mm_add_ps(vResult,X); - - X = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(3,3,3,3)); - vResult = _mm_div_ps(vResult,X); - _mm_store_ss(&reinterpret_cast(pOutputVector)->x,vResult); - vResult = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(0,3,2,1)); - _mm_store_ss(&reinterpret_cast(pOutputVector)->y,vResult); - vResult = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(0,3,2,1)); - _mm_store_ss(&reinterpret_cast(pOutputVector)->z,vResult); - pInputVector += InputStride; - pOutputVector += OutputStride; - } - - return pOutputStream; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector3TransformNormal -( - FXMVECTOR V, - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR X; - XMVECTOR Y; - XMVECTOR Z; - XMVECTOR Result; - - Z = XMVectorSplatZ(V); - Y = XMVectorSplatY(V); - X = XMVectorSplatX(V); - - Result = XMVectorMultiply(Z, M.r[2]); - Result = XMVectorMultiplyAdd(Y, M.r[1], Result); - Result = XMVectorMultiplyAdd(X, M.r[0], Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(0,0,0,0)); - vResult = _mm_mul_ps(vResult,M.r[0]); - XMVECTOR vTemp = _mm_shuffle_ps(V,V,_MM_SHUFFLE(1,1,1,1)); - vTemp = _mm_mul_ps(vTemp,M.r[1]); - vResult = _mm_add_ps(vResult,vTemp); - vTemp = _mm_shuffle_ps(V,V,_MM_SHUFFLE(2,2,2,2)); - vTemp = _mm_mul_ps(vTemp,M.r[2]); - vResult = _mm_add_ps(vResult,vTemp); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMFLOAT3* XMVector3TransformNormalStream -( - XMFLOAT3* pOutputStream, - UINT OutputStride, - CONST XMFLOAT3* pInputStream, - UINT InputStride, - UINT VectorCount, - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - XMVECTOR X; - XMVECTOR Y; - XMVECTOR Z; - XMVECTOR Result; - UINT i; - BYTE* pInputVector = (BYTE*)pInputStream; - BYTE* pOutputVector = (BYTE*)pOutputStream; - - XMASSERT(pOutputStream); - XMASSERT(pInputStream); - - for (i = 0; i < VectorCount; i++) - { - V = XMLoadFloat3((XMFLOAT3*)pInputVector); - Z = XMVectorSplatZ(V); - Y = XMVectorSplatY(V); - X = XMVectorSplatX(V); -// Z = XMVectorReplicate(((XMFLOAT3*)pInputVector)->z); -// Y = XMVectorReplicate(((XMFLOAT3*)pInputVector)->y); -// X = XMVectorReplicate(((XMFLOAT3*)pInputVector)->x); - - Result = XMVectorMultiply(Z, M.r[2]); - Result = XMVectorMultiplyAdd(Y, M.r[1], Result); - Result = XMVectorMultiplyAdd(X, M.r[0], Result); - - XMStoreFloat3((XMFLOAT3*)pOutputVector, Result); - - pInputVector += InputStride; - pOutputVector += OutputStride; - } - - return pOutputStream; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pOutputStream); - XMASSERT(pInputStream); - - UINT i; - const BYTE *pInputVector = (BYTE*)pInputStream; - BYTE *pOutputVector = (BYTE*)pOutputStream; - - for (i = 0; i < VectorCount; i++) - { - XMVECTOR X = _mm_load_ps1(&reinterpret_cast(pInputVector)->x); - XMVECTOR Y = _mm_load_ps1(&reinterpret_cast(pInputVector)->y); - XMVECTOR vResult = _mm_load_ps1(&reinterpret_cast(pInputVector)->z); - vResult = _mm_mul_ps(vResult,M.r[2]); - Y = _mm_mul_ps(Y,M.r[1]); - vResult = _mm_add_ps(vResult,Y); - X = _mm_mul_ps(X,M.r[0]); - vResult = _mm_add_ps(vResult,X); - _mm_store_ss(&reinterpret_cast(pOutputVector)->x,vResult); - vResult = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(0,3,2,1)); - _mm_store_ss(&reinterpret_cast(pOutputVector)->y,vResult); - vResult = _mm_shuffle_ps(vResult,vResult,_MM_SHUFFLE(0,3,2,1)); - _mm_store_ss(&reinterpret_cast(pOutputVector)->z,vResult); - pInputVector += InputStride; - pOutputVector += OutputStride; - } - - return pOutputStream; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMVECTOR XMVector3Project -( - FXMVECTOR V, - FLOAT ViewportX, - FLOAT ViewportY, - FLOAT ViewportWidth, - FLOAT ViewportHeight, - FLOAT ViewportMinZ, - FLOAT ViewportMaxZ, - CXMMATRIX Projection, - CXMMATRIX View, - CXMMATRIX World -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMMATRIX Transform; - XMVECTOR Scale; - XMVECTOR Offset; - XMVECTOR Result; - FLOAT HalfViewportWidth = ViewportWidth * 0.5f; - FLOAT HalfViewportHeight = ViewportHeight * 0.5f; - - Scale = XMVectorSet(HalfViewportWidth, - -HalfViewportHeight, - ViewportMaxZ - ViewportMinZ, - 0.0f); - - Offset = XMVectorSet(ViewportX + HalfViewportWidth, - ViewportY + HalfViewportHeight, - ViewportMinZ, - 0.0f); - - Transform = XMMatrixMultiply(World, View); - Transform = XMMatrixMultiply(Transform, Projection); - - Result = XMVector3TransformCoord(V, Transform); - - Result = XMVectorMultiplyAdd(Result, Scale, Offset); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMMATRIX Transform; - XMVECTOR Scale; - XMVECTOR Offset; - XMVECTOR Result; - FLOAT HalfViewportWidth = ViewportWidth * 0.5f; - FLOAT HalfViewportHeight = ViewportHeight * 0.5f; - - Scale = XMVectorSet(HalfViewportWidth, - -HalfViewportHeight, - ViewportMaxZ - ViewportMinZ, - 0.0f); - - Offset = XMVectorSet(ViewportX + HalfViewportWidth, - ViewportY + HalfViewportHeight, - ViewportMinZ, - 0.0f); - Transform = XMMatrixMultiply(World, View); - Transform = XMMatrixMultiply(Transform, Projection); - Result = XMVector3TransformCoord(V, Transform); - Result = _mm_mul_ps(Result,Scale); - Result = _mm_add_ps(Result,Offset); - return Result; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMFLOAT3* XMVector3ProjectStream -( - XMFLOAT3* pOutputStream, - UINT OutputStride, - CONST XMFLOAT3* pInputStream, - UINT InputStride, - UINT VectorCount, - FLOAT ViewportX, - FLOAT ViewportY, - FLOAT ViewportWidth, - FLOAT ViewportHeight, - FLOAT ViewportMinZ, - FLOAT ViewportMaxZ, - CXMMATRIX Projection, - CXMMATRIX View, - CXMMATRIX World -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMMATRIX Transform; - XMVECTOR V; - XMVECTOR Scale; - XMVECTOR Offset; - XMVECTOR Result; - UINT i; - FLOAT HalfViewportWidth = ViewportWidth * 0.5f; - FLOAT HalfViewportHeight = ViewportHeight * 0.5f; - BYTE* pInputVector = (BYTE*)pInputStream; - BYTE* pOutputVector = (BYTE*)pOutputStream; - - XMASSERT(pOutputStream); - XMASSERT(pInputStream); - - Scale = XMVectorSet(HalfViewportWidth, - -HalfViewportHeight, - ViewportMaxZ - ViewportMinZ, - 1.0f); - - Offset = XMVectorSet(ViewportX + HalfViewportWidth, - ViewportY + HalfViewportHeight, - ViewportMinZ, - 0.0f); - - Transform = XMMatrixMultiply(World, View); - Transform = XMMatrixMultiply(Transform, Projection); - - for (i = 0; i < VectorCount; i++) - { - V = XMLoadFloat3((XMFLOAT3*)pInputVector); - - Result = XMVector3TransformCoord(V, Transform); - - Result = XMVectorMultiplyAdd(Result, Scale, Offset); - - XMStoreFloat3((XMFLOAT3*)pOutputVector, Result); - - pInputVector += InputStride; - pOutputVector += OutputStride; - } - - return pOutputStream; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pOutputStream); - XMASSERT(pInputStream); - XMMATRIX Transform; - XMVECTOR V; - XMVECTOR Scale; - XMVECTOR Offset; - XMVECTOR Result; - UINT i; - FLOAT HalfViewportWidth = ViewportWidth * 0.5f; - FLOAT HalfViewportHeight = ViewportHeight * 0.5f; - BYTE* pInputVector = (BYTE*)pInputStream; - BYTE* pOutputVector = (BYTE*)pOutputStream; - - Scale = XMVectorSet(HalfViewportWidth, - -HalfViewportHeight, - ViewportMaxZ - ViewportMinZ, - 1.0f); - - Offset = XMVectorSet(ViewportX + HalfViewportWidth, - ViewportY + HalfViewportHeight, - ViewportMinZ, - 0.0f); - - Transform = XMMatrixMultiply(World, View); - Transform = XMMatrixMultiply(Transform, Projection); - - for (i = 0; i < VectorCount; i++) - { - V = XMLoadFloat3((XMFLOAT3*)pInputVector); - - Result = XMVector3TransformCoord(V, Transform); - - Result = _mm_mul_ps(Result,Scale); - Result = _mm_add_ps(Result,Offset); - XMStoreFloat3((XMFLOAT3*)pOutputVector, Result); - pInputVector += InputStride; - pOutputVector += OutputStride; - } - return pOutputStream; - -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector3Unproject -( - FXMVECTOR V, - FLOAT ViewportX, - FLOAT ViewportY, - FLOAT ViewportWidth, - FLOAT ViewportHeight, - FLOAT ViewportMinZ, - FLOAT ViewportMaxZ, - CXMMATRIX Projection, - CXMMATRIX View, - CXMMATRIX World -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMMATRIX Transform; - XMVECTOR Scale; - XMVECTOR Offset; - XMVECTOR Determinant; - XMVECTOR Result; - CONST XMVECTOR D = XMVectorSet(-1.0f, 1.0f, 0.0f, 0.0f); - - Scale = XMVectorSet(ViewportWidth * 0.5f, - -ViewportHeight * 0.5f, - ViewportMaxZ - ViewportMinZ, - 1.0f); - Scale = XMVectorReciprocal(Scale); - - Offset = XMVectorSet(-ViewportX, - -ViewportY, - -ViewportMinZ, - 0.0f); - Offset = XMVectorMultiplyAdd(Scale, Offset, D); - - Transform = XMMatrixMultiply(World, View); - Transform = XMMatrixMultiply(Transform, Projection); - Transform = XMMatrixInverse(&Determinant, Transform); - - Result = XMVectorMultiplyAdd(V, Scale, Offset); - - Result = XMVector3TransformCoord(Result, Transform); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMMATRIX Transform; - XMVECTOR Scale; - XMVECTOR Offset; - XMVECTOR Determinant; - XMVECTOR Result; - CONST XMVECTORF32 D = {-1.0f, 1.0f, 0.0f, 0.0f}; - - Scale = XMVectorSet(ViewportWidth * 0.5f, - -ViewportHeight * 0.5f, - ViewportMaxZ - ViewportMinZ, - 1.0f); - Scale = XMVectorReciprocal(Scale); - - Offset = XMVectorSet(-ViewportX, - -ViewportY, - -ViewportMinZ, - 0.0f); - Offset = _mm_mul_ps(Offset,Scale); - Offset = _mm_add_ps(Offset,D); - - Transform = XMMatrixMultiply(World, View); - Transform = XMMatrixMultiply(Transform, Projection); - Transform = XMMatrixInverse(&Determinant, Transform); - - Result = _mm_mul_ps(V,Scale); - Result = _mm_add_ps(Result,Offset); - - Result = XMVector3TransformCoord(Result, Transform); - - return Result; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMFLOAT3* XMVector3UnprojectStream -( - XMFLOAT3* pOutputStream, - UINT OutputStride, - CONST XMFLOAT3* pInputStream, - UINT InputStride, - UINT VectorCount, - FLOAT ViewportX, - FLOAT ViewportY, - FLOAT ViewportWidth, - FLOAT ViewportHeight, - FLOAT ViewportMinZ, - FLOAT ViewportMaxZ, - CXMMATRIX Projection, - CXMMATRIX View, - CXMMATRIX World) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMMATRIX Transform; - XMVECTOR Scale; - XMVECTOR Offset; - XMVECTOR V; - XMVECTOR Determinant; - XMVECTOR Result; - UINT i; - BYTE* pInputVector = (BYTE*)pInputStream; - BYTE* pOutputVector = (BYTE*)pOutputStream; - CONST XMVECTOR D = XMVectorSet(-1.0f, 1.0f, 0.0f, 0.0f); - - XMASSERT(pOutputStream); - XMASSERT(pInputStream); - - Scale = XMVectorSet(ViewportWidth * 0.5f, - -ViewportHeight * 0.5f, - ViewportMaxZ - ViewportMinZ, - 1.0f); - Scale = XMVectorReciprocal(Scale); - - Offset = XMVectorSet(-ViewportX, - -ViewportY, - -ViewportMinZ, - 0.0f); - Offset = XMVectorMultiplyAdd(Scale, Offset, D); - - Transform = XMMatrixMultiply(World, View); - Transform = XMMatrixMultiply(Transform, Projection); - Transform = XMMatrixInverse(&Determinant, Transform); - - for (i = 0; i < VectorCount; i++) - { - V = XMLoadFloat3((XMFLOAT3*)pInputVector); - - Result = XMVectorMultiplyAdd(V, Scale, Offset); - - Result = XMVector3TransformCoord(Result, Transform); - - XMStoreFloat3((XMFLOAT3*)pOutputVector, Result); - - pInputVector += InputStride; - pOutputVector += OutputStride; - } - - return pOutputStream; - -#elif defined(_XM_SSE_INTRINSICS_) - XMASSERT(pOutputStream); - XMASSERT(pInputStream); - XMMATRIX Transform; - XMVECTOR Scale; - XMVECTOR Offset; - XMVECTOR V; - XMVECTOR Determinant; - XMVECTOR Result; - UINT i; - BYTE* pInputVector = (BYTE*)pInputStream; - BYTE* pOutputVector = (BYTE*)pOutputStream; - CONST XMVECTORF32 D = {-1.0f, 1.0f, 0.0f, 0.0f}; - - Scale = XMVectorSet(ViewportWidth * 0.5f, - -ViewportHeight * 0.5f, - ViewportMaxZ - ViewportMinZ, - 1.0f); - Scale = XMVectorReciprocal(Scale); - - Offset = XMVectorSet(-ViewportX, - -ViewportY, - -ViewportMinZ, - 0.0f); - Offset = _mm_mul_ps(Offset,Scale); - Offset = _mm_add_ps(Offset,D); - - Transform = XMMatrixMultiply(World, View); - Transform = XMMatrixMultiply(Transform, Projection); - Transform = XMMatrixInverse(&Determinant, Transform); - - for (i = 0; i < VectorCount; i++) - { - V = XMLoadFloat3((XMFLOAT3*)pInputVector); - - Result = XMVectorMultiplyAdd(V, Scale, Offset); - - Result = XMVector3TransformCoord(Result, Transform); - - XMStoreFloat3((XMFLOAT3*)pOutputVector, Result); - - pInputVector += InputStride; - pOutputVector += OutputStride; - } - - return pOutputStream; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -/**************************************************************************** - * - * 4D Vector - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ -// Comparison operations -//------------------------------------------------------------------------------ - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector4Equal -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - return (((V1.vector4_f32[0] == V2.vector4_f32[0]) && (V1.vector4_f32[1] == V2.vector4_f32[1]) && (V1.vector4_f32[2] == V2.vector4_f32[2]) && (V1.vector4_f32[3] == V2.vector4_f32[3])) != 0); -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp = _mm_cmpeq_ps(V1,V2); - return ((_mm_movemask_ps(vTemp)==0x0f) != 0); -#else - return XMComparisonAllTrue(XMVector4EqualR(V1, V2)); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE UINT XMVector4EqualR -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - UINT CR = 0; - - if ((V1.vector4_f32[0] == V2.vector4_f32[0]) && - (V1.vector4_f32[1] == V2.vector4_f32[1]) && - (V1.vector4_f32[2] == V2.vector4_f32[2]) && - (V1.vector4_f32[3] == V2.vector4_f32[3])) - { - CR = XM_CRMASK_CR6TRUE; - } - else if ((V1.vector4_f32[0] != V2.vector4_f32[0]) && - (V1.vector4_f32[1] != V2.vector4_f32[1]) && - (V1.vector4_f32[2] != V2.vector4_f32[2]) && - (V1.vector4_f32[3] != V2.vector4_f32[3])) - { - CR = XM_CRMASK_CR6FALSE; - } - return CR; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp = _mm_cmpeq_ps(V1,V2); - int iTest = _mm_movemask_ps(vTemp); - UINT CR = 0; - if (iTest==0xf) // All equal? - { - CR = XM_CRMASK_CR6TRUE; - } - else if (iTest==0) // All not equal? - { - CR = XM_CRMASK_CR6FALSE; - } - return CR; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector4EqualInt -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - return (((V1.vector4_u32[0] == V2.vector4_u32[0]) && (V1.vector4_u32[1] == V2.vector4_u32[1]) && (V1.vector4_u32[2] == V2.vector4_u32[2]) && (V1.vector4_u32[3] == V2.vector4_u32[3])) != 0); -#elif defined(_XM_SSE_INTRINSICS_) - __m128i vTemp = _mm_cmpeq_epi32(reinterpret_cast(&V1)[0],reinterpret_cast(&V2)[0]); - return ((_mm_movemask_ps(reinterpret_cast(&vTemp)[0])==0xf) != 0); -#else - return XMComparisonAllTrue(XMVector4EqualIntR(V1, V2)); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE UINT XMVector4EqualIntR -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - UINT CR = 0; - if (V1.vector4_u32[0] == V2.vector4_u32[0] && - V1.vector4_u32[1] == V2.vector4_u32[1] && - V1.vector4_u32[2] == V2.vector4_u32[2] && - V1.vector4_u32[3] == V2.vector4_u32[3]) - { - CR = XM_CRMASK_CR6TRUE; - } - else if (V1.vector4_u32[0] != V2.vector4_u32[0] && - V1.vector4_u32[1] != V2.vector4_u32[1] && - V1.vector4_u32[2] != V2.vector4_u32[2] && - V1.vector4_u32[3] != V2.vector4_u32[3]) - { - CR = XM_CRMASK_CR6FALSE; - } - return CR; - -#elif defined(_XM_SSE_INTRINSICS_) - __m128i vTemp = _mm_cmpeq_epi32(reinterpret_cast(&V1)[0],reinterpret_cast(&V2)[0]); - int iTest = _mm_movemask_ps(reinterpret_cast(&vTemp)[0]); - UINT CR = 0; - if (iTest==0xf) // All equal? - { - CR = XM_CRMASK_CR6TRUE; - } - else if (iTest==0) // All not equal? - { - CR = XM_CRMASK_CR6FALSE; - } - return CR; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -XMFINLINE BOOL XMVector4NearEqual -( - FXMVECTOR V1, - FXMVECTOR V2, - FXMVECTOR Epsilon -) -{ -#if defined(_XM_NO_INTRINSICS_) - FLOAT dx, dy, dz, dw; - - dx = fabsf(V1.vector4_f32[0]-V2.vector4_f32[0]); - dy = fabsf(V1.vector4_f32[1]-V2.vector4_f32[1]); - dz = fabsf(V1.vector4_f32[2]-V2.vector4_f32[2]); - dw = fabsf(V1.vector4_f32[3]-V2.vector4_f32[3]); - return (((dx <= Epsilon.vector4_f32[0]) && - (dy <= Epsilon.vector4_f32[1]) && - (dz <= Epsilon.vector4_f32[2]) && - (dw <= Epsilon.vector4_f32[3])) != 0); -#elif defined(_XM_SSE_INTRINSICS_) - // Get the difference - XMVECTOR vDelta = _mm_sub_ps(V1,V2); - // Get the absolute value of the difference - XMVECTOR vTemp = _mm_setzero_ps(); - vTemp = _mm_sub_ps(vTemp,vDelta); - vTemp = _mm_max_ps(vTemp,vDelta); - vTemp = _mm_cmple_ps(vTemp,Epsilon); - return ((_mm_movemask_ps(vTemp)==0xf) != 0); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector4NotEqual -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - return (((V1.vector4_f32[0] != V2.vector4_f32[0]) || (V1.vector4_f32[1] != V2.vector4_f32[1]) || (V1.vector4_f32[2] != V2.vector4_f32[2]) || (V1.vector4_f32[3] != V2.vector4_f32[3])) != 0); -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp = _mm_cmpneq_ps(V1,V2); - return ((_mm_movemask_ps(vTemp)) != 0); -#else - return XMComparisonAnyFalse(XMVector4EqualR(V1, V2)); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector4NotEqualInt -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - return (((V1.vector4_u32[0] != V2.vector4_u32[0]) || (V1.vector4_u32[1] != V2.vector4_u32[1]) || (V1.vector4_u32[2] != V2.vector4_u32[2]) || (V1.vector4_u32[3] != V2.vector4_u32[3])) != 0); -#elif defined(_XM_SSE_INTRINSICS_) - __m128i vTemp = _mm_cmpeq_epi32(reinterpret_cast(&V1)[0],reinterpret_cast(&V2)[0]); - return ((_mm_movemask_ps(reinterpret_cast(&vTemp)[0])!=0xF) != 0); -#else - return XMComparisonAnyFalse(XMVector4EqualIntR(V1, V2)); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector4Greater -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - return (((V1.vector4_f32[0] > V2.vector4_f32[0]) && (V1.vector4_f32[1] > V2.vector4_f32[1]) && (V1.vector4_f32[2] > V2.vector4_f32[2]) && (V1.vector4_f32[3] > V2.vector4_f32[3])) != 0); -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp = _mm_cmpgt_ps(V1,V2); - return ((_mm_movemask_ps(vTemp)==0x0f) != 0); -#else - return XMComparisonAllTrue(XMVector4GreaterR(V1, V2)); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE UINT XMVector4GreaterR -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - UINT CR = 0; - if (V1.vector4_f32[0] > V2.vector4_f32[0] && - V1.vector4_f32[1] > V2.vector4_f32[1] && - V1.vector4_f32[2] > V2.vector4_f32[2] && - V1.vector4_f32[3] > V2.vector4_f32[3]) - { - CR = XM_CRMASK_CR6TRUE; - } - else if (V1.vector4_f32[0] <= V2.vector4_f32[0] && - V1.vector4_f32[1] <= V2.vector4_f32[1] && - V1.vector4_f32[2] <= V2.vector4_f32[2] && - V1.vector4_f32[3] <= V2.vector4_f32[3]) - { - CR = XM_CRMASK_CR6FALSE; - } - return CR; - -#elif defined(_XM_SSE_INTRINSICS_) - UINT CR = 0; - XMVECTOR vTemp = _mm_cmpgt_ps(V1,V2); - int iTest = _mm_movemask_ps(vTemp); - if (iTest==0xf) { - CR = XM_CRMASK_CR6TRUE; - } - else if (!iTest) - { - CR = XM_CRMASK_CR6FALSE; - } - return CR; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector4GreaterOrEqual -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - return (((V1.vector4_f32[0] >= V2.vector4_f32[0]) && (V1.vector4_f32[1] >= V2.vector4_f32[1]) && (V1.vector4_f32[2] >= V2.vector4_f32[2]) && (V1.vector4_f32[3] >= V2.vector4_f32[3])) != 0); -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp = _mm_cmpge_ps(V1,V2); - return ((_mm_movemask_ps(vTemp)==0x0f) != 0); -#else - return XMComparisonAllTrue(XMVector4GreaterOrEqualR(V1, V2)); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE UINT XMVector4GreaterOrEqualR -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - UINT CR = 0; - if ((V1.vector4_f32[0] >= V2.vector4_f32[0]) && - (V1.vector4_f32[1] >= V2.vector4_f32[1]) && - (V1.vector4_f32[2] >= V2.vector4_f32[2]) && - (V1.vector4_f32[3] >= V2.vector4_f32[3])) - { - CR = XM_CRMASK_CR6TRUE; - } - else if ((V1.vector4_f32[0] < V2.vector4_f32[0]) && - (V1.vector4_f32[1] < V2.vector4_f32[1]) && - (V1.vector4_f32[2] < V2.vector4_f32[2]) && - (V1.vector4_f32[3] < V2.vector4_f32[3])) - { - CR = XM_CRMASK_CR6FALSE; - } - return CR; - -#elif defined(_XM_SSE_INTRINSICS_) - UINT CR = 0; - XMVECTOR vTemp = _mm_cmpge_ps(V1,V2); - int iTest = _mm_movemask_ps(vTemp); - if (iTest==0x0f) - { - CR = XM_CRMASK_CR6TRUE; - } - else if (!iTest) - { - CR = XM_CRMASK_CR6FALSE; - } - return CR; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector4Less -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - return (((V1.vector4_f32[0] < V2.vector4_f32[0]) && (V1.vector4_f32[1] < V2.vector4_f32[1]) && (V1.vector4_f32[2] < V2.vector4_f32[2]) && (V1.vector4_f32[3] < V2.vector4_f32[3])) != 0); -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp = _mm_cmplt_ps(V1,V2); - return ((_mm_movemask_ps(vTemp)==0x0f) != 0); -#else - return XMComparisonAllTrue(XMVector4GreaterR(V2, V1)); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector4LessOrEqual -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - return (((V1.vector4_f32[0] <= V2.vector4_f32[0]) && (V1.vector4_f32[1] <= V2.vector4_f32[1]) && (V1.vector4_f32[2] <= V2.vector4_f32[2]) && (V1.vector4_f32[3] <= V2.vector4_f32[3])) != 0); -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp = _mm_cmple_ps(V1,V2); - return ((_mm_movemask_ps(vTemp)==0x0f) != 0); -#else - return XMComparisonAllTrue(XMVector4GreaterOrEqualR(V2, V1)); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector4InBounds -( - FXMVECTOR V, - FXMVECTOR Bounds -) -{ -#if defined(_XM_NO_INTRINSICS_) - return (((V.vector4_f32[0] <= Bounds.vector4_f32[0] && V.vector4_f32[0] >= -Bounds.vector4_f32[0]) && - (V.vector4_f32[1] <= Bounds.vector4_f32[1] && V.vector4_f32[1] >= -Bounds.vector4_f32[1]) && - (V.vector4_f32[2] <= Bounds.vector4_f32[2] && V.vector4_f32[2] >= -Bounds.vector4_f32[2]) && - (V.vector4_f32[3] <= Bounds.vector4_f32[3] && V.vector4_f32[3] >= -Bounds.vector4_f32[3])) != 0); -#elif defined(_XM_SSE_INTRINSICS_) - // Test if less than or equal - XMVECTOR vTemp1 = _mm_cmple_ps(V,Bounds); - // Negate the bounds - XMVECTOR vTemp2 = _mm_mul_ps(Bounds,g_XMNegativeOne); - // Test if greater or equal (Reversed) - vTemp2 = _mm_cmple_ps(vTemp2,V); - // Blend answers - vTemp1 = _mm_and_ps(vTemp1,vTemp2); - // All in bounds? - return ((_mm_movemask_ps(vTemp1)==0x0f) != 0); -#else - return XMComparisonAllInBounds(XMVector4InBoundsR(V, Bounds)); -#endif -} - -//------------------------------------------------------------------------------ - -XMFINLINE UINT XMVector4InBoundsR -( - FXMVECTOR V, - FXMVECTOR Bounds -) -{ -#if defined(_XM_NO_INTRINSICS_) - - UINT CR = 0; - if ((V.vector4_f32[0] <= Bounds.vector4_f32[0] && V.vector4_f32[0] >= -Bounds.vector4_f32[0]) && - (V.vector4_f32[1] <= Bounds.vector4_f32[1] && V.vector4_f32[1] >= -Bounds.vector4_f32[1]) && - (V.vector4_f32[2] <= Bounds.vector4_f32[2] && V.vector4_f32[2] >= -Bounds.vector4_f32[2]) && - (V.vector4_f32[3] <= Bounds.vector4_f32[3] && V.vector4_f32[3] >= -Bounds.vector4_f32[3])) - { - CR = XM_CRMASK_CR6BOUNDS; - } - return CR; - -#elif defined(_XM_SSE_INTRINSICS_) - // Test if less than or equal - XMVECTOR vTemp1 = _mm_cmple_ps(V,Bounds); - // Negate the bounds - XMVECTOR vTemp2 = _mm_mul_ps(Bounds,g_XMNegativeOne); - // Test if greater or equal (Reversed) - vTemp2 = _mm_cmple_ps(vTemp2,V); - // Blend answers - vTemp1 = _mm_and_ps(vTemp1,vTemp2); - // All in bounds? - return (_mm_movemask_ps(vTemp1)==0x0f) ? XM_CRMASK_CR6BOUNDS : 0; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector4IsNaN -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - return (XMISNAN(V.vector4_f32[0]) || - XMISNAN(V.vector4_f32[1]) || - XMISNAN(V.vector4_f32[2]) || - XMISNAN(V.vector4_f32[3])); -#elif defined(_XM_SSE_INTRINSICS_) - // Test against itself. NaN is always not equal - XMVECTOR vTempNan = _mm_cmpneq_ps(V,V); - // If any are NaN, the mask is non-zero - return (_mm_movemask_ps(vTempNan)!=0); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE BOOL XMVector4IsInfinite -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - return (XMISINF(V.vector4_f32[0]) || - XMISINF(V.vector4_f32[1]) || - XMISINF(V.vector4_f32[2]) || - XMISINF(V.vector4_f32[3])); - -#elif defined(_XM_SSE_INTRINSICS_) - // Mask off the sign bit - XMVECTOR vTemp = _mm_and_ps(V,g_XMAbsMask); - // Compare to infinity - vTemp = _mm_cmpeq_ps(vTemp,g_XMInfinity); - // If any are infinity, the signs are true. - return (_mm_movemask_ps(vTemp) != 0); -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// Computation operations -//------------------------------------------------------------------------------ - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector4Dot -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - - Result.vector4_f32[0] = - Result.vector4_f32[1] = - Result.vector4_f32[2] = - Result.vector4_f32[3] = V1.vector4_f32[0] * V2.vector4_f32[0] + V1.vector4_f32[1] * V2.vector4_f32[1] + V1.vector4_f32[2] * V2.vector4_f32[2] + V1.vector4_f32[3] * V2.vector4_f32[3]; - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vTemp2 = V2; - XMVECTOR vTemp = _mm_mul_ps(V1,vTemp2); - vTemp2 = _mm_shuffle_ps(vTemp2,vTemp,_MM_SHUFFLE(1,0,0,0)); // Copy X to the Z position and Y to the W position - vTemp2 = _mm_add_ps(vTemp2,vTemp); // Add Z = X+Z; W = Y+W; - vTemp = _mm_shuffle_ps(vTemp,vTemp2,_MM_SHUFFLE(0,3,0,0)); // Copy W to the Z position - vTemp = _mm_add_ps(vTemp,vTemp2); // Add Z and W together - return _mm_shuffle_ps(vTemp,vTemp,_MM_SHUFFLE(2,2,2,2)); // Splat Z and return -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector4Cross -( - FXMVECTOR V1, - FXMVECTOR V2, - FXMVECTOR V3 -) -{ -#if defined(_XM_NO_INTRINSICS_) - XMVECTOR Result; - - Result.vector4_f32[0] = (((V2.vector4_f32[2]*V3.vector4_f32[3])-(V2.vector4_f32[3]*V3.vector4_f32[2]))*V1.vector4_f32[1])-(((V2.vector4_f32[1]*V3.vector4_f32[3])-(V2.vector4_f32[3]*V3.vector4_f32[1]))*V1.vector4_f32[2])+(((V2.vector4_f32[1]*V3.vector4_f32[2])-(V2.vector4_f32[2]*V3.vector4_f32[1]))*V1.vector4_f32[3]); - Result.vector4_f32[1] = (((V2.vector4_f32[3]*V3.vector4_f32[2])-(V2.vector4_f32[2]*V3.vector4_f32[3]))*V1.vector4_f32[0])-(((V2.vector4_f32[3]*V3.vector4_f32[0])-(V2.vector4_f32[0]*V3.vector4_f32[3]))*V1.vector4_f32[2])+(((V2.vector4_f32[2]*V3.vector4_f32[0])-(V2.vector4_f32[0]*V3.vector4_f32[2]))*V1.vector4_f32[3]); - Result.vector4_f32[2] = (((V2.vector4_f32[1]*V3.vector4_f32[3])-(V2.vector4_f32[3]*V3.vector4_f32[1]))*V1.vector4_f32[0])-(((V2.vector4_f32[0]*V3.vector4_f32[3])-(V2.vector4_f32[3]*V3.vector4_f32[0]))*V1.vector4_f32[1])+(((V2.vector4_f32[0]*V3.vector4_f32[1])-(V2.vector4_f32[1]*V3.vector4_f32[0]))*V1.vector4_f32[3]); - Result.vector4_f32[3] = (((V2.vector4_f32[2]*V3.vector4_f32[1])-(V2.vector4_f32[1]*V3.vector4_f32[2]))*V1.vector4_f32[0])-(((V2.vector4_f32[2]*V3.vector4_f32[0])-(V2.vector4_f32[0]*V3.vector4_f32[2]))*V1.vector4_f32[1])+(((V2.vector4_f32[1]*V3.vector4_f32[0])-(V2.vector4_f32[0]*V3.vector4_f32[1]))*V1.vector4_f32[2]); - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // V2zwyz * V3wzwy - XMVECTOR vResult = _mm_shuffle_ps(V2,V2,_MM_SHUFFLE(2,1,3,2)); - XMVECTOR vTemp3 = _mm_shuffle_ps(V3,V3,_MM_SHUFFLE(1,3,2,3)); - vResult = _mm_mul_ps(vResult,vTemp3); - // - V2wzwy * V3zwyz - XMVECTOR vTemp2 = _mm_shuffle_ps(V2,V2,_MM_SHUFFLE(1,3,2,3)); - vTemp3 = _mm_shuffle_ps(vTemp3,vTemp3,_MM_SHUFFLE(1,3,0,1)); - vTemp2 = _mm_mul_ps(vTemp2,vTemp3); - vResult = _mm_sub_ps(vResult,vTemp2); - // term1 * V1yxxx - XMVECTOR vTemp1 = _mm_shuffle_ps(V1,V1,_MM_SHUFFLE(0,0,0,1)); - vResult = _mm_mul_ps(vResult,vTemp1); - - // V2ywxz * V3wxwx - vTemp2 = _mm_shuffle_ps(V2,V2,_MM_SHUFFLE(2,0,3,1)); - vTemp3 = _mm_shuffle_ps(V3,V3,_MM_SHUFFLE(0,3,0,3)); - vTemp3 = _mm_mul_ps(vTemp3,vTemp2); - // - V2wxwx * V3ywxz - vTemp2 = _mm_shuffle_ps(vTemp2,vTemp2,_MM_SHUFFLE(2,1,2,1)); - vTemp1 = _mm_shuffle_ps(V3,V3,_MM_SHUFFLE(2,0,3,1)); - vTemp2 = _mm_mul_ps(vTemp2,vTemp1); - vTemp3 = _mm_sub_ps(vTemp3,vTemp2); - // vResult - temp * V1zzyy - vTemp1 = _mm_shuffle_ps(V1,V1,_MM_SHUFFLE(1,1,2,2)); - vTemp1 = _mm_mul_ps(vTemp1,vTemp3); - vResult = _mm_sub_ps(vResult,vTemp1); - - // V2yzxy * V3zxyx - vTemp2 = _mm_shuffle_ps(V2,V2,_MM_SHUFFLE(1,0,2,1)); - vTemp3 = _mm_shuffle_ps(V3,V3,_MM_SHUFFLE(0,1,0,2)); - vTemp3 = _mm_mul_ps(vTemp3,vTemp2); - // - V2zxyx * V3yzxy - vTemp2 = _mm_shuffle_ps(vTemp2,vTemp2,_MM_SHUFFLE(2,0,2,1)); - vTemp1 = _mm_shuffle_ps(V3,V3,_MM_SHUFFLE(1,0,2,1)); - vTemp1 = _mm_mul_ps(vTemp1,vTemp2); - vTemp3 = _mm_sub_ps(vTemp3,vTemp1); - // vResult + term * V1wwwz - vTemp1 = _mm_shuffle_ps(V1,V1,_MM_SHUFFLE(2,3,3,3)); - vTemp3 = _mm_mul_ps(vTemp3,vTemp1); - vResult = _mm_add_ps(vResult,vTemp3); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector4LengthSq -( - FXMVECTOR V -) -{ - return XMVector4Dot(V, V); -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector4ReciprocalLengthEst -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - - Result = XMVector4LengthSq(V); - Result = XMVectorReciprocalSqrtEst(Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Perform the dot product on x,y,z and w - XMVECTOR vLengthSq = _mm_mul_ps(V,V); - // vTemp has z and w - XMVECTOR vTemp = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(3,2,3,2)); - // x+z, y+w - vLengthSq = _mm_add_ps(vLengthSq,vTemp); - // x+z,x+z,x+z,y+w - vLengthSq = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(1,0,0,0)); - // ??,??,y+w,y+w - vTemp = _mm_shuffle_ps(vTemp,vLengthSq,_MM_SHUFFLE(3,3,0,0)); - // ??,??,x+z+y+w,?? - vLengthSq = _mm_add_ps(vLengthSq,vTemp); - // Splat the length - vLengthSq = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(2,2,2,2)); - // Get the reciprocal - vLengthSq = _mm_rsqrt_ps(vLengthSq); - return vLengthSq; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector4ReciprocalLength -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - - Result = XMVector4LengthSq(V); - Result = XMVectorReciprocalSqrt(Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Perform the dot product on x,y,z and w - XMVECTOR vLengthSq = _mm_mul_ps(V,V); - // vTemp has z and w - XMVECTOR vTemp = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(3,2,3,2)); - // x+z, y+w - vLengthSq = _mm_add_ps(vLengthSq,vTemp); - // x+z,x+z,x+z,y+w - vLengthSq = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(1,0,0,0)); - // ??,??,y+w,y+w - vTemp = _mm_shuffle_ps(vTemp,vLengthSq,_MM_SHUFFLE(3,3,0,0)); - // ??,??,x+z+y+w,?? - vLengthSq = _mm_add_ps(vLengthSq,vTemp); - // Splat the length - vLengthSq = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(2,2,2,2)); - // Get the reciprocal - vLengthSq = _mm_sqrt_ps(vLengthSq); - // Accurate! - vLengthSq = _mm_div_ps(g_XMOne,vLengthSq); - return vLengthSq; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector4LengthEst -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - - Result = XMVector4LengthSq(V); - Result = XMVectorSqrtEst(Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Perform the dot product on x,y,z and w - XMVECTOR vLengthSq = _mm_mul_ps(V,V); - // vTemp has z and w - XMVECTOR vTemp = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(3,2,3,2)); - // x+z, y+w - vLengthSq = _mm_add_ps(vLengthSq,vTemp); - // x+z,x+z,x+z,y+w - vLengthSq = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(1,0,0,0)); - // ??,??,y+w,y+w - vTemp = _mm_shuffle_ps(vTemp,vLengthSq,_MM_SHUFFLE(3,3,0,0)); - // ??,??,x+z+y+w,?? - vLengthSq = _mm_add_ps(vLengthSq,vTemp); - // Splat the length - vLengthSq = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(2,2,2,2)); - // Prepare for the division - vLengthSq = _mm_sqrt_ps(vLengthSq); - return vLengthSq; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector4Length -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - - Result = XMVector4LengthSq(V); - Result = XMVectorSqrt(Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Perform the dot product on x,y,z and w - XMVECTOR vLengthSq = _mm_mul_ps(V,V); - // vTemp has z and w - XMVECTOR vTemp = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(3,2,3,2)); - // x+z, y+w - vLengthSq = _mm_add_ps(vLengthSq,vTemp); - // x+z,x+z,x+z,y+w - vLengthSq = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(1,0,0,0)); - // ??,??,y+w,y+w - vTemp = _mm_shuffle_ps(vTemp,vLengthSq,_MM_SHUFFLE(3,3,0,0)); - // ??,??,x+z+y+w,?? - vLengthSq = _mm_add_ps(vLengthSq,vTemp); - // Splat the length - vLengthSq = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(2,2,2,2)); - // Prepare for the division - vLengthSq = _mm_sqrt_ps(vLengthSq); - return vLengthSq; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ -// XMVector4NormalizeEst uses a reciprocal estimate and -// returns QNaN on zero and infinite vectors. - -XMFINLINE XMVECTOR XMVector4NormalizeEst -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - Result = XMVector4ReciprocalLength(V); - Result = XMVectorMultiply(V, Result); - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Perform the dot product on x,y,z and w - XMVECTOR vLengthSq = _mm_mul_ps(V,V); - // vTemp has z and w - XMVECTOR vTemp = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(3,2,3,2)); - // x+z, y+w - vLengthSq = _mm_add_ps(vLengthSq,vTemp); - // x+z,x+z,x+z,y+w - vLengthSq = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(1,0,0,0)); - // ??,??,y+w,y+w - vTemp = _mm_shuffle_ps(vTemp,vLengthSq,_MM_SHUFFLE(3,3,0,0)); - // ??,??,x+z+y+w,?? - vLengthSq = _mm_add_ps(vLengthSq,vTemp); - // Splat the length - vLengthSq = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(2,2,2,2)); - // Get the reciprocal - XMVECTOR vResult = _mm_rsqrt_ps(vLengthSq); - // Reciprocal mul to perform the normalization - vResult = _mm_mul_ps(vResult,V); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector4Normalize -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - FLOAT fLength; - XMVECTOR vResult; - - vResult = XMVector4Length( V ); - fLength = vResult.vector4_f32[0]; - - // Prevent divide by zero - if (fLength > 0) { - fLength = 1.0f/fLength; - } - - vResult.vector4_f32[0] = V.vector4_f32[0]*fLength; - vResult.vector4_f32[1] = V.vector4_f32[1]*fLength; - vResult.vector4_f32[2] = V.vector4_f32[2]*fLength; - vResult.vector4_f32[3] = V.vector4_f32[3]*fLength; - return vResult; - -#elif defined(_XM_SSE_INTRINSICS_) - // Perform the dot product on x,y,z and w - XMVECTOR vLengthSq = _mm_mul_ps(V,V); - // vTemp has z and w - XMVECTOR vTemp = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(3,2,3,2)); - // x+z, y+w - vLengthSq = _mm_add_ps(vLengthSq,vTemp); - // x+z,x+z,x+z,y+w - vLengthSq = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(1,0,0,0)); - // ??,??,y+w,y+w - vTemp = _mm_shuffle_ps(vTemp,vLengthSq,_MM_SHUFFLE(3,3,0,0)); - // ??,??,x+z+y+w,?? - vLengthSq = _mm_add_ps(vLengthSq,vTemp); - // Splat the length - vLengthSq = _mm_shuffle_ps(vLengthSq,vLengthSq,_MM_SHUFFLE(2,2,2,2)); - // Prepare for the division - XMVECTOR vResult = _mm_sqrt_ps(vLengthSq); - // Create zero with a single instruction - XMVECTOR vZeroMask = _mm_setzero_ps(); - // Test for a divide by zero (Must be FP to detect -0.0) - vZeroMask = _mm_cmpneq_ps(vZeroMask,vResult); - // Failsafe on zero (Or epsilon) length planes - // If the length is infinity, set the elements to zero - vLengthSq = _mm_cmpneq_ps(vLengthSq,g_XMInfinity); - // Divide to perform the normalization - vResult = _mm_div_ps(V,vResult); - // Any that are infinity, set to zero - vResult = _mm_and_ps(vResult,vZeroMask); - // Select qnan or result based on infinite length - XMVECTOR vTemp1 = _mm_andnot_ps(vLengthSq,g_XMQNaN); - XMVECTOR vTemp2 = _mm_and_ps(vResult,vLengthSq); - vResult = _mm_or_ps(vTemp1,vTemp2); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector4ClampLength -( - FXMVECTOR V, - FLOAT LengthMin, - FLOAT LengthMax -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR ClampMax; - XMVECTOR ClampMin; - - ClampMax = XMVectorReplicate(LengthMax); - ClampMin = XMVectorReplicate(LengthMin); - - return XMVector4ClampLengthV(V, ClampMin, ClampMax); - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR ClampMax = _mm_set_ps1(LengthMax); - XMVECTOR ClampMin = _mm_set_ps1(LengthMin); - return XMVector4ClampLengthV(V, ClampMin, ClampMax); -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector4ClampLengthV -( - FXMVECTOR V, - FXMVECTOR LengthMin, - FXMVECTOR LengthMax -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR ClampLength; - XMVECTOR LengthSq; - XMVECTOR RcpLength; - XMVECTOR Length; - XMVECTOR Normal; - XMVECTOR Zero; - XMVECTOR InfiniteLength; - XMVECTOR ZeroLength; - XMVECTOR Select; - XMVECTOR ControlMax; - XMVECTOR ControlMin; - XMVECTOR Control; - XMVECTOR Result; - - XMASSERT((LengthMin.vector4_f32[1] == LengthMin.vector4_f32[0]) && (LengthMin.vector4_f32[2] == LengthMin.vector4_f32[0]) && (LengthMin.vector4_f32[3] == LengthMin.vector4_f32[0])); - XMASSERT((LengthMax.vector4_f32[1] == LengthMax.vector4_f32[0]) && (LengthMax.vector4_f32[2] == LengthMax.vector4_f32[0]) && (LengthMax.vector4_f32[3] == LengthMax.vector4_f32[0])); - XMASSERT(XMVector4GreaterOrEqual(LengthMin, XMVectorZero())); - XMASSERT(XMVector4GreaterOrEqual(LengthMax, XMVectorZero())); - XMASSERT(XMVector4GreaterOrEqual(LengthMax, LengthMin)); - - LengthSq = XMVector4LengthSq(V); - - Zero = XMVectorZero(); - - RcpLength = XMVectorReciprocalSqrt(LengthSq); - - InfiniteLength = XMVectorEqualInt(LengthSq, g_XMInfinity.v); - ZeroLength = XMVectorEqual(LengthSq, Zero); - - Normal = XMVectorMultiply(V, RcpLength); - - Length = XMVectorMultiply(LengthSq, RcpLength); - - Select = XMVectorEqualInt(InfiniteLength, ZeroLength); - Length = XMVectorSelect(LengthSq, Length, Select); - Normal = XMVectorSelect(LengthSq, Normal, Select); - - ControlMax = XMVectorGreater(Length, LengthMax); - ControlMin = XMVectorLess(Length, LengthMin); - - ClampLength = XMVectorSelect(Length, LengthMax, ControlMax); - ClampLength = XMVectorSelect(ClampLength, LengthMin, ControlMin); - - Result = XMVectorMultiply(Normal, ClampLength); - - // Preserve the original vector (with no precision loss) if the length falls within the given range - Control = XMVectorEqualInt(ControlMax, ControlMin); - Result = XMVectorSelect(Result, V, Control); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR ClampLength; - XMVECTOR LengthSq; - XMVECTOR RcpLength; - XMVECTOR Length; - XMVECTOR Normal; - XMVECTOR Zero; - XMVECTOR InfiniteLength; - XMVECTOR ZeroLength; - XMVECTOR Select; - XMVECTOR ControlMax; - XMVECTOR ControlMin; - XMVECTOR Control; - XMVECTOR Result; - - XMASSERT((XMVectorGetY(LengthMin) == XMVectorGetX(LengthMin)) && (XMVectorGetZ(LengthMin) == XMVectorGetX(LengthMin)) && (XMVectorGetW(LengthMin) == XMVectorGetX(LengthMin))); - XMASSERT((XMVectorGetY(LengthMax) == XMVectorGetX(LengthMax)) && (XMVectorGetZ(LengthMax) == XMVectorGetX(LengthMax)) && (XMVectorGetW(LengthMax) == XMVectorGetX(LengthMax))); - XMASSERT(XMVector4GreaterOrEqual(LengthMin, g_XMZero)); - XMASSERT(XMVector4GreaterOrEqual(LengthMax, g_XMZero)); - XMASSERT(XMVector4GreaterOrEqual(LengthMax, LengthMin)); - - LengthSq = XMVector4LengthSq(V); - Zero = XMVectorZero(); - RcpLength = XMVectorReciprocalSqrt(LengthSq); - InfiniteLength = XMVectorEqualInt(LengthSq, g_XMInfinity); - ZeroLength = XMVectorEqual(LengthSq, Zero); - Normal = _mm_mul_ps(V, RcpLength); - Length = _mm_mul_ps(LengthSq, RcpLength); - Select = XMVectorEqualInt(InfiniteLength, ZeroLength); - Length = XMVectorSelect(LengthSq, Length, Select); - Normal = XMVectorSelect(LengthSq, Normal, Select); - ControlMax = XMVectorGreater(Length, LengthMax); - ControlMin = XMVectorLess(Length, LengthMin); - ClampLength = XMVectorSelect(Length, LengthMax, ControlMax); - ClampLength = XMVectorSelect(ClampLength, LengthMin, ControlMin); - Result = _mm_mul_ps(Normal, ClampLength); - // Preserve the original vector (with no precision loss) if the length falls within the given range - Control = XMVectorEqualInt(ControlMax,ControlMin); - Result = XMVectorSelect(Result,V,Control); - return Result; - -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector4Reflect -( - FXMVECTOR Incident, - FXMVECTOR Normal -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - - // Result = Incident - (2 * dot(Incident, Normal)) * Normal - Result = XMVector4Dot(Incident, Normal); - Result = XMVectorAdd(Result, Result); - Result = XMVectorNegativeMultiplySubtract(Result, Normal, Incident); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - // Result = Incident - (2 * dot(Incident, Normal)) * Normal - XMVECTOR Result = XMVector4Dot(Incident,Normal); - Result = _mm_add_ps(Result,Result); - Result = _mm_mul_ps(Result,Normal); - Result = _mm_sub_ps(Incident,Result); - return Result; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector4Refract -( - FXMVECTOR Incident, - FXMVECTOR Normal, - FLOAT RefractionIndex -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Index; - Index = XMVectorReplicate(RefractionIndex); - return XMVector4RefractV(Incident, Normal, Index); - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR Index = _mm_set_ps1(RefractionIndex); - return XMVector4RefractV(Incident,Normal,Index); -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector4RefractV -( - FXMVECTOR Incident, - FXMVECTOR Normal, - FXMVECTOR RefractionIndex -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR IDotN; - XMVECTOR R; - CONST XMVECTOR Zero = XMVectorZero(); - - // Result = RefractionIndex * Incident - Normal * (RefractionIndex * dot(Incident, Normal) + - // sqrt(1 - RefractionIndex * RefractionIndex * (1 - dot(Incident, Normal) * dot(Incident, Normal)))) - - IDotN = XMVector4Dot(Incident, Normal); - - // R = 1.0f - RefractionIndex * RefractionIndex * (1.0f - IDotN * IDotN) - R = XMVectorNegativeMultiplySubtract(IDotN, IDotN, g_XMOne.v); - R = XMVectorMultiply(R, RefractionIndex); - R = XMVectorNegativeMultiplySubtract(R, RefractionIndex, g_XMOne.v); - - if (XMVector4LessOrEqual(R, Zero)) - { - // Total internal reflection - return Zero; - } - else - { - XMVECTOR Result; - - // R = RefractionIndex * IDotN + sqrt(R) - R = XMVectorSqrt(R); - R = XMVectorMultiplyAdd(RefractionIndex, IDotN, R); - - // Result = RefractionIndex * Incident - Normal * R - Result = XMVectorMultiply(RefractionIndex, Incident); - Result = XMVectorNegativeMultiplySubtract(Normal, R, Result); - - return Result; - } - -#elif defined(_XM_SSE_INTRINSICS_) - // Result = RefractionIndex * Incident - Normal * (RefractionIndex * dot(Incident, Normal) + - // sqrt(1 - RefractionIndex * RefractionIndex * (1 - dot(Incident, Normal) * dot(Incident, Normal)))) - - XMVECTOR IDotN = XMVector4Dot(Incident,Normal); - - // R = 1.0f - RefractionIndex * RefractionIndex * (1.0f - IDotN * IDotN) - XMVECTOR R = _mm_mul_ps(IDotN,IDotN); - R = _mm_sub_ps(g_XMOne,R); - R = _mm_mul_ps(R, RefractionIndex); - R = _mm_mul_ps(R, RefractionIndex); - R = _mm_sub_ps(g_XMOne,R); - - XMVECTOR vResult = _mm_cmple_ps(R,g_XMZero); - if (_mm_movemask_ps(vResult)==0x0f) - { - // Total internal reflection - vResult = g_XMZero; - } - else - { - // R = RefractionIndex * IDotN + sqrt(R) - R = _mm_sqrt_ps(R); - vResult = _mm_mul_ps(RefractionIndex, IDotN); - R = _mm_add_ps(R,vResult); - // Result = RefractionIndex * Incident - Normal * R - vResult = _mm_mul_ps(RefractionIndex, Incident); - R = _mm_mul_ps(R,Normal); - vResult = _mm_sub_ps(vResult,R); - } - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector4Orthogonal -( - FXMVECTOR V -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR Result; - Result.vector4_f32[0] = V.vector4_f32[2]; - Result.vector4_f32[1] = V.vector4_f32[3]; - Result.vector4_f32[2] = -V.vector4_f32[0]; - Result.vector4_f32[3] = -V.vector4_f32[1]; - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - static const XMVECTORF32 FlipZW = {1.0f,1.0f,-1.0f,-1.0f}; - XMVECTOR vResult = _mm_shuffle_ps(V,V,_MM_SHUFFLE(1,0,3,2)); - vResult = _mm_mul_ps(vResult,FlipZW); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector4AngleBetweenNormalsEst -( - FXMVECTOR N1, - FXMVECTOR N2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR NegativeOne; - XMVECTOR One; - XMVECTOR Result; - - Result = XMVector4Dot(N1, N2); - NegativeOne = XMVectorSplatConstant(-1, 0); - One = XMVectorSplatOne(); - Result = XMVectorClamp(Result, NegativeOne, One); - Result = XMVectorACosEst(Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vResult = XMVector4Dot(N1,N2); - // Clamp to -1.0f to 1.0f - vResult = _mm_max_ps(vResult,g_XMNegativeOne); - vResult = _mm_min_ps(vResult,g_XMOne);; - vResult = XMVectorACosEst(vResult); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector4AngleBetweenNormals -( - FXMVECTOR N1, - FXMVECTOR N2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR NegativeOne; - XMVECTOR One; - XMVECTOR Result; - - Result = XMVector4Dot(N1, N2); - NegativeOne = XMVectorSplatConstant(-1, 0); - One = XMVectorSplatOne(); - Result = XMVectorClamp(Result, NegativeOne, One); - Result = XMVectorACos(Result); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR vResult = XMVector4Dot(N1,N2); - // Clamp to -1.0f to 1.0f - vResult = _mm_max_ps(vResult,g_XMNegativeOne); - vResult = _mm_min_ps(vResult,g_XMOne);; - vResult = XMVectorACos(vResult); - return vResult; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector4AngleBetweenVectors -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR L1; - XMVECTOR L2; - XMVECTOR Dot; - XMVECTOR CosAngle; - XMVECTOR NegativeOne; - XMVECTOR One; - XMVECTOR Result; - - L1 = XMVector4ReciprocalLength(V1); - L2 = XMVector4ReciprocalLength(V2); - - Dot = XMVector4Dot(V1, V2); - - L1 = XMVectorMultiply(L1, L2); - - CosAngle = XMVectorMultiply(Dot, L1); - NegativeOne = XMVectorSplatConstant(-1, 0); - One = XMVectorSplatOne(); - CosAngle = XMVectorClamp(CosAngle, NegativeOne, One); - - Result = XMVectorACos(CosAngle); - - return Result; - -#elif defined(_XM_SSE_INTRINSICS_) - XMVECTOR L1; - XMVECTOR L2; - XMVECTOR Dot; - XMVECTOR CosAngle; - XMVECTOR Result; - - L1 = XMVector4ReciprocalLength(V1); - L2 = XMVector4ReciprocalLength(V2); - Dot = XMVector4Dot(V1, V2); - L1 = _mm_mul_ps(L1,L2); - CosAngle = _mm_mul_ps(Dot,L1); - CosAngle = XMVectorClamp(CosAngle, g_XMNegativeOne, g_XMOne); - Result = XMVectorACos(CosAngle); - return Result; - -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR XMVector4Transform -( - FXMVECTOR V, - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) - FLOAT fX = (M.m[0][0]*V.vector4_f32[0])+(M.m[1][0]*V.vector4_f32[1])+(M.m[2][0]*V.vector4_f32[2])+(M.m[3][0]*V.vector4_f32[3]); - FLOAT fY = (M.m[0][1]*V.vector4_f32[0])+(M.m[1][1]*V.vector4_f32[1])+(M.m[2][1]*V.vector4_f32[2])+(M.m[3][1]*V.vector4_f32[3]); - FLOAT fZ = (M.m[0][2]*V.vector4_f32[0])+(M.m[1][2]*V.vector4_f32[1])+(M.m[2][2]*V.vector4_f32[2])+(M.m[3][2]*V.vector4_f32[3]); - FLOAT fW = (M.m[0][3]*V.vector4_f32[0])+(M.m[1][3]*V.vector4_f32[1])+(M.m[2][3]*V.vector4_f32[2])+(M.m[3][3]*V.vector4_f32[3]); - XMVECTOR vResult = { - fX, - fY, - fZ, - fW - }; - return vResult; - -#elif defined(_XM_SSE_INTRINSICS_) - // Splat x,y,z and w - XMVECTOR vTempX = _mm_shuffle_ps(V,V,_MM_SHUFFLE(0,0,0,0)); - XMVECTOR vTempY = _mm_shuffle_ps(V,V,_MM_SHUFFLE(1,1,1,1)); - XMVECTOR vTempZ = _mm_shuffle_ps(V,V,_MM_SHUFFLE(2,2,2,2)); - XMVECTOR vTempW = _mm_shuffle_ps(V,V,_MM_SHUFFLE(3,3,3,3)); - // Mul by the matrix - vTempX = _mm_mul_ps(vTempX,M.r[0]); - vTempY = _mm_mul_ps(vTempY,M.r[1]); - vTempZ = _mm_mul_ps(vTempZ,M.r[2]); - vTempW = _mm_mul_ps(vTempW,M.r[3]); - // Add them all together - vTempX = _mm_add_ps(vTempX,vTempY); - vTempZ = _mm_add_ps(vTempZ,vTempW); - vTempX = _mm_add_ps(vTempX,vTempZ); - return vTempX; -#else // _XM_VMX128_INTRINSICS_ -#endif // _XM_VMX128_INTRINSICS_ -} - -//------------------------------------------------------------------------------ - -XMINLINE XMFLOAT4* XMVector4TransformStream -( - XMFLOAT4* pOutputStream, - UINT OutputStride, - CONST XMFLOAT4* pInputStream, - UINT InputStride, - UINT VectorCount, - CXMMATRIX M -) -{ -#if defined(_XM_NO_INTRINSICS_) - - XMVECTOR V; - XMVECTOR X; - XMVECTOR Y; - XMVECTOR Z; - XMVECTOR W; - XMVECTOR Result; - UINT i; - BYTE* pInputVector = (BYTE*)pInputStream; - BYTE* pOutputVector = (BYTE*)pOutputStream; - - XMASSERT(pOutputStream); - XMASSERT(pInputStream); - - for (i = 0; i < VectorCount; i++) - { - V = XMLoadFloat4((XMFLOAT4*)pInputVector); - W = XMVectorSplatW(V); - Z = XMVectorSplatZ(V); - Y = XMVectorSplatY(V); - X = XMVectorSplatX(V); -// W = XMVectorReplicate(((XMFLOAT4*)pInputVector)->w); -// Z = XMVectorReplicate(((XMFLOAT4*)pInputVector)->z); -// Y = XMVectorReplicate(((XMFLOAT4*)pInputVector)->y); -// X = XMVectorReplicate(((XMFLOAT4*)pInputVector)->x); - - Result = XMVectorMultiply(W, M.r[3]); - Result = XMVectorMultiplyAdd(Z, M.r[2], Result); - Result = XMVectorMultiplyAdd(Y, M.r[1], Result); - Result = XMVectorMultiplyAdd(X, M.r[0], Result); - - XMStoreFloat4((XMFLOAT4*)pOutputVector, Result); - - pInputVector += InputStride; - pOutputVector += OutputStride; - } - - return pOutputStream; - -#elif defined(_XM_SSE_INTRINSICS_) - UINT i; - - XMASSERT(pOutputStream); - XMASSERT(pInputStream); - - const BYTE*pInputVector = reinterpret_cast(pInputStream); - BYTE* pOutputVector = reinterpret_cast(pOutputStream); - for (i = 0; i < VectorCount; i++) - { - // Fetch the row and splat it - XMVECTOR vTempx = _mm_loadu_ps(reinterpret_cast(pInputVector)); - XMVECTOR vTempy = _mm_shuffle_ps(vTempx,vTempx,_MM_SHUFFLE(1,1,1,1)); - XMVECTOR vTempz = _mm_shuffle_ps(vTempx,vTempx,_MM_SHUFFLE(2,2,2,2)); - XMVECTOR vTempw = _mm_shuffle_ps(vTempx,vTempx,_MM_SHUFFLE(3,3,3,3)); - vTempx = _mm_shuffle_ps(vTempx,vTempx,_MM_SHUFFLE(0,0,0,0)); - vTempx = _mm_mul_ps(vTempx,M.r[0]); - vTempy = _mm_mul_ps(vTempy,M.r[1]); - vTempz = _mm_mul_ps(vTempz,M.r[2]); - vTempw = _mm_mul_ps(vTempw,M.r[3]); - vTempx = _mm_add_ps(vTempx,vTempy); - vTempw = _mm_add_ps(vTempw,vTempz); - vTempw = _mm_add_ps(vTempw,vTempx); - // Store the transformed vector - _mm_storeu_ps(reinterpret_cast(pOutputVector),vTempw); - - pInputVector += InputStride; - pOutputVector += OutputStride; - } - return pOutputStream; -#elif defined(XM_NO_MISALIGNED_VECTOR_ACCESS) -#endif // _XM_VMX128_INTRINSICS_ -} - -#ifdef __cplusplus - -/**************************************************************************** - * - * XMVECTOR operators - * - ****************************************************************************/ - -#ifndef XM_NO_OPERATOR_OVERLOADS - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR operator+ (FXMVECTOR V) -{ - return V; -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR operator- (FXMVECTOR V) -{ - return XMVectorNegate(V); -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR& operator+= -( - XMVECTOR& V1, - FXMVECTOR V2 -) -{ - V1 = XMVectorAdd(V1, V2); - return V1; -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR& operator-= -( - XMVECTOR& V1, - FXMVECTOR V2 -) -{ - V1 = XMVectorSubtract(V1, V2); - return V1; -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR& operator*= -( - XMVECTOR& V1, - FXMVECTOR V2 -) -{ - V1 = XMVectorMultiply(V1, V2); - return V1; -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR& operator/= -( - XMVECTOR& V1, - FXMVECTOR V2 -) -{ - V1 = XMVectorDivide(V1,V2); - return V1; -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR& operator*= -( - XMVECTOR& V, - CONST FLOAT S -) -{ - V = XMVectorScale(V, S); - return V; -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR& operator/= -( - XMVECTOR& V, - CONST FLOAT S -) -{ - V = XMVectorScale(V, 1.0f / S); - return V; -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR operator+ -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ - return XMVectorAdd(V1, V2); -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR operator- -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ - return XMVectorSubtract(V1, V2); -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR operator* -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ - return XMVectorMultiply(V1, V2); -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR operator/ -( - FXMVECTOR V1, - FXMVECTOR V2 -) -{ - return XMVectorDivide(V1,V2); -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR operator* -( - FXMVECTOR V, - CONST FLOAT S -) -{ - return XMVectorScale(V, S); -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR operator/ -( - FXMVECTOR V, - CONST FLOAT S -) -{ - return XMVectorScale(V, 1.0f / S); -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMVECTOR operator* -( - FLOAT S, - FXMVECTOR V -) -{ - return XMVectorScale(V, S); -} - -#endif // !XM_NO_OPERATOR_OVERLOADS - -/**************************************************************************** - * - * XMFLOAT2 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMFLOAT2::_XMFLOAT2 -( - CONST FLOAT* pArray -) -{ - x = pArray[0]; - y = pArray[1]; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMFLOAT2& _XMFLOAT2::operator= -( - CONST _XMFLOAT2& Float2 -) -{ - x = Float2.x; - y = Float2.y; - return *this; -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMFLOAT2A& XMFLOAT2A::operator= -( - CONST XMFLOAT2A& Float2 -) -{ - x = Float2.x; - y = Float2.y; - return *this; -} - -/**************************************************************************** - * - * XMHALF2 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMHALF2::_XMHALF2 -( - CONST HALF* pArray -) -{ - x = pArray[0]; - y = pArray[1]; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMHALF2::_XMHALF2 -( - FLOAT _x, - FLOAT _y -) -{ - x = XMConvertFloatToHalf(_x); - y = XMConvertFloatToHalf(_y); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMHALF2::_XMHALF2 -( - CONST FLOAT* pArray -) -{ - x = XMConvertFloatToHalf(pArray[0]); - y = XMConvertFloatToHalf(pArray[1]); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMHALF2& _XMHALF2::operator= -( - CONST _XMHALF2& Half2 -) -{ - x = Half2.x; - y = Half2.y; - return *this; -} - -/**************************************************************************** - * - * XMSHORTN2 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMSHORTN2::_XMSHORTN2 -( - CONST SHORT* pArray -) -{ - x = pArray[0]; - y = pArray[1]; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMSHORTN2::_XMSHORTN2 -( - FLOAT _x, - FLOAT _y -) -{ - XMStoreShortN2(this, XMVectorSet(_x, _y, 0.0f, 0.0f)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMSHORTN2::_XMSHORTN2 -( - CONST FLOAT* pArray -) -{ - XMStoreShortN2(this, XMLoadFloat2((XMFLOAT2*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMSHORTN2& _XMSHORTN2::operator= -( - CONST _XMSHORTN2& ShortN2 -) -{ - x = ShortN2.x; - y = ShortN2.y; - return *this; -} - -/**************************************************************************** - * - * XMSHORT2 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMSHORT2::_XMSHORT2 -( - CONST SHORT* pArray -) -{ - x = pArray[0]; - y = pArray[1]; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMSHORT2::_XMSHORT2 -( - FLOAT _x, - FLOAT _y -) -{ - XMStoreShort2(this, XMVectorSet(_x, _y, 0.0f, 0.0f)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMSHORT2::_XMSHORT2 -( - CONST FLOAT* pArray -) -{ - XMStoreShort2(this, XMLoadFloat2((XMFLOAT2*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMSHORT2& _XMSHORT2::operator= -( - CONST _XMSHORT2& Short2 -) -{ - x = Short2.x; - y = Short2.y; - return *this; -} - -/**************************************************************************** - * - * XMUSHORTN2 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUSHORTN2::_XMUSHORTN2 -( - CONST USHORT* pArray -) -{ - x = pArray[0]; - y = pArray[1]; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUSHORTN2::_XMUSHORTN2 -( - FLOAT _x, - FLOAT _y -) -{ - XMStoreUShortN2(this, XMVectorSet(_x, _y, 0.0f, 0.0f)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUSHORTN2::_XMUSHORTN2 -( - CONST FLOAT* pArray -) -{ - XMStoreUShortN2(this, XMLoadFloat2((XMFLOAT2*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUSHORTN2& _XMUSHORTN2::operator= -( - CONST _XMUSHORTN2& UShortN2 -) -{ - x = UShortN2.x; - y = UShortN2.y; - return *this; -} - -/**************************************************************************** - * - * XMUSHORT2 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUSHORT2::_XMUSHORT2 -( - CONST USHORT* pArray -) -{ - x = pArray[0]; - y = pArray[1]; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUSHORT2::_XMUSHORT2 -( - FLOAT _x, - FLOAT _y -) -{ - XMStoreUShort2(this, XMVectorSet(_x, _y, 0.0f, 0.0f)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUSHORT2::_XMUSHORT2 -( - CONST FLOAT* pArray -) -{ - XMStoreUShort2(this, XMLoadFloat2((XMFLOAT2*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUSHORT2& _XMUSHORT2::operator= -( - CONST _XMUSHORT2& UShort2 -) -{ - x = UShort2.x; - y = UShort2.y; - return *this; -} - -/**************************************************************************** - * - * XMFLOAT3 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMFLOAT3::_XMFLOAT3 -( - CONST FLOAT* pArray -) -{ - x = pArray[0]; - y = pArray[1]; - z = pArray[2]; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMFLOAT3& _XMFLOAT3::operator= -( - CONST _XMFLOAT3& Float3 -) -{ - x = Float3.x; - y = Float3.y; - z = Float3.z; - return *this; -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMFLOAT3A& XMFLOAT3A::operator= -( - CONST XMFLOAT3A& Float3 -) -{ - x = Float3.x; - y = Float3.y; - z = Float3.z; - return *this; -} - -/**************************************************************************** - * - * XMHENDN3 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMHENDN3::_XMHENDN3 -( - FLOAT _x, - FLOAT _y, - FLOAT _z -) -{ - XMStoreHenDN3(this, XMVectorSet(_x, _y, _z, 0.0f)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMHENDN3::_XMHENDN3 -( - CONST FLOAT* pArray -) -{ - XMStoreHenDN3(this, XMLoadFloat3((XMFLOAT3*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMHENDN3& _XMHENDN3::operator= -( - CONST _XMHENDN3& HenDN3 -) -{ - v = HenDN3.v; - return *this; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMHENDN3& _XMHENDN3::operator= -( - CONST UINT Packed -) -{ - v = Packed; - return *this; -} - -/**************************************************************************** - * - * XMHEND3 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMHEND3::_XMHEND3 -( - FLOAT _x, - FLOAT _y, - FLOAT _z -) -{ - XMStoreHenD3(this, XMVectorSet(_x, _y, _z, 0.0f)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMHEND3::_XMHEND3 -( - CONST FLOAT* pArray -) -{ - XMStoreHenD3(this, XMLoadFloat3((XMFLOAT3*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMHEND3& _XMHEND3::operator= -( - CONST _XMHEND3& HenD3 -) -{ - v = HenD3.v; - return *this; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMHEND3& _XMHEND3::operator= -( - CONST UINT Packed -) -{ - v = Packed; - return *this; -} - -/**************************************************************************** - * - * XMUHENDN3 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUHENDN3::_XMUHENDN3 -( - FLOAT _x, - FLOAT _y, - FLOAT _z -) -{ - XMStoreUHenDN3(this, XMVectorSet(_x, _y, _z, 0.0f)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUHENDN3::_XMUHENDN3 -( - CONST FLOAT* pArray -) -{ - XMStoreUHenDN3(this, XMLoadFloat3((XMFLOAT3*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUHENDN3& _XMUHENDN3::operator= -( - CONST _XMUHENDN3& UHenDN3 -) -{ - v = UHenDN3.v; - return *this; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUHENDN3& _XMUHENDN3::operator= -( - CONST UINT Packed -) -{ - v = Packed; - return *this; -} - -/**************************************************************************** - * - * XMUHEND3 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUHEND3::_XMUHEND3 -( - FLOAT _x, - FLOAT _y, - FLOAT _z -) -{ - XMStoreUHenD3(this, XMVectorSet(_x, _y, _z, 0.0f)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUHEND3::_XMUHEND3 -( - CONST FLOAT* pArray -) -{ - XMStoreUHenD3(this, XMLoadFloat3((XMFLOAT3*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUHEND3& _XMUHEND3::operator= -( - CONST _XMUHEND3& UHenD3 -) -{ - v = UHenD3.v; - return *this; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUHEND3& _XMUHEND3::operator= -( - CONST UINT Packed -) -{ - v = Packed; - return *this; -} - -/**************************************************************************** - * - * XMDHENN3 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMDHENN3::_XMDHENN3 -( - FLOAT _x, - FLOAT _y, - FLOAT _z -) -{ - XMStoreDHenN3(this, XMVectorSet(_x, _y, _z, 0.0f)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMDHENN3::_XMDHENN3 -( - CONST FLOAT* pArray -) -{ - XMStoreDHenN3(this, XMLoadFloat3((XMFLOAT3*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMDHENN3& _XMDHENN3::operator= -( - CONST _XMDHENN3& DHenN3 -) -{ - v = DHenN3.v; - return *this; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMDHENN3& _XMDHENN3::operator= -( - CONST UINT Packed -) -{ - v = Packed; - return *this; -} - -/**************************************************************************** - * - * XMDHEN3 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMDHEN3::_XMDHEN3 -( - FLOAT _x, - FLOAT _y, - FLOAT _z -) -{ - XMStoreDHen3(this, XMVectorSet(_x, _y, _z, 0.0f)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMDHEN3::_XMDHEN3 -( - CONST FLOAT* pArray -) -{ - XMStoreDHen3(this, XMLoadFloat3((XMFLOAT3*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMDHEN3& _XMDHEN3::operator= -( - CONST _XMDHEN3& DHen3 -) -{ - v = DHen3.v; - return *this; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMDHEN3& _XMDHEN3::operator= -( - CONST UINT Packed -) -{ - v = Packed; - return *this; -} - -/**************************************************************************** - * - * XMUDHENN3 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUDHENN3::_XMUDHENN3 -( - FLOAT _x, - FLOAT _y, - FLOAT _z -) -{ - XMStoreUDHenN3(this, XMVectorSet(_x, _y, _z, 0.0f)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUDHENN3::_XMUDHENN3 -( - CONST FLOAT* pArray -) -{ - XMStoreUDHenN3(this, XMLoadFloat3((XMFLOAT3*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUDHENN3& _XMUDHENN3::operator= -( - CONST _XMUDHENN3& UDHenN3 -) -{ - v = UDHenN3.v; - return *this; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUDHENN3& _XMUDHENN3::operator= -( - CONST UINT Packed -) -{ - v = Packed; - return *this; -} - -/**************************************************************************** - * - * XMUDHEN3 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUDHEN3::_XMUDHEN3 -( - FLOAT _x, - FLOAT _y, - FLOAT _z -) -{ - XMStoreUDHen3(this, XMVectorSet(_x, _y, _z, 0.0f)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUDHEN3::_XMUDHEN3 -( - CONST FLOAT* pArray -) -{ - XMStoreUDHen3(this, XMLoadFloat3((XMFLOAT3*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUDHEN3& _XMUDHEN3::operator= -( - CONST _XMUDHEN3& UDHen3 -) -{ - v = UDHen3.v; - return *this; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUDHEN3& _XMUDHEN3::operator= -( - CONST UINT Packed -) -{ - v = Packed; - return *this; -} - -/**************************************************************************** - * - * XMU565 operators - * - ****************************************************************************/ - -XMFINLINE _XMU565::_XMU565 -( - CONST CHAR *pArray -) -{ - x = pArray[0]; - y = pArray[1]; - z = pArray[2]; -} - -XMFINLINE _XMU565::_XMU565 -( - FLOAT _x, - FLOAT _y, - FLOAT _z -) -{ - XMStoreU565(this, XMVectorSet( _x, _y, _z, 0.0f )); -} - -XMFINLINE _XMU565::_XMU565 -( - CONST FLOAT *pArray -) -{ - XMStoreU565(this, XMLoadFloat3((XMFLOAT3*)pArray )); -} - -XMFINLINE _XMU565& _XMU565::operator= -( - CONST _XMU565& U565 -) -{ - v = U565.v; - return *this; -} - -XMFINLINE _XMU565& _XMU565::operator= -( - CONST USHORT Packed -) -{ - v = Packed; - return *this; -} - -/**************************************************************************** - * - * XMFLOAT3PK operators - * - ****************************************************************************/ - -XMFINLINE _XMFLOAT3PK::_XMFLOAT3PK -( - FLOAT _x, - FLOAT _y, - FLOAT _z -) -{ - XMStoreFloat3PK(this, XMVectorSet( _x, _y, _z, 0.0f )); -} - -XMFINLINE _XMFLOAT3PK::_XMFLOAT3PK -( - CONST FLOAT *pArray -) -{ - XMStoreFloat3PK(this, XMLoadFloat3((XMFLOAT3*)pArray )); -} - -XMFINLINE _XMFLOAT3PK& _XMFLOAT3PK::operator= -( - CONST _XMFLOAT3PK& float3pk -) -{ - v = float3pk.v; - return *this; -} - -XMFINLINE _XMFLOAT3PK& _XMFLOAT3PK::operator= -( - CONST UINT Packed -) -{ - v = Packed; - return *this; -} - -/**************************************************************************** - * - * XMFLOAT3SE operators - * - ****************************************************************************/ - -XMFINLINE _XMFLOAT3SE::_XMFLOAT3SE -( - FLOAT _x, - FLOAT _y, - FLOAT _z -) -{ - XMStoreFloat3SE(this, XMVectorSet( _x, _y, _z, 0.0f )); -} - -XMFINLINE _XMFLOAT3SE::_XMFLOAT3SE -( - CONST FLOAT *pArray -) -{ - XMStoreFloat3SE(this, XMLoadFloat3((XMFLOAT3*)pArray )); -} - -XMFINLINE _XMFLOAT3SE& _XMFLOAT3SE::operator= -( - CONST _XMFLOAT3SE& float3se -) -{ - v = float3se.v; - return *this; -} - -XMFINLINE _XMFLOAT3SE& _XMFLOAT3SE::operator= -( - CONST UINT Packed -) -{ - v = Packed; - return *this; -} - -/**************************************************************************** - * - * XMFLOAT4 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMFLOAT4::_XMFLOAT4 -( - CONST FLOAT* pArray -) -{ - x = pArray[0]; - y = pArray[1]; - z = pArray[2]; - w = pArray[3]; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMFLOAT4& _XMFLOAT4::operator= -( - CONST _XMFLOAT4& Float4 -) -{ - x = Float4.x; - y = Float4.y; - z = Float4.z; - w = Float4.w; - return *this; -} - -//------------------------------------------------------------------------------ - -XMFINLINE XMFLOAT4A& XMFLOAT4A::operator= -( - CONST XMFLOAT4A& Float4 -) -{ - x = Float4.x; - y = Float4.y; - z = Float4.z; - w = Float4.w; - return *this; -} - -/**************************************************************************** - * - * XMHALF4 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMHALF4::_XMHALF4 -( - CONST HALF* pArray -) -{ - x = pArray[0]; - y = pArray[1]; - z = pArray[2]; - w = pArray[3]; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMHALF4::_XMHALF4 -( - FLOAT _x, - FLOAT _y, - FLOAT _z, - FLOAT _w -) -{ - x = XMConvertFloatToHalf(_x); - y = XMConvertFloatToHalf(_y); - z = XMConvertFloatToHalf(_z); - w = XMConvertFloatToHalf(_w); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMHALF4::_XMHALF4 -( - CONST FLOAT* pArray -) -{ - XMConvertFloatToHalfStream(&x, sizeof(HALF), pArray, sizeof(FLOAT), 4); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMHALF4& _XMHALF4::operator= -( - CONST _XMHALF4& Half4 -) -{ - x = Half4.x; - y = Half4.y; - z = Half4.z; - w = Half4.w; - return *this; -} - -/**************************************************************************** - * - * XMSHORTN4 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMSHORTN4::_XMSHORTN4 -( - CONST SHORT* pArray -) -{ - x = pArray[0]; - y = pArray[1]; - z = pArray[2]; - w = pArray[3]; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMSHORTN4::_XMSHORTN4 -( - FLOAT _x, - FLOAT _y, - FLOAT _z, - FLOAT _w -) -{ - XMStoreShortN4(this, XMVectorSet(_x, _y, _z, _w)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMSHORTN4::_XMSHORTN4 -( - CONST FLOAT* pArray -) -{ - XMStoreShortN4(this, XMLoadFloat4((XMFLOAT4*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMSHORTN4& _XMSHORTN4::operator= -( - CONST _XMSHORTN4& ShortN4 -) -{ - x = ShortN4.x; - y = ShortN4.y; - z = ShortN4.z; - w = ShortN4.w; - return *this; -} - -/**************************************************************************** - * - * XMSHORT4 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMSHORT4::_XMSHORT4 -( - CONST SHORT* pArray -) -{ - x = pArray[0]; - y = pArray[1]; - z = pArray[2]; - w = pArray[3]; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMSHORT4::_XMSHORT4 -( - FLOAT _x, - FLOAT _y, - FLOAT _z, - FLOAT _w -) -{ - XMStoreShort4(this, XMVectorSet(_x, _y, _z, _w)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMSHORT4::_XMSHORT4 -( - CONST FLOAT* pArray -) -{ - XMStoreShort4(this, XMLoadFloat4((XMFLOAT4*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMSHORT4& _XMSHORT4::operator= -( - CONST _XMSHORT4& Short4 -) -{ - x = Short4.x; - y = Short4.y; - z = Short4.z; - w = Short4.w; - return *this; -} - -/**************************************************************************** - * - * XMUSHORTN4 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUSHORTN4::_XMUSHORTN4 -( - CONST USHORT* pArray -) -{ - x = pArray[0]; - y = pArray[1]; - z = pArray[2]; - w = pArray[3]; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUSHORTN4::_XMUSHORTN4 -( - FLOAT _x, - FLOAT _y, - FLOAT _z, - FLOAT _w -) -{ - XMStoreUShortN4(this, XMVectorSet(_x, _y, _z, _w)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUSHORTN4::_XMUSHORTN4 -( - CONST FLOAT* pArray -) -{ - XMStoreUShortN4(this, XMLoadFloat4((XMFLOAT4*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUSHORTN4& _XMUSHORTN4::operator= -( - CONST _XMUSHORTN4& UShortN4 -) -{ - x = UShortN4.x; - y = UShortN4.y; - z = UShortN4.z; - w = UShortN4.w; - return *this; -} - -/**************************************************************************** - * - * XMUSHORT4 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUSHORT4::_XMUSHORT4 -( - CONST USHORT* pArray -) -{ - x = pArray[0]; - y = pArray[1]; - z = pArray[2]; - w = pArray[3]; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUSHORT4::_XMUSHORT4 -( - FLOAT _x, - FLOAT _y, - FLOAT _z, - FLOAT _w -) -{ - XMStoreUShort4(this, XMVectorSet(_x, _y, _z, _w)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUSHORT4::_XMUSHORT4 -( - CONST FLOAT* pArray -) -{ - XMStoreUShort4(this, XMLoadFloat4((XMFLOAT4*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUSHORT4& _XMUSHORT4::operator= -( - CONST _XMUSHORT4& UShort4 -) -{ - x = UShort4.x; - y = UShort4.y; - z = UShort4.z; - w = UShort4.w; - return *this; -} - -/**************************************************************************** - * - * XMXDECN4 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMXDECN4::_XMXDECN4 -( - FLOAT _x, - FLOAT _y, - FLOAT _z, - FLOAT _w -) -{ - XMStoreXDecN4(this, XMVectorSet(_x, _y, _z, _w)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMXDECN4::_XMXDECN4 -( - CONST FLOAT* pArray -) -{ - XMStoreXDecN4(this, XMLoadFloat4((XMFLOAT4*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMXDECN4& _XMXDECN4::operator= -( - CONST _XMXDECN4& XDecN4 -) -{ - v = XDecN4.v; - return *this; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMXDECN4& _XMXDECN4::operator= -( - CONST UINT Packed -) -{ - v = Packed; - return *this; -} - -/**************************************************************************** - * - * XMXDEC4 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMXDEC4::_XMXDEC4 -( - FLOAT _x, - FLOAT _y, - FLOAT _z, - FLOAT _w -) -{ - XMStoreXDec4(this, XMVectorSet(_x, _y, _z, _w)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMXDEC4::_XMXDEC4 -( - CONST FLOAT* pArray -) -{ - XMStoreXDec4(this, XMLoadFloat4((XMFLOAT4*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMXDEC4& _XMXDEC4::operator= -( - CONST _XMXDEC4& XDec4 -) -{ - v = XDec4.v; - return *this; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMXDEC4& _XMXDEC4::operator= -( - CONST UINT Packed -) -{ - v = Packed; - return *this; -} - -/**************************************************************************** - * - * XMDECN4 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMDECN4::_XMDECN4 -( - FLOAT _x, - FLOAT _y, - FLOAT _z, - FLOAT _w -) -{ - XMStoreDecN4(this, XMVectorSet(_x, _y, _z, _w)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMDECN4::_XMDECN4 -( - CONST FLOAT* pArray -) -{ - XMStoreDecN4(this, XMLoadFloat4((XMFLOAT4*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMDECN4& _XMDECN4::operator= -( - CONST _XMDECN4& DecN4 -) -{ - v = DecN4.v; - return *this; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMDECN4& _XMDECN4::operator= -( - CONST UINT Packed -) -{ - v = Packed; - return *this; -} - -/**************************************************************************** - * - * XMDEC4 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMDEC4::_XMDEC4 -( - FLOAT _x, - FLOAT _y, - FLOAT _z, - FLOAT _w -) -{ - XMStoreDec4(this, XMVectorSet(_x, _y, _z, _w)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMDEC4::_XMDEC4 -( - CONST FLOAT* pArray -) -{ - XMStoreDec4(this, XMLoadFloat4((XMFLOAT4*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMDEC4& _XMDEC4::operator= -( - CONST _XMDEC4& Dec4 -) -{ - v = Dec4.v; - return *this; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMDEC4& _XMDEC4::operator= -( - CONST UINT Packed -) -{ - v = Packed; - return *this; -} - -/**************************************************************************** - * - * XMUDECN4 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUDECN4::_XMUDECN4 -( - FLOAT _x, - FLOAT _y, - FLOAT _z, - FLOAT _w -) -{ - XMStoreUDecN4(this, XMVectorSet(_x, _y, _z, _w)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUDECN4::_XMUDECN4 -( - CONST FLOAT* pArray -) -{ - XMStoreUDecN4(this, XMLoadFloat4((XMFLOAT4*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUDECN4& _XMUDECN4::operator= -( - CONST _XMUDECN4& UDecN4 -) -{ - v = UDecN4.v; - return *this; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUDECN4& _XMUDECN4::operator= -( - CONST UINT Packed -) -{ - v = Packed; - return *this; -} - -/**************************************************************************** - * - * XMUDEC4 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUDEC4::_XMUDEC4 -( - FLOAT _x, - FLOAT _y, - FLOAT _z, - FLOAT _w -) -{ - XMStoreUDec4(this, XMVectorSet(_x, _y, _z, _w)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUDEC4::_XMUDEC4 -( - CONST FLOAT* pArray -) -{ - XMStoreUDec4(this, XMLoadFloat4((XMFLOAT4*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUDEC4& _XMUDEC4::operator= -( - CONST _XMUDEC4& UDec4 -) -{ - v = UDec4.v; - return *this; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUDEC4& _XMUDEC4::operator= -( - CONST UINT Packed -) -{ - v = Packed; - return *this; -} - -/**************************************************************************** - * - * XMXICON4 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMXICON4::_XMXICON4 -( - FLOAT _x, - FLOAT _y, - FLOAT _z, - FLOAT _w -) -{ - XMStoreXIcoN4(this, XMVectorSet(_x, _y, _z, _w)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMXICON4::_XMXICON4 -( - CONST FLOAT* pArray -) -{ - XMStoreXIcoN4(this, XMLoadFloat4((XMFLOAT4*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMXICON4& _XMXICON4::operator= -( - CONST _XMXICON4& XIcoN4 -) -{ - v = XIcoN4.v; - return *this; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMXICON4& _XMXICON4::operator= -( - CONST UINT64 Packed -) -{ - v = Packed; - return *this; -} - -/**************************************************************************** - * - * XMXICO4 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMXICO4::_XMXICO4 -( - FLOAT _x, - FLOAT _y, - FLOAT _z, - FLOAT _w -) -{ - XMStoreXIco4(this, XMVectorSet(_x, _y, _z, _w)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMXICO4::_XMXICO4 -( - CONST FLOAT* pArray -) -{ - XMStoreXIco4(this, XMLoadFloat4((XMFLOAT4*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMXICO4& _XMXICO4::operator= -( - CONST _XMXICO4& XIco4 -) -{ - v = XIco4.v; - return *this; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMXICO4& _XMXICO4::operator= -( - CONST UINT64 Packed -) -{ - v = Packed; - return *this; -} - -/**************************************************************************** - * - * XMICON4 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMICON4::_XMICON4 -( - FLOAT _x, - FLOAT _y, - FLOAT _z, - FLOAT _w -) -{ - XMStoreIcoN4(this, XMVectorSet(_x, _y, _z, _w)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMICON4::_XMICON4 -( - CONST FLOAT* pArray -) -{ - XMStoreIcoN4(this, XMLoadFloat4((XMFLOAT4*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMICON4& _XMICON4::operator= -( - CONST _XMICON4& IcoN4 -) -{ - v = IcoN4.v; - return *this; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMICON4& _XMICON4::operator= -( - CONST UINT64 Packed -) -{ - v = Packed; - return *this; -} - -/**************************************************************************** - * - * XMICO4 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMICO4::_XMICO4 -( - FLOAT _x, - FLOAT _y, - FLOAT _z, - FLOAT _w -) -{ - XMStoreIco4(this, XMVectorSet(_x, _y, _z, _w)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMICO4::_XMICO4 -( - CONST FLOAT* pArray -) -{ - XMStoreIco4(this, XMLoadFloat4((XMFLOAT4*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMICO4& _XMICO4::operator= -( - CONST _XMICO4& Ico4 -) -{ - v = Ico4.v; - return *this; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMICO4& _XMICO4::operator= -( - CONST UINT64 Packed -) -{ - v = Packed; - return *this; -} - -/**************************************************************************** - * - * XMUICON4 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUICON4::_XMUICON4 -( - FLOAT _x, - FLOAT _y, - FLOAT _z, - FLOAT _w -) -{ - XMStoreUIcoN4(this, XMVectorSet(_x, _y, _z, _w)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUICON4::_XMUICON4 -( - CONST FLOAT* pArray -) -{ - XMStoreUIcoN4(this, XMLoadFloat4((XMFLOAT4*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUICON4& _XMUICON4::operator= -( - CONST _XMUICON4& UIcoN4 -) -{ - v = UIcoN4.v; - return *this; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUICON4& _XMUICON4::operator= -( - CONST UINT64 Packed -) -{ - v = Packed; - return *this; -} - -/**************************************************************************** - * - * XMUICO4 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUICO4::_XMUICO4 -( - FLOAT _x, - FLOAT _y, - FLOAT _z, - FLOAT _w -) -{ - XMStoreUIco4(this, XMVectorSet(_x, _y, _z, _w)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUICO4::_XMUICO4 -( - CONST FLOAT* pArray -) -{ - XMStoreUIco4(this, XMLoadFloat4((XMFLOAT4*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUICO4& _XMUICO4::operator= -( - CONST _XMUICO4& UIco4 -) -{ - v = UIco4.v; - return *this; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUICO4& _XMUICO4::operator= -( - CONST UINT64 Packed -) -{ - v = Packed; - return *this; -} - -/**************************************************************************** - * - * XMCOLOR4 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMCOLOR::_XMCOLOR -( - FLOAT _r, - FLOAT _g, - FLOAT _b, - FLOAT _a -) -{ - XMStoreColor(this, XMVectorSet(_r, _g, _b, _a)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMCOLOR::_XMCOLOR -( - CONST FLOAT* pArray -) -{ - XMStoreColor(this, XMLoadFloat4((XMFLOAT4*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMCOLOR& _XMCOLOR::operator= -( - CONST _XMCOLOR& Color -) -{ - c = Color.c; - return *this; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMCOLOR& _XMCOLOR::operator= -( - CONST UINT Color -) -{ - c = Color; - return *this; -} - -/**************************************************************************** - * - * XMBYTEN4 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMBYTEN4::_XMBYTEN4 -( - CONST CHAR* pArray -) -{ - x = pArray[0]; - y = pArray[1]; - z = pArray[2]; - w = pArray[3]; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMBYTEN4::_XMBYTEN4 -( - FLOAT _x, - FLOAT _y, - FLOAT _z, - FLOAT _w -) -{ - XMStoreByteN4(this, XMVectorSet(_x, _y, _z, _w)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMBYTEN4::_XMBYTEN4 -( - CONST FLOAT* pArray -) -{ - XMStoreByteN4(this, XMLoadFloat4((XMFLOAT4*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMBYTEN4& _XMBYTEN4::operator= -( - CONST _XMBYTEN4& ByteN4 -) -{ - x = ByteN4.x; - y = ByteN4.y; - z = ByteN4.z; - w = ByteN4.w; - return *this; -} - -/**************************************************************************** - * - * XMBYTE4 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMBYTE4::_XMBYTE4 -( - CONST CHAR* pArray -) -{ - x = pArray[0]; - y = pArray[1]; - z = pArray[2]; - w = pArray[3]; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMBYTE4::_XMBYTE4 -( - FLOAT _x, - FLOAT _y, - FLOAT _z, - FLOAT _w -) -{ - XMStoreByte4(this, XMVectorSet(_x, _y, _z, _w)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMBYTE4::_XMBYTE4 -( - CONST FLOAT* pArray -) -{ - XMStoreByte4(this, XMLoadFloat4((XMFLOAT4*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMBYTE4& _XMBYTE4::operator= -( - CONST _XMBYTE4& Byte4 -) -{ - x = Byte4.x; - y = Byte4.y; - z = Byte4.z; - w = Byte4.w; - return *this; -} - -/**************************************************************************** - * - * XMUBYTEN4 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUBYTEN4::_XMUBYTEN4 -( - CONST BYTE* pArray -) -{ - x = pArray[0]; - y = pArray[1]; - z = pArray[2]; - w = pArray[3]; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUBYTEN4::_XMUBYTEN4 -( - FLOAT _x, - FLOAT _y, - FLOAT _z, - FLOAT _w -) -{ - XMStoreUByteN4(this, XMVectorSet(_x, _y, _z, _w)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUBYTEN4::_XMUBYTEN4 -( - CONST FLOAT* pArray -) -{ - XMStoreUByteN4(this, XMLoadFloat4((XMFLOAT4*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUBYTEN4& _XMUBYTEN4::operator= -( - CONST _XMUBYTEN4& UByteN4 -) -{ - x = UByteN4.x; - y = UByteN4.y; - z = UByteN4.z; - w = UByteN4.w; - return *this; -} - -/**************************************************************************** - * - * XMUBYTE4 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUBYTE4::_XMUBYTE4 -( - CONST BYTE* pArray -) -{ - x = pArray[0]; - y = pArray[1]; - z = pArray[2]; - w = pArray[3]; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUBYTE4::_XMUBYTE4 -( - FLOAT _x, - FLOAT _y, - FLOAT _z, - FLOAT _w -) -{ - XMStoreUByte4(this, XMVectorSet(_x, _y, _z, _w)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUBYTE4::_XMUBYTE4 -( - CONST FLOAT* pArray -) -{ - XMStoreUByte4(this, XMLoadFloat4((XMFLOAT4*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUBYTE4& _XMUBYTE4::operator= -( - CONST _XMUBYTE4& UByte4 -) -{ - x = UByte4.x; - y = UByte4.y; - z = UByte4.z; - w = UByte4.w; - return *this; -} - -/**************************************************************************** - * - * XMUNIBBLE4 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUNIBBLE4::_XMUNIBBLE4 -( - CONST CHAR *pArray -) -{ - x = pArray[0]; - y = pArray[1]; - z = pArray[2]; - w = pArray[3]; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUNIBBLE4::_XMUNIBBLE4 -( - FLOAT _x, - FLOAT _y, - FLOAT _z, - FLOAT _w -) -{ - XMStoreUNibble4(this, XMVectorSet( _x, _y, _z, _w )); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUNIBBLE4::_XMUNIBBLE4 -( - CONST FLOAT *pArray -) -{ - XMStoreUNibble4(this, XMLoadFloat4((XMFLOAT4*)pArray)); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUNIBBLE4& _XMUNIBBLE4::operator= -( - CONST _XMUNIBBLE4& UNibble4 -) -{ - v = UNibble4.v; - return *this; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMUNIBBLE4& _XMUNIBBLE4::operator= -( - CONST USHORT Packed -) -{ - v = Packed; - return *this; -} - -/**************************************************************************** - * - * XMU555 operators - * - ****************************************************************************/ - -//------------------------------------------------------------------------------ - -XMFINLINE _XMU555::_XMU555 -( - CONST CHAR *pArray, - BOOL _w -) -{ - x = pArray[0]; - y = pArray[1]; - z = pArray[2]; - w = _w; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMU555::_XMU555 -( - FLOAT _x, - FLOAT _y, - FLOAT _z, - BOOL _w -) -{ - XMStoreU555(this, XMVectorSet(_x, _y, _z, ((_w) ? 1.0f : 0.0f) )); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMU555::_XMU555 -( - CONST FLOAT *pArray, - BOOL _w -) -{ - XMVECTOR V = XMLoadFloat3((XMFLOAT3*)pArray); - XMStoreU555(this, XMVectorSetW(V, ((_w) ? 1.0f : 0.0f) )); -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMU555& _XMU555::operator= -( - CONST _XMU555& U555 -) -{ - v = U555.v; - return *this; -} - -//------------------------------------------------------------------------------ - -XMFINLINE _XMU555& _XMU555::operator= -( - CONST USHORT Packed -) -{ - v = Packed; - return *this; -} - -#endif // __cplusplus - -#if defined(_XM_NO_INTRINSICS_) -#undef XMISNAN -#undef XMISINF -#endif - -#endif // __XNAMATHVECTOR_INL__ -