22std::atomic<size_t> ShaderCode::m_nextID = 1;
23std::atomic<size_t> ShaderProgram::m_nextID = 1;
26 bool isVertexAttribPointer,
bool throwException)
const
29 if(isVertexAttribPointer) {
37 case GL_TEXTURE_COORD_ARRAY:
89 case GL_UNSIGNED_BYTE:
115 case GL_UNSIGNED_BYTE:
117 case GL_UNSIGNED_SHORT:
120 case GL_UNSIGNED_INT:
124 case GL_INT_2_10_10_10_REV:
125 case GL_UNSIGNED_INT_2_10_10_10_REV:
126 case GL_UNSIGNED_INT_10F_11F_11F_REV:
151 case GL_UNSIGNED_BYTE:
153 case GL_UNSIGNED_SHORT:
179 if(isVertexAttribPointer) {
181 case GL_UNSIGNED_BYTE:
183 case GL_UNSIGNED_SHORT:
186 case GL_UNSIGNED_INT:
190 case GL_INT_2_10_10_10_REV:
191 case GL_UNSIGNED_INT_2_10_10_10_REV:
193 case GL_UNSIGNED_INT_10F_11F_11F_REV:
216 case GL_VERTEX_ARRAY:
242 case GL_NORMAL_ARRAY:
269 case GL_UNSIGNED_BYTE:
271 case GL_UNSIGNED_SHORT:
275 case GL_UNSIGNED_INT:
296 case GL_TEXTURE_COORD_ARRAY:
338 case 2: ::glUniformMatrix2fv(
location(),
count(),
false,
reinterpret_cast<const GLfloat*
>(
data()));
break;
339 case 3: ::glUniformMatrix3fv(
location(),
count(),
false,
reinterpret_cast<const GLfloat*
>(
data()));
break;
340 case 4: ::glUniformMatrix4fv(
location(),
count(),
false,
reinterpret_cast<const GLfloat*
>(
data()));
break;
346 case 1: ::glUniform1fv(
location(),
count(),
reinterpret_cast<const GLfloat*
>(
data()));
break;
347 case 2: ::glUniform2fv(
location(),
count(),
reinterpret_cast<const GLfloat*
>(
data()));
break;
348 case 3: ::glUniform3fv(
location(),
count(),
reinterpret_cast<const GLfloat*
>(
data()));
break;
349 case 4: ::glUniform4fv(
location(),
count(),
reinterpret_cast<const GLfloat*
>(
data()));
break;
354 case 1: ::glUniform1iv(
location(),
count(),
reinterpret_cast<const GLint*
>(
data()));
break;
355 case 2: ::glUniform2iv(
location(),
count(),
reinterpret_cast<const GLint*
>(
data()));
break;
356 case 3: ::glUniform3iv(
location(),
count(),
reinterpret_cast<const GLint*
>(
data()));
break;
357 case 4: ::glUniform4iv(
location(),
count(),
reinterpret_cast<const GLint*
>(
data()));
break;
366 ::glUniform1i(
location(), *
reinterpret_cast<const GLint*
>(
data()));
368 ::glUniform1f(
location(), *
reinterpret_cast<const GLfloat*
>(
data()));
constexpr bool isGLES1() const noexcept
Indicates whether this profile is capable of GLES1.
bool isValidArrayDataType(GLenum index, GLsizei comps, GLenum type, bool isVertexAttribPointer, bool throwException) const
General validation if index, comps and type are valid for the current profile.
constexpr bool isGLES2() const noexcept
Indicates whether this profile is capable of GLES2.
constexpr bool isGLES3() const noexcept
Indicates whether this profile is capable of GLES3.
constexpr bool isGL2ES2() const noexcept
Indicates whether this profile is capable of GL2ES2.
static const jau::type_info & f32()
jau::float_32_t or just float
static const jau::type_info & i32()
int32_t
constexpr std::string_view getGLArrayName(GLenum array) noexcept
std::string to_hexstring(value_type const &v, const bool skipLeading0x=false) noexcept
Produce a lower-case hexadecimal string representation with leading 0x in MSB of the given pointer.