_glBindTexture

From QB64 Phoenix Edition Wiki
Revision as of 21:42, 10 July 2022 by RhoSigma (talk | contribs)
Jump to navigation Jump to search

The _glBindTexture statement enables the creation of a named texture that is bound to a texture target.


Syntax

SUB _glBindTexture (BYVAL target AS _UNSIGNED LONG, BYVAL texture AS _UNSIGNED LONG)


Parameters

  • OpenGL has many predefined attributes and values used with its command parameters, which are detailed in the description.


Description

  • The syntax above shall just clarify the type of the command (SUB or FUNCTION) and the correct QB64 Variable Types for the used parameters.
  • The full description can be found at Microsoft Docs and is valid for QB64 too.


See also

SUB _GL