CSharpGL.Query.BeginQuery C# (CSharp) Method

BeginQuery() public method

Begin query.

delimit the boundaries of a query object.

public BeginQuery ( QueryTarget target ) : void
target QueryTarget Specifies the target type of query object established between glBeginQuery and the subsequent glEndQuery.
return void
        public void BeginQuery(QueryTarget target)
        {
            if (!this.initialized) { this.Initialize(); }

            glBeginQuery((uint)target, this.Id);
        }

Same methods

Query::BeginQuery ( uint target ) : void