enumerazione D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS (d2d1.h)

Specifica funzionalità aggiuntive supportate da una destinazione di rendering compatibile quando viene creata. Questa enumerazione consente una combinazione bit per bit dei relativi valori membro.

Sintassi

typedef enum D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS {
  D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS_NONE = 0x00000000,
  D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS_GDI_COMPATIBLE = 0x00000001,
  D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS_FORCE_DWORD = 0xffffffff
} ;

Costanti

 
D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS_NONE
Valore: 0x00000000
La destinazione di rendering non supporta funzionalità aggiuntive.
D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS_GDI_COMPATIBLE
Valore: 0x00000001
La destinazione di rendering supporta l'interoperabilità con Windows Graphics Device Interface (GDI).
D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS_FORCE_DWORD
Valore: 0xffffffff

Commenti

Usare questa enumerazione durante la creazione di una destinazione di rendering compatibile con il metodo CreateCompatibleRenderTarget . Per altre informazioni sulle destinazioni di rendering compatibili, vedere Panoramica delle destinazioni di rendering.

L'opzione D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS_GDI_COMPATIBLE può essere richiesta solo se la destinazione di rendering padre è stata creata con D2D1_RENDER_TARGET_USAGE_GDI_COMPATIBLE (per la maggior parte delle destinazioni di rendering ) o D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS_GDI_COMPATIBLE (per le destinazioni di rendering create dal metodo CreateCompatibleRenderTarget ).

Requisiti

Requisito Valore
Client minimo supportato Windows 7, Windows Vista con SP2 e Aggiornamento della piattaforma per Windows Vista [app desktop | App UWP]
Server minimo supportato Windows Server 2008 R2, Windows Server 2008 con SP2 e Platform Update per Windows Server 2008 [app desktop | App UWP]
Intestazione d2d1.h

Vedi anche

CreateCompatibleRenderTarget

Panoramica delle destinazioni di rendering