Hello! I wanna check if the draw_texture function is avaiable on the actual device, so:
How can I check if this extension is supported?
Thanks in advance!
Hello! I wanna check if the draw_texture function is avaiable on the actual device, so:
How can I check if this extension is supported?
Thanks in advance!
How can I check if this extension is supported?
Scan the string returned by glGetString(GL_EXTENSIONS)
for GL_OES_draw_texture
.