This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Linux/TDA2PXEVM: OpenGL ES API support

Part Number: TDA2PXEVM


Tool/software: Linux

Hello:

  Did the TI OpenGL ES support the API like "glTexDirectVIV"

my code is 

#define AVM_GPU_FUNC_SET(_val, type, _str)    \
    if (_val == NULL)    \
    {   \
       _val = (type)   \
            eglGetProcAddress(_str);    \
        if (_val == NULL)    \
        {   \
            printf("AvmGpu::avm_gpu_env_init.Required[%s] extension not supported.\n",_str);  \
            return 1;   \
        }   \
    }

and the output is :

AvmGpu::avm_gpu_env_init.Required[glTexDirectVIV] extension not supported.
AvmGpu::avm_gpu_env_init.Required[glTexDirectVIVMap] extension not supported.
AvmGpu::avm_gpu_env_init.Required[glTexDirectInvalidateVIV] extension not supported.