SpriteFlags Enumeration

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Defines flags used to specify sprite rendering options.

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

Namespace:  Microsoft.WindowsMobile.DirectX.Direct3D
Assembly:  Microsoft.WindowsMobile.DirectX (in Microsoft.WindowsMobile.DirectX.dll)

Syntax

'Declaration
<FlagsAttribute> _
Public Enumeration SpriteFlags
'Usage
Dim instance As SpriteFlags
[FlagsAttribute]
public enum SpriteFlags
[FlagsAttribute]
public enum class SpriteFlags
[<FlagsAttribute>]
type SpriteFlags

Members

Member name Description
Supported by the .NET Compact Framework None Resolves the value to 0.
Supported by the .NET Compact Framework DoNotSaveState Prevents the device state from being saved or restored when Begin or End is called.
Supported by the .NET Compact Framework DoNotModifyRenderState Specifies no changes to the device render state when Begin is called.
Supported by the .NET Compact Framework ObjectSpace Specifies no modification of the world, view, and projection transforms. The transforms currently set to the device are used to transform sprites when the batched sprites are drawn (that is, when Begin or End is called). If this option is not specified, the world, view, and projection transforms are modified so that sprites are drawn in screen-space coordinates.
Supported by the .NET Compact Framework Billboard Rotates each sprite around its center so that it is facing the viewer. SetWorldViewLH or SetWorldViewRH must be called first.
Supported by the .NET Compact Framework AlphaBlend Enables alpha blending with AlphaTestEnable set to true (for nonzero alpha). SourceAlpha is the source blend state, and InvSourceAlpha is the destination blend state in calls to RenderStateManager. The Font class requires this flag to be set when drawing text.
Supported by the .NET Compact Framework SortTexture Sorts sprites by texture prior to drawing. This option is recommended when drawing non-overlapping sprites of uniform depth; for example, drawing screen-aligned text with Font.
Supported by the .NET Compact Framework SortDepthFrontToBack Sorts sprites by depth in front-to-back order prior to drawing. This option is recommended when drawing opaque sprites of varying depths.
Supported by the .NET Compact Framework SortDepthBackToFront Sorts sprites by depth in back-to-front order prior to drawing. This option is recommended when drawing transparent sprites of varying depths.

Platforms

Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Version Information

.NET Compact Framework

Supported in: 3.5, 2.0

See Also

Reference

Microsoft.WindowsMobile.DirectX.Direct3D Namespace

Other Resources

Mobile Direct3D Programming in the .NET Compact Framework