Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="D3D11QueryDesc"/> struct.
 /// </summary>
 /// <param name="query">The type of query.</param>
 /// <param name="miscOptions">Miscellaneous options.</param>
 public D3D11QueryDesc(D3D11QueryType query, D3D11QueryMiscOptions miscOptions)
 {
     this.query       = query;
     this.miscOptions = miscOptions;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="D3D11QueryDesc"/> struct.
 /// </summary>
 /// <param name="query">The type of query.</param>
 public D3D11QueryDesc(D3D11QueryType query)
 {
     this.query       = query;
     this.miscOptions = 0;
 }