Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Mobile and Embedded
  4. undefined reference to 'glGetQueryObjectui64vEXT'
Forum Updated to NodeBB v4.3 + New Features

undefined reference to 'glGetQueryObjectui64vEXT'

Scheduled Pinned Locked Moved Unsolved Mobile and Embedded
1 Posts 1 Posters 245 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Offline
    A Offline
    aRcleR
    wrote on last edited by aRcleR
    #1

    Hi, I'm trying to use some profiling tools for opengles 2.0 based on GL_GLEXT_PROTOTYPES.
    By now I get the error "undefined reference to 'glGetQueryObjectui64vEXT'"
    I've setted the variable in a lots of places, but I always get this error.

    If the variable is not setted, the the function is not available because the GL_GTEXT_PROTOTYPES is not defined:

    #ifdef GL_GLEXT_PROTOTYPES **// IS NOT DEFINED!!**
    GL_APICALL void GL_APIENTRY glGenQueriesEXT (GLsizei n, GLuint *ids);
    GL_APICALL void GL_APIENTRY glDeleteQueriesEXT (GLsizei n, const GLuint *ids);
    GL_APICALL GLboolean GL_APIENTRY glIsQueryEXT (GLuint id);
    GL_APICALL void GL_APIENTRY glBeginQueryEXT (GLenum target, GLuint id);
    GL_APICALL void GL_APIENTRY glEndQueryEXT (GLenum target);
    GL_APICALL void GL_APIENTRY glQueryCounterEXT (GLuint id, GLenum target);
    GL_APICALL void GL_APIENTRY glGetQueryivEXT (GLenum target, GLenum pname, GLint *params);
    GL_APICALL void GL_APIENTRY glGetQueryObjectivEXT (GLuint id, GLenum pname, GLint *params);
    GL_APICALL void GL_APIENTRY glGetQueryObjectuivEXT (GLuint id, GLenum pname, GLuint *params);
    GL_APICALL void GL_APIENTRY glGetQueryObjecti64vEXT (GLuint id, GLenum pname, GLint64 *params);
    GL_APICALL void GL_APIENTRY glGetQueryObjectui64vEXT (GLuint id, GLenum pname, GLuint64 *params);
    #endif
    

    Could someone helpme with this issue? Any ideas?
    Thanks

    1 Reply Last reply
    0

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved