al_draw_prim - Online Linux Manual Page
Section : 3
Updated :  
Source : Allegro reference manual
Note :  
 
NAMEal_draw_prim − Allegro 5 API 
SYNOPSIS
#include <allegro5/allegro_primitives.h>
int al_draw_prim(const void* vtxs, const ALLEGRO_VERTEX_DECL* decl,
   ALLEGRO_BITMAP* texture, int start, int end, int type)
DESCRIPTIONDraws a subset of the passed vertex array. Parameters: • texture − Texture to use, pass NULL to use only color shaded primitves • vtxs − Pointer to an array of vertices • decl − Pointer to a [vertex declaration]al_create_vertex_decl(3). If set to NULL, the vertices are assumed to be of the ALLEGRO_VERTEX(3) type • start − Start index of the subset of the vertex array to draw • end − One past the last index of the subset of the vertex array to draw • type − A member of the ALLEGRO_PRIM_TYPE(3) enumeration, specifying what kind of primitive to draw Returns: Number of primitives drawn For example to draw a textured triangle you could use: 
ALLEGRO_COLOR white = al_map_rgb_f(1, 1, 1);
ALLEGRO_VERTEX v[] = {
   {.x = 128, .y = 0, .z = 0, .color = white, .u = 128, .v = 0},
   {.x = 0, .y = 256, .z = 0, .color = white, .u = 0, .v = 256},
   {.x = 256, .y = 256, .z = 0, .color = white, .u = 256, .v = 256}};
al_draw_prim(v, NULL, texture, 0, 3, ALLEGRO_PRIM_TRIANGLE_LIST);
SEE ALSOALLEGRO_VERTEX(3), ALLEGRO_PRIM_TYPE(3), ALLEGRO_VERTEX_DECL(3), al_draw_indexed_prim(3)  0  
   Johanes Gumabo   
 Data Size    :    6,718 byte 
man-al_draw_prim.3Build    :     2025-03-22, 13:26     :     
Visitor Screen    :      x   
Visitor Counter  (  page  /  site  )     :     50  /  3,957,888  
Visitor ID    :        :     
Visitor IP    :     216.73.216.189     :     
Visitor Provider    :     AMAZON-02     :     
Provider Position  (  lat  x  lon  )     :     39.962500   x   -83.006100     :      x   
Provider Accuracy Radius  (  km  )     :     20     :     
Provider City    :     Columbus     :     
Provider Province    :     Ohio  ,     :     ,  
Provider Country    :     United States     :     
Provider Continent    :     North America     :     
Visitor Recorder    :    Version    :     
Visitor Recorder    :    Library    :     
Online Linux Manual Page    :    Version    :     Online Linux Manual Page - Fedora.40 - march=x86-64 - mtune=generic - 25.03.22  
Online Linux Manual Page    :    Library    :     lib_c - 24.10.03 - march=x86-64 - mtune=generic - Fedora.40  
Online Linux Manual Page    :    Library    :     lib_m - 24.10.03 - march=x86-64 - mtune=generic - Fedora.40  
Data Base    :    Version    :     Online Linux Manual Page Database - 24.04.13 - march=x86-64 - mtune=generic - fedora-38  
Data Base    :    Library    :     lib_c - 23.02.07 - march=x86-64 - mtune=generic - fedora.36  
  
 
    
  If error, please print screen and send to johanes_gumabo@yahoo.co.id
 Under development. Support me via PayPal.