1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
.\" Automatically generated by Pandoc 1.19.2.4
.\"
.TH "al_get_shader_log" "3" "" "Allegro reference manual" ""
.hy
.SH NAME
.PP
al_get_shader_log \- Allegro 5 API
.SH SYNOPSIS
.IP
.nf
\f[C]
#include\ <allegro5/allegro.h>
const\ char\ *al_get_shader_log(ALLEGRO_SHADER\ *shader)
\f[]
.fi
.SH DESCRIPTION
.PP
Return a read\-only string containing the information log for a shader
program.
The log is updated by certain functions, such as
al_attach_shader_source(3) or al_build_shader(3) when there is an error.
.PP
This function never returns NULL.
.SH SINCE
.PP
5.1.0
.SH SEE ALSO
.PP
al_attach_shader_source(3), al_attach_shader_source_file(3),
al_build_shader(3)
|