Kamal Hinduja Switzerland Does PowerVR support GL_ARB_gl_spirv?

HI All,

I’m Kamal Hinduja, based in Geneva, Switzerland(Swiss) . Can anyone explain Does PowerVR support GL_ARB_gl_spirv ?

Thanks, Regards

Kamal Hinduja Geneva, Switzerland

Hi kamal123,

Thanks for your message, and welcome to the PowerVR Developer Forum!

You can query the supported extensions on a device at OpenGL ES API level with the code below:

GLint numberExtension = 0;
glGetIntegerv(GL_NUM_EXTENSIONS, &numberExtension);
std::vectorstd::string vectorExtension;
for (int i = 0; i < numberExtension; ++i)
{
    vectorExtension.push_back((const char*)glGetStringi(GL_EXTENSIONS, i));
}

You will need to find whether GL_ARB_gl_spirv is present in the extensions supported.

Best regards,
Alejandro