Light | Dark

glCreateSamplers

Name

glCreateSamplers — create sampler objects

C Specification

void glCreateSamplers( GLsizei n,
GLuint *samplers);

Parameters

n

Number of sampler objects to create.

samplers

Specifies an array in which names of the new sampler objects are stored.

Description

glCreateSamplers returns n previously unused sampler names in samplers, each representing a new sampler object initialized to the default state.

Errors

GL_INVALID_VALUE is generated if n is negative.

Version Support

OpenGL Version
Function / Feature Name 2.0 2.1 3.0 3.1 3.2 3.3 4.0 4.1 4.2 4.3 4.4 4.5
glCreateSamplers - - - - - - - - - - -
Think you can improve this page? Edit this page on GitHub.