Add initial prototype.

This commit is contained in:
Rod Kay
2022-07-31 17:34:54 +10:00
commit 54a53b2ac0
1421 changed files with 358874 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
with
GL,
System;
package GLU
with Obsolescent
--
-- Provides a subset of the functions in GLU, tailored to be suitable for use with the openGL 'Embedded' profile.
--
-- Currently only 'gluScaleImage' is ported.
--
is
use GL;
procedure gluScaleImage (Format : in GLenum;
WidthIn : in GLsizei;
HeightIn : in GLsizei;
TypeIn : in GLenum;
DataIn : in System.Address;
WidthOut : in GLsizei;
HeightOut : in GLsizei;
TypeOut : in GLenum;
DataOut : in System.Address);
GLU_INVALID_VALUE,
GLU_INVALID_ENUM,
GLU_INVALID_TYPE,
GLU_INVALID_OPERATION,
GLU_OUT_OF_MEMORY : exception;
end GLU;