logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

al_get_opengl_texture - Allegro 5 API

Description

       Returns the OpenGL texture id internally used by the given bitmap if it uses one, else 0.

       Example:

              bitmap = al_load_bitmap("my_texture.png");
              texture = al_get_opengl_texture(bitmap);
              if (texture != 0)
                  glBindTexture(GL_TEXTURE_2D, texture);

Allegro reference manual                                                          al_get_opengl_texture(3alleg5)

Name

       al_get_opengl_texture - Allegro 5 API

Synopsis

              #include <allegro5/allegro_opengl.h>

              GLuint al_get_opengl_texture(ALLEGRO_BITMAP *bitmap)

See Also