// Copyright © Amer Koleci and Contributors. // Licensed under the MIT License (MIT). See LICENSE in the repository root for more information. namespace Win32.Graphics.Direct3D11; public unsafe partial struct QueryDescription1 { /// /// Initializes a new instance of the struct. /// /// Type of query (see ). /// Miscellaneous flags (see ). /// A value that specifies the context for the query. public QueryDescription1( QueryType queryType, QueryMiscFlags miscFlags = QueryMiscFlags.None, ContextType contextType = ContextType.All) { Query = queryType; MiscFlags = miscFlags; ContextType = contextType; } }