repo_name
stringlengths
9
74
language
stringclasses
1 value
length_bytes
int64
11
9.34M
extension
stringclasses
2 values
content
stringlengths
11
9.34M
davidkristola/vole
Ada
2,114
adb
package body kv.avm.Methods is ---------------------------------------------------------------------------- function New_Method(Name : String; Code : kv.avm.Instructions.Code_Access) return Method_Access is Method : Method_Access; begin Method := new Method_Type; Method.Initialize(Name, Code); return Method; end New_Method; ---------------------------------------------------------------------------- procedure Initialize (Self : in out Method_Type; Name : in String; Code : in kv.avm.Instructions.Code_Access) is begin Self.Name := new String'(Name); Self.Code := Code; end Initialize; ---------------------------------------------------------------------------- procedure Add_Predicate (Self : in out Method_Type; Predicate : in kv.avm.References.Offset_Type) is begin Self.Predicate := Predicate; Self.Gated := True; end Add_Predicate; ---------------------------------------------------------------------------- function Has_Predicate(Self : Method_Type) return Boolean is begin return Self.Gated; end Has_Predicate; ---------------------------------------------------------------------------- function Get_Predicate(Self : Method_Type) return kv.avm.References.Offset_Type is begin return Self.Predicate; end Get_Predicate; ---------------------------------------------------------------------------- function Get_Predicate(Self : Method_Type) return kv.avm.References.Reference_Type is begin return (Memory => kv.avm.References.Attribute, Index => Self.Predicate); end Get_Predicate; ---------------------------------------------------------------------------- function Get_Name(Self : Method_Type) return String is begin return Self.Name.all; end Get_Name; ---------------------------------------------------------------------------- function Get_Code(Self : Method_Type) return kv.avm.Instructions.Code_Access is begin return Self.Code; end Get_Code; end kv.avm.Methods;
SSOCsoft/FSAM
Ada
2,077
ads
Pragma Ada_2012; Pragma Assertion_Policy( Check ); Pragma Restrictions( No_Implementation_Aspect_Specifications ); Pragma Restrictions( No_Implementation_Attributes ); Pragma Restrictions( No_Implementation_Pragmas ); Private Package FITS.Utils with Pure, SPARK_Mode => On is Space : Character renames Header_Character_First; -- Returns the input, less the leading occourances of Ch. Function Left_Trim( S : String; Ch : Character:= Space ) return String with Post => (if Left_Trim'Result'Length in Positive then Left_Trim'Result(Left_Trim'Result'First) /= Ch); -- Returns the input, less the trailing occourances of Ch. Function Right_Trim( S : String; Ch : Character:= Space ) return String with Post => (if Right_Trim'Result'Length in Positive then Right_Trim'Result(Right_Trim'Result'Last) /= Ch); -- Returns the input, less the leading and trailing occourances of Ch. Function Trim( S : String; Ch : Character:= Space ) return String with Post => (if Trim'Result'Length in Positive then Trim'Result(Trim'Result'First) /= Ch and Trim'Result(Trim'Result'Last ) /= Ch ); -- Returns the position of Ch within S, or 0 if it is not found. Function Index( S : String; Ch : Character ) return Natural with Post => (if Index'Result in Positive then S(Index'Result) = Ch and (for all C of S(S'First..Positive'Pred(Index'Result)) => C /= Ch) ); -- Returns the number of occourances of Ch within S. Function Count( S : String; Ch : Character ) return Natural with Post => (if Index(S,Ch) not in Positive then Count'Result = 0 else Count'Result in 1..S'Length-Index(S,Ch)); -- Apply a character-mapping function to he given string. Generic with Function Map(Ch : Character) return Character; Function Do_Map( S : String ) return String; End FITS.Utils;
Fabien-Chouteau/Ada_Drivers_Library
Ada
1,939
ads
-- This package was generated by the Ada_Drivers_Library project wizard script package ADL_Config is Vendor : constant String := "STMicro"; -- From board definition Max_Mount_Points : constant := 2; -- From default value Max_Mount_Name_Length : constant := 128; -- From default value Runtime_Profile : constant String := "ravenscar-full"; -- From command line Device_Name : constant String := "STM32F769NIHx"; -- From board definition Device_Family : constant String := "STM32F7"; -- From board definition Has_Ravenscar_SFP_Runtime : constant String := "True"; -- From board definition Runtime_Name : constant String := "ravenscar-full-stm32f769disco"; -- From default value Has_Ravenscar_Full_Runtime : constant String := "True"; -- From board definition CPU_Core : constant String := "ARM Cortex-M7F"; -- From mcu definition Board : constant String := "STM32F769_Discovery"; -- From command line Has_ZFP_Runtime : constant String := "False"; -- From board definition Number_Of_Interrupts : constant := 0; -- From default value High_Speed_External_Clock : constant := 25000000; -- From board definition Use_Startup_Gen : constant Boolean := False; -- From command line Max_Path_Length : constant := 1024; -- From default value Runtime_Name_Suffix : constant String := "stm32f769disco"; -- From board definition Architecture : constant String := "ARM"; -- From board definition end ADL_Config;
reznikmm/gela
Ada
793
ads
with Gela.Compilations; with Gela.Elements.Derived_Type_Definitions; with Gela.Semantic_Types; package Gela.Inheritance is pragma Preelaborate; procedure Copy_Declarations (Comp : Gela.Compilations.Compilation_Access; Env : Gela.Semantic_Types.Env_Index; Node : not null Gela.Elements.Derived_Type_Definitions. Derived_Type_Definition_Access; Inherited : out Gela.Elements.Element_Sequence_Access); procedure Environment (Comp : Gela.Compilations.Compilation_Access; Node : not null Gela.Elements.Derived_Type_Definitions. Derived_Type_Definition_Access; Env_In : Gela.Semantic_Types.Env_Index; Env_Out : out Gela.Semantic_Types.Env_Index); end Gela.Inheritance;
persan/protobuf-ada
Ada
4,474
ads
-- Generated by the protocol buffer compiler. DO NOT EDIT! -- source: message.proto pragma Ada_2012; with Protocol_Buffers.Message; with Protocol_Buffers.Wire_Format; with Protocol_Buffers.IO.Coded_Output_Stream; with Protocol_Buffers.IO.Coded_Input_Stream; with Protocol_Buffers.Generated_Message_Utilities; with Ada.Streams.Stream_IO; package Message is use type Protocol_Buffers.Wire_Format.TMP_STRING; use type Protocol_Buffers.Wire_Format.TMP_UNSIGNED_BYTE; use type Protocol_Buffers.Wire_Format.TMP_UNSIGNED_INTEGER; use type Protocol_Buffers.Wire_Format.TMP_UNSIGNED_LONG; use type Protocol_Buffers.Wire_Format.TMP_DOUBLE; use type Protocol_Buffers.Wire_Format.TMP_FLOAT; use type Protocol_Buffers.Wire_Format.TMP_BOOLEAN; use type Protocol_Buffers.Wire_Format.TMP_INTEGER; use type Protocol_Buffers.Wire_Format.TMP_LONG; use type Protocol_Buffers.Wire_Format.TMP_FIELD_TYPE; use type Protocol_Buffers.Wire_Format.TMP_WIRE_TYPE; use type Protocol_Buffers.Wire_Format.TMP_OBJECT_SIZE; package Person is type Has_Bits_Array_Type is array (Protocol_Buffers.Wire_Format.TMP_UNSIGNED_INTEGER range <>) of Protocol_Buffers.Wire_Format.TMP_UNSIGNED_INTEGER; type Instance is new Protocol_Buffers.Message.Instance with private; --------------------------------------------------------------------------- -- Field accessor declarations -------------------------------------------- --------------------------------------------------------------------------- -- required int32 id = 2; function Has_Id (The_Message : in Person.Instance) return Boolean; procedure Clear_Id (The_Message : in out Person.Instance); function Id (The_Message : in Person.Instance) return Protocol_Buffers.Wire_Format.TMP_INTEGER; procedure Set_Id (The_Message : in out Person.Instance; value : in Protocol_Buffers.Wire_Format.TMP_INTEGER); -- optional uint32 age = 3; function Has_Age (The_Message : in Person.Instance) return Boolean; procedure Clear_Age (The_Message : in out Person.Instance); function Age (The_Message : in Person.Instance) return Protocol_Buffers.Wire_Format.TMP_UNSIGNED_INTEGER; procedure Set_Age (The_Message : in out Person.Instance; value : in Protocol_Buffers.Wire_Format.TMP_UNSIGNED_INTEGER); --------------------------------------------------------------------------- -- Inherited functions and procedures from Protocol_Buffers.Message ------- --------------------------------------------------------------------------- overriding procedure Clear (The_Message : in out Person.Instance); overriding procedure Serialize_With_Cached_Sizes (The_Message : in Person.Instance; The_Coded_Output_Stream : in Protocol_Buffers.IO.Coded_Output_Stream.Instance); overriding procedure Merge_Partial_From_Coded_Input_Stream (The_Message : in out Person.Instance; The_Coded_Input_Stream : in Protocol_Buffers.IO.Coded_Input_Stream.Instance); overriding procedure Merge (To : in out Person.Instance; From : in Person.Instance); overriding procedure Copy (To : in out Person.Instance; From : in Person.Instance); overriding function Get_Type_Name (The_Message : in Person.Instance) return Protocol_Buffers.Wire_Format.TMP_STRING; overriding function Byte_Size (The_Message : in out Person.Instance) return Protocol_Buffers.Wire_Format.TMP_OBJECT_SIZE; overriding function Get_Cached_Size (The_Message : in Person.Instance) return Protocol_Buffers.Wire_Format.TMP_OBJECT_SIZE; overriding function Is_Initialized (The_Message : in Person.Instance) return Boolean; private type Instance is new Protocol_Buffers.Message.Instance with record Id : Protocol_Buffers.Wire_Format.TMP_INTEGER := 0; Age : Protocol_Buffers.Wire_Format.TMP_UNSIGNED_INTEGER := 0; Has_Bits : Has_Bits_Array_Type (0 .. (2 + 31) / 32) := (others => 0); Cached_Size : Protocol_Buffers.Wire_Format.TMP_OBJECT_SIZE := 0; end record; procedure Set_Has_Id (The_Message : in out Person.Instance); procedure Clear_Has_Id (The_Message : in out Person.Instance); procedure Set_Has_Age (The_Message : in out Person.Instance); procedure Clear_Has_Age (The_Message : in out Person.Instance); end Person; end Message;
MinimSecure/unum-sdk
Ada
1,852
ads
-- Copyright 2012-2016 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. package Classes is type Point is record X : Integer; Y : Integer; end record; type Shape is abstract tagged null record; type Shape_Access is access all Shape'Class; type Drawable is interface; type Drawable_Access is access all Drawable'Class; procedure Draw (D : Drawable) is abstract; type Circle is new Shape and Drawable with record Center : Point; Radius : Natural; end record; procedure Draw (R : Circle); My_Circle : Circle := ((1, 2), 3); My_Shape : Shape'Class := Shape'Class (My_Circle); My_Drawable : Drawable'Class := Drawable'Class (My_Circle); S_Access : Shape_Access := new Circle'(My_Circle); D_Access : Drawable_Access := new Circle'(My_Circle); type R (MS : Shape_Access; MD : Drawable_Access) is record E : Integer; end record; MR : R := (MS => S_Access, MD => D_Access, E => 42); type Shape_Array is array (1 .. 4) of Shape_Access; type Drawable_Array is array (1 .. 4) of Drawable_Access; S_Array : Shape_Array := (others => S_Access); D_Array : Drawable_Array := (others => D_Access); end Classes;
charlie5/cBound
Ada
1,584
ads
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_value_error_t is -- Item -- type Item is record response_type : aliased Interfaces.Unsigned_8; error_code : aliased Interfaces.Unsigned_8; sequence : aliased Interfaces.Unsigned_16; bad_value : aliased Interfaces.Unsigned_32; minor_opcode : aliased Interfaces.Unsigned_16; major_opcode : aliased Interfaces.Unsigned_8; pad0 : aliased Interfaces.Unsigned_8; end record; -- Item_Array -- type Item_Array is array (Interfaces.C.size_t range <>) of aliased xcb.xcb_value_error_t.Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_value_error_t.Item, Element_Array => xcb.xcb_value_error_t.Item_Array, Default_Terminator => (others => <>)); subtype Pointer is C_Pointers.Pointer; -- Pointer_Array -- type Pointer_Array is array (Interfaces.C.size_t range <>) of aliased xcb.xcb_value_error_t.Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_value_error_t.Pointer, Element_Array => xcb.xcb_value_error_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_value_error_t;
reznikmm/matreshka
Ada
5,788
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ -- A read link object end action is an action that retrieves an end object -- from a link object. ------------------------------------------------------------------------------ with AMF.UML.Actions; limited with AMF.UML.Input_Pins; limited with AMF.UML.Output_Pins; limited with AMF.UML.Properties; package AMF.UML.Read_Link_Object_End_Actions is pragma Preelaborate; type UML_Read_Link_Object_End_Action is limited interface and AMF.UML.Actions.UML_Action; type UML_Read_Link_Object_End_Action_Access is access all UML_Read_Link_Object_End_Action'Class; for UML_Read_Link_Object_End_Action_Access'Storage_Size use 0; not overriding function Get_End (Self : not null access constant UML_Read_Link_Object_End_Action) return AMF.UML.Properties.UML_Property_Access is abstract; -- Getter of ReadLinkObjectEndAction::end. -- -- Link end to be read. not overriding procedure Set_End (Self : not null access UML_Read_Link_Object_End_Action; To : AMF.UML.Properties.UML_Property_Access) is abstract; -- Setter of ReadLinkObjectEndAction::end. -- -- Link end to be read. not overriding function Get_Object (Self : not null access constant UML_Read_Link_Object_End_Action) return AMF.UML.Input_Pins.UML_Input_Pin_Access is abstract; -- Getter of ReadLinkObjectEndAction::object. -- -- Gives the input pin from which the link object is obtained. not overriding procedure Set_Object (Self : not null access UML_Read_Link_Object_End_Action; To : AMF.UML.Input_Pins.UML_Input_Pin_Access) is abstract; -- Setter of ReadLinkObjectEndAction::object. -- -- Gives the input pin from which the link object is obtained. not overriding function Get_Result (Self : not null access constant UML_Read_Link_Object_End_Action) return AMF.UML.Output_Pins.UML_Output_Pin_Access is abstract; -- Getter of ReadLinkObjectEndAction::result. -- -- Pin where the result value is placed. not overriding procedure Set_Result (Self : not null access UML_Read_Link_Object_End_Action; To : AMF.UML.Output_Pins.UML_Output_Pin_Access) is abstract; -- Setter of ReadLinkObjectEndAction::result. -- -- Pin where the result value is placed. end AMF.UML.Read_Link_Object_End_Actions;
FROL256/ada-ray-tracer
Ada
2,326
ads
with Interfaces; with Ada.Numerics.Float_Random; with Vector_Math; with Ada.Unchecked_Deallocation; with Ada.Text_IO; use Interfaces; use Vector_Math; use Ada.Text_IO; package Lights is type LightShapes is (Light_Shape_Rect, Light_Shape_Sphere); type ShadowSample is record pos : float3 := (0.0, 0.0, 0.0); dir : float3 := (0.0, 0.0, 0.0); intensity : float3 := (0.0, 0.0, 0.0); pdf : float := 1.0; end record; type Light is abstract tagged null record; type LightRef is access Light'Class; function Sample(l : Light; gen : RandRef; lluminatingPoint : float3) return ShadowSample is abstract; function EvalPDF(l : Light; lluminatingPoint : float3; rayDir : float3; hitDist : float) return float is abstract; function GetIntensity(l : Light) return float3 is abstract; function GetShapeType(l : Light) return LightShapes is abstract; -- this is for geom intersection only function Sample(l : LightRef; gen : RandRef; lluminatingPoint : float3) return ShadowSample; function EvalPDF(l : LightRef; lluminatingPoint : float3; rayDir : float3; hitDist : float) return float; function GetIntensity(l : LightRef) return float3; function GetShapeType(l : LightRef) return LightShapes; type AreaLight is new Light with record boxMin : float3; boxMax : float3; normal : float3; intensity : float3; surfaceArea : float; end record; function AreaPDF(l : AreaLight) return float; function Sample(l : AreaLight; gen : RandRef; lluminatingPoint : float3) return ShadowSample; function EvalPDF(l : AreaLight; lluminatingPoint : float3; rayDir : float3; hitDist : float) return float; function GetIntensity(l : AreaLight) return float3; function GetShapeType(l : AreaLight) return LightShapes; type SphereLight is new Light with record center : float3; radius : float; intensity : float3; surfaceArea : float; end record; function AreaPDF(l : SphereLight) return float; function Sample(l : SphereLight; gen : RandRef; lluminatingPoint : float3) return ShadowSample; function EvalPDF(l : SphereLight; lluminatingPoint : float3; rayDir : float3; hitDist : float) return float; function GetIntensity(l : SphereLight) return float3; function GetShapeType(l : SphereLight) return LightShapes; end Lights;
reznikmm/matreshka
Ada
4,011
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with ODF.DOM.Style_Num_Suffix_Attributes; package Matreshka.ODF_Style.Num_Suffix_Attributes is type Style_Num_Suffix_Attribute_Node is new Matreshka.ODF_Style.Abstract_Style_Attribute_Node and ODF.DOM.Style_Num_Suffix_Attributes.ODF_Style_Num_Suffix_Attribute with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Style_Num_Suffix_Attribute_Node; overriding function Get_Local_Name (Self : not null access constant Style_Num_Suffix_Attribute_Node) return League.Strings.Universal_String; end Matreshka.ODF_Style.Num_Suffix_Attributes;
Fabien-Chouteau/GESTE
Ada
3,133
adb
with GESTE; with GESTE.Grid; with GESTE.Tile_Bank; with Ada.Text_IO; with Console_Char_Screen; procedure Collision_Grids is package Console_Screen is new Console_Char_Screen (Width => 20, Height => 10, Buffer_Size => 256, Init_Char => ' '); Palette : aliased constant GESTE.Palette_Type := ('#', '0', 'T', ' '); Background : constant Character := ' '; Tiles : aliased constant GESTE.Tile_Array := (1 => ((1, 1, 1, 1, 1), (1, 1, 1, 1, 1), (1, 1, 1, 1, 1), (1, 1, 1, 1, 1), (1, 1, 1, 1, 1)), 2 => ((3, 3, 3, 3, 3), (3, 3, 3, 3, 3), (3, 3, 3, 3, 3), (3, 3, 3, 3, 3), (3, 3, 3, 3, 3)) ); Tiles_Collisions : aliased constant GESTE.Tile_Collisions_Array := (1 => ((True, True, True, True, True), (True, True, True, True, True), (True, True, True, True, True), (True, True, True, True, True), (True, True, True, True, True)), 2 => ((False, False, False, False, False), (False, False, False, False, False), (False, False, False, False, False), (False, False, False, False, False), (False, False, False, False, False)) ); Bank : aliased GESTE.Tile_Bank.Instance (Tiles'Unrestricted_Access, Tiles_Collisions'Unrestricted_Access, Palette'Unrestricted_Access); Bank_No_Collisions : aliased GESTE.Tile_Bank.Instance (Tiles'Unrestricted_Access, GESTE.No_Collisions, Palette'Unrestricted_Access); Grid_Data : aliased constant GESTE.Grid.Grid_Data := ((1, 2), (0, 1)); Grid : aliased GESTE.Grid.Instance (Grid_Data'Unrestricted_Access, Bank'Unrestricted_Access); Grid_No_Collisions : aliased GESTE.Grid.Instance (Grid_Data'Unrestricted_Access, Bank_No_Collisions'Unrestricted_Access); begin Grid.Move ((0, 0)); GESTE.Add (Grid'Unrestricted_Access, 0); Grid_No_Collisions.Move ((10, 0)); GESTE.Add (Grid_No_Collisions'Unrestricted_Access, 0); GESTE.Render_Window (Window => Console_Screen.Screen_Rect, Background => Background, Buffer => Console_Screen.Buffer, Push_Pixels => Console_Screen.Push_Pixels'Unrestricted_Access, Set_Drawing_Area => Console_Screen.Set_Drawing_Area'Unrestricted_Access); Console_Screen.Print; -- Collisions disabled on all layers Console_Screen.Test_Collision (1, 1, False); Console_Screen.Test_Collision (6, 1, False); -- Collisions enabled on all layers Grid.Enable_Collisions; Grid_No_Collisions.Enable_Collisions; Console_Screen.Test_Collision (1, 1, True); Console_Screen.Test_Collision (6, 1, False); -- There's no collisions when there's no tile Console_Screen.Test_Collision (1, 6, False); -- There's no collisions data for the bank of this layer Console_Screen.Test_Collision (10, 1, False); -- There's no collisions outside the grids Console_Screen.Test_Collision (25, 25, False); end Collision_Grids;
AdaCore/Ada_Drivers_Library
Ada
10,048
ads
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2015, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ with System; with Ada.Unchecked_Conversion; package STM32.DMA2D is type DMA2D_Color is record Alpha : UInt8; Red : UInt8; Green : UInt8; Blue : UInt8; end record; for DMA2D_Color use record Blue at 0 range 0 .. 7; Green at 1 range 0 .. 7; Red at 2 range 0 .. 7; Alpha at 3 range 0 .. 7; end record; Black : constant DMA2D_Color := (255, 0, 0, 0); White : constant DMA2D_Color := (255, 255, 255, 255); Transparent : constant DMA2D_Color := (others => 0); -- This bit is set and cleared by software. It cannot be modified -- while a transfer is ongoing. type DMA2D_MODE is ( -- Memory-to-memory (FG fetch only) M2M, -- Memory-to-memory with PFC (FG fetch only with FG PFC active) M2M_PFC, -- Memory-to-memory with blending (FG and BG fetch with PFC and -- blending) M2M_BLEND, -- Register-to-memory (no FG nor BG, only output stage active) R2M ); for DMA2D_MODE'Size use 2; -- Configuration Error Interrupt Enable type DMA2D_FLAG is (Disable, Enable); -- Abort -- This bit can be used to abort the current transfer. This bit is -- set by software and is automatically reset by hardware when the -- START bit is reset. type DMA2D_ABORT is ( -- 0: No transfer abort requested Not_Requested, -- 1: Transfer abort requested Requested); -- Suspend -- This bit can be used to suspend the current transfer. This bit -- is set and reset by software. It is automatically reset by -- hardware when the START bit is reset. type DMA2D_SUSPEND is ( -- Transfer not suspended Not_Suspended, -- Transfer suspended Supended); -- Start -- This bit can be used to launch the DMA2D according to the -- parameters loaded in the various configuration registers. This -- bit is automatically reset by the following events: -- - At the end of the transfer -- - When the data transfer is aborted by the user application by -- setting the ABORT bit in DMA2D_CR -- - When a data transfer error occurs -- - When the data transfer has not started due to a configuration -- error or another transfer operation already ongoing (automatic -- CLUT loading) type DMA2D_START is (Not_Started, Start); -- These bits defines the color format type DMA2D_Color_Mode is (ARGB8888, RGB888, RGB565, ARGB1555, ARGB4444, L8, AL44, AL88, L4, A8, A4) with Size => 4; subtype DMA2D_CLUT_Color_Mode is DMA2D_Color_Mode range ARGB8888 .. RGB888; subtype DMA2D_Dst_Color_Mode is DMA2D_Color_Mode range ARGB8888 .. ARGB4444; subtype Foreground_Color_Mode is DMA2D_Color_Mode; subtype Background_Color_Mode is DMA2D_Color_Mode; subtype Output_Color_Mode is DMA2D_Color_Mode range ARGB8888 .. ARGB4444; -- function UInt8s_Per_Pixel (CM : DMA2D_Color_Mode) return Positive -- is (case CM is -- when ARGB8888 => 4, -- when RGB888 => 3, -- when others => 2); -- Alpha mode -- 00: No modification of the foreground image alpha channel value -- 01: Replace original foreground image alpha channel value by ALPHA[7:0] -- 10: Replace original foreground image alpha channel value by ALPHA[7:0] -- multiplied with original alpha channel value -- other configurations are meaningless type DMA2D_AM is (NO_MODIF, REPLACE, MULTIPLY); for DMA2D_AM'Size use 2; procedure DMA2D_DeInit; type DMA2D_Sync_Procedure is access procedure; procedure DMA2D_Init (Init : DMA2D_Sync_Procedure; Wait : DMA2D_Sync_Procedure); type DMA2D_Buffer (Color_Mode : DMA2D_Color_Mode := ARGB8888) is record Addr : System.Address; Width : Natural; Height : Natural; case Color_Mode is when L8 | L4 => CLUT_Color_Mode : DMA2D_CLUT_Color_Mode; CLUT_Addr : System.Address; when others => null; end case; end record; Null_Buffer : constant DMA2D_Buffer := (Addr => System.Null_Address, Width => 0, Height => 0, Color_Mode => DMA2D_Color_Mode'First); procedure DMA2D_Fill (Buffer : DMA2D_Buffer; Color : UInt32; Synchronous : Boolean := False) with Pre => Buffer.Color_Mode in Output_Color_Mode; -- Same as above, using the destination buffer native color representation procedure DMA2D_Set_Pixel (Buffer : DMA2D_Buffer; X, Y : Integer; Color : UInt32; Synchronous : Boolean := False) with Pre => Buffer.Color_Mode in Output_Color_Mode; -- Same as above, using the destination buffer native color representation procedure DMA2D_Set_Pixel_Blend (Buffer : DMA2D_Buffer; X, Y : Integer; Color : DMA2D_Color; Synchronous : Boolean := False) with Pre => Buffer.Color_Mode in Output_Color_Mode; procedure DMA2D_Fill_Rect (Buffer : DMA2D_Buffer; Color : UInt32; X : Integer; Y : Integer; Width : Integer; Height : Integer; Synchronous : Boolean := False) with Pre => Buffer.Color_Mode in Output_Color_Mode; -- Same as above, using the destination buffer native color representation procedure DMA2D_Draw_Rect (Buffer : DMA2D_Buffer; Color : UInt32; X : Integer; Y : Integer; Width : Integer; Height : Integer) with Pre => Buffer.Color_Mode in Output_Color_Mode; -- Fill the specified area of the buffer with 'Color' procedure DMA2D_Copy_Rect (Src_Buffer : DMA2D_Buffer; X_Src : Natural; Y_Src : Natural; Dst_Buffer : DMA2D_Buffer; X_Dst : Natural; Y_Dst : Natural; Bg_Buffer : DMA2D_Buffer; X_Bg : Natural; Y_Bg : Natural; Width : Natural; Height : Natural; Synchronous : Boolean := False) with Pre => Dst_Buffer.Color_Mode in Output_Color_Mode; -- Copy a rectangular area from Src to Dst -- If Blend is set, then the rectangle will be merged with the destination -- area, taking into account the opacity of the source. Else, it is simply -- copied. -- -- if Bg_Buffer is not Null_Buffer, then the copy will be performed in -- blend mode: Bg_Buffer and Src_Buffer are combined first and then copied -- to Dst_Buffer. procedure DMA2D_Draw_Vertical_Line (Buffer : DMA2D_Buffer; Color : UInt32; X : Integer; Y : Integer; Height : Integer; Synchronous : Boolean := False) with Pre => Buffer.Color_Mode in Output_Color_Mode; -- Draws a vertical line procedure DMA2D_Draw_Horizontal_Line (Buffer : DMA2D_Buffer; Color : UInt32; X : Integer; Y : Integer; Width : Integer; Synchronous : Boolean := False) with Pre => Buffer.Color_Mode in Output_Color_Mode; -- Draws a vertical line procedure DMA2D_Wait_Transfer; -- Makes sure the DMA2D transfers are done private function As_UInt3 is new Ada.Unchecked_Conversion (DMA2D_Dst_Color_Mode, UInt3); function As_UInt4 is new Ada.Unchecked_Conversion (DMA2D_Color_Mode, UInt4); end STM32.DMA2D;
rguilloteau/pok
Ada
2,510
ads
-- POK header -- -- The following file is a part of the POK project. Any modification should -- be made according to the POK licence. You CANNOT use this file or a part -- of a file for your own project. -- -- For more information on the POK licence, please see our LICENCE FILE -- -- Please follow the coding guidelines described in doc/CODING_GUIDELINES -- -- Copyright (c) 2007-2020 POK team -- --------------------------------------------------------------------------- -- -- -- EVENT constant and type definitions and management services -- -- -- -- --------------------------------------------------------------------------- with APEX.Processes; package APEX.Events is Max_Number_Of_Events : constant := System_Limit_Number_Of_Events; subtype Event_Name_Type is Name_Type; type Event_Id_Type is private; Null_Event_Id : constant Event_Id_Type; type Event_State_Type is (Down, Up); type Event_Status_Type is record Event_State : Event_State_Type; Waiting_Processes : APEX.Processes.Waiting_Range_Type; end record; procedure Create_Event (Event_Name : in Event_Name_Type; Event_Id : out Event_Id_Type; Return_Code : out Return_Code_Type); procedure Set_Event (Event_Id : in Event_Id_Type; Return_Code : out Return_Code_Type); procedure Reset_Event (Event_Id : in Event_Id_Type; Return_Code : out Return_Code_Type); procedure Wait_Event (Event_Id : in Event_Id_Type; Time_Out : in System_Time_Type; Return_Code : out Return_Code_Type); procedure Get_Event_Id (Event_Name : in Event_Name_Type; Event_Id : out Event_Id_Type; Return_Code : out Return_Code_Type); procedure Get_Event_Status (Event_Id : in Event_Id_Type; Event_Status : out Event_Status_Type; Return_Code : out Return_Code_Type); private type Event_Id_Type is new APEX_Integer; Null_Event_Id : constant Event_Id_Type := 0; pragma Convention (C, Event_State_Type); pragma Convention (C, Event_Status_Type); -- POK BINDINGS pragma Import (C, Create_Event, "CREATE_EVENT"); pragma Import (C, Set_Event, "SET_EVENT"); pragma Import (C, Reset_Event, "RESET_EVENT"); pragma Import (C, Wait_Event, "WAIT_EVENT"); pragma Import (C, Get_Event_Id, "GET_EVENT_ID"); pragma Import (C, Get_Event_Status, "GET_EVENT_STATUS"); -- END OF POK BINDINGS end APEX.Events;
ytomino/gnat4drake
Ada
1,912
ads
pragma License (Unrestricted); with GNAT.OS_Lib; with GNAT.Regpat; private with Ada.Processes; private with Ada.Streams.Stream_IO; package GNAT.Expect is type Process_Descriptor is tagged limited private; type Process_Descriptor_Access is access Process_Descriptor'Class; -- Spawning a process procedure Close (Descriptor : in out Process_Descriptor); procedure Close ( Descriptor : in out Process_Descriptor; Status : out Integer); function Get_Command_Output ( Command : String; Arguments : GNAT.OS_Lib.Argument_List; Input : String; Status : not null access Integer; Err_To_Out : Boolean := False) return String; -- Sending data procedure Send ( Descriptor : in out Process_Descriptor; Str : String; Add_LF : Boolean := True; Empty_Buffer : Boolean := False); -- Working on the output (single process, simple regexp) type Expect_Match is new Integer; Expect_Timeout : constant Expect_Match := -2; procedure Expect ( Descriptor : in out Process_Descriptor; Result : out Expect_Match; Regexp : String; Timeout : Integer := 10_000; Full_Buffer : Boolean := False); procedure Expect ( Descriptor : in out Process_Descriptor; Result : out Expect_Match; Regexp : GNAT.Regpat.Pattern_Matcher; Timeout : Integer := 10_000; Full_Buffer : Boolean := False); -- Getting the output procedure Flush ( Descriptor : in out Process_Descriptor; Timeout : Integer := 0); function Expect_Out (Descriptor : Process_Descriptor) return String; -- Exceptions Invalid_Process : exception; Process_Died : exception; private type Process_Descriptor is tagged limited record Item : Ada.Processes.Process; Input_Writing : access Ada.Streams.Stream_IO.File_Type; end record; end GNAT.Expect;
charlie5/lace
Ada
122
ads
-- This file is generated by SWIG. Please do *not* modify by hand. -- package c_math_c.Binding is end c_math_c.Binding;
reznikmm/matreshka
Ada
3,699
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Attributes; package ODF.DOM.Style_Height_Attributes is pragma Preelaborate; type ODF_Style_Height_Attribute is limited interface and XML.DOM.Attributes.DOM_Attribute; type ODF_Style_Height_Attribute_Access is access all ODF_Style_Height_Attribute'Class with Storage_Size => 0; end ODF.DOM.Style_Height_Attributes;
alvaromb/Compilemon
Ada
553
ads
generic type Tipus_Element is private; package pilas is Memoria_Agotada : exception; type Pila is limited private; procedure Pila_Buida (P : out Pila); function Es_Buida (P : Pila) return Boolean; procedure Cim (P : in Pila; Element : out Tipus_Element); procedure Empilar (P : in out Pila; Element : in Tipus_Element); procedure Desempilar (P : in out Pila); procedure Destruir (P : in out Pila); private type Component; type Pila is access Component; end pilas;
frett27/Ada-Synthetizer
Ada
1,239
ads
-- The Beer-Ware License (revision 42) -- -- Jacob Sparre Andersen <[email protected]> wrote this. As long as you -- retain this notice you can do whatever you want with this stuff. If we meet -- some day, and you think this stuff is worth it, you can buy me a beer in -- return. -- -- Jacob Sparre Andersen private with Sound.ALSA; package Sound.Stereo_Recording is type Line_Type is private; type Level is range -(2 ** 15) .. (2 ** 15) - 1; for Level'Size use 16; type Channel is (Left, Right); type Frame is array (Channel) of Level; for Frame'Size use 32; type Frame_Array is array (Positive range <>) of aliased Frame; pragma Convention (C, Frame_Array); procedure Open (Line : in out Line_Type; Resolution : in out Sample_Frequency; Buffer_Size : in out Duration; Period : in out Duration); function Is_Open (Line : in Line_Type) return Boolean; procedure Close (Line : in out Line_Type); procedure Read (Line : in Line_Type; Item : out Frame_Array; Last : out Natural); private type Line_Type is new Sound.ALSA.snd_pcm_t_ptr; end Sound.Stereo_Recording;
zhmu/ananas
Ada
94
adb
-- { dg-do compile } package body Incomplete7 is procedure Foo is null; end Incomplete7;
Fabien-Chouteau/pygamer-simulator
Ada
410
ads
with Interfaces; package PyGamer.Audio is type Data_Array is array (Natural range <>) of aliased Interfaces.Unsigned_16; type Audio_Callback is access procedure (Left, Right : out Data_Array); type Sample_Rate_Kind is (SR_11025, SR_22050, SR_44100, SR_96000); procedure Set_Callback (Callback : Audio_Callback; Sample_Rate : Sample_Rate_Kind); end PyGamer.Audio;
faelys/natools
Ada
14,824
adb
------------------------------------------------------------------------------ -- Copyright (c) 2014, Natacha Porté -- -- -- -- Permission to use, copy, modify, and distribute this software for any -- -- purpose with or without fee is hereby granted, provided that the above -- -- copyright notice and this permission notice appear in all copies. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -- -- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -- -- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -- -- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -- -- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -- -- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -- -- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -- ------------------------------------------------------------------------------ with Ada.Calendar.Arithmetic; with Ada.Calendar.Formatting; with Ada.Calendar.Time_Zones; with Natools.Time_IO.Human; with Natools.Time_IO.RFC_3339; package body Natools.Time_IO.Tests is use type Ada.Calendar.Time; use type Ada.Calendar.Time_Zones.Time_Offset; type Extended_Time is record Time : Ada.Calendar.Time; Offset : Ada.Calendar.Time_Zones.Time_Offset; end record; ------------------------------ -- Local Helper Subprograms -- ------------------------------ function Explicit_Sign (Image : String) return String is (if Image'Length > 0 and then Image (Image'First) = ' ' then '+' & Image (Image'First + 1 .. Image'Last) else Image); function Has_Leap_Second_Support return Boolean; function Image (Time : Extended_Time) return String is ('[' & Ada.Calendar.Formatting.Image (Time.Time) & "] " & Explicit_Sign (Ada.Calendar.Time_Zones.Time_Offset'Image (Time.Offset))); function Quote (Original : String) return String is ('"' & Original & '"'); procedure Check is new NT.Generic_Check (Extended_Time); procedure Check is new NT.Generic_Check (String, "=", Quote); function Has_Leap_Second_Support return Boolean is Leap_Second_Time : Ada.Calendar.Time; Year : Ada.Calendar.Year_Number; Month : Ada.Calendar.Month_Number; Day : Ada.Calendar.Day_Number; Hour : Ada.Calendar.Formatting.Hour_Number; Minute : Ada.Calendar.Formatting.Minute_Number; Second : Ada.Calendar.Formatting.Second_Number; Sub_Second : Ada.Calendar.Formatting.Second_Duration; Is_Leap_Second : Boolean; begin begin Leap_Second_Time := Ada.Calendar.Formatting.Time_Of (1990, 12, 31, 23, 59, 59, 0.25, True, 0); exception when Ada.Calendar.Time_Error => -- Leap second are explicitly not supported return False; end; Ada.Calendar.Formatting.Split (Leap_Second_Time, Year, Month, Day, Hour, Minute, Second, Sub_Second, Is_Leap_Second, Time_Zone => 0); -- Check that Time_Of/Split at least work on the normal part pragma Assert (Year = 1990); pragma Assert (Month = 12); pragma Assert (Day = 31); pragma Assert (Hour = 23); pragma Assert (Minute = 59); pragma Assert (Second = 59); pragma Assert (Sub_Second = 0.25); -- According to the standard, Is_Leap_Second should be True at this -- point, because Time_Error should have been raised if leap second is -- not supported. -- However some implementations mistakenly drop silently Leap_Second, -- so actual support is determined here by check Is_Leap_Second. return Is_Leap_Second; end Has_Leap_Second_Support; ------------------------- -- Complete Test Suite -- ------------------------- procedure All_Tests (Report : in out NT.Reporter'Class) is begin Human_Duration (Report); Human_Time_Difference (Report); Read_From_RFC_3339 (Report); Write_As_RFC_3339 (Report); end All_Tests; ----------------------- -- Inidividual Tests -- ----------------------- procedure Human_Duration (Report : in out NT.Reporter'Class) is Test : NT.Test := Report.Item ("Human-readable time intervals"); function Compose (Second : Ada.Calendar.Formatting.Second_Number; Minute : Ada.Calendar.Formatting.Minute_Number := 0; Hour : Ada.Calendar.Formatting.Hour_Number := 0) return Duration is (Second * 1.0 + Minute * 60.0 + Hour * 3600.0); begin Check (Test, "-1d", Human.Image (-86400.0), "-1d"); Check (Test, "0s", Human.Image (0.0), "0"); Check (Test, "1d", Human.Image (86400.0), "1d"); Check (Test, "1d", Human.Image (Compose (1, 30, 23)), "23h 30m 1s"); Check (Test, "23h", Human.Image (Compose (59, 29, 23)), "23h 29m 59s"); Check (Test, "15h", Human.Image (Compose (0, 20, 15)), "15h 20m"); Check (Test, "10h", Human.Image (Compose (0, 0, 10)), "10h"); Check (Test, "10h", Human.Image (Compose (31, 59, 9)), "9h 59m 31s"); Check (Test, "9h 59m", Human.Image (Compose (29, 59, 9)), "9h 59m 29s"); Check (Test, "2h", Human.Image (Compose (45, 59, 1)), "1h 59m 45s"); Check (Test, "1h 2m", Human.Image (Compose (45, 1, 1)), "1h 1m 45s"); Check (Test, "1h", Human.Image (Compose (31, 59)), "59m 31s"); Check (Test, "59 min", Human.Image (Compose (28, 59)), "59m 28s"); Check (Test, "10 min", Human.Image (600.1), "10m 0.1s"); Check (Test, "10 min", Human.Image (599.7), "9m 59.7s"); Check (Test, "9 min 59s", Human.Image (599.4), "9m 59.4s"); Check (Test, "1 min", Human.Image (60.4), "1m 0.4s"); Check (Test, "1 min", Human.Image (59.6), "59.6s"); Check (Test, "59s", Human.Image (59.4), "59.4s"); Check (Test, "10s", Human.Image (10.3), "10.3s"); Check (Test, "6 s", Human.Image (6.0), "6s"); Check (Test, "5.400 s", Human.Image (5.4), "5.4s"); Check (Test, "1 s", Human.Image (1.0), "1s"); Check (Test, "980 ms", Human.Image (0.98), "980ms"); Check (Test, "40 ms", Human.Image (0.04), "40ms"); Check (Test, "20 ms", Human.Image (0.02), "20ms"); pragma Warnings (Off, "condition is always *"); if 89999.0 in Duration then Check (Test, "1d 1h", Human.Image (89999.0), "1d 59m 59s"); end if; -- The tests below require a smaller Duration'Small than what is -- guaranteed by the standard. Further conditions should be added -- to prevent a check from failing because of lack of Duration precision Check (Test, "2 s", Human.Image (2.0002), "2.0002s"); Check (Test, "2 s", Human.Image (1.9997), "1.9997s"); Check (Test, "1.999 s", Human.Image (1.999), "1.999s"); Check (Test, "1 s", Human.Image (1.0), "1s"); Check (Test, "999 ms", Human.Image (0.999), "999 ms"); Check (Test, "2 s", Human.Image (2.000_4), "2.0004"); Check (Test, "10 ms", Human.Image (0.0104), "10.4 ms"); Check (Test, "9.990 ms", Human.Image (0.009_99), "9.990 ms"); Check (Test, "1.001 ms", Human.Image (0.001_001), "1.001 ms"); Check (Test, "1 ms", Human.Image (0.001), "1.000 ms"); Check (Test, "999 us", Human.Image (0.000_999), "999 us"); Check (Test, "10 us", Human.Image (0.000_01), "10 us"); Check (Test, "9.500 us", Human.Image (0.000_009_5), "9.5 us"); Check (Test, "1.100 us", Human.Image (0.000_001_1), "1.1 us"); Check (Test, "1 us", Human.Image (0.000_001), "1 us"); Check (Test, "900 ns", Human.Image (0.000_000_9), "900 ns"); pragma Warnings (On, "condition is always *"); exception when Error : others => Test.Report_Exception (Error); end Human_Duration; procedure Human_Time_Difference (Report : in out NT.Reporter'Class) is Test : NT.Test := Report.Item ("Human-readable time differences"); Now : constant Ada.Calendar.Time := Ada.Calendar.Clock; function Add (Base : Ada.Calendar.Time; Days : Ada.Calendar.Arithmetic.Day_Count; Seconds : Duration) return Ada.Calendar.Time is (Ada.Calendar."+" (Ada.Calendar.Arithmetic."+" (Base, Days), Seconds)); function Test_Image (Days : Ada.Calendar.Arithmetic.Day_Count; Seconds : Duration; Use_Weeks : Boolean) return String is (Human.Difference_Image (Add (Now, Days, Seconds), Now, Use_Weeks)); begin Check (Test, "-1d", Human.Difference_Image (Now, Add (Now, 1, 900.0))); Check (Test, "71d", Test_Image (71, 36_000.0, False)); Check (Test, "10w", Test_Image (70, 3_600.0, True)); Check (Test, "5w 1d", Test_Image (35, 60_000.0, True)); Check (Test, "1w 2d", Test_Image (8, 54_000.0, True)); Check (Test, "8d 15h", Test_Image (8, 54_000.0, False)); Check (Test, "8d", Test_Image (7, 23 * 3600.0 + 35 * 60.0, False)); Check (Test, "5d", Test_Image (5, 900.0, True)); Check (Test, "10h", Test_Image (0, 36_598.0, True)); exception when Error : others => Test.Report_Exception (Error); end Human_Time_Difference; procedure Read_From_RFC_3339 (Report : in out NT.Reporter'Class) is Test : NT.Test := Report.Item ("RFC-3339 -> Ada.Calendar.Time"); Now : constant Extended_Time := (Ada.Calendar.Clock, Ada.Calendar.Time_Zones.UTC_Time_Offset); function Value (Img : String; Expected_Leap : Boolean := False) return Extended_Time; function Value (Img : String; Expected_Leap : Boolean := False) return Extended_Time is Result : Extended_Time; Leap : Boolean; begin RFC_3339.Value (Img, Result.Time, Result.Offset, Leap); if Leap /= Expected_Leap then Test.Fail ("Unexpected leap second flag at " & Boolean'Image (Leap) & " for """ & Img & '"'); end if; return Result; end Value; begin Check (Test, (Ada.Calendar.Formatting.Time_Of (1985, 04, 12, 23, 20, 50, 0.52, False, 0), 0), Value ("1985-04-12T23:20:50.52Z"), "[1] UTC time with subseconds:"); Check (Test, (Ada.Calendar.Formatting.Time_Of (1996, 12, 19, 16, 39, 57, 0.0, False, -8 * 60), -8 * 60), Value ("1996-12-19T16:39:57-08:00"), "[2] Time with negative offset:"); if Has_Leap_Second_Support then Check (Test, (Ada.Calendar.Formatting.Time_Of (1990, 12, 31, 23, 59, 59, 0.0, True, 0), 0), Value ("1990-12-31T23:59:60Z"), "[3] UTC leap second:"); Check (Test, (Ada.Calendar.Formatting.Time_Of (1990, 12, 31, 15, 59, 59, 0.0, True, -8 * 60), -8 * 60), Value ("1990-12-31T15:59:60-08:00"), "[4] Leap second with time offset:"); else Check (Test, (Ada.Calendar.Formatting.Time_Of (1990, 12, 31, 23, 59, 59, 0.0, False, 0), 0), Value ("1990-12-31T23:59:60Z", True), "[3] UTC leap second:"); Check (Test, (Ada.Calendar.Formatting.Time_Of (1990, 12, 31, 15, 59, 59, 0.0, False, -8 * 60), -8 * 60), Value ("1990-12-31T15:59:60-08:00", True), "[4] Leap second with time offset:"); end if; Check (Test, (Ada.Calendar.Formatting.Time_Of (1937, 01, 01, 12, 0, 27, 0.87, False, 20), 20), Value ("1937-01-01T12:00:27.87+00:20"), "[5] Noon in the Netherlands:"); Check (Test, Now, Value (RFC_3339.Image (Now.Time, Subsecond_Digits => 9)), "[6] Round trip with current time:"); declare Time : Extended_Time; begin RFC_3339.Value ("1990-11-31T23:59:60Z", Time.Time, Time.Offset); Test.Fail ("No exception on 1990-11-31, found " & Image (Time)); exception when Ada.Calendar.Time_Error => null; end; exception when Error : others => Test.Report_Exception (Error); end Read_From_RFC_3339; procedure Write_As_RFC_3339 (Report : in out NT.Reporter'Class) is Test : NT.Test := Report.Item ("Ada.Calendar.Time -> RFC-3339"); begin Check (Test, "1985-04-12T23:20:50.52Z", RFC_3339.Image (Ada.Calendar.Formatting.Time_Of (1985, 04, 12, 23, 20, 50, 0.52, False, 0), 0, 2), "[1] UTC time with subseconds:"); Check (Test, "1996-12-19T16:39:57-08:00", RFC_3339.Image (Ada.Calendar.Formatting.Time_Of (1996, 12, 19, 16, 39, 57, 0.0, False, -8 * 60), -8 * 60, 0), "[2] Time with negative offset:"); if Has_Leap_Second_Support then Check (Test, "1990-12-31T23:59:60Z", RFC_3339.Image (Ada.Calendar.Formatting.Time_Of (1990, 12, 31, 23, 59, 59, 0.0, True, 0), 0, 0), "[3] UTC leap second:"); Check (Test, "1990-12-31T15:59:60-08:00", RFC_3339.Image (Ada.Calendar.Formatting.Time_Of (1990, 12, 31, 15, 59, 59, 0.0, True, -8 * 60), -8 * 60, 0), "[4] Leap second with time offset:"); end if; Check (Test, "1990-12-31T23:59:60Z", RFC_3339.Image (Ada.Calendar.Formatting.Time_Of (1990, 12, 31, 23, 59, 59, 0.0, False, 0), 0, 0, True), "[3b] UTC leap second with workaround:"); Check (Test, "1990-12-31T15:59:60-08:00", RFC_3339.Image (Ada.Calendar.Formatting.Time_Of (1990, 12, 31, 15, 59, 59, 0.0, False, -8 * 60), -8 * 60, 0, True), "[4b] Leap second with time offset and workaround:"); Check (Test, "1937-01-01T12:00:27.87+00:20", RFC_3339.Image (Ada.Calendar.Formatting.Time_Of (1937, 01, 01, 12, 0, 27, 0.87, False, 20), 20, 2), "[5] Noon in the Netherlands:"); Check (Test, "2014-12-25T23:00:00+01:00", RFC_3339.Image (RFC_3339.Value ("2014-12-25T23:00:00+01:00"), 60, 0), "[6] Round trip"); exception when Error : others => Test.Report_Exception (Error); end Write_As_RFC_3339; end Natools.Time_IO.Tests;
msrLi/portingSources
Ada
3,552
ads
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding Samples -- -- -- -- Status -- -- -- -- S P E C -- -- -- ------------------------------------------------------------------------------ -- Copyright (c) 1998 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, distribute with modifications, sublicense, and/or sell -- -- copies of the Software, and to permit persons to whom the Software is -- -- furnished to do so, subject to the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -- -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -- -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -- -- THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- -- -- -- Except as contained in this notice, the name(s) of the above copyright -- -- holders shall not be used in advertising or otherwise to promote the -- -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ -- Author: Laurent Pautet <[email protected]> -- Modified by: Juergen Pfeifer, 1997 -- Version Control -- $Revision: 1.9 $ -- Binding Version 01.00 ------------------------------------------------------------------------------ -- This package has been contributed by Laurent Pautet <[email protected]> -- -- -- with Ada.Interrupts.Names; package Status is pragma Warnings (Off); -- the next pragma exists since 3.11p pragma Unreserve_All_Interrupts; pragma Warnings (On); protected Process is procedure Stop; function Continue return Boolean; pragma Attach_Handler (Stop, Ada.Interrupts.Names.SIGINT); private Done : Boolean := False; end Process; end Status;
msrLi/portingSources
Ada
887
adb
-- Copyright 2008-2014 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. with Types; use Types; procedure Foo is R : Rectangle := (1, 2, 3, 4); S : Object'Class := Ident (R); begin Do_Nothing (R); -- STOP Do_Nothing (S); end Foo;
reznikmm/matreshka
Ada
4,672
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.DOM_Documents; with Matreshka.ODF_String_Constants; with ODF.DOM.Iterators; with ODF.DOM.Visitors; package body Matreshka.ODF_Table.Base_Cell_Address_Attributes is ------------ -- Create -- ------------ overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Table_Base_Cell_Address_Attribute_Node is begin return Self : Table_Base_Cell_Address_Attribute_Node do Matreshka.ODF_Table.Constructors.Initialize (Self'Unchecked_Access, Parameters.Document, Matreshka.ODF_String_Constants.Table_Prefix); end return; end Create; -------------------- -- Get_Local_Name -- -------------------- overriding function Get_Local_Name (Self : not null access constant Table_Base_Cell_Address_Attribute_Node) return League.Strings.Universal_String is pragma Unreferenced (Self); begin return Matreshka.ODF_String_Constants.Base_Cell_Address_Attribute; end Get_Local_Name; begin Matreshka.DOM_Documents.Register_Attribute (Matreshka.ODF_String_Constants.Table_URI, Matreshka.ODF_String_Constants.Base_Cell_Address_Attribute, Table_Base_Cell_Address_Attribute_Node'Tag); end Matreshka.ODF_Table.Base_Cell_Address_Attributes;
reznikmm/matreshka
Ada
4,686
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Visitors; with ODF.DOM.Style_Footer_Elements; package Matreshka.ODF_Style.Footer_Elements is type Style_Footer_Element_Node is new Matreshka.ODF_Style.Abstract_Style_Element_Node and ODF.DOM.Style_Footer_Elements.ODF_Style_Footer with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Elements.Element_L2_Parameters) return Style_Footer_Element_Node; overriding function Get_Local_Name (Self : not null access constant Style_Footer_Element_Node) return League.Strings.Universal_String; overriding procedure Enter_Node (Self : not null access Style_Footer_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Leave_Node (Self : not null access Style_Footer_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Visit_Node (Self : not null access Style_Footer_Element_Node; Iterator : in out XML.DOM.Visitors.Abstract_Iterator'Class; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); end Matreshka.ODF_Style.Footer_Elements;
jscparker/math_packages
Ada
5,397
ads
----------------------------------------------------------------------- -- package body Crout_LU, LU decomposition, with equation solving -- Copyright (C) 2008-2018 Jonathan S. Parker. -- -- Permission to use, copy, modify, and/or distribute this software for any -- purpose with or without fee is hereby granted, provided that the above -- copyright notice and this permission notice appear in all copies. -- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ------------------------------------------------------------------------------- -- package Runge_Coeffs_pd_5 -- -- Package contains coefficients for the Cash-Karp -- 5th order, 6 stage Runge Kutta method with error control. -- -- A test routine is provided to make make sure that they -- have not been corrupted. If the coefficients do not pass -- the tests, then they are given in redundant and alternate -- forms at the end of this package (commented out). -- -- NOTES ON THE ALGORITHM -- -- Given a differential equ. dY/dt = F(t,Y) and an initial condition -- Y(t), the Runge-Kutta formulas predict a new value of Y at -- Y(t + h) with the formula -- -- max -- Y(t + h) = Y(t) + SUM (K(j) * B(j)) -- j=1 -- -- where max = Stages'Last, (which equals 13 here, since this is a 13 -- stage Runge-Kutta formula) where the quantities K are calculated from -- -- K(1) = h * F(t, Y(t)) -- -- j-1 -- K(j) = h * F (t + C(j)*h, Y(t) + SUM (K(i)*A(j,i)) ) -- i=1 -- -- The Fehberg method, used here, provides two versions of the array -- B, so that Y(t + h) may be calculated to both 7th order and to -- 8th order using the same K(i)'s. This way, the local truncation -- error can be estimated without calculating the K(i)'s twice. -- -- If we apply this formula to a time-independent linear F, then we can -- derive a condition that can be used to test the correctness of the -- initialization values of the arrays A, B and C. To derive such a -- formula we use the fact that the RK prediction of Y(t + h) must equal -- the Taylor series prediction up to the required order. So, -- -- K(1) = h*F*Y (where F now is a matrix, and Y a vector) -- -- K(2) = h*F*(Y + K(1)*A21) -- -- K(3) = h*F*(Y + K(1)*A31 + K(2)*A32) -- -- K(4) = h*F*(Y + K(1)*A41 + K(2)*A42 + K(3)*A43) -- -- The linearity of F implies that F(a*Y + Z) = a*F*Y + F*Z so: -- -- K(1) = h*F*Y -- -- K(2) = h*F*Y + A21*h^2*F^2*Y -- -- K(3) = h*F*Y + (A31 + A32)*h^2*F^2*Y + A32*A21*h^3*F^3*Y -- -- K(4) = h*F*Y + (A41+A42+A43)*h^2*F^2*Y + (A42*A21+A43*A31)h^3*F^3*Y -- + A43*A32*A21*h^4F^4*Y -- -- Now we use the fact that we must have the RK prediction equal that -- of the Taylor's series up to a certain order: -- -- max -- SUM (K(j) * B(j)) = h*F*Y + ... + (1/n!)*h^n*F^n*Y + O(h^n+1) -- j=1 -- -- Here n=8 for the coefficients B = B8 given below. Its n=7 for B7. -- The above formula gives us a relation between 1/n! and B and A. -- This formula is used in the procedure TestRKPD given at the end -- of this package. We see immediately that we must have: -- -- max -- SUM (B(i)) = 1/1! -- i=1 -- -- max i-1 -- SUM (B(i) * SUM(Aij)) = 1/2! -- i=2 j=1 -- generic type Real is digits <>; package Runge_Coeffs_pd_5 is subtype RK_Range is Integer range 0..6; subtype Stages is RK_Range range 0..6; -- always 0 .. 6 type Coefficient is array(RK_Range) of Real; type Coefficient_Array is array(RK_Range) of Coefficient; procedure Test_Runge_Coeffs; A_rational : constant Coefficient_Array := ( (others => 0.0), (1.0/5.0, others => 0.0), (3.0/40.0, 9.0/40.0, others => 0.0), (44.0/45.0, -56.0/15.0, 32.0/9.0, others => 0.0), (19372.0/6561.0, -25360.0/2187.0, 64448.0/6561.0, -212.0/729.0, others => 0.0), (9017.0/3168.0, -355.0/33.0, 46732.0/5247.0, 49.0/176.0, -5103.0/18656.0, 0.0, 0.0), (35.0/384.0, 0.0, 500.0/1113.0, 125.0/192.0, -2187.0/6784.0, 11.0/84.0, 0.0) ); -- 4rth order: B4_rational : constant Coefficient := ( 5179.0/57600.0, 0.0, 7571.0/16695.0, 393.0/640.0, -92097.0/339200.0, 187.0/2100.0, 1.0/40.0 ); -- 5th order: B5_rational : constant Coefficient := ( 35.0/384.0, 0.0, 500.0/1113.0, 125.0/192.0, -2187.0/6784.0, 11.0/84.0, 0.0 ); -- coefficients C for getting Dt C_rational : constant Coefficient := ( 0.0, 1.0/5.0, 3.0/10.0, 4.0/5.0, 8.0/9.0, 1.0, 1.0 ); C : Coefficient renames C_rational; B4 : Coefficient renames B4_rational; B5 : Coefficient renames B5_rational; A : Coefficient_Array renames A_rational; end Runge_Coeffs_pd_5;
MinimSecure/unum-sdk
Ada
954
adb
-- Copyright 2007-2019 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. with Pck; use Pck; procedure Foo is C : Character := 'a'; WC : Wide_Character := 'b'; WWC : Wide_Wide_Character := 'c'; begin Do_Nothing (C'Address); -- START Do_Nothing (WC'Address); Do_Nothing (WWC'Address); end Foo;
reznikmm/matreshka
Ada
7,808
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Internals.Elements; with AMF.Internals.Extents; with AMF.Internals.Helpers; with AMF.Internals.Links; with AMF.Internals.Listener_Registry; with AMF.Internals.Tables.MOFEXT_Constructors; with AMF.Internals.Tables.MOF_Metamodel; package body AMF.Internals.Factories.MOF_Factories is ----------------- -- Constructor -- ----------------- function Constructor (Extent : AMF.Internals.AMF_Extent) return not null AMF.Factories.Factory_Access is begin return new MOF_Factory'(Extent => Extent); end Constructor; ----------------------- -- Convert_To_String -- ----------------------- overriding function Convert_To_String (Self : not null access MOF_Factory; Data_Type : not null access AMF.CMOF.Data_Types.CMOF_Data_Type'Class; Value : League.Holders.Holder) return League.Strings.Universal_String is begin raise Program_Error; return League.Strings.Empty_Universal_String; end Convert_To_String; ------------ -- Create -- ------------ overriding function Create (Self : not null access MOF_Factory; Meta_Class : not null access AMF.CMOF.Classes.CMOF_Class'Class) return not null AMF.Elements.Element_Access is MC : constant AMF.Internals.CMOF_Element := AMF.Internals.Elements.Element_Base'Class (Meta_Class.all).Element; Element : AMF.Internals.AMF_Element; begin if MC = AMF.Internals.Tables.MOF_Metamodel.MC_MOF_Tag then Element := AMF.Internals.Tables.MOFEXT_Constructors.Create_MOF_Tag; else raise Program_Error; end if; AMF.Internals.Extents.Internal_Append (Self.Extent, Element); AMF.Internals.Listener_Registry.Notify_Instance_Create (AMF.Internals.Helpers.To_Element (Element)); return AMF.Internals.Helpers.To_Element (Element); end Create; ------------------------ -- Create_From_String -- ------------------------ overriding function Create_From_String (Self : not null access MOF_Factory; Data_Type : not null access AMF.CMOF.Data_Types.CMOF_Data_Type'Class; Image : League.Strings.Universal_String) return League.Holders.Holder is begin raise Program_Error; return League.Holders.Empty_Holder; end Create_From_String; ----------------- -- Create_Link -- ----------------- overriding function Create_Link (Self : not null access MOF_Factory; Association : not null access AMF.CMOF.Associations.CMOF_Association'Class; First_Element : not null AMF.Elements.Element_Access; Second_Element : not null AMF.Elements.Element_Access) return not null AMF.Links.Link_Access is pragma Unreferenced (Self); begin return AMF.Internals.Links.Proxy (AMF.Internals.Links.Create_Link (AMF.Internals.Elements.Element_Base'Class (Association.all).Element, AMF.Internals.Helpers.To_Element (First_Element), AMF.Internals.Helpers.To_Element (Second_Element))); end Create_Link; ----------------- -- Get_Package -- ----------------- overriding function Get_Package (Self : not null access constant MOF_Factory) return AMF.CMOF.Packages.Collections.Set_Of_CMOF_Package is pragma Unreferenced (Self); begin return Result : AMF.CMOF.Packages.Collections.Set_Of_CMOF_Package do Result.Add (Get_Package); end return; end Get_Package; ----------------- -- Get_Package -- ----------------- function Get_Package return not null AMF.CMOF.Packages.CMOF_Package_Access is begin return AMF.CMOF.Packages.CMOF_Package_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.MOF_Metamodel.MM_MOF_MOF)); end Get_Package; ---------------- -- Create_Tag -- ---------------- overriding function Create_Tag (Self : not null access MOF_Factory) return AMF.MOF.Tags.MOF_Tag_Access is begin return AMF.MOF.Tags.MOF_Tag_Access (Self.Create (AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.MOF_Metamodel.MC_MOF_Tag)))); end Create_Tag; end AMF.Internals.Factories.MOF_Factories;
AdaCore/libadalang
Ada
138
adb
package body Pkg is Origin_Pkg_Body : Integer; package body Inner is Origin_Pkg_Inner_Body : Integer; end Inner; end Pkg;
reznikmm/matreshka
Ada
4,761
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2013, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ package Matreshka.ODF_Elements.Office.Document_Content is type Office_Document_Content_Node is new Matreshka.ODF_Elements.Office.Office_Node_Base with null record; type Office_Document_Content_Access is access all Office_Document_Content_Node'Class; overriding procedure Enter_Element (Self : not null access Office_Document_Content_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); -- Dispatch call to corresponding subprogram of visitor interface. overriding function Get_Local_Name (Self : not null access constant Office_Document_Content_Node) return League.Strings.Universal_String; overriding procedure Leave_Element (Self : not null access Office_Document_Content_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); -- Dispatch call to corresponding subprogram of visitor interface. overriding procedure Visit_Element (Self : not null access Office_Document_Content_Node; Iterator : in out XML.DOM.Visitors.Abstract_Iterator'Class; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); -- Dispatch call to corresponding subprogram of iterator interface. end Matreshka.ODF_Elements.Office.Document_Content;
damaki/libkeccak
Ada
9,841
adb
------------------------------------------------------------------------------- -- Copyright (c) 2019, Daniel King -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- * Redistributions of source code must retain the above copyright -- notice, this list of conditions and the following disclaimer. -- * Redistributions in binary form must reproduce the above copyright -- notice, this list of conditions and the following disclaimer in the -- documentation and/or other materials provided with the distribution. -- * The name of the copyright holder may not be used to endorse or promote -- Products derived from this software without specific prior written -- permission. -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY -- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -- THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ------------------------------------------------------------------------------- with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; with Ada.Text_IO; with Keccak.Types; with Test_Vectors; use Test_Vectors; package body MonkeyWrap_Runner is Key_Key : constant Unbounded_String := To_Unbounded_String ("Key"); Nonce_Key : constant Unbounded_String := To_Unbounded_String ("Nonce"); AAD_Key : constant Unbounded_String := To_Unbounded_String ("AAD"); Plaintext_Key : constant Unbounded_String := To_Unbounded_String ("Plaintext"); Ciphertext_Key : constant Unbounded_String := To_Unbounded_String ("Ciphertext"); Tag_Key : constant Unbounded_String := To_Unbounded_String ("Tag"); GlobalTag_Key : constant Unbounded_String := To_Unbounded_String ("GlobalTag"); procedure Do_Session (Ctx : in out MonkeyWrap.Context; Test_Data : in Test_Vectors.Test_Vector_Maps.Map; Num_Passed : in out Natural; Num_Failed : in out Natural); procedure Run_Tests (File_Name : in String; Num_Passed : out Natural; Num_Failed : out Natural) is use type Keccak.Types.Byte_Array; package Integer_IO is new Ada.Text_IO.Integer_IO (Integer); Schema : Test_Vectors.Schema_Maps.Map; Tests : Test_Vectors.Lists.List; Ctx : MonkeyWrap.Context; begin Num_Passed := 0; Num_Failed := 0; -- Setup schema Schema.Insert (Key => Key_Key, New_Item => Schema_Entry'(VType => Hex_Array_Type, Required => False, Is_List => False)); Schema.Insert (Key => Nonce_Key, New_Item => Schema_Entry'(VType => Hex_Array_Type, Required => False, Is_List => False)); Schema.Insert (Key => AAD_Key, New_Item => Schema_Entry'(VType => Hex_Array_Type, Required => False, Is_List => False)); Schema.Insert (Key => Plaintext_Key, New_Item => Schema_Entry'(VType => Hex_Array_Type, Required => False, Is_List => False)); Schema.Insert (Key => Ciphertext_Key, New_Item => Schema_Entry'(VType => Hex_Array_Type, Required => False, Is_List => False)); Schema.Insert (Key => Tag_Key, New_Item => Schema_Entry'(VType => Hex_Array_Type, Required => False, Is_List => False)); Schema.Insert (Key => GlobalTag_Key, New_Item => Schema_Entry'(VType => Hex_Array_Type, Required => False, Is_List => False)); -- Load the test file using the file name given on the command line Ada.Text_IO.Put_Line ("Loading file: " & File_Name); Test_Vectors.Load (File_Name => File_Name, Schema => Schema, Vectors_List => Tests); Ada.Text_IO.Put ("Running "); Integer_IO.Put (Integer (Tests.Length), Width => 0); Ada.Text_IO.Put_Line (" tests ..."); -- Run each test. -- -- Note: The tests must be executed in the correct order, since each -- KAT test continues from the state of the previous test. -- This is why the context is only initialized once before the -- tests start (see above). for C of Tests loop if C.Contains (Key_Key) then MonkeyWrap.Init (Ctx => Ctx, Key => C.Element (Key_Key).First_Element.Hex.all, Nonce => C.Element (Nonce_Key).First_Element.Hex.all); elsif C.Contains (AAD_Key) then Do_Session (Ctx => Ctx, Test_Data => C, Num_Passed => Num_Passed, Num_Failed => Num_Failed); elsif C.Contains (GlobalTag_Key) then declare Tag : Keccak.Types.Byte_Array (C.Element (GlobalTag_Key).First_Element.Hex.all'Range); begin MonkeyWrap.Extract_Tag (Ctx => Ctx, Tag => Tag); -- Check output if Tag = C.Element (GlobalTag_Key).First_Element.Hex.all then Num_Passed := Num_Passed + 1; else Num_Failed := Num_Failed + 1; -- Display a message on failure to help with debugging. Ada.Text_IO.Put_Line ("FAILURE:"); Ada.Text_IO.Put (" Expected GlobalTag: "); Ada.Text_IO.Put (Byte_Array_To_String (C.Element (GlobalTag_Key).First_Element.Hex.all)); Ada.Text_IO.New_Line; Ada.Text_IO.Put (" Actual GlobalTag: "); Ada.Text_IO.Put (Byte_Array_To_String (Tag)); Ada.Text_IO.New_Line; end if; MonkeyWrap.New_Session (Ctx); end; end if; end loop; end Run_Tests; procedure Do_Session (Ctx : in out MonkeyWrap.Context; Test_Data : in Test_Vectors.Test_Vector_Maps.Map; Num_Passed : in out Natural; Num_Failed : in out Natural) is use type Keccak.Types.Byte_Array; Ciphertext : Keccak.Types.Byte_Array (Test_Data.Element (Plaintext_Key).First_Element.Hex.all'Range); Tag : Keccak.Types.Byte_Array (Test_Data.Element (Tag_Key).First_Element.Hex.all'Range); begin if Test_Data.Element (AAD_Key).First_Element.Hex.all'Length > 0 then MonkeyWrap.Update_Auth_Data (Ctx => Ctx, Data => Test_Data.Element (AAD_Key).First_Element.Hex.all); end if; if Ciphertext'Length > 0 then MonkeyWrap.Update_Encrypt (Ctx => Ctx, Plaintext => Test_Data.Element (Plaintext_Key).First_Element.Hex.all, Ciphertext => Ciphertext); end if; MonkeyWrap.Extract_Tag (Ctx => Ctx, Tag => Tag); -- Check output if Ciphertext = Test_Data.Element (Ciphertext_Key).First_Element.Hex.all then if Tag = Test_Data.Element (Tag_Key).First_Element.Hex.all then Num_Passed := Num_Passed + 1; else Num_Failed := Num_Failed + 1; -- Display a message on failure to help with debugging. Ada.Text_IO.Put_Line ("FAILURE:"); Ada.Text_IO.Put (" Expected Tag: "); Ada.Text_IO.Put (Byte_Array_To_String (Test_Data.Element (Tag_Key).First_Element.Hex.all)); Ada.Text_IO.New_Line; Ada.Text_IO.Put (" Actual Tag: "); Ada.Text_IO.Put (Byte_Array_To_String (Tag)); Ada.Text_IO.New_Line; end if; else Num_Failed := Num_Failed + 1; -- Display a message on failure to help with debugging. Ada.Text_IO.Put_Line ("FAILURE:"); Ada.Text_IO.Put (" Expected CT: "); Ada.Text_IO.Put (Byte_Array_To_String (Test_Data.Element (Ciphertext_Key).First_Element.Hex.all)); Ada.Text_IO.New_Line; Ada.Text_IO.Put (" Actual CT: "); Ada.Text_IO.Put (Byte_Array_To_String (Ciphertext)); Ada.Text_IO.New_Line; end if; MonkeyWrap.New_Session (Ctx); end Do_Session; end MonkeyWrap_Runner;
Rodeo-McCabe/orka
Ada
1,668
adb
-- SPDX-License-Identifier: Apache-2.0 -- -- Copyright (c) 2016 onox <[email protected]> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. with Ada.Unchecked_Conversion; with GL.API; package body GL.Barriers is procedure Texture_Barrier is begin API.Texture_Barrier.Ref.all; end Texture_Barrier; procedure Memory_Barrier (Bits : Memory_Barrier_Bits) is use type Low_Level.Bitfield; function Convert is new Ada.Unchecked_Conversion (Source => Memory_Barrier_Bits, Target => Low_Level.Bitfield); Raw_Bits : constant Low_Level.Bitfield := Convert (Bits) and 2#1111111111101111#; begin API.Memory_Barrier.Ref (Raw_Bits); end Memory_Barrier; procedure Memory_Barrier_By_Region (Bits : Memory_Barrier_Bits) is use type Low_Level.Bitfield; function Convert is new Ada.Unchecked_Conversion (Source => Memory_Barrier_Bits, Target => Low_Level.Bitfield); Raw_Bits : constant Low_Level.Bitfield := Convert (Bits) and 2#0011010000101100#; begin API.Memory_Barrier_By_Region.Ref (Raw_Bits); end Memory_Barrier_By_Region; end GL.Barriers;
zhmu/ananas
Ada
400
adb
-- { dg-do compile } with Atomic11_Pkg1; use Atomic11_Pkg1; procedure Atomic11 is R1 : Rec1; pragma Atomic (R1); R2 : Rec2; pragma Volatile (R2); begin R1.I := 0; Proc1 (R1); -- { dg-warning "atomic actual passed by copy" } R2.A(1) := 0; Proc1 (R1); -- { dg-warning "atomic actual passed by copy" } Proc2 (R2); -- { dg-warning "volatile actual passed by copy" } end;
zhmu/ananas
Ada
845
adb
-- { dg-do compile } with Ada.Unchecked_Conversion; with System.Storage_Elements; use System.Storage_Elements; procedure Unchecked_Convert14 is type R is record I : Integer; C : Character; end record; subtype Buffer is Storage_Array (1 .. 0); function As_Buffer is new Ada.Unchecked_Conversion -- { dg-warning "types for unchecked conversion have different sizes" } (Source => R, Target => Buffer); type Buffer_1 is array (Storage_Offset range 1 .. 1) of Storage_Element; function As_Buffer_1 is new Ada.Unchecked_Conversion -- { dg-warning "types for unchecked conversion have different sizes" } (Source => R, Target => Buffer_1); B : Buffer; B_1 : Buffer_1; My_R : R := (1, 'x'); begin B := As_Buffer (My_R); B_1 := As_Buffer_1 (My_R); end Unchecked_Convert14;
AdaCore/ada-traits-containers
Ada
16,702
ads
pragma Ada_2012; with Conts.Functional.Sequences; with Conts.Functional.Maps; with Conts.Functional.Sets; with Conts; use Conts; generic type Element_Type (<>) is private; with function "<" (E1, E2 : Element_Type) return Boolean is <>; with function "=" (E1, E2 : Element_Type) return Boolean is <>; package Formal_Ordered_Sets_Impl with SPARK_Mode is type Cursor is private; pragma Unevaluated_Use_Of_Old (Allow); No_Element : constant Cursor; type Base_Set is tagged limited private with Default_Initial_Condition => Length (Base_Set) = 0; -- Sets are empty when default initialized. function Capacity (Self : Base_Set'Class) return Count_Type with Import; function Length (Self : Base_Set'Class) return Count_Type with Import, Post => Length'Result < Capacity (Self); -- The length of a set is always strictly smaller than its capacity ------------------ -- Formal Model -- ------------------ type P_Map is private with Ghost, Iterable => (First => P_Iter_First, Has_Element => P_Iter_Has_Element, Next => P_Iter_Next, Element => P_Iter_Element); type P_Private_Cursor is private with Ghost; function P_Iter_First (M : P_Map) return P_Private_Cursor with Ghost; function P_Iter_Next (M : P_Map; C : P_Private_Cursor) return P_Private_Cursor with Ghost; function P_Iter_Has_Element (M : P_Map; C : P_Private_Cursor) return Boolean with Ghost; function P_Iter_Element (M : P_Map; C : P_Private_Cursor) return Cursor with Ghost; function P_Mem (M : P_Map; C : Cursor) return Boolean with Ghost; function P_Get (M : P_Map; C : Cursor) return Positive_Count_Type with Ghost, Pre => P_Mem (M, C); pragma Annotate (GNATprove, Iterable_For_Proof, "Contains", P_Mem); package E is new Conts.Functional.Sequences (Index_Type => Positive_Count_Type, Element_Type => Element_Type); package M is new Conts.Functional.Sets (Element_Type => Element_Type); function Model (Self : Base_Set'Class) return M.Set with Ghost, Import; -- The highlevel model of a set is a set of elements. Neither cursors -- nor order of elements are represented in this model. function Elements (Self : Base_Set'Class) return E.Sequence with -- The Elements sequence represents the underlying list structure of -- sets that is used for iteration. It does not model cursors. Ghost, Import, Post => E.Length (Elements'Result) = Length (Self) -- It only contains elements contained of Model. and then (for all Elt of Elements'Result => M.Mem (Model (Self), Elt)) -- It contains all the elements contained of Model. and then (for all Elt of Model (Self) => (for some F of Elements'Result => F = Elt)) -- It is sorted in increasing order. and then (for all I in 1 .. Length (Self) => (for all J in 1 .. Length (Self) => (E.Get (Elements'Result, I) < E.Get (Elements'Result, J)) = (I < J))); function Positions (Self : Base_Set'Class) return P_Map with -- The Positions map is used to model cursors. It only contains valid -- cursors and map them to their position in the container. Ghost, Import, Post => not P_Mem (Positions'Result, No_Element) -- Positions of cursors are smaller than the container's length. and then (for all I of Positions'Result => P_Get (Positions'Result, I) in 1 .. Length (Self) -- No two cursors have the same position. Note that we do not state -- that there is a cursor in the map for each position, as it is -- rarely needed. and then (for all J of Positions'Result => (if P_Get (Positions'Result, I) = P_Get (Positions'Result, J) then I = J))); procedure Lift_Abstraction_Level (Self : Base_Set'Class) with Ghost, Import, Global => null, Post => (for all Elt of Elements (Self) => (for some I of Positions (Self) => E.Get (Elements (Self), P_Get (Positions (Self), I)) = Elt)); -- Lift_Abstraction_Level is a ghost procedure that does nothing but -- assume that we can access to the same elements by iterating over -- positions or cursors. -- This information is not generally useful except when switching from -- a lowlevel, cursor aware view of a container, to a highlevel position -- based view. use type M.Set; use type E.Sequence; -- The following functions are modeled directly in the formal model. function Has_Element (Self : Base_Set'Class; Position : Cursor) return Boolean with Import, Post => Has_Element'Result = P_Mem (Positions (Self), Position); pragma Annotate (GNATprove, Inline_For_Proof, Entity => Has_Element); function Contains (Self : Base_Set'Class; Element : Element_Type) return Boolean with Import, Post => Contains'Result = M.Mem (Model (Self), Element); pragma Annotate (GNATprove, Inline_For_Proof, Entity => Contains); function Element (Self : Base_Set'Class; Position : Cursor) return Element_Type with Import, Pre => Has_Element (Self, Position), -- Query Positions to get the position of Position in L and use it to -- fetch the corresponding element in Elements. Post => Element'Result = E.Get (Elements (Self), P_Get (Positions (Self), Position)); pragma Annotate (GNATprove, Inline_For_Proof, Entity => Element); -- The subprograms used for iteration over cursors are axiomatized using -- Positions only. They are inverse of the Positions map as they allow -- to create a valid cursor per position in the container. function First (Self : Base_Set'Class) return Cursor with Import, Contract_Cases => (Length (Self) = 0 => First'Result = No_Element, others => Has_Element (Self, First'Result) and then P_Get (Positions (Self), First'Result) = 1); function Next (Self : Base_Set'Class; Position : Cursor) return Cursor with Import, Pre => Has_Element (Self, Position), Contract_Cases => (P_Get (Positions (Self), Position) = Length (Self) => Next'Result = No_Element, others => Has_Element (Self, Next'Result) and then P_Get (Positions (Self), Next'Result) = P_Get (Positions (Self), Position) + 1); function Find (Self : Base_Set'Class; Element : Element_Type) return Cursor with Import, Contract_Cases => -- Either the result is a valid cursor and Element is stored at its -- position in S (Contains (Self, Element) => Has_Element (Self, Find'Result) and Formal_Ordered_Sets_Impl.Element (Self, Find'Result) = Element, -- or Element is not in the model and the result is No_Element. others => Find'Result = No_Element); procedure Include (Self : in out Base_Set'Class; Element : Element_Type) with -- Insert an element Element in Self if Element is not already in present. Import, Pre => Length (Self) < Conts.Count_Type'Last - 1 or else Contains (Self, Element), Contract_Cases => -- If Element is already in Self, then the model is unchanged. (Contains (Self, Element) => Capacity (Self) = Capacity (Self)'Old and Length (Self) = Length (Self)'Old and Model (Self) = Model (Self)'Old and Elements (Self) = Elements (Self)'Old and Positions (Self) = Positions (Self)'Old, -- If Element is not in Self, then Element is a new element of its -- model. others => Capacity (Self) >= Capacity (Self)'Old and Length (Self) = Length (Self)'Old + 1 and M.Is_Add (Model (Self)'Old, Element, Model (Self)) -- Elements that are located before Element in Self are preserved. and (for all I in 1 .. Length (Self) - 1 => (if I < P_Get (Positions (Self), Find (Self, Element)) then E.Get (Elements (Self)'Old, I) = E.Get (Elements (Self), I) -- Other elements are shifted by 1. else E.Get (Elements (Self)'Old, I) = E.Get (Elements (Self), I + 1))) -- Cursors that were valid in Self are still valid and continue -- designating the same element. and (for all Position of Positions (Self)'Old => Has_Element (Self, Position) and Formal_Ordered_Sets_Impl.Element (Self, Position) = E.Get (Elements (Self)'Old, P_Get (Positions (Self)'Old, Position))) -- Cursors that are valid in Self were already valid in Self -- except for the newly inserted cursor. and (for all Position of Positions (Self) => P_Mem (Positions (Self)'Old, Position) or Formal_Ordered_Sets_Impl.Element (Self, Position) = Element) -- Cursors designating elements smaller than Element in Self are -- preserved. and (for all Position of Positions (Self)'Old => (if Formal_Ordered_Sets_Impl.Element (Self, Position) < Element then P_Get (Positions (Self), Position) = P_Get (Positions (Self)'Old, Position) -- Other cursors are shifted by 1. else P_Get (Positions (Self), Position) = P_Get (Positions (Self)'Old, Position) + 1))); procedure Exclude (Self : in out Base_Set'Class; Element : Element_Type) with -- Remove an element Element of Self if it is present. Import, Post => Capacity (Self) = Capacity (Self)'Old, Contract_Cases => -- If Element is in Self, then Element is removed from its model. (Contains (Self, Element) => Length (Self) = Length (Self)'Old - 1 and M.Is_Add (Model (Self), Element, Model (Self)'Old) -- Elements that were located before Element in Self are preserved. and (for all I in 1 .. Length (Self) => (if I < P_Get (Positions (Self)'Old, Find (Self, Element)'Old) then E.Get (Elements (Self), I) = E.Get (Elements (Self)'Old, I) -- Other elements are shifted by 1. else E.Get (Elements (Self), I) = E.Get (Elements (Self)'Old, I + 1))) -- Cursors that are valid in Self were already valid and continue -- designating the same element. and (for all Position of Positions (Self) => P_Mem (Positions (Self)'Old, Position) and Formal_Ordered_Sets_Impl.Element (Self, Position) = E.Get (Elements (Self)'Old, P_Get (Positions (Self)'Old, Position))) -- Cursors that were valid in Self are still valid in Self except for -- the removed cursor. and (for all Position of Positions (Self)'Old => Has_Element (Self, Position) or E.Get (Elements (Self)'Old, P_Get (Positions (Self)'Old, Position)) = Element) -- Cursors designating elements smaller than Element in Self are -- preserved. and (for all Position of Positions (Self) => (if Formal_Ordered_Sets_Impl.Element (Self, Position) < Element then P_Get (Positions (Self)'Old, Position) = P_Get (Positions (Self), Position) -- Other cursors are shifted by 1. else P_Get (Positions (Self)'Old, Position) = P_Get (Positions (Self), Position) + 1)), -- If Element is not in Self, then the model is unchanged. others => Length (Self) = Length (Self)'Old and Model (Self) = Model (Self)'Old and Elements (Self) = Elements (Self)'Old and Positions (Self) = Positions (Self)'Old); procedure Union (Self : in out Base_Set'Class; Source : Base_Set'Class) with -- Include in Self all the elements of Source Import, Pre => Length (Source) < Conts.Count_Type'Last - Length (Self), Post => Capacity (Self) >= Capacity (Self)'Old -- The model of Self is the union of the previous model of Self and the -- model of Source. and M.Is_Union (Model (Self)'Old, Model (Source), Model (Self)) -- No more than Length (Source) elements were added to Source. We could -- be more precise by using the length of the Intersection if we had a -- notion of length on functional sets. and Length (Self) in Length (Self)'Old .. Length (Self)'Old + Length (Source) -- Cursors that were valid in Self are still valid and continue -- designating the same element. -- Nothing is said about the order of elements in Self after the call. and (for all Position of Positions (Self)'Old => Has_Element (Self, Position) and Element (Self, Position) = E.Get (Elements (Self)'Old, P_Get (Positions (Self)'Old, Position))); procedure Intersection (Self : in out Base_Set'Class; Source : Base_Set'Class) with -- Exclude from Self all the elements of Source Import, Post => Capacity (Self) = Capacity (Self)'Old -- The model of Self is the intersection of the previous model of Self -- and the model of Source. and M.Is_Intersection (Model (Self)'Old, Model (Source), Model (Self)) -- The length of Self can only have shrinked. We could be more precise by -- stating that at most Length (Source) elements have been removed from -- Self. and Length (Self) in 0 .. Length (Self)'Old -- Cursors that are valid in Self we already valid and continue -- designating the same element. -- Nothing is said about the order of elements in Self after the call. and (for all Position of Positions (Self) => P_Mem (Positions (Self)'Old, Position) and Element (Self, Position) = E.Get (Elements (Self)'Old, P_Get (Positions (Self)'Old, Position))); procedure Clear (Self : in out Base_Set'Class) with Import, Post => Capacity (Self) = Capacity (Self)'Old and then Length (Self) = 0 and then M.Is_Empty (Model (Self)); function First_Primitive (Self : Base_Set) return Cursor with Import; function Element_Primitive (Self : Base_Set; Position : Cursor) return Element_Type with Import, Pre'Class => Has_Element (Self, Position), Post => Element_Primitive'Result = E.Get (Elements (Self), P_Get (Positions (Self), Position)); pragma Annotate (GNATprove, Inline_For_Proof, Entity => Element_Primitive); function Has_Element_Primitive (Self : Base_Set; Position : Cursor) return Boolean with Import, Post => Has_Element_Primitive'Result = P_Mem (Positions (Self), Position); pragma Annotate (GNATprove, Inline_For_Proof, Entity => Has_Element_Primitive); function Next_Primitive (Self : Base_Set; Position : Cursor) return Cursor with Import, Pre'Class => Has_Element (Self, Position); private pragma SPARK_Mode (Off); type Cursor is record I : Natural; end record; type Base_Set is tagged limited null record; No_Element : constant Cursor := (I => 0); package P is new Conts.Functional.Maps (Element_Type => Positive_Count_Type, Key_Type => Cursor); -- This instance should be ghost but it is not currently allowed by the RM. -- See P523-006 type P_Map is record Content : P.Map; end record; type P_Private_Cursor is new P.Private_Key; function P_Iter_First (M : P_Map) return P_Private_Cursor is (P_Private_Cursor (P.Iter_First (M.Content))); function P_Iter_Next (M : P_Map; C : P_Private_Cursor) return P_Private_Cursor is (P_Private_Cursor (P.Iter_Next (M.Content, P.Private_Key (C)))); function P_Iter_Has_Element (M : P_Map; C : P_Private_Cursor) return Boolean is (P.Iter_Has_Element (M.Content, P.Private_Key (C))); function P_Iter_Element (M : P_Map; C : P_Private_Cursor) return Cursor is (P.Iter_Element (M.Content, P.Private_Key (C))); function P_Mem (M : P_Map; C : Cursor) return Boolean is (P.Mem (M.Content, C)); function P_Get (M : P_Map; C : Cursor) return Positive_Count_Type is (P.Get (M.Content, C)); end Formal_Ordered_Sets_Impl;
reznikmm/matreshka
Ada
15,790
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with AMF.Elements; with AMF.Internals.Element_Collections; with AMF.Internals.Helpers; with AMF.Internals.Tables.UML_Attributes; with AMF.Visitors.UML_Iterators; with AMF.Visitors.UML_Visitors; with League.Strings.Internals; with Matreshka.Internals.Strings; package body AMF.Internals.UML_Consider_Ignore_Fragments is ------------------- -- Enter_Element -- ------------------- overriding procedure Enter_Element (Self : not null access constant UML_Consider_Ignore_Fragment_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Visitor in AMF.Visitors.UML_Visitors.UML_Visitor'Class then AMF.Visitors.UML_Visitors.UML_Visitor'Class (Visitor).Enter_Consider_Ignore_Fragment (AMF.UML.Consider_Ignore_Fragments.UML_Consider_Ignore_Fragment_Access (Self), Control); end if; end Enter_Element; ------------------- -- Leave_Element -- ------------------- overriding procedure Leave_Element (Self : not null access constant UML_Consider_Ignore_Fragment_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Visitor in AMF.Visitors.UML_Visitors.UML_Visitor'Class then AMF.Visitors.UML_Visitors.UML_Visitor'Class (Visitor).Leave_Consider_Ignore_Fragment (AMF.UML.Consider_Ignore_Fragments.UML_Consider_Ignore_Fragment_Access (Self), Control); end if; end Leave_Element; ------------------- -- Visit_Element -- ------------------- overriding procedure Visit_Element (Self : not null access constant UML_Consider_Ignore_Fragment_Proxy; Iterator : in out AMF.Visitors.Abstract_Iterator'Class; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Iterator in AMF.Visitors.UML_Iterators.UML_Iterator'Class then AMF.Visitors.UML_Iterators.UML_Iterator'Class (Iterator).Visit_Consider_Ignore_Fragment (Visitor, AMF.UML.Consider_Ignore_Fragments.UML_Consider_Ignore_Fragment_Access (Self), Control); end if; end Visit_Element; ----------------- -- Get_Message -- ----------------- overriding function Get_Message (Self : not null access constant UML_Consider_Ignore_Fragment_Proxy) return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element is begin return AMF.UML.Named_Elements.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.UML_Attributes.Internal_Get_Message (Self.Element))); end Get_Message; ------------------------ -- Get_Cfragment_Gate -- ------------------------ overriding function Get_Cfragment_Gate (Self : not null access constant UML_Consider_Ignore_Fragment_Proxy) return AMF.UML.Gates.Collections.Set_Of_UML_Gate is begin return AMF.UML.Gates.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.UML_Attributes.Internal_Get_Cfragment_Gate (Self.Element))); end Get_Cfragment_Gate; ------------------------------ -- Get_Interaction_Operator -- ------------------------------ overriding function Get_Interaction_Operator (Self : not null access constant UML_Consider_Ignore_Fragment_Proxy) return AMF.UML.UML_Interaction_Operator_Kind is begin return AMF.Internals.Tables.UML_Attributes.Internal_Get_Interaction_Operator (Self.Element); end Get_Interaction_Operator; ------------------------------ -- Set_Interaction_Operator -- ------------------------------ overriding procedure Set_Interaction_Operator (Self : not null access UML_Consider_Ignore_Fragment_Proxy; To : AMF.UML.UML_Interaction_Operator_Kind) is begin AMF.Internals.Tables.UML_Attributes.Internal_Set_Interaction_Operator (Self.Element, To); end Set_Interaction_Operator; ----------------- -- Get_Operand -- ----------------- overriding function Get_Operand (Self : not null access constant UML_Consider_Ignore_Fragment_Proxy) return AMF.UML.Interaction_Operands.Collections.Ordered_Set_Of_UML_Interaction_Operand is begin return AMF.UML.Interaction_Operands.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.UML_Attributes.Internal_Get_Operand (Self.Element))); end Get_Operand; ----------------- -- Get_Covered -- ----------------- overriding function Get_Covered (Self : not null access constant UML_Consider_Ignore_Fragment_Proxy) return AMF.UML.Lifelines.Collections.Set_Of_UML_Lifeline is begin return AMF.UML.Lifelines.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.UML_Attributes.Internal_Get_Covered (Self.Element))); end Get_Covered; ------------------------------- -- Get_Enclosing_Interaction -- ------------------------------- overriding function Get_Enclosing_Interaction (Self : not null access constant UML_Consider_Ignore_Fragment_Proxy) return AMF.UML.Interactions.UML_Interaction_Access is begin return AMF.UML.Interactions.UML_Interaction_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.UML_Attributes.Internal_Get_Enclosing_Interaction (Self.Element))); end Get_Enclosing_Interaction; ------------------------------- -- Set_Enclosing_Interaction -- ------------------------------- overriding procedure Set_Enclosing_Interaction (Self : not null access UML_Consider_Ignore_Fragment_Proxy; To : AMF.UML.Interactions.UML_Interaction_Access) is begin AMF.Internals.Tables.UML_Attributes.Internal_Set_Enclosing_Interaction (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Enclosing_Interaction; --------------------------- -- Get_Enclosing_Operand -- --------------------------- overriding function Get_Enclosing_Operand (Self : not null access constant UML_Consider_Ignore_Fragment_Proxy) return AMF.UML.Interaction_Operands.UML_Interaction_Operand_Access is begin return AMF.UML.Interaction_Operands.UML_Interaction_Operand_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.UML_Attributes.Internal_Get_Enclosing_Operand (Self.Element))); end Get_Enclosing_Operand; --------------------------- -- Set_Enclosing_Operand -- --------------------------- overriding procedure Set_Enclosing_Operand (Self : not null access UML_Consider_Ignore_Fragment_Proxy; To : AMF.UML.Interaction_Operands.UML_Interaction_Operand_Access) is begin AMF.Internals.Tables.UML_Attributes.Internal_Set_Enclosing_Operand (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Enclosing_Operand; -------------------------- -- Get_General_Ordering -- -------------------------- overriding function Get_General_Ordering (Self : not null access constant UML_Consider_Ignore_Fragment_Proxy) return AMF.UML.General_Orderings.Collections.Set_Of_UML_General_Ordering is begin return AMF.UML.General_Orderings.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.UML_Attributes.Internal_Get_General_Ordering (Self.Element))); end Get_General_Ordering; --------------------------- -- Get_Client_Dependency -- --------------------------- overriding function Get_Client_Dependency (Self : not null access constant UML_Consider_Ignore_Fragment_Proxy) return AMF.UML.Dependencies.Collections.Set_Of_UML_Dependency is begin return AMF.UML.Dependencies.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.UML_Attributes.Internal_Get_Client_Dependency (Self.Element))); end Get_Client_Dependency; ------------------------- -- Get_Name_Expression -- ------------------------- overriding function Get_Name_Expression (Self : not null access constant UML_Consider_Ignore_Fragment_Proxy) return AMF.UML.String_Expressions.UML_String_Expression_Access is begin return AMF.UML.String_Expressions.UML_String_Expression_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.UML_Attributes.Internal_Get_Name_Expression (Self.Element))); end Get_Name_Expression; ------------------------- -- Set_Name_Expression -- ------------------------- overriding procedure Set_Name_Expression (Self : not null access UML_Consider_Ignore_Fragment_Proxy; To : AMF.UML.String_Expressions.UML_String_Expression_Access) is begin AMF.Internals.Tables.UML_Attributes.Internal_Set_Name_Expression (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Name_Expression; ------------------- -- Get_Namespace -- ------------------- overriding function Get_Namespace (Self : not null access constant UML_Consider_Ignore_Fragment_Proxy) return AMF.UML.Namespaces.UML_Namespace_Access is begin return AMF.UML.Namespaces.UML_Namespace_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.UML_Attributes.Internal_Get_Namespace (Self.Element))); end Get_Namespace; ------------------------ -- Get_Qualified_Name -- ------------------------ overriding function Get_Qualified_Name (Self : not null access constant UML_Consider_Ignore_Fragment_Proxy) return AMF.Optional_String is begin declare use type Matreshka.Internals.Strings.Shared_String_Access; Aux : constant Matreshka.Internals.Strings.Shared_String_Access := AMF.Internals.Tables.UML_Attributes.Internal_Get_Qualified_Name (Self.Element); begin if Aux = null then return (Is_Empty => True); else return (False, League.Strings.Internals.Create (Aux)); end if; end; end Get_Qualified_Name; ------------------------- -- All_Owning_Packages -- ------------------------- overriding function All_Owning_Packages (Self : not null access constant UML_Consider_Ignore_Fragment_Proxy) return AMF.UML.Packages.Collections.Set_Of_UML_Package is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "All_Owning_Packages unimplemented"); raise Program_Error with "Unimplemented procedure UML_Consider_Ignore_Fragment_Proxy.All_Owning_Packages"; return All_Owning_Packages (Self); end All_Owning_Packages; ----------------------------- -- Is_Distinguishable_From -- ----------------------------- overriding function Is_Distinguishable_From (Self : not null access constant UML_Consider_Ignore_Fragment_Proxy; N : AMF.UML.Named_Elements.UML_Named_Element_Access; Ns : AMF.UML.Namespaces.UML_Namespace_Access) return Boolean is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Is_Distinguishable_From unimplemented"); raise Program_Error with "Unimplemented procedure UML_Consider_Ignore_Fragment_Proxy.Is_Distinguishable_From"; return Is_Distinguishable_From (Self, N, Ns); end Is_Distinguishable_From; --------------- -- Namespace -- --------------- overriding function Namespace (Self : not null access constant UML_Consider_Ignore_Fragment_Proxy) return AMF.UML.Namespaces.UML_Namespace_Access is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Namespace unimplemented"); raise Program_Error with "Unimplemented procedure UML_Consider_Ignore_Fragment_Proxy.Namespace"; return Namespace (Self); end Namespace; end AMF.Internals.UML_Consider_Ignore_Fragments;
zhmu/ananas
Ada
2,453
adb
-- { dg-do compile } with Ada.Text_IO; use Ada.Text_IO; procedure Rep_Clause1 is type Int_16 is range 0 .. 65535; for Int_16'Size use 16; ---------------------------------------------- type Rec_A is record Int_1 : Int_16; Int_2 : Int_16; Int_3 : Int_16; Int_4 : Int_16; end record; for Rec_A use record Int_1 at 0 range 0 .. 15; Int_2 at 2 range 0 .. 15; Int_3 at 4 range 0 .. 15; Int_4 at 6 range 0 .. 15; end record; Rec_A_Size : constant := 4 * 16; for Rec_A'Size use Rec_A_Size; ---------------------------------------------- type Rec_B_Version_1 is record Rec_1 : Rec_A; Rec_2 : Rec_A; Int_1 : Int_16; end record; for Rec_B_Version_1 use record Rec_1 at 0 range 0 .. 63; Rec_2 at 8 range 0 .. 63; Int_1 at 16 range 0 .. 15; end record; Rec_B_Size : constant := 2 * Rec_A_Size + 16; for Rec_B_Version_1'Size use Rec_B_Size; for Rec_B_Version_1'Alignment use 2; ---------------------------------------------- type Rec_B_Version_2 is record Int_1 : Int_16; Rec_1 : Rec_A; Rec_2 : Rec_A; end record; for Rec_B_Version_2 use record Int_1 at 0 range 0 .. 15; Rec_1 at 2 range 0 .. 63; Rec_2 at 10 range 0 .. 63; end record; for Rec_B_Version_2'Size use Rec_B_Size; ---------------------------------------------- Arr_A_Length : constant := 2; Arr_A_Size : constant := Arr_A_Length * Rec_B_Size; type Arr_A_Version_1 is array (1 .. Arr_A_Length) of Rec_B_Version_1; type Arr_A_Version_2 is array (1 .. Arr_A_Length) of Rec_B_Version_2; pragma Pack (Arr_A_Version_1); pragma Pack (Arr_A_Version_2); for Arr_A_Version_1'Size use Arr_A_Size; for Arr_A_Version_2'Size use Arr_A_Size; ---------------------------------------------- begin -- Put_Line ("Arr_A_Size =" & Arr_A_Size'Img); if Arr_A_Version_1'Size /= Arr_A_Size then Ada.Text_IO.Put_Line ("Version 1 Size mismatch! " & "Arr_A_Version_1'Size =" & Arr_A_Version_1'Size'Img); end if; if Arr_A_Version_2'Size /= Arr_A_Size then Ada.Text_IO.Put_Line ("Version 2 Size mismatch! " & "Arr_A_Version_2'Size =" & Arr_A_Version_2'Size'Img); end if; end;
Feqzz/film-parser
Ada
318
ads
with Ada.Strings.Unbounded; with Ada.Strings.Fixed; with Ada.Text_IO; package Parser is function GetImdbMovieId (Var : Ada.Strings.Unbounded.Unbounded_String) return Ada.Strings.Unbounded.Unbounded_String; function GetRating (Var : Ada.Strings.Unbounded.Unbounded_String) return Integer; end Parser;
reznikmm/matreshka
Ada
4,655
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.DOM_Documents; with Matreshka.ODF_String_Constants; with ODF.DOM.Iterators; with ODF.DOM.Visitors; package body Matreshka.ODF_Text.Placeholder_Type_Attributes is ------------ -- Create -- ------------ overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Text_Placeholder_Type_Attribute_Node is begin return Self : Text_Placeholder_Type_Attribute_Node do Matreshka.ODF_Text.Constructors.Initialize (Self'Unchecked_Access, Parameters.Document, Matreshka.ODF_String_Constants.Text_Prefix); end return; end Create; -------------------- -- Get_Local_Name -- -------------------- overriding function Get_Local_Name (Self : not null access constant Text_Placeholder_Type_Attribute_Node) return League.Strings.Universal_String is pragma Unreferenced (Self); begin return Matreshka.ODF_String_Constants.Placeholder_Type_Attribute; end Get_Local_Name; begin Matreshka.DOM_Documents.Register_Attribute (Matreshka.ODF_String_Constants.Text_URI, Matreshka.ODF_String_Constants.Placeholder_Type_Attribute, Text_Placeholder_Type_Attribute_Node'Tag); end Matreshka.ODF_Text.Placeholder_Type_Attributes;
zhmu/ananas
Ada
1,978
ads
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- E X P _ C H 1 0 -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2022, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Expand routines for chapter 10 constructs package Exp_Ch10 is end Exp_Ch10;
JeremyGrosser/Ada_Drivers_Library
Ada
1,830
ads
-- This package was generated by the Ada_Drivers_Library project wizard script package ADL_Config is Architecture : constant String := "RISC-V"; -- From board definition Board : constant String := "Unleashed"; -- From command line CPU_Core : constant String := "RISC-V64"; -- From mcu definition Device_Family : constant String := "U5"; -- From board definition Device_Name : constant String := "U540"; -- From board definition Has_Ravenscar_Full_Runtime : constant String := "True"; -- From board definition Has_Ravenscar_SFP_Runtime : constant String := "True"; -- From board definition Has_ZFP_Runtime : constant String := "True"; -- From board definition Max_Mount_Name_Length : constant := 128; -- From default value Max_Mount_Points : constant := 2; -- From default value Max_Path_Length : constant := 1024; -- From default value Number_Of_Interrupts : constant := 0; -- From default value Runtime_Name : constant String := "ravenscar-full-unleashed"; -- From default value Runtime_Name_Suffix : constant String := "unleashed"; -- From board definition Runtime_Profile : constant String := "ravenscar-full"; -- From command line Use_Startup_Gen : constant Boolean := False; -- From command line Vendor : constant String := "SiFive"; -- From board definition end ADL_Config;
reznikmm/matreshka
Ada
20,455
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Elements; with AMF.Internals.Element_Collections; with AMF.Internals.Helpers; with AMF.Internals.Tables.OCL_Attributes; with AMF.OCL.Ocl_Expressions.Collections; with AMF.UML.Call_Operation_Actions; with AMF.UML.Comments.Collections; with AMF.UML.Dependencies.Collections; with AMF.UML.Elements.Collections; with AMF.UML.Named_Elements; with AMF.UML.Namespaces.Collections; with AMF.UML.Packages.Collections; with AMF.UML.Send_Signal_Actions; with AMF.UML.String_Expressions; with AMF.UML.Types; with AMF.Visitors.OCL_Iterators; with AMF.Visitors.OCL_Visitors; with League.Strings.Internals; with Matreshka.Internals.Strings; package body AMF.Internals.OCL_Message_Exps is ---------------- -- Get_Target -- ---------------- overriding function Get_Target (Self : not null access constant OCL_Message_Exp_Proxy) return AMF.OCL.Ocl_Expressions.OCL_Ocl_Expression_Access is begin return AMF.OCL.Ocl_Expressions.OCL_Ocl_Expression_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Target (Self.Element))); end Get_Target; ---------------- -- Set_Target -- ---------------- overriding procedure Set_Target (Self : not null access OCL_Message_Exp_Proxy; To : AMF.OCL.Ocl_Expressions.OCL_Ocl_Expression_Access) is begin AMF.Internals.Tables.OCL_Attributes.Internal_Set_Target (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Target; ------------------ -- Get_Argument -- ------------------ overriding function Get_Argument (Self : not null access constant OCL_Message_Exp_Proxy) return AMF.OCL.Ocl_Expressions.Collections.Ordered_Set_Of_OCL_Ocl_Expression is begin return AMF.OCL.Ocl_Expressions.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Argument (Self.Element))); end Get_Argument; -------------------------- -- Get_Called_Operation -- -------------------------- overriding function Get_Called_Operation (Self : not null access constant OCL_Message_Exp_Proxy) return AMF.UML.Call_Operation_Actions.UML_Call_Operation_Action_Access is begin return AMF.UML.Call_Operation_Actions.UML_Call_Operation_Action_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Called_Operation (Self.Element))); end Get_Called_Operation; -------------------------- -- Set_Called_Operation -- -------------------------- overriding procedure Set_Called_Operation (Self : not null access OCL_Message_Exp_Proxy; To : AMF.UML.Call_Operation_Actions.UML_Call_Operation_Action_Access) is begin AMF.Internals.Tables.OCL_Attributes.Internal_Set_Called_Operation (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Called_Operation; --------------------- -- Get_Sent_Signal -- --------------------- overriding function Get_Sent_Signal (Self : not null access constant OCL_Message_Exp_Proxy) return AMF.UML.Send_Signal_Actions.UML_Send_Signal_Action_Access is begin return AMF.UML.Send_Signal_Actions.UML_Send_Signal_Action_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Sent_Signal (Self.Element))); end Get_Sent_Signal; --------------------- -- Set_Sent_Signal -- --------------------- overriding procedure Set_Sent_Signal (Self : not null access OCL_Message_Exp_Proxy; To : AMF.UML.Send_Signal_Actions.UML_Send_Signal_Action_Access) is begin AMF.Internals.Tables.OCL_Attributes.Internal_Set_Sent_Signal (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Sent_Signal; -------------- -- Get_Type -- -------------- overriding function Get_Type (Self : not null access constant OCL_Message_Exp_Proxy) return AMF.UML.Types.UML_Type_Access is begin return AMF.UML.Types.UML_Type_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Type (Self.Element))); end Get_Type; -------------- -- Set_Type -- -------------- overriding procedure Set_Type (Self : not null access OCL_Message_Exp_Proxy; To : AMF.UML.Types.UML_Type_Access) is begin AMF.Internals.Tables.OCL_Attributes.Internal_Set_Type (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Type; --------------------------- -- Get_Client_Dependency -- --------------------------- overriding function Get_Client_Dependency (Self : not null access constant OCL_Message_Exp_Proxy) return AMF.UML.Dependencies.Collections.Set_Of_UML_Dependency is begin return AMF.UML.Dependencies.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Client_Dependency (Self.Element))); end Get_Client_Dependency; -------------- -- Get_Name -- -------------- overriding function Get_Name (Self : not null access constant OCL_Message_Exp_Proxy) return AMF.Optional_String is begin declare use type Matreshka.Internals.Strings.Shared_String_Access; Aux : constant Matreshka.Internals.Strings.Shared_String_Access := AMF.Internals.Tables.OCL_Attributes.Internal_Get_Name (Self.Element); begin if Aux = null then return (Is_Empty => True); else return (False, League.Strings.Internals.Create (Aux)); end if; end; end Get_Name; -------------- -- Set_Name -- -------------- overriding procedure Set_Name (Self : not null access OCL_Message_Exp_Proxy; To : AMF.Optional_String) is begin if To.Is_Empty then AMF.Internals.Tables.OCL_Attributes.Internal_Set_Name (Self.Element, null); else AMF.Internals.Tables.OCL_Attributes.Internal_Set_Name (Self.Element, League.Strings.Internals.Internal (To.Value)); end if; end Set_Name; ------------------------- -- Get_Name_Expression -- ------------------------- overriding function Get_Name_Expression (Self : not null access constant OCL_Message_Exp_Proxy) return AMF.UML.String_Expressions.UML_String_Expression_Access is begin return AMF.UML.String_Expressions.UML_String_Expression_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Name_Expression (Self.Element))); end Get_Name_Expression; ------------------------- -- Set_Name_Expression -- ------------------------- overriding procedure Set_Name_Expression (Self : not null access OCL_Message_Exp_Proxy; To : AMF.UML.String_Expressions.UML_String_Expression_Access) is begin AMF.Internals.Tables.OCL_Attributes.Internal_Set_Name_Expression (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Name_Expression; ------------------- -- Get_Namespace -- ------------------- overriding function Get_Namespace (Self : not null access constant OCL_Message_Exp_Proxy) return AMF.UML.Namespaces.UML_Namespace_Access is begin return AMF.UML.Namespaces.UML_Namespace_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Namespace (Self.Element))); end Get_Namespace; ------------------------ -- Get_Qualified_Name -- ------------------------ overriding function Get_Qualified_Name (Self : not null access constant OCL_Message_Exp_Proxy) return AMF.Optional_String is begin declare use type Matreshka.Internals.Strings.Shared_String_Access; Aux : constant Matreshka.Internals.Strings.Shared_String_Access := AMF.Internals.Tables.OCL_Attributes.Internal_Get_Qualified_Name (Self.Element); begin if Aux = null then return (Is_Empty => True); else return (False, League.Strings.Internals.Create (Aux)); end if; end; end Get_Qualified_Name; -------------------- -- Get_Visibility -- -------------------- overriding function Get_Visibility (Self : not null access constant OCL_Message_Exp_Proxy) return AMF.UML.Optional_UML_Visibility_Kind is begin return AMF.Internals.Tables.OCL_Attributes.Internal_Get_Visibility (Self.Element); end Get_Visibility; -------------------- -- Set_Visibility -- -------------------- overriding procedure Set_Visibility (Self : not null access OCL_Message_Exp_Proxy; To : AMF.UML.Optional_UML_Visibility_Kind) is begin AMF.Internals.Tables.OCL_Attributes.Internal_Set_Visibility (Self.Element, To); end Set_Visibility; ----------------------- -- Get_Owned_Comment -- ----------------------- overriding function Get_Owned_Comment (Self : not null access constant OCL_Message_Exp_Proxy) return AMF.UML.Comments.Collections.Set_Of_UML_Comment is begin return AMF.UML.Comments.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Owned_Comment (Self.Element))); end Get_Owned_Comment; ----------------------- -- Get_Owned_Element -- ----------------------- overriding function Get_Owned_Element (Self : not null access constant OCL_Message_Exp_Proxy) return AMF.UML.Elements.Collections.Set_Of_UML_Element is begin return AMF.UML.Elements.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Owned_Element (Self.Element))); end Get_Owned_Element; --------------- -- Get_Owner -- --------------- overriding function Get_Owner (Self : not null access constant OCL_Message_Exp_Proxy) return AMF.UML.Elements.UML_Element_Access is begin return AMF.UML.Elements.UML_Element_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Owner (Self.Element))); end Get_Owner; -------------------- -- All_Namespaces -- -------------------- overriding function All_Namespaces (Self : not null access constant OCL_Message_Exp_Proxy) return AMF.UML.Namespaces.Collections.Ordered_Set_Of_UML_Namespace is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "All_Namespaces unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Message_Exp_Proxy.All_Namespaces"; return All_Namespaces (Self); end All_Namespaces; ------------------------- -- All_Owning_Packages -- ------------------------- overriding function All_Owning_Packages (Self : not null access constant OCL_Message_Exp_Proxy) return AMF.UML.Packages.Collections.Set_Of_UML_Package is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "All_Owning_Packages unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Message_Exp_Proxy.All_Owning_Packages"; return All_Owning_Packages (Self); end All_Owning_Packages; ----------------------------- -- Is_Distinguishable_From -- ----------------------------- overriding function Is_Distinguishable_From (Self : not null access constant OCL_Message_Exp_Proxy; N : AMF.UML.Named_Elements.UML_Named_Element_Access; Ns : AMF.UML.Namespaces.UML_Namespace_Access) return Boolean is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Is_Distinguishable_From unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Message_Exp_Proxy.Is_Distinguishable_From"; return Is_Distinguishable_From (Self, N, Ns); end Is_Distinguishable_From; --------------- -- Namespace -- --------------- overriding function Namespace (Self : not null access constant OCL_Message_Exp_Proxy) return AMF.UML.Namespaces.UML_Namespace_Access is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Namespace unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Message_Exp_Proxy.Namespace"; return Namespace (Self); end Namespace; -------------------- -- Qualified_Name -- -------------------- overriding function Qualified_Name (Self : not null access constant OCL_Message_Exp_Proxy) return League.Strings.Universal_String is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Qualified_Name unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Message_Exp_Proxy.Qualified_Name"; return Qualified_Name (Self); end Qualified_Name; --------------- -- Separator -- --------------- overriding function Separator (Self : not null access constant OCL_Message_Exp_Proxy) return League.Strings.Universal_String is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Separator unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Message_Exp_Proxy.Separator"; return Separator (Self); end Separator; ------------------------ -- All_Owned_Elements -- ------------------------ overriding function All_Owned_Elements (Self : not null access constant OCL_Message_Exp_Proxy) return AMF.UML.Elements.Collections.Set_Of_UML_Element is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "All_Owned_Elements unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Message_Exp_Proxy.All_Owned_Elements"; return All_Owned_Elements (Self); end All_Owned_Elements; ------------------- -- Must_Be_Owned -- ------------------- overriding function Must_Be_Owned (Self : not null access constant OCL_Message_Exp_Proxy) return Boolean is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Must_Be_Owned unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Message_Exp_Proxy.Must_Be_Owned"; return Must_Be_Owned (Self); end Must_Be_Owned; ------------------- -- Enter_Element -- ------------------- overriding procedure Enter_Element (Self : not null access constant OCL_Message_Exp_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Visitor in AMF.Visitors.OCL_Visitors.OCL_Visitor'Class then AMF.Visitors.OCL_Visitors.OCL_Visitor'Class (Visitor).Enter_Message_Exp (AMF.OCL.Message_Exps.OCL_Message_Exp_Access (Self), Control); end if; end Enter_Element; ------------------- -- Leave_Element -- ------------------- overriding procedure Leave_Element (Self : not null access constant OCL_Message_Exp_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Visitor in AMF.Visitors.OCL_Visitors.OCL_Visitor'Class then AMF.Visitors.OCL_Visitors.OCL_Visitor'Class (Visitor).Leave_Message_Exp (AMF.OCL.Message_Exps.OCL_Message_Exp_Access (Self), Control); end if; end Leave_Element; ------------------- -- Visit_Element -- ------------------- overriding procedure Visit_Element (Self : not null access constant OCL_Message_Exp_Proxy; Iterator : in out AMF.Visitors.Abstract_Iterator'Class; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Iterator in AMF.Visitors.OCL_Iterators.OCL_Iterator'Class then AMF.Visitors.OCL_Iterators.OCL_Iterator'Class (Iterator).Visit_Message_Exp (Visitor, AMF.OCL.Message_Exps.OCL_Message_Exp_Access (Self), Control); end if; end Visit_Element; end AMF.Internals.OCL_Message_Exps;
skordal/ada-regex
Ada
3,349
ads
-- Ada regular expression library -- (c) Kristian Klomsten Skordal 2020 <[email protected]> -- Report bugs and issues on <https://github.com/skordal/ada-regex> with Regex.Utilities.Sorted_Sets; package Regex.Syntax_Trees is -- Possible syntax tree node types: type Syntax_Tree_Node_Type is ( Acceptance, -- Acceptance node, indicates the current node is a possible end-node Single_Character, -- Node representing a single character input Any_Character, -- Node representing any character input, '.' Empty_Node, -- Character representing an empty node, ε Alternation, -- Node representing an alternation operator, '|' Concatenation, -- Node representing a concatenation of two subtrees Kleene_Star); -- Node representing the Kleene star/wildcard operator, '*' type Syntax_Tree_Node (Node_Type : Syntax_Tree_Node_Type); type Syntax_Tree_Node_Access is access all Syntax_Tree_Node; -- Comparison function, comparing nodes based on their IDs: function "<" (Left, Right : in Syntax_Tree_Node_Access) return Boolean; package Syntax_Tree_Node_Sets is new Utilities.Sorted_Sets ( Element_Type => Syntax_Tree_Node_Access); -- Syntax tree node object: type Syntax_Tree_Node (Node_Type : Syntax_Tree_Node_Type) is record Left_Child, Right_Child : Syntax_Tree_Node_Access; Id : Natural := 0; Followpos : Syntax_Tree_Node_Sets.Sorted_Set; case Node_Type is when Single_Character => Char : Character; when Acceptance => Acceptance_Id : Natural; when others => null; end case; end record; -- Allocates and initializes a syntax tree node: function Create_Node (Node_Type : in Syntax_Tree_Node_Type; Id : in Natural; Left_Child, Right_Child : in Syntax_Tree_Node_Access := null; Char : in Character := Character'Val (0)) return Syntax_Tree_Node_Access; -- Clones a syntax tree: function Clone_Tree (Root : in Syntax_Tree_Node_Access; Next_Id : in out Natural) return Syntax_Tree_Node_Access with Pre => Root /= null; function Clone_Tree (Root : in Syntax_Tree_Node_Access) return Syntax_Tree_Node_Access with Pre => Root /= null; -- Gets the acceptance node from a syntax tree: function Get_Acceptance_Node (Root : in Syntax_Tree_Node_Access) return Syntax_Tree_Node_Access with Pre => Root /= null; -- Frees a syntax tree recursively: procedure Free_Recursively (Root_Node : in out Syntax_Tree_Node_Access); -- Computes the nullable() function for the specified node: function Nullable (Node : in Syntax_Tree_Node_Access) return Boolean; -- Computes the firstpos() function for the specified node: function Firstpos (Node : in Syntax_Tree_Node_Access) return Syntax_Tree_Node_Sets.Sorted_Set; -- Computes the lastpos() function for the specified node: function Lastpos (Node : in Syntax_Tree_Node_Access) return Syntax_Tree_Node_Sets.Sorted_Set; -- Calculates the followpos() function for all nodes in the specified tree: procedure Calculate_Followpos (Tree : in Syntax_Tree_Node_Access); end Regex.Syntax_Trees;
szstonelee/redisoo
Ada
483
ads
-- Copyright (C) 2008-2011 Maciej Sobczak -- Distributed under the Boost Software License, Version 1.0. -- (See accompanying file LICENSE_1_0.txt or copy at -- http://www.boost.org/LICENSE_1_0.txt) package SOCI.MySQL is -- -- Registers the MySQL backend so that it is ready for use -- by the dynamic backend loader. -- procedure Register_Factory_MySQL; pragma Import (C, Register_Factory_MySQL, "register_factory_mysql"); end SOCI.MySQL;
AdaCore/gpr
Ada
1,706
ads
------------------------------------------------------------------------------ -- -- -- GPR2 PROJECT MANAGER -- -- -- -- Copyright (C) 2019-2023, AdaCore -- -- -- -- This is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. This software is distributed in the hope that it will be useful, -- -- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- -- -- TABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public -- -- License for more details. You should have received a copy of the GNU -- -- General Public License distributed with GNAT; see file COPYING. If not, -- -- see <http://www.gnu.org/licenses/>. -- -- -- ------------------------------------------------------------------------------ package GPR2.Interrupt_Handler is type Handler is access procedure with Convention => C; procedure Install_Sigint (H : Handler) with Import, Convention => C, External_Name => "__gnat_install_int_handler"; -- Install a Sigint handler, may be used to clean-up temporary data -- generated by a tool. end GPR2.Interrupt_Handler;
zhmu/ananas
Ada
556
adb
-- { dg-do compile } package body asynch is function null_ctrl return t_ctrl is begin return (Ada.Finalization.Controlled with stuff => 0); end null_ctrl; procedure Proc (msg : String; c : t_ctrl := null_ctrl) is begin null; end Proc; task type tsk; task body tsk is begin select delay 10.0; Proc ("A message."); then abort null; end select; end tsk; end asynch;
stcarrez/ada-ado
Ada
1,117
ads
----------------------------------------------------------------------- -- ado.schemas.mysql -- Mysql Database Schemas -- Copyright (C) 2009, 2010, 2015 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with ADO.Connections; package ADO.Schemas.Mysql is -- Load the database schema procedure Load_Schema (C : in ADO.Connections.Database_Connection'Class; Schema : out Schema_Definition); end ADO.Schemas.Mysql;
MinimSecure/unum-sdk
Ada
852
adb
-- Copyright 2015-2019 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. with Pck; use Pck; procedure Foo_N612_026 is R : Record_Type := Get (10); begin Do_Nothing (R'Address); -- STOP end Foo_N612_026;
reznikmm/matreshka
Ada
3,648
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with League.Holders.Generic_Holders; package AMF.DG.Holders.Line_Tos is new League.Holders.Generic_Holders (AMF.DG.DG_Line_To); pragma Preelaborate (AMF.DG.Holders.Line_Tos);
reznikmm/matreshka
Ada
4,875
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with AMF.Internals.UML_Elements; with AMF.Standard_Profile_L2.Focuses; with AMF.UML.Classes; with AMF.Visitors; package AMF.Internals.Standard_Profile_L2_Focuses is type Standard_Profile_L2_Focus_Proxy is limited new AMF.Internals.UML_Elements.UML_Element_Base and AMF.Standard_Profile_L2.Focuses.Standard_Profile_L2_Focus with null record; overriding function Get_Base_Class (Self : not null access constant Standard_Profile_L2_Focus_Proxy) return AMF.UML.Classes.UML_Class_Access; -- Getter of Focus::base_Class. -- overriding procedure Set_Base_Class (Self : not null access Standard_Profile_L2_Focus_Proxy; To : AMF.UML.Classes.UML_Class_Access); -- Setter of Focus::base_Class. -- overriding procedure Enter_Element (Self : not null access constant Standard_Profile_L2_Focus_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); overriding procedure Leave_Element (Self : not null access constant Standard_Profile_L2_Focus_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); overriding procedure Visit_Element (Self : not null access constant Standard_Profile_L2_Focus_Proxy; Iterator : in out AMF.Visitors.Abstract_Iterator'Class; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); end AMF.Internals.Standard_Profile_L2_Focuses;
reznikmm/matreshka
Ada
5,396
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Generic_Collections; package AMF.Standard_Profile_L2.Destroies.Collections is pragma Preelaborate; package Standard_Profile_L2_Destroy_Collections is new AMF.Generic_Collections (Standard_Profile_L2_Destroy, Standard_Profile_L2_Destroy_Access); type Set_Of_Standard_Profile_L2_Destroy is new Standard_Profile_L2_Destroy_Collections.Set with null record; Empty_Set_Of_Standard_Profile_L2_Destroy : constant Set_Of_Standard_Profile_L2_Destroy; type Ordered_Set_Of_Standard_Profile_L2_Destroy is new Standard_Profile_L2_Destroy_Collections.Ordered_Set with null record; Empty_Ordered_Set_Of_Standard_Profile_L2_Destroy : constant Ordered_Set_Of_Standard_Profile_L2_Destroy; type Bag_Of_Standard_Profile_L2_Destroy is new Standard_Profile_L2_Destroy_Collections.Bag with null record; Empty_Bag_Of_Standard_Profile_L2_Destroy : constant Bag_Of_Standard_Profile_L2_Destroy; type Sequence_Of_Standard_Profile_L2_Destroy is new Standard_Profile_L2_Destroy_Collections.Sequence with null record; Empty_Sequence_Of_Standard_Profile_L2_Destroy : constant Sequence_Of_Standard_Profile_L2_Destroy; private Empty_Set_Of_Standard_Profile_L2_Destroy : constant Set_Of_Standard_Profile_L2_Destroy := (Standard_Profile_L2_Destroy_Collections.Set with null record); Empty_Ordered_Set_Of_Standard_Profile_L2_Destroy : constant Ordered_Set_Of_Standard_Profile_L2_Destroy := (Standard_Profile_L2_Destroy_Collections.Ordered_Set with null record); Empty_Bag_Of_Standard_Profile_L2_Destroy : constant Bag_Of_Standard_Profile_L2_Destroy := (Standard_Profile_L2_Destroy_Collections.Bag with null record); Empty_Sequence_Of_Standard_Profile_L2_Destroy : constant Sequence_Of_Standard_Profile_L2_Destroy := (Standard_Profile_L2_Destroy_Collections.Sequence with null record); end AMF.Standard_Profile_L2.Destroies.Collections;
reznikmm/matreshka
Ada
6,356
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2013, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with ODF.Constants; with ODF.DOM.Elements.Style.List_Level_Properties.Internals; with ODF.DOM.Iterators; with ODF.DOM.Visitors; package body Matreshka.ODF_Elements.Style.List_Level_Properties is ------------------- -- Enter_Element -- ------------------- overriding procedure Enter_Element (Self : not null access Style_List_Level_Properties_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control) is begin if Visitor in ODF.DOM.Visitors.ODF_Visitor'Class then ODF.DOM.Visitors.ODF_Visitor'Class (Visitor).Enter_Style_List_Level_Properties (ODF.DOM.Elements.Style.List_Level_Properties.Internals.Create (Style_List_Level_Properties_Access (Self)), Control); else Matreshka.DOM_Nodes.Elements.Abstract_Element (Self.all).Enter_Element (Visitor, Control); end if; end Enter_Element; -------------------- -- Get_Local_Name -- -------------------- overriding function Get_Local_Name (Self : not null access constant Style_List_Level_Properties_Node) return League.Strings.Universal_String is begin return ODF.Constants.List_Level_Properties_Name; end Get_Local_Name; ------------------- -- Leave_Element -- ------------------- overriding procedure Leave_Element (Self : not null access Style_List_Level_Properties_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control) is begin if Visitor in ODF.DOM.Visitors.ODF_Visitor'Class then ODF.DOM.Visitors.ODF_Visitor'Class (Visitor).Leave_Style_List_Level_Properties (ODF.DOM.Elements.Style.List_Level_Properties.Internals.Create (Style_List_Level_Properties_Access (Self)), Control); else Matreshka.DOM_Nodes.Elements.Abstract_Element (Self.all).Leave_Element (Visitor, Control); end if; end Leave_Element; ------------------- -- Visit_Element -- ------------------- overriding procedure Visit_Element (Self : not null access Style_List_Level_Properties_Node; Iterator : in out XML.DOM.Visitors.Abstract_Iterator'Class; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control) is begin if Iterator in ODF.DOM.Iterators.ODF_Iterator'Class then ODF.DOM.Iterators.ODF_Iterator'Class (Iterator).Visit_Style_List_Level_Properties (Visitor, ODF.DOM.Elements.Style.List_Level_Properties.Internals.Create (Style_List_Level_Properties_Access (Self)), Control); else Matreshka.DOM_Nodes.Elements.Abstract_Element (Self.all).Visit_Element (Iterator, Visitor, Control); end if; end Visit_Element; end Matreshka.ODF_Elements.Style.List_Level_Properties;
godunko/adawebpack
Ada
14,094
adb
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . W C H _ C N V -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2021, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Interfaces; use Interfaces; with System.WCh_Con; use System.WCh_Con; package body System.WCh_Cnv is ----------------------------- -- Char_Sequence_To_UTF_32 -- ----------------------------- function Char_Sequence_To_UTF_32 (C : Character; EM : System.WCh_Con.WC_Encoding_Method) return UTF_32_Code is B1 : Unsigned_32; C1 : Character; U : Unsigned_32; W : Unsigned_32; procedure Get_Hex (N : Character); -- If N is a hex character, then set B1 to 16 * B1 + character N. -- Raise Constraint_Error if character N is not a hex character. procedure Get_UTF_Byte; pragma Inline (Get_UTF_Byte); -- Used to interpret a 2#10xxxxxx# continuation byte in UTF-8 mode. -- Reads a byte, and raises CE if the first two bits are not 10. -- Otherwise shifts W 6 bits left and or's in the 6 xxxxxx bits. ------------- -- Get_Hex -- ------------- procedure Get_Hex (N : Character) is B2 : constant Unsigned_32 := Character'Pos (N); begin if B2 in Character'Pos ('0') .. Character'Pos ('9') then B1 := B1 * 16 + B2 - Character'Pos ('0'); elsif B2 in Character'Pos ('A') .. Character'Pos ('F') then B1 := B1 * 16 + B2 - (Character'Pos ('A') - 10); elsif B2 in Character'Pos ('a') .. Character'Pos ('f') then B1 := B1 * 16 + B2 - (Character'Pos ('a') - 10); else raise Constraint_Error; end if; end Get_Hex; ------------------ -- Get_UTF_Byte -- ------------------ procedure Get_UTF_Byte is begin U := Unsigned_32 (Character'Pos (In_Char)); if (U and 2#11000000#) /= 2#10_000000# then raise Constraint_Error; end if; W := Shift_Left (W, 6) or (U and 2#00111111#); end Get_UTF_Byte; -- Start of processing for Char_Sequence_To_UTF_32 begin case EM is when WCEM_UTF8 => -- Note: for details of UTF8 encoding see RFC 3629 U := Unsigned_32 (Character'Pos (C)); -- 16#00_0000#-16#00_007F#: 0xxxxxxx if (U and 2#10000000#) = 2#00000000# then return Character'Pos (C); -- 16#00_0080#-16#00_07FF#: 110xxxxx 10xxxxxx elsif (U and 2#11100000#) = 2#110_00000# then W := U and 2#00011111#; Get_UTF_Byte; return UTF_32_Code (W); -- 16#00_0800#-16#00_ffff#: 1110xxxx 10xxxxxx 10xxxxxx elsif (U and 2#11110000#) = 2#1110_0000# then W := U and 2#00001111#; Get_UTF_Byte; Get_UTF_Byte; return UTF_32_Code (W); -- 16#01_0000#-16#10_FFFF#: 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx elsif (U and 2#11111000#) = 2#11110_000# then W := U and 2#00000111#; for K in 1 .. 3 loop Get_UTF_Byte; end loop; return UTF_32_Code (W); -- 16#0020_0000#-16#03FF_FFFF#: 111110xx 10xxxxxx 10xxxxxx -- 10xxxxxx 10xxxxxx elsif (U and 2#11111100#) = 2#111110_00# then W := U and 2#00000011#; for K in 1 .. 4 loop Get_UTF_Byte; end loop; return UTF_32_Code (W); -- 16#0400_0000#-16#7FFF_FFFF#: 1111110x 10xxxxxx 10xxxxxx -- 10xxxxxx 10xxxxxx 10xxxxxx elsif (U and 2#11111110#) = 2#1111110_0# then W := U and 2#00000001#; for K in 1 .. 5 loop Get_UTF_Byte; end loop; return UTF_32_Code (W); else raise Constraint_Error; end if; when WCEM_Brackets => if C /= '[' then return Character'Pos (C); end if; if In_Char /= '"' then raise Constraint_Error; end if; B1 := 0; Get_Hex (In_Char); Get_Hex (In_Char); C1 := In_Char; if C1 /= '"' then Get_Hex (C1); Get_Hex (In_Char); C1 := In_Char; if C1 /= '"' then Get_Hex (C1); Get_Hex (In_Char); C1 := In_Char; if C1 /= '"' then Get_Hex (C1); Get_Hex (In_Char); if B1 > Unsigned_32 (UTF_32_Code'Last) then raise Constraint_Error; end if; if In_Char /= '"' then raise Constraint_Error; end if; end if; end if; end if; if In_Char /= ']' then raise Constraint_Error; end if; return UTF_32_Code (B1); end case; end Char_Sequence_To_UTF_32; -------------------------------- -- Char_Sequence_To_Wide_Char -- -------------------------------- function Char_Sequence_To_Wide_Char (C : Character; EM : System.WCh_Con.WC_Encoding_Method) return Wide_Character is function Char_Sequence_To_UTF is new Char_Sequence_To_UTF_32 (In_Char); U : constant UTF_32_Code := Char_Sequence_To_UTF (C, EM); begin if U > 16#FFFF# then raise Constraint_Error; else return Wide_Character'Val (U); end if; end Char_Sequence_To_Wide_Char; ----------------------------- -- UTF_32_To_Char_Sequence -- ----------------------------- procedure UTF_32_To_Char_Sequence (Val : UTF_32_Code; EM : System.WCh_Con.WC_Encoding_Method) is Hexc : constant array (UTF_32_Code range 0 .. 15) of Character := "0123456789ABCDEF"; U : Unsigned_32; begin -- Raise CE for invalid UTF_32_Code if not Val'Valid then raise Constraint_Error; end if; -- Processing depends on encoding mode case EM is when WCEM_UTF8 => -- Note: for details of UTF8 encoding see RFC 3629 U := Unsigned_32 (Val); -- 16#00_0000#-16#00_007F#: 0xxxxxxx if U <= 16#00_007F# then Out_Char (Character'Val (U)); -- 16#00_0080#-16#00_07FF#: 110xxxxx 10xxxxxx elsif U <= 16#00_07FF# then Out_Char (Character'Val (2#11000000# or Shift_Right (U, 6))); Out_Char (Character'Val (2#10000000# or (U and 2#00111111#))); -- 16#00_0800#-16#00_FFFF#: 1110xxxx 10xxxxxx 10xxxxxx elsif U <= 16#00_FFFF# then Out_Char (Character'Val (2#11100000# or Shift_Right (U, 12))); Out_Char (Character'Val (2#10000000# or (Shift_Right (U, 6) and 2#00111111#))); Out_Char (Character'Val (2#10000000# or (U and 2#00111111#))); -- 16#01_0000#-16#10_FFFF#: 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx elsif U <= 16#10_FFFF# then Out_Char (Character'Val (2#11110000# or Shift_Right (U, 18))); Out_Char (Character'Val (2#10000000# or (Shift_Right (U, 12) and 2#00111111#))); Out_Char (Character'Val (2#10000000# or (Shift_Right (U, 6) and 2#00111111#))); Out_Char (Character'Val (2#10000000# or (U and 2#00111111#))); -- 16#0020_0000#-16#03FF_FFFF#: 111110xx 10xxxxxx 10xxxxxx -- 10xxxxxx 10xxxxxx elsif U <= 16#03FF_FFFF# then Out_Char (Character'Val (2#11111000# or Shift_Right (U, 24))); Out_Char (Character'Val (2#10000000# or (Shift_Right (U, 18) and 2#00111111#))); Out_Char (Character'Val (2#10000000# or (Shift_Right (U, 12) and 2#00111111#))); Out_Char (Character'Val (2#10000000# or (Shift_Right (U, 6) and 2#00111111#))); Out_Char (Character'Val (2#10000000# or (U and 2#00111111#))); -- 16#0400_0000#-16#7FFF_FFFF#: 1111110x 10xxxxxx 10xxxxxx -- 10xxxxxx 10xxxxxx 10xxxxxx elsif U <= 16#7FFF_FFFF# then Out_Char (Character'Val (2#11111100# or Shift_Right (U, 30))); Out_Char (Character'Val (2#10000000# or (Shift_Right (U, 24) and 2#00111111#))); Out_Char (Character'Val (2#10000000# or (Shift_Right (U, 18) and 2#00111111#))); Out_Char (Character'Val (2#10000000# or (Shift_Right (U, 12) and 2#00111111#))); Out_Char (Character'Val (2#10000000# or (Shift_Right (U, 6) and 2#00111111#))); Out_Char (Character'Val (2#10000000# or (U and 2#00111111#))); else raise Constraint_Error; end if; when WCEM_Brackets => -- Values in the range 0-255 are directly output. Note that there -- is an issue with [ (16#5B#) since this will cause confusion -- if the resulting string is interpreted using brackets encoding. -- One possibility would be to always output [ as ["5B"] but in -- practice this is undesirable, since for example normal use of -- Wide_Text_IO for output (much more common than input), really -- does want to be able to say something like -- Put_Line ("Start of output [first run]"); -- and have it come out as intended, rather than contaminated by -- a ["5B"] sequence in place of the left bracket. if Val < 256 then Out_Char (Character'Val (Val)); -- Otherwise use brackets notation for vales greater than 255 else Out_Char ('['); Out_Char ('"'); if Val > 16#FFFF# then if Val > 16#00FF_FFFF# then Out_Char (Hexc (Val / 16 ** 7)); Out_Char (Hexc ((Val / 16 ** 6) mod 16)); end if; Out_Char (Hexc ((Val / 16 ** 5) mod 16)); Out_Char (Hexc ((Val / 16 ** 4) mod 16)); end if; Out_Char (Hexc ((Val / 16 ** 3) mod 16)); Out_Char (Hexc ((Val / 16 ** 2) mod 16)); Out_Char (Hexc ((Val / 16) mod 16)); Out_Char (Hexc (Val mod 16)); Out_Char ('"'); Out_Char (']'); end if; end case; end UTF_32_To_Char_Sequence; -------------------------------- -- Wide_Char_To_Char_Sequence -- -------------------------------- procedure Wide_Char_To_Char_Sequence (WC : Wide_Character; EM : System.WCh_Con.WC_Encoding_Method) is procedure UTF_To_Char_Sequence is new UTF_32_To_Char_Sequence (Out_Char); begin UTF_To_Char_Sequence (Wide_Character'Pos (WC), EM); end Wide_Char_To_Char_Sequence; end System.WCh_Cnv;
kqr/qweyboard
Ada
2,037
ads
with Unicode_Strings; use Unicode_Strings; with Ada.Containers.Vectors; with Ada.Containers.Ordered_Maps; private with Logging; package Qweyboard.Languages is use Unbounded; package Key_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => Softkey); package Layer_Maps is new Ada.Containers.Ordered_Maps (Key_Type => Softkey, Element_Type => Wide_Wide_Character); package Layout_Maps is new Ada.Containers.Ordered_Maps (Key_Type => Softkey, Element_Type => Layer_Maps.Map, "=" => Layer_Maps."="); package Substitution_Maps is new Ada.Containers.Ordered_Maps (Key_Type => Unbounded_Wide_Wide_String, Element_Type => Unbounded_Wide_Wide_String); type Layout_Type is record -- This is a vector because we want the order they're declared in to matter... -- (except, of course, NOKEY which gets last dibs always) Modifiers : Key_Vectors.Vector; Layers : Layout_Maps.Map; end record; type Substitution_Type is (Left, Middle, Right); type Substitution_Dictionary is array (Substitution_Type) of Substitution_Maps.Map; -- TODO: is a protected object really the right abstraction here? protected User_Language is function Decode (Released : Key_Sets.Set) return Unbounded_Wide_Wide_String; procedure Add_Key (Modifier : Softkey; Key : Softkey; Symbol : Wide_Wide_Character); procedure Add_Substitution (Position : Substitution_Type; Pattern : Unbounded_Wide_Wide_String; Replacement : Unbounded_Wide_Wide_String); private Current_Layout : Layout_Type; Substitutions : Substitution_Dictionary; function Virtual_Layer (Layout : Layout_Type; Pressed : Key_Sets.Set) return Layer_Maps.Map; function Mod_Layer (Layout : Layout_Type; Modifier : Softkey; Pressed : Key_Sets.Set) return Layer_Maps.Map; function Perform_Substitutions (Text : Unbounded_Wide_Wide_String; From : Substitution_Maps.Map) return Unbounded_Wide_Wide_String; end User_Language; private use Logging; end Qweyboard.Languages;
zhmu/ananas
Ada
9,072
adb
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . P A C K _ 1 1 8 -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2022, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with System.Storage_Elements; with System.Unsigned_Types; package body System.Pack_118 is subtype Bit_Order is System.Bit_Order; Reverse_Bit_Order : constant Bit_Order := Bit_Order'Val (1 - Bit_Order'Pos (System.Default_Bit_Order)); subtype Ofs is System.Storage_Elements.Storage_Offset; subtype Uns is System.Unsigned_Types.Unsigned; subtype N07 is System.Unsigned_Types.Unsigned range 0 .. 7; use type System.Storage_Elements.Storage_Offset; use type System.Unsigned_Types.Unsigned; type Cluster is record E0, E1, E2, E3, E4, E5, E6, E7 : Bits_118; end record; for Cluster use record E0 at 0 range 0 * Bits .. 0 * Bits + Bits - 1; E1 at 0 range 1 * Bits .. 1 * Bits + Bits - 1; E2 at 0 range 2 * Bits .. 2 * Bits + Bits - 1; E3 at 0 range 3 * Bits .. 3 * Bits + Bits - 1; E4 at 0 range 4 * Bits .. 4 * Bits + Bits - 1; E5 at 0 range 5 * Bits .. 5 * Bits + Bits - 1; E6 at 0 range 6 * Bits .. 6 * Bits + Bits - 1; E7 at 0 range 7 * Bits .. 7 * Bits + Bits - 1; end record; for Cluster'Size use Bits * 8; for Cluster'Alignment use Integer'Min (Standard'Maximum_Alignment, 1 + 1 * Boolean'Pos (Bits mod 2 = 0) + 2 * Boolean'Pos (Bits mod 4 = 0)); -- Use maximum possible alignment, given the bit field size, since this -- will result in the most efficient code possible for the field. type Cluster_Ref is access Cluster; type Rev_Cluster is new Cluster with Bit_Order => Reverse_Bit_Order, Scalar_Storage_Order => Reverse_Bit_Order; type Rev_Cluster_Ref is access Rev_Cluster; -- The following declarations are for the case where the address -- passed to GetU_118 or SetU_118 is not guaranteed to be aligned. -- These routines are used when the packed array is itself a -- component of a packed record, and therefore may not be aligned. type ClusterU is new Cluster; for ClusterU'Alignment use 1; type ClusterU_Ref is access ClusterU; type Rev_ClusterU is new ClusterU with Bit_Order => Reverse_Bit_Order, Scalar_Storage_Order => Reverse_Bit_Order; type Rev_ClusterU_Ref is access Rev_ClusterU; ------------ -- Get_118 -- ------------ function Get_118 (Arr : System.Address; N : Natural; Rev_SSO : Boolean) return Bits_118 is A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8); C : Cluster_Ref with Address => A'Address, Import; RC : Rev_Cluster_Ref with Address => A'Address, Import; begin if Rev_SSO then case N07 (Uns (N) mod 8) is when 0 => return RC.E0; when 1 => return RC.E1; when 2 => return RC.E2; when 3 => return RC.E3; when 4 => return RC.E4; when 5 => return RC.E5; when 6 => return RC.E6; when 7 => return RC.E7; end case; else case N07 (Uns (N) mod 8) is when 0 => return C.E0; when 1 => return C.E1; when 2 => return C.E2; when 3 => return C.E3; when 4 => return C.E4; when 5 => return C.E5; when 6 => return C.E6; when 7 => return C.E7; end case; end if; end Get_118; ------------- -- GetU_118 -- ------------- function GetU_118 (Arr : System.Address; N : Natural; Rev_SSO : Boolean) return Bits_118 is A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8); C : ClusterU_Ref with Address => A'Address, Import; RC : Rev_ClusterU_Ref with Address => A'Address, Import; begin if Rev_SSO then case N07 (Uns (N) mod 8) is when 0 => return RC.E0; when 1 => return RC.E1; when 2 => return RC.E2; when 3 => return RC.E3; when 4 => return RC.E4; when 5 => return RC.E5; when 6 => return RC.E6; when 7 => return RC.E7; end case; else case N07 (Uns (N) mod 8) is when 0 => return C.E0; when 1 => return C.E1; when 2 => return C.E2; when 3 => return C.E3; when 4 => return C.E4; when 5 => return C.E5; when 6 => return C.E6; when 7 => return C.E7; end case; end if; end GetU_118; ------------ -- Set_118 -- ------------ procedure Set_118 (Arr : System.Address; N : Natural; E : Bits_118; Rev_SSO : Boolean) is A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8); C : Cluster_Ref with Address => A'Address, Import; RC : Rev_Cluster_Ref with Address => A'Address, Import; begin if Rev_SSO then case N07 (Uns (N) mod 8) is when 0 => RC.E0 := E; when 1 => RC.E1 := E; when 2 => RC.E2 := E; when 3 => RC.E3 := E; when 4 => RC.E4 := E; when 5 => RC.E5 := E; when 6 => RC.E6 := E; when 7 => RC.E7 := E; end case; else case N07 (Uns (N) mod 8) is when 0 => C.E0 := E; when 1 => C.E1 := E; when 2 => C.E2 := E; when 3 => C.E3 := E; when 4 => C.E4 := E; when 5 => C.E5 := E; when 6 => C.E6 := E; when 7 => C.E7 := E; end case; end if; end Set_118; ------------- -- SetU_118 -- ------------- procedure SetU_118 (Arr : System.Address; N : Natural; E : Bits_118; Rev_SSO : Boolean) is A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8); C : ClusterU_Ref with Address => A'Address, Import; RC : Rev_ClusterU_Ref with Address => A'Address, Import; begin if Rev_SSO then case N07 (Uns (N) mod 8) is when 0 => RC.E0 := E; when 1 => RC.E1 := E; when 2 => RC.E2 := E; when 3 => RC.E3 := E; when 4 => RC.E4 := E; when 5 => RC.E5 := E; when 6 => RC.E6 := E; when 7 => RC.E7 := E; end case; else case N07 (Uns (N) mod 8) is when 0 => C.E0 := E; when 1 => C.E1 := E; when 2 => C.E2 := E; when 3 => C.E3 := E; when 4 => C.E4 := E; when 5 => C.E5 := E; when 6 => C.E6 := E; when 7 => C.E7 := E; end case; end if; end SetU_118; end System.Pack_118;
AdaCore/training_material
Ada
473,426
ads
pragma Ada_2005; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; with umingw_h; with GL_gl_h; with System; package SDL_SDL_opengl_h is -- unsupported macro: APIENTRYP APIENTRY * -- unsupported macro: GLAPI extern GL_GLEXT_VERSION : constant := 29; -- ../include/SDL/SDL_opengl.h:116 GL_UNSIGNED_BYTE_3_3_2 : constant := 16#8032#; -- ../include/SDL/SDL_opengl.h:119 GL_UNSIGNED_SHORT_4_4_4_4 : constant := 16#8033#; -- ../include/SDL/SDL_opengl.h:120 GL_UNSIGNED_SHORT_5_5_5_1 : constant := 16#8034#; -- ../include/SDL/SDL_opengl.h:121 GL_UNSIGNED_INT_8_8_8_8 : constant := 16#8035#; -- ../include/SDL/SDL_opengl.h:122 GL_UNSIGNED_INT_10_10_10_2 : constant := 16#8036#; -- ../include/SDL/SDL_opengl.h:123 GL_RESCALE_NORMAL : constant := 16#803A#; -- ../include/SDL/SDL_opengl.h:124 GL_TEXTURE_BINDING_3D : constant := 16#806A#; -- ../include/SDL/SDL_opengl.h:125 GL_PACK_SKIP_IMAGES : constant := 16#806B#; -- ../include/SDL/SDL_opengl.h:126 GL_PACK_IMAGE_HEIGHT : constant := 16#806C#; -- ../include/SDL/SDL_opengl.h:127 GL_UNPACK_SKIP_IMAGES : constant := 16#806D#; -- ../include/SDL/SDL_opengl.h:128 GL_UNPACK_IMAGE_HEIGHT : constant := 16#806E#; -- ../include/SDL/SDL_opengl.h:129 GL_TEXTURE_3D : constant := 16#806F#; -- ../include/SDL/SDL_opengl.h:130 GL_PROXY_TEXTURE_3D : constant := 16#8070#; -- ../include/SDL/SDL_opengl.h:131 GL_TEXTURE_DEPTH : constant := 16#8071#; -- ../include/SDL/SDL_opengl.h:132 GL_TEXTURE_WRAP_R : constant := 16#8072#; -- ../include/SDL/SDL_opengl.h:133 GL_MAX_3D_TEXTURE_SIZE : constant := 16#8073#; -- ../include/SDL/SDL_opengl.h:134 GL_UNSIGNED_BYTE_2_3_3_REV : constant := 16#8362#; -- ../include/SDL/SDL_opengl.h:135 GL_UNSIGNED_SHORT_5_6_5 : constant := 16#8363#; -- ../include/SDL/SDL_opengl.h:136 GL_UNSIGNED_SHORT_5_6_5_REV : constant := 16#8364#; -- ../include/SDL/SDL_opengl.h:137 GL_UNSIGNED_SHORT_4_4_4_4_REV : constant := 16#8365#; -- ../include/SDL/SDL_opengl.h:138 GL_UNSIGNED_SHORT_1_5_5_5_REV : constant := 16#8366#; -- ../include/SDL/SDL_opengl.h:139 GL_UNSIGNED_INT_8_8_8_8_REV : constant := 16#8367#; -- ../include/SDL/SDL_opengl.h:140 GL_UNSIGNED_INT_2_10_10_10_REV : constant := 16#8368#; -- ../include/SDL/SDL_opengl.h:141 GL_BGR : constant := 16#80E0#; -- ../include/SDL/SDL_opengl.h:142 GL_BGRA : constant := 16#80E1#; -- ../include/SDL/SDL_opengl.h:143 GL_MAX_ELEMENTS_VERTICES : constant := 16#80E8#; -- ../include/SDL/SDL_opengl.h:144 GL_MAX_ELEMENTS_INDICES : constant := 16#80E9#; -- ../include/SDL/SDL_opengl.h:145 GL_CLAMP_TO_EDGE : constant := 16#812F#; -- ../include/SDL/SDL_opengl.h:146 GL_TEXTURE_MIN_LOD : constant := 16#813A#; -- ../include/SDL/SDL_opengl.h:147 GL_TEXTURE_MAX_LOD : constant := 16#813B#; -- ../include/SDL/SDL_opengl.h:148 GL_TEXTURE_BASE_LEVEL : constant := 16#813C#; -- ../include/SDL/SDL_opengl.h:149 GL_TEXTURE_MAX_LEVEL : constant := 16#813D#; -- ../include/SDL/SDL_opengl.h:150 GL_LIGHT_MODEL_COLOR_CONTROL : constant := 16#81F8#; -- ../include/SDL/SDL_opengl.h:151 GL_SINGLE_COLOR : constant := 16#81F9#; -- ../include/SDL/SDL_opengl.h:152 GL_SEPARATE_SPECULAR_COLOR : constant := 16#81FA#; -- ../include/SDL/SDL_opengl.h:153 GL_SMOOTH_POINT_SIZE_RANGE : constant := 16#0B12#; -- ../include/SDL/SDL_opengl.h:154 GL_SMOOTH_POINT_SIZE_GRANULARITY : constant := 16#0B13#; -- ../include/SDL/SDL_opengl.h:155 GL_SMOOTH_LINE_WIDTH_RANGE : constant := 16#0B22#; -- ../include/SDL/SDL_opengl.h:156 GL_SMOOTH_LINE_WIDTH_GRANULARITY : constant := 16#0B23#; -- ../include/SDL/SDL_opengl.h:157 GL_ALIASED_POINT_SIZE_RANGE : constant := 16#846D#; -- ../include/SDL/SDL_opengl.h:158 GL_ALIASED_LINE_WIDTH_RANGE : constant := 16#846E#; -- ../include/SDL/SDL_opengl.h:159 GL_CONSTANT_COLOR : constant := 16#8001#; -- ../include/SDL/SDL_opengl.h:163 GL_ONE_MINUS_CONSTANT_COLOR : constant := 16#8002#; -- ../include/SDL/SDL_opengl.h:164 GL_CONSTANT_ALPHA : constant := 16#8003#; -- ../include/SDL/SDL_opengl.h:165 GL_ONE_MINUS_CONSTANT_ALPHA : constant := 16#8004#; -- ../include/SDL/SDL_opengl.h:166 GL_BLEND_COLOR : constant := 16#8005#; -- ../include/SDL/SDL_opengl.h:167 GL_FUNC_ADD : constant := 16#8006#; -- ../include/SDL/SDL_opengl.h:168 GL_MIN : constant := 16#8007#; -- ../include/SDL/SDL_opengl.h:169 GL_MAX : constant := 16#8008#; -- ../include/SDL/SDL_opengl.h:170 GL_BLEND_EQUATION : constant := 16#8009#; -- ../include/SDL/SDL_opengl.h:171 GL_FUNC_SUBTRACT : constant := 16#800A#; -- ../include/SDL/SDL_opengl.h:172 GL_FUNC_REVERSE_SUBTRACT : constant := 16#800B#; -- ../include/SDL/SDL_opengl.h:173 GL_CONVOLUTION_1D : constant := 16#8010#; -- ../include/SDL/SDL_opengl.h:174 GL_CONVOLUTION_2D : constant := 16#8011#; -- ../include/SDL/SDL_opengl.h:175 GL_SEPARABLE_2D : constant := 16#8012#; -- ../include/SDL/SDL_opengl.h:176 GL_CONVOLUTION_BORDER_MODE : constant := 16#8013#; -- ../include/SDL/SDL_opengl.h:177 GL_CONVOLUTION_FILTER_SCALE : constant := 16#8014#; -- ../include/SDL/SDL_opengl.h:178 GL_CONVOLUTION_FILTER_BIAS : constant := 16#8015#; -- ../include/SDL/SDL_opengl.h:179 GL_REDUCE : constant := 16#8016#; -- ../include/SDL/SDL_opengl.h:180 GL_CONVOLUTION_FORMAT : constant := 16#8017#; -- ../include/SDL/SDL_opengl.h:181 GL_CONVOLUTION_WIDTH : constant := 16#8018#; -- ../include/SDL/SDL_opengl.h:182 GL_CONVOLUTION_HEIGHT : constant := 16#8019#; -- ../include/SDL/SDL_opengl.h:183 GL_MAX_CONVOLUTION_WIDTH : constant := 16#801A#; -- ../include/SDL/SDL_opengl.h:184 GL_MAX_CONVOLUTION_HEIGHT : constant := 16#801B#; -- ../include/SDL/SDL_opengl.h:185 GL_POST_CONVOLUTION_RED_SCALE : constant := 16#801C#; -- ../include/SDL/SDL_opengl.h:186 GL_POST_CONVOLUTION_GREEN_SCALE : constant := 16#801D#; -- ../include/SDL/SDL_opengl.h:187 GL_POST_CONVOLUTION_BLUE_SCALE : constant := 16#801E#; -- ../include/SDL/SDL_opengl.h:188 GL_POST_CONVOLUTION_ALPHA_SCALE : constant := 16#801F#; -- ../include/SDL/SDL_opengl.h:189 GL_POST_CONVOLUTION_RED_BIAS : constant := 16#8020#; -- ../include/SDL/SDL_opengl.h:190 GL_POST_CONVOLUTION_GREEN_BIAS : constant := 16#8021#; -- ../include/SDL/SDL_opengl.h:191 GL_POST_CONVOLUTION_BLUE_BIAS : constant := 16#8022#; -- ../include/SDL/SDL_opengl.h:192 GL_POST_CONVOLUTION_ALPHA_BIAS : constant := 16#8023#; -- ../include/SDL/SDL_opengl.h:193 GL_HISTOGRAM : constant := 16#8024#; -- ../include/SDL/SDL_opengl.h:194 GL_PROXY_HISTOGRAM : constant := 16#8025#; -- ../include/SDL/SDL_opengl.h:195 GL_HISTOGRAM_WIDTH : constant := 16#8026#; -- ../include/SDL/SDL_opengl.h:196 GL_HISTOGRAM_FORMAT : constant := 16#8027#; -- ../include/SDL/SDL_opengl.h:197 GL_HISTOGRAM_RED_SIZE : constant := 16#8028#; -- ../include/SDL/SDL_opengl.h:198 GL_HISTOGRAM_GREEN_SIZE : constant := 16#8029#; -- ../include/SDL/SDL_opengl.h:199 GL_HISTOGRAM_BLUE_SIZE : constant := 16#802A#; -- ../include/SDL/SDL_opengl.h:200 GL_HISTOGRAM_ALPHA_SIZE : constant := 16#802B#; -- ../include/SDL/SDL_opengl.h:201 GL_HISTOGRAM_LUMINANCE_SIZE : constant := 16#802C#; -- ../include/SDL/SDL_opengl.h:202 GL_HISTOGRAM_SINK : constant := 16#802D#; -- ../include/SDL/SDL_opengl.h:203 GL_MINMAX : constant := 16#802E#; -- ../include/SDL/SDL_opengl.h:204 GL_MINMAX_FORMAT : constant := 16#802F#; -- ../include/SDL/SDL_opengl.h:205 GL_MINMAX_SINK : constant := 16#8030#; -- ../include/SDL/SDL_opengl.h:206 GL_TABLE_TOO_LARGE : constant := 16#8031#; -- ../include/SDL/SDL_opengl.h:207 GL_COLOR_MATRIX : constant := 16#80B1#; -- ../include/SDL/SDL_opengl.h:208 GL_COLOR_MATRIX_STACK_DEPTH : constant := 16#80B2#; -- ../include/SDL/SDL_opengl.h:209 GL_MAX_COLOR_MATRIX_STACK_DEPTH : constant := 16#80B3#; -- ../include/SDL/SDL_opengl.h:210 GL_POST_COLOR_MATRIX_RED_SCALE : constant := 16#80B4#; -- ../include/SDL/SDL_opengl.h:211 GL_POST_COLOR_MATRIX_GREEN_SCALE : constant := 16#80B5#; -- ../include/SDL/SDL_opengl.h:212 GL_POST_COLOR_MATRIX_BLUE_SCALE : constant := 16#80B6#; -- ../include/SDL/SDL_opengl.h:213 GL_POST_COLOR_MATRIX_ALPHA_SCALE : constant := 16#80B7#; -- ../include/SDL/SDL_opengl.h:214 GL_POST_COLOR_MATRIX_RED_BIAS : constant := 16#80B8#; -- ../include/SDL/SDL_opengl.h:215 GL_POST_COLOR_MATRIX_GREEN_BIAS : constant := 16#80B9#; -- ../include/SDL/SDL_opengl.h:216 GL_POST_COLOR_MATRIX_BLUE_BIAS : constant := 16#80BA#; -- ../include/SDL/SDL_opengl.h:217 GL_POST_COLOR_MATRIX_ALPHA_BIAS : constant := 16#80BB#; -- ../include/SDL/SDL_opengl.h:218 GL_COLOR_TABLE : constant := 16#80D0#; -- ../include/SDL/SDL_opengl.h:219 GL_POST_CONVOLUTION_COLOR_TABLE : constant := 16#80D1#; -- ../include/SDL/SDL_opengl.h:220 GL_POST_COLOR_MATRIX_COLOR_TABLE : constant := 16#80D2#; -- ../include/SDL/SDL_opengl.h:221 GL_PROXY_COLOR_TABLE : constant := 16#80D3#; -- ../include/SDL/SDL_opengl.h:222 GL_PROXY_POST_CONVOLUTION_COLOR_TABLE : constant := 16#80D4#; -- ../include/SDL/SDL_opengl.h:223 GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE : constant := 16#80D5#; -- ../include/SDL/SDL_opengl.h:224 GL_COLOR_TABLE_SCALE : constant := 16#80D6#; -- ../include/SDL/SDL_opengl.h:225 GL_COLOR_TABLE_BIAS : constant := 16#80D7#; -- ../include/SDL/SDL_opengl.h:226 GL_COLOR_TABLE_FORMAT : constant := 16#80D8#; -- ../include/SDL/SDL_opengl.h:227 GL_COLOR_TABLE_WIDTH : constant := 16#80D9#; -- ../include/SDL/SDL_opengl.h:228 GL_COLOR_TABLE_RED_SIZE : constant := 16#80DA#; -- ../include/SDL/SDL_opengl.h:229 GL_COLOR_TABLE_GREEN_SIZE : constant := 16#80DB#; -- ../include/SDL/SDL_opengl.h:230 GL_COLOR_TABLE_BLUE_SIZE : constant := 16#80DC#; -- ../include/SDL/SDL_opengl.h:231 GL_COLOR_TABLE_ALPHA_SIZE : constant := 16#80DD#; -- ../include/SDL/SDL_opengl.h:232 GL_COLOR_TABLE_LUMINANCE_SIZE : constant := 16#80DE#; -- ../include/SDL/SDL_opengl.h:233 GL_COLOR_TABLE_INTENSITY_SIZE : constant := 16#80DF#; -- ../include/SDL/SDL_opengl.h:234 GL_CONSTANT_BORDER : constant := 16#8151#; -- ../include/SDL/SDL_opengl.h:235 GL_REPLICATE_BORDER : constant := 16#8153#; -- ../include/SDL/SDL_opengl.h:236 GL_CONVOLUTION_BORDER_COLOR : constant := 16#8154#; -- ../include/SDL/SDL_opengl.h:237 GL_TEXTURE0 : constant := 16#84C0#; -- ../include/SDL/SDL_opengl.h:241 GL_TEXTURE1 : constant := 16#84C1#; -- ../include/SDL/SDL_opengl.h:242 GL_TEXTURE2 : constant := 16#84C2#; -- ../include/SDL/SDL_opengl.h:243 GL_TEXTURE3 : constant := 16#84C3#; -- ../include/SDL/SDL_opengl.h:244 GL_TEXTURE4 : constant := 16#84C4#; -- ../include/SDL/SDL_opengl.h:245 GL_TEXTURE5 : constant := 16#84C5#; -- ../include/SDL/SDL_opengl.h:246 GL_TEXTURE6 : constant := 16#84C6#; -- ../include/SDL/SDL_opengl.h:247 GL_TEXTURE7 : constant := 16#84C7#; -- ../include/SDL/SDL_opengl.h:248 GL_TEXTURE8 : constant := 16#84C8#; -- ../include/SDL/SDL_opengl.h:249 GL_TEXTURE9 : constant := 16#84C9#; -- ../include/SDL/SDL_opengl.h:250 GL_TEXTURE10 : constant := 16#84CA#; -- ../include/SDL/SDL_opengl.h:251 GL_TEXTURE11 : constant := 16#84CB#; -- ../include/SDL/SDL_opengl.h:252 GL_TEXTURE12 : constant := 16#84CC#; -- ../include/SDL/SDL_opengl.h:253 GL_TEXTURE13 : constant := 16#84CD#; -- ../include/SDL/SDL_opengl.h:254 GL_TEXTURE14 : constant := 16#84CE#; -- ../include/SDL/SDL_opengl.h:255 GL_TEXTURE15 : constant := 16#84CF#; -- ../include/SDL/SDL_opengl.h:256 GL_TEXTURE16 : constant := 16#84D0#; -- ../include/SDL/SDL_opengl.h:257 GL_TEXTURE17 : constant := 16#84D1#; -- ../include/SDL/SDL_opengl.h:258 GL_TEXTURE18 : constant := 16#84D2#; -- ../include/SDL/SDL_opengl.h:259 GL_TEXTURE19 : constant := 16#84D3#; -- ../include/SDL/SDL_opengl.h:260 GL_TEXTURE20 : constant := 16#84D4#; -- ../include/SDL/SDL_opengl.h:261 GL_TEXTURE21 : constant := 16#84D5#; -- ../include/SDL/SDL_opengl.h:262 GL_TEXTURE22 : constant := 16#84D6#; -- ../include/SDL/SDL_opengl.h:263 GL_TEXTURE23 : constant := 16#84D7#; -- ../include/SDL/SDL_opengl.h:264 GL_TEXTURE24 : constant := 16#84D8#; -- ../include/SDL/SDL_opengl.h:265 GL_TEXTURE25 : constant := 16#84D9#; -- ../include/SDL/SDL_opengl.h:266 GL_TEXTURE26 : constant := 16#84DA#; -- ../include/SDL/SDL_opengl.h:267 GL_TEXTURE27 : constant := 16#84DB#; -- ../include/SDL/SDL_opengl.h:268 GL_TEXTURE28 : constant := 16#84DC#; -- ../include/SDL/SDL_opengl.h:269 GL_TEXTURE29 : constant := 16#84DD#; -- ../include/SDL/SDL_opengl.h:270 GL_TEXTURE30 : constant := 16#84DE#; -- ../include/SDL/SDL_opengl.h:271 GL_TEXTURE31 : constant := 16#84DF#; -- ../include/SDL/SDL_opengl.h:272 GL_ACTIVE_TEXTURE : constant := 16#84E0#; -- ../include/SDL/SDL_opengl.h:273 GL_CLIENT_ACTIVE_TEXTURE : constant := 16#84E1#; -- ../include/SDL/SDL_opengl.h:274 GL_MAX_TEXTURE_UNITS : constant := 16#84E2#; -- ../include/SDL/SDL_opengl.h:275 GL_TRANSPOSE_MODELVIEW_MATRIX : constant := 16#84E3#; -- ../include/SDL/SDL_opengl.h:276 GL_TRANSPOSE_PROJECTION_MATRIX : constant := 16#84E4#; -- ../include/SDL/SDL_opengl.h:277 GL_TRANSPOSE_TEXTURE_MATRIX : constant := 16#84E5#; -- ../include/SDL/SDL_opengl.h:278 GL_TRANSPOSE_COLOR_MATRIX : constant := 16#84E6#; -- ../include/SDL/SDL_opengl.h:279 GL_MULTISAMPLE : constant := 16#809D#; -- ../include/SDL/SDL_opengl.h:280 GL_SAMPLE_ALPHA_TO_COVERAGE : constant := 16#809E#; -- ../include/SDL/SDL_opengl.h:281 GL_SAMPLE_ALPHA_TO_ONE : constant := 16#809F#; -- ../include/SDL/SDL_opengl.h:282 GL_SAMPLE_COVERAGE : constant := 16#80A0#; -- ../include/SDL/SDL_opengl.h:283 GL_SAMPLE_BUFFERS : constant := 16#80A8#; -- ../include/SDL/SDL_opengl.h:284 GL_SAMPLES : constant := 16#80A9#; -- ../include/SDL/SDL_opengl.h:285 GL_SAMPLE_COVERAGE_VALUE : constant := 16#80AA#; -- ../include/SDL/SDL_opengl.h:286 GL_SAMPLE_COVERAGE_INVERT : constant := 16#80AB#; -- ../include/SDL/SDL_opengl.h:287 GL_MULTISAMPLE_BIT : constant := 16#20000000#; -- ../include/SDL/SDL_opengl.h:288 GL_NORMAL_MAP : constant := 16#8511#; -- ../include/SDL/SDL_opengl.h:289 GL_REFLECTION_MAP : constant := 16#8512#; -- ../include/SDL/SDL_opengl.h:290 GL_TEXTURE_CUBE_MAP : constant := 16#8513#; -- ../include/SDL/SDL_opengl.h:291 GL_TEXTURE_BINDING_CUBE_MAP : constant := 16#8514#; -- ../include/SDL/SDL_opengl.h:292 GL_TEXTURE_CUBE_MAP_POSITIVE_X : constant := 16#8515#; -- ../include/SDL/SDL_opengl.h:293 GL_TEXTURE_CUBE_MAP_NEGATIVE_X : constant := 16#8516#; -- ../include/SDL/SDL_opengl.h:294 GL_TEXTURE_CUBE_MAP_POSITIVE_Y : constant := 16#8517#; -- ../include/SDL/SDL_opengl.h:295 GL_TEXTURE_CUBE_MAP_NEGATIVE_Y : constant := 16#8518#; -- ../include/SDL/SDL_opengl.h:296 GL_TEXTURE_CUBE_MAP_POSITIVE_Z : constant := 16#8519#; -- ../include/SDL/SDL_opengl.h:297 GL_TEXTURE_CUBE_MAP_NEGATIVE_Z : constant := 16#851A#; -- ../include/SDL/SDL_opengl.h:298 GL_PROXY_TEXTURE_CUBE_MAP : constant := 16#851B#; -- ../include/SDL/SDL_opengl.h:299 GL_MAX_CUBE_MAP_TEXTURE_SIZE : constant := 16#851C#; -- ../include/SDL/SDL_opengl.h:300 GL_COMPRESSED_ALPHA : constant := 16#84E9#; -- ../include/SDL/SDL_opengl.h:301 GL_COMPRESSED_LUMINANCE : constant := 16#84EA#; -- ../include/SDL/SDL_opengl.h:302 GL_COMPRESSED_LUMINANCE_ALPHA : constant := 16#84EB#; -- ../include/SDL/SDL_opengl.h:303 GL_COMPRESSED_INTENSITY : constant := 16#84EC#; -- ../include/SDL/SDL_opengl.h:304 GL_COMPRESSED_RGB : constant := 16#84ED#; -- ../include/SDL/SDL_opengl.h:305 GL_COMPRESSED_RGBA : constant := 16#84EE#; -- ../include/SDL/SDL_opengl.h:306 GL_TEXTURE_COMPRESSION_HINT : constant := 16#84EF#; -- ../include/SDL/SDL_opengl.h:307 GL_TEXTURE_COMPRESSED_IMAGE_SIZE : constant := 16#86A0#; -- ../include/SDL/SDL_opengl.h:308 GL_TEXTURE_COMPRESSED : constant := 16#86A1#; -- ../include/SDL/SDL_opengl.h:309 GL_NUM_COMPRESSED_TEXTURE_FORMATS : constant := 16#86A2#; -- ../include/SDL/SDL_opengl.h:310 GL_COMPRESSED_TEXTURE_FORMATS : constant := 16#86A3#; -- ../include/SDL/SDL_opengl.h:311 GL_CLAMP_TO_BORDER : constant := 16#812D#; -- ../include/SDL/SDL_opengl.h:312 GL_COMBINE : constant := 16#8570#; -- ../include/SDL/SDL_opengl.h:313 GL_COMBINE_RGB : constant := 16#8571#; -- ../include/SDL/SDL_opengl.h:314 GL_COMBINE_ALPHA : constant := 16#8572#; -- ../include/SDL/SDL_opengl.h:315 GL_SOURCE0_RGB : constant := 16#8580#; -- ../include/SDL/SDL_opengl.h:316 GL_SOURCE1_RGB : constant := 16#8581#; -- ../include/SDL/SDL_opengl.h:317 GL_SOURCE2_RGB : constant := 16#8582#; -- ../include/SDL/SDL_opengl.h:318 GL_SOURCE0_ALPHA : constant := 16#8588#; -- ../include/SDL/SDL_opengl.h:319 GL_SOURCE1_ALPHA : constant := 16#8589#; -- ../include/SDL/SDL_opengl.h:320 GL_SOURCE2_ALPHA : constant := 16#858A#; -- ../include/SDL/SDL_opengl.h:321 GL_OPERAND0_RGB : constant := 16#8590#; -- ../include/SDL/SDL_opengl.h:322 GL_OPERAND1_RGB : constant := 16#8591#; -- ../include/SDL/SDL_opengl.h:323 GL_OPERAND2_RGB : constant := 16#8592#; -- ../include/SDL/SDL_opengl.h:324 GL_OPERAND0_ALPHA : constant := 16#8598#; -- ../include/SDL/SDL_opengl.h:325 GL_OPERAND1_ALPHA : constant := 16#8599#; -- ../include/SDL/SDL_opengl.h:326 GL_OPERAND2_ALPHA : constant := 16#859A#; -- ../include/SDL/SDL_opengl.h:327 GL_RGB_SCALE : constant := 16#8573#; -- ../include/SDL/SDL_opengl.h:328 GL_ADD_SIGNED : constant := 16#8574#; -- ../include/SDL/SDL_opengl.h:329 GL_INTERPOLATE : constant := 16#8575#; -- ../include/SDL/SDL_opengl.h:330 GL_SUBTRACT : constant := 16#84E7#; -- ../include/SDL/SDL_opengl.h:331 GL_CONSTANT : constant := 16#8576#; -- ../include/SDL/SDL_opengl.h:332 GL_PRIMARY_COLOR : constant := 16#8577#; -- ../include/SDL/SDL_opengl.h:333 GL_PREVIOUS : constant := 16#8578#; -- ../include/SDL/SDL_opengl.h:334 GL_DOT3_RGB : constant := 16#86AE#; -- ../include/SDL/SDL_opengl.h:335 GL_DOT3_RGBA : constant := 16#86AF#; -- ../include/SDL/SDL_opengl.h:336 GL_BLEND_DST_RGB : constant := 16#80C8#; -- ../include/SDL/SDL_opengl.h:340 GL_BLEND_SRC_RGB : constant := 16#80C9#; -- ../include/SDL/SDL_opengl.h:341 GL_BLEND_DST_ALPHA : constant := 16#80CA#; -- ../include/SDL/SDL_opengl.h:342 GL_BLEND_SRC_ALPHA : constant := 16#80CB#; -- ../include/SDL/SDL_opengl.h:343 GL_POINT_SIZE_MIN : constant := 16#8126#; -- ../include/SDL/SDL_opengl.h:344 GL_POINT_SIZE_MAX : constant := 16#8127#; -- ../include/SDL/SDL_opengl.h:345 GL_POINT_FADE_THRESHOLD_SIZE : constant := 16#8128#; -- ../include/SDL/SDL_opengl.h:346 GL_POINT_DISTANCE_ATTENUATION : constant := 16#8129#; -- ../include/SDL/SDL_opengl.h:347 GL_GENERATE_MIPMAP : constant := 16#8191#; -- ../include/SDL/SDL_opengl.h:348 GL_GENERATE_MIPMAP_HINT : constant := 16#8192#; -- ../include/SDL/SDL_opengl.h:349 GL_DEPTH_COMPONENT16 : constant := 16#81A5#; -- ../include/SDL/SDL_opengl.h:350 GL_DEPTH_COMPONENT24 : constant := 16#81A6#; -- ../include/SDL/SDL_opengl.h:351 GL_DEPTH_COMPONENT32 : constant := 16#81A7#; -- ../include/SDL/SDL_opengl.h:352 GL_MIRRORED_REPEAT : constant := 16#8370#; -- ../include/SDL/SDL_opengl.h:353 GL_FOG_COORDINATE_SOURCE : constant := 16#8450#; -- ../include/SDL/SDL_opengl.h:354 GL_FOG_COORDINATE : constant := 16#8451#; -- ../include/SDL/SDL_opengl.h:355 GL_FRAGMENT_DEPTH : constant := 16#8452#; -- ../include/SDL/SDL_opengl.h:356 GL_CURRENT_FOG_COORDINATE : constant := 16#8453#; -- ../include/SDL/SDL_opengl.h:357 GL_FOG_COORDINATE_ARRAY_TYPE : constant := 16#8454#; -- ../include/SDL/SDL_opengl.h:358 GL_FOG_COORDINATE_ARRAY_STRIDE : constant := 16#8455#; -- ../include/SDL/SDL_opengl.h:359 GL_FOG_COORDINATE_ARRAY_POINTER : constant := 16#8456#; -- ../include/SDL/SDL_opengl.h:360 GL_FOG_COORDINATE_ARRAY : constant := 16#8457#; -- ../include/SDL/SDL_opengl.h:361 GL_COLOR_SUM : constant := 16#8458#; -- ../include/SDL/SDL_opengl.h:362 GL_CURRENT_SECONDARY_COLOR : constant := 16#8459#; -- ../include/SDL/SDL_opengl.h:363 GL_SECONDARY_COLOR_ARRAY_SIZE : constant := 16#845A#; -- ../include/SDL/SDL_opengl.h:364 GL_SECONDARY_COLOR_ARRAY_TYPE : constant := 16#845B#; -- ../include/SDL/SDL_opengl.h:365 GL_SECONDARY_COLOR_ARRAY_STRIDE : constant := 16#845C#; -- ../include/SDL/SDL_opengl.h:366 GL_SECONDARY_COLOR_ARRAY_POINTER : constant := 16#845D#; -- ../include/SDL/SDL_opengl.h:367 GL_SECONDARY_COLOR_ARRAY : constant := 16#845E#; -- ../include/SDL/SDL_opengl.h:368 GL_MAX_TEXTURE_LOD_BIAS : constant := 16#84FD#; -- ../include/SDL/SDL_opengl.h:369 GL_TEXTURE_FILTER_CONTROL : constant := 16#8500#; -- ../include/SDL/SDL_opengl.h:370 GL_TEXTURE_LOD_BIAS : constant := 16#8501#; -- ../include/SDL/SDL_opengl.h:371 GL_INCR_WRAP : constant := 16#8507#; -- ../include/SDL/SDL_opengl.h:372 GL_DECR_WRAP : constant := 16#8508#; -- ../include/SDL/SDL_opengl.h:373 GL_TEXTURE_DEPTH_SIZE : constant := 16#884A#; -- ../include/SDL/SDL_opengl.h:374 GL_DEPTH_TEXTURE_MODE : constant := 16#884B#; -- ../include/SDL/SDL_opengl.h:375 GL_TEXTURE_COMPARE_MODE : constant := 16#884C#; -- ../include/SDL/SDL_opengl.h:376 GL_TEXTURE_COMPARE_FUNC : constant := 16#884D#; -- ../include/SDL/SDL_opengl.h:377 GL_COMPARE_R_TO_TEXTURE : constant := 16#884E#; -- ../include/SDL/SDL_opengl.h:378 GL_BUFFER_SIZE : constant := 16#8764#; -- ../include/SDL/SDL_opengl.h:382 GL_BUFFER_USAGE : constant := 16#8765#; -- ../include/SDL/SDL_opengl.h:383 GL_QUERY_COUNTER_BITS : constant := 16#8864#; -- ../include/SDL/SDL_opengl.h:384 GL_CURRENT_QUERY : constant := 16#8865#; -- ../include/SDL/SDL_opengl.h:385 GL_QUERY_RESULT : constant := 16#8866#; -- ../include/SDL/SDL_opengl.h:386 GL_QUERY_RESULT_AVAILABLE : constant := 16#8867#; -- ../include/SDL/SDL_opengl.h:387 GL_ARRAY_BUFFER : constant := 16#8892#; -- ../include/SDL/SDL_opengl.h:388 GL_ELEMENT_ARRAY_BUFFER : constant := 16#8893#; -- ../include/SDL/SDL_opengl.h:389 GL_ARRAY_BUFFER_BINDING : constant := 16#8894#; -- ../include/SDL/SDL_opengl.h:390 GL_ELEMENT_ARRAY_BUFFER_BINDING : constant := 16#8895#; -- ../include/SDL/SDL_opengl.h:391 GL_VERTEX_ARRAY_BUFFER_BINDING : constant := 16#8896#; -- ../include/SDL/SDL_opengl.h:392 GL_NORMAL_ARRAY_BUFFER_BINDING : constant := 16#8897#; -- ../include/SDL/SDL_opengl.h:393 GL_COLOR_ARRAY_BUFFER_BINDING : constant := 16#8898#; -- ../include/SDL/SDL_opengl.h:394 GL_INDEX_ARRAY_BUFFER_BINDING : constant := 16#8899#; -- ../include/SDL/SDL_opengl.h:395 GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING : constant := 16#889A#; -- ../include/SDL/SDL_opengl.h:396 GL_EDGE_FLAG_ARRAY_BUFFER_BINDING : constant := 16#889B#; -- ../include/SDL/SDL_opengl.h:397 GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING : constant := 16#889C#; -- ../include/SDL/SDL_opengl.h:398 GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING : constant := 16#889D#; -- ../include/SDL/SDL_opengl.h:399 GL_WEIGHT_ARRAY_BUFFER_BINDING : constant := 16#889E#; -- ../include/SDL/SDL_opengl.h:400 GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING : constant := 16#889F#; -- ../include/SDL/SDL_opengl.h:401 GL_READ_ONLY : constant := 16#88B8#; -- ../include/SDL/SDL_opengl.h:402 GL_WRITE_ONLY : constant := 16#88B9#; -- ../include/SDL/SDL_opengl.h:403 GL_READ_WRITE : constant := 16#88BA#; -- ../include/SDL/SDL_opengl.h:404 GL_BUFFER_ACCESS : constant := 16#88BB#; -- ../include/SDL/SDL_opengl.h:405 GL_BUFFER_MAPPED : constant := 16#88BC#; -- ../include/SDL/SDL_opengl.h:406 GL_BUFFER_MAP_POINTER : constant := 16#88BD#; -- ../include/SDL/SDL_opengl.h:407 GL_STREAM_DRAW : constant := 16#88E0#; -- ../include/SDL/SDL_opengl.h:408 GL_STREAM_READ : constant := 16#88E1#; -- ../include/SDL/SDL_opengl.h:409 GL_STREAM_COPY : constant := 16#88E2#; -- ../include/SDL/SDL_opengl.h:410 GL_STATIC_DRAW : constant := 16#88E4#; -- ../include/SDL/SDL_opengl.h:411 GL_STATIC_READ : constant := 16#88E5#; -- ../include/SDL/SDL_opengl.h:412 GL_STATIC_COPY : constant := 16#88E6#; -- ../include/SDL/SDL_opengl.h:413 GL_DYNAMIC_DRAW : constant := 16#88E8#; -- ../include/SDL/SDL_opengl.h:414 GL_DYNAMIC_READ : constant := 16#88E9#; -- ../include/SDL/SDL_opengl.h:415 GL_DYNAMIC_COPY : constant := 16#88EA#; -- ../include/SDL/SDL_opengl.h:416 GL_SAMPLES_PASSED : constant := 16#8914#; -- ../include/SDL/SDL_opengl.h:417 -- unsupported macro: GL_FOG_COORD_SRC GL_FOG_COORDINATE_SOURCE -- unsupported macro: GL_FOG_COORD GL_FOG_COORDINATE -- unsupported macro: GL_CURRENT_FOG_COORD GL_CURRENT_FOG_COORDINATE -- unsupported macro: GL_FOG_COORD_ARRAY_TYPE GL_FOG_COORDINATE_ARRAY_TYPE -- unsupported macro: GL_FOG_COORD_ARRAY_STRIDE GL_FOG_COORDINATE_ARRAY_STRIDE -- unsupported macro: GL_FOG_COORD_ARRAY_POINTER GL_FOG_COORDINATE_ARRAY_POINTER -- unsupported macro: GL_FOG_COORD_ARRAY GL_FOG_COORDINATE_ARRAY -- unsupported macro: GL_FOG_COORD_ARRAY_BUFFER_BINDING GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING -- unsupported macro: GL_SRC0_RGB GL_SOURCE0_RGB -- unsupported macro: GL_SRC1_RGB GL_SOURCE1_RGB -- unsupported macro: GL_SRC2_RGB GL_SOURCE2_RGB -- unsupported macro: GL_SRC0_ALPHA GL_SOURCE0_ALPHA -- unsupported macro: GL_SRC1_ALPHA GL_SOURCE1_ALPHA -- unsupported macro: GL_SRC2_ALPHA GL_SOURCE2_ALPHA -- unsupported macro: GL_BLEND_EQUATION_RGB GL_BLEND_EQUATION GL_VERTEX_ATTRIB_ARRAY_ENABLED : constant := 16#8622#; -- ../include/SDL/SDL_opengl.h:436 GL_VERTEX_ATTRIB_ARRAY_SIZE : constant := 16#8623#; -- ../include/SDL/SDL_opengl.h:437 GL_VERTEX_ATTRIB_ARRAY_STRIDE : constant := 16#8624#; -- ../include/SDL/SDL_opengl.h:438 GL_VERTEX_ATTRIB_ARRAY_TYPE : constant := 16#8625#; -- ../include/SDL/SDL_opengl.h:439 GL_CURRENT_VERTEX_ATTRIB : constant := 16#8626#; -- ../include/SDL/SDL_opengl.h:440 GL_VERTEX_PROGRAM_POINT_SIZE : constant := 16#8642#; -- ../include/SDL/SDL_opengl.h:441 GL_VERTEX_PROGRAM_TWO_SIDE : constant := 16#8643#; -- ../include/SDL/SDL_opengl.h:442 GL_VERTEX_ATTRIB_ARRAY_POINTER : constant := 16#8645#; -- ../include/SDL/SDL_opengl.h:443 GL_STENCIL_BACK_FUNC : constant := 16#8800#; -- ../include/SDL/SDL_opengl.h:444 GL_STENCIL_BACK_FAIL : constant := 16#8801#; -- ../include/SDL/SDL_opengl.h:445 GL_STENCIL_BACK_PASS_DEPTH_FAIL : constant := 16#8802#; -- ../include/SDL/SDL_opengl.h:446 GL_STENCIL_BACK_PASS_DEPTH_PASS : constant := 16#8803#; -- ../include/SDL/SDL_opengl.h:447 GL_MAX_DRAW_BUFFERS : constant := 16#8824#; -- ../include/SDL/SDL_opengl.h:448 GL_DRAW_BUFFER0 : constant := 16#8825#; -- ../include/SDL/SDL_opengl.h:449 GL_DRAW_BUFFER1 : constant := 16#8826#; -- ../include/SDL/SDL_opengl.h:450 GL_DRAW_BUFFER2 : constant := 16#8827#; -- ../include/SDL/SDL_opengl.h:451 GL_DRAW_BUFFER3 : constant := 16#8828#; -- ../include/SDL/SDL_opengl.h:452 GL_DRAW_BUFFER4 : constant := 16#8829#; -- ../include/SDL/SDL_opengl.h:453 GL_DRAW_BUFFER5 : constant := 16#882A#; -- ../include/SDL/SDL_opengl.h:454 GL_DRAW_BUFFER6 : constant := 16#882B#; -- ../include/SDL/SDL_opengl.h:455 GL_DRAW_BUFFER7 : constant := 16#882C#; -- ../include/SDL/SDL_opengl.h:456 GL_DRAW_BUFFER8 : constant := 16#882D#; -- ../include/SDL/SDL_opengl.h:457 GL_DRAW_BUFFER9 : constant := 16#882E#; -- ../include/SDL/SDL_opengl.h:458 GL_DRAW_BUFFER10 : constant := 16#882F#; -- ../include/SDL/SDL_opengl.h:459 GL_DRAW_BUFFER11 : constant := 16#8830#; -- ../include/SDL/SDL_opengl.h:460 GL_DRAW_BUFFER12 : constant := 16#8831#; -- ../include/SDL/SDL_opengl.h:461 GL_DRAW_BUFFER13 : constant := 16#8832#; -- ../include/SDL/SDL_opengl.h:462 GL_DRAW_BUFFER14 : constant := 16#8833#; -- ../include/SDL/SDL_opengl.h:463 GL_DRAW_BUFFER15 : constant := 16#8834#; -- ../include/SDL/SDL_opengl.h:464 GL_BLEND_EQUATION_ALPHA : constant := 16#883D#; -- ../include/SDL/SDL_opengl.h:465 GL_POINT_SPRITE : constant := 16#8861#; -- ../include/SDL/SDL_opengl.h:466 GL_COORD_REPLACE : constant := 16#8862#; -- ../include/SDL/SDL_opengl.h:467 GL_MAX_VERTEX_ATTRIBS : constant := 16#8869#; -- ../include/SDL/SDL_opengl.h:468 GL_VERTEX_ATTRIB_ARRAY_NORMALIZED : constant := 16#886A#; -- ../include/SDL/SDL_opengl.h:469 GL_MAX_TEXTURE_COORDS : constant := 16#8871#; -- ../include/SDL/SDL_opengl.h:470 GL_MAX_TEXTURE_IMAGE_UNITS : constant := 16#8872#; -- ../include/SDL/SDL_opengl.h:471 GL_FRAGMENT_SHADER : constant := 16#8B30#; -- ../include/SDL/SDL_opengl.h:472 GL_VERTEX_SHADER : constant := 16#8B31#; -- ../include/SDL/SDL_opengl.h:473 GL_MAX_FRAGMENT_UNIFORM_COMPONENTS : constant := 16#8B49#; -- ../include/SDL/SDL_opengl.h:474 GL_MAX_VERTEX_UNIFORM_COMPONENTS : constant := 16#8B4A#; -- ../include/SDL/SDL_opengl.h:475 GL_MAX_VARYING_FLOATS : constant := 16#8B4B#; -- ../include/SDL/SDL_opengl.h:476 GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS : constant := 16#8B4C#; -- ../include/SDL/SDL_opengl.h:477 GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS : constant := 16#8B4D#; -- ../include/SDL/SDL_opengl.h:478 GL_SHADER_TYPE : constant := 16#8B4F#; -- ../include/SDL/SDL_opengl.h:479 GL_FLOAT_VEC2 : constant := 16#8B50#; -- ../include/SDL/SDL_opengl.h:480 GL_FLOAT_VEC3 : constant := 16#8B51#; -- ../include/SDL/SDL_opengl.h:481 GL_FLOAT_VEC4 : constant := 16#8B52#; -- ../include/SDL/SDL_opengl.h:482 GL_INT_VEC2 : constant := 16#8B53#; -- ../include/SDL/SDL_opengl.h:483 GL_INT_VEC3 : constant := 16#8B54#; -- ../include/SDL/SDL_opengl.h:484 GL_INT_VEC4 : constant := 16#8B55#; -- ../include/SDL/SDL_opengl.h:485 GL_BOOL : constant := 16#8B56#; -- ../include/SDL/SDL_opengl.h:486 GL_BOOL_VEC2 : constant := 16#8B57#; -- ../include/SDL/SDL_opengl.h:487 GL_BOOL_VEC3 : constant := 16#8B58#; -- ../include/SDL/SDL_opengl.h:488 GL_BOOL_VEC4 : constant := 16#8B59#; -- ../include/SDL/SDL_opengl.h:489 GL_FLOAT_MAT2 : constant := 16#8B5A#; -- ../include/SDL/SDL_opengl.h:490 GL_FLOAT_MAT3 : constant := 16#8B5B#; -- ../include/SDL/SDL_opengl.h:491 GL_FLOAT_MAT4 : constant := 16#8B5C#; -- ../include/SDL/SDL_opengl.h:492 GL_SAMPLER_1D : constant := 16#8B5D#; -- ../include/SDL/SDL_opengl.h:493 GL_SAMPLER_2D : constant := 16#8B5E#; -- ../include/SDL/SDL_opengl.h:494 GL_SAMPLER_3D : constant := 16#8B5F#; -- ../include/SDL/SDL_opengl.h:495 GL_SAMPLER_CUBE : constant := 16#8B60#; -- ../include/SDL/SDL_opengl.h:496 GL_SAMPLER_1D_SHADOW : constant := 16#8B61#; -- ../include/SDL/SDL_opengl.h:497 GL_SAMPLER_2D_SHADOW : constant := 16#8B62#; -- ../include/SDL/SDL_opengl.h:498 GL_DELETE_STATUS : constant := 16#8B80#; -- ../include/SDL/SDL_opengl.h:499 GL_COMPILE_STATUS : constant := 16#8B81#; -- ../include/SDL/SDL_opengl.h:500 GL_LINK_STATUS : constant := 16#8B82#; -- ../include/SDL/SDL_opengl.h:501 GL_VALIDATE_STATUS : constant := 16#8B83#; -- ../include/SDL/SDL_opengl.h:502 GL_INFO_LOG_LENGTH : constant := 16#8B84#; -- ../include/SDL/SDL_opengl.h:503 GL_ATTACHED_SHADERS : constant := 16#8B85#; -- ../include/SDL/SDL_opengl.h:504 GL_ACTIVE_UNIFORMS : constant := 16#8B86#; -- ../include/SDL/SDL_opengl.h:505 GL_ACTIVE_UNIFORM_MAX_LENGTH : constant := 16#8B87#; -- ../include/SDL/SDL_opengl.h:506 GL_SHADER_SOURCE_LENGTH : constant := 16#8B88#; -- ../include/SDL/SDL_opengl.h:507 GL_ACTIVE_ATTRIBUTES : constant := 16#8B89#; -- ../include/SDL/SDL_opengl.h:508 GL_ACTIVE_ATTRIBUTE_MAX_LENGTH : constant := 16#8B8A#; -- ../include/SDL/SDL_opengl.h:509 GL_FRAGMENT_SHADER_DERIVATIVE_HINT : constant := 16#8B8B#; -- ../include/SDL/SDL_opengl.h:510 GL_SHADING_LANGUAGE_VERSION : constant := 16#8B8C#; -- ../include/SDL/SDL_opengl.h:511 GL_CURRENT_PROGRAM : constant := 16#8B8D#; -- ../include/SDL/SDL_opengl.h:512 GL_POINT_SPRITE_COORD_ORIGIN : constant := 16#8CA0#; -- ../include/SDL/SDL_opengl.h:513 GL_LOWER_LEFT : constant := 16#8CA1#; -- ../include/SDL/SDL_opengl.h:514 GL_UPPER_LEFT : constant := 16#8CA2#; -- ../include/SDL/SDL_opengl.h:515 GL_STENCIL_BACK_REF : constant := 16#8CA3#; -- ../include/SDL/SDL_opengl.h:516 GL_STENCIL_BACK_VALUE_MASK : constant := 16#8CA4#; -- ../include/SDL/SDL_opengl.h:517 GL_STENCIL_BACK_WRITEMASK : constant := 16#8CA5#; -- ../include/SDL/SDL_opengl.h:518 GL_TEXTURE0_ARB : constant := 16#84C0#; -- ../include/SDL/SDL_opengl.h:522 GL_TEXTURE1_ARB : constant := 16#84C1#; -- ../include/SDL/SDL_opengl.h:523 GL_TEXTURE2_ARB : constant := 16#84C2#; -- ../include/SDL/SDL_opengl.h:524 GL_TEXTURE3_ARB : constant := 16#84C3#; -- ../include/SDL/SDL_opengl.h:525 GL_TEXTURE4_ARB : constant := 16#84C4#; -- ../include/SDL/SDL_opengl.h:526 GL_TEXTURE5_ARB : constant := 16#84C5#; -- ../include/SDL/SDL_opengl.h:527 GL_TEXTURE6_ARB : constant := 16#84C6#; -- ../include/SDL/SDL_opengl.h:528 GL_TEXTURE7_ARB : constant := 16#84C7#; -- ../include/SDL/SDL_opengl.h:529 GL_TEXTURE8_ARB : constant := 16#84C8#; -- ../include/SDL/SDL_opengl.h:530 GL_TEXTURE9_ARB : constant := 16#84C9#; -- ../include/SDL/SDL_opengl.h:531 GL_TEXTURE10_ARB : constant := 16#84CA#; -- ../include/SDL/SDL_opengl.h:532 GL_TEXTURE11_ARB : constant := 16#84CB#; -- ../include/SDL/SDL_opengl.h:533 GL_TEXTURE12_ARB : constant := 16#84CC#; -- ../include/SDL/SDL_opengl.h:534 GL_TEXTURE13_ARB : constant := 16#84CD#; -- ../include/SDL/SDL_opengl.h:535 GL_TEXTURE14_ARB : constant := 16#84CE#; -- ../include/SDL/SDL_opengl.h:536 GL_TEXTURE15_ARB : constant := 16#84CF#; -- ../include/SDL/SDL_opengl.h:537 GL_TEXTURE16_ARB : constant := 16#84D0#; -- ../include/SDL/SDL_opengl.h:538 GL_TEXTURE17_ARB : constant := 16#84D1#; -- ../include/SDL/SDL_opengl.h:539 GL_TEXTURE18_ARB : constant := 16#84D2#; -- ../include/SDL/SDL_opengl.h:540 GL_TEXTURE19_ARB : constant := 16#84D3#; -- ../include/SDL/SDL_opengl.h:541 GL_TEXTURE20_ARB : constant := 16#84D4#; -- ../include/SDL/SDL_opengl.h:542 GL_TEXTURE21_ARB : constant := 16#84D5#; -- ../include/SDL/SDL_opengl.h:543 GL_TEXTURE22_ARB : constant := 16#84D6#; -- ../include/SDL/SDL_opengl.h:544 GL_TEXTURE23_ARB : constant := 16#84D7#; -- ../include/SDL/SDL_opengl.h:545 GL_TEXTURE24_ARB : constant := 16#84D8#; -- ../include/SDL/SDL_opengl.h:546 GL_TEXTURE25_ARB : constant := 16#84D9#; -- ../include/SDL/SDL_opengl.h:547 GL_TEXTURE26_ARB : constant := 16#84DA#; -- ../include/SDL/SDL_opengl.h:548 GL_TEXTURE27_ARB : constant := 16#84DB#; -- ../include/SDL/SDL_opengl.h:549 GL_TEXTURE28_ARB : constant := 16#84DC#; -- ../include/SDL/SDL_opengl.h:550 GL_TEXTURE29_ARB : constant := 16#84DD#; -- ../include/SDL/SDL_opengl.h:551 GL_TEXTURE30_ARB : constant := 16#84DE#; -- ../include/SDL/SDL_opengl.h:552 GL_TEXTURE31_ARB : constant := 16#84DF#; -- ../include/SDL/SDL_opengl.h:553 GL_ACTIVE_TEXTURE_ARB : constant := 16#84E0#; -- ../include/SDL/SDL_opengl.h:554 GL_CLIENT_ACTIVE_TEXTURE_ARB : constant := 16#84E1#; -- ../include/SDL/SDL_opengl.h:555 GL_MAX_TEXTURE_UNITS_ARB : constant := 16#84E2#; -- ../include/SDL/SDL_opengl.h:556 GL_TRANSPOSE_MODELVIEW_MATRIX_ARB : constant := 16#84E3#; -- ../include/SDL/SDL_opengl.h:560 GL_TRANSPOSE_PROJECTION_MATRIX_ARB : constant := 16#84E4#; -- ../include/SDL/SDL_opengl.h:561 GL_TRANSPOSE_TEXTURE_MATRIX_ARB : constant := 16#84E5#; -- ../include/SDL/SDL_opengl.h:562 GL_TRANSPOSE_COLOR_MATRIX_ARB : constant := 16#84E6#; -- ../include/SDL/SDL_opengl.h:563 GL_MULTISAMPLE_ARB : constant := 16#809D#; -- ../include/SDL/SDL_opengl.h:567 GL_SAMPLE_ALPHA_TO_COVERAGE_ARB : constant := 16#809E#; -- ../include/SDL/SDL_opengl.h:568 GL_SAMPLE_ALPHA_TO_ONE_ARB : constant := 16#809F#; -- ../include/SDL/SDL_opengl.h:569 GL_SAMPLE_COVERAGE_ARB : constant := 16#80A0#; -- ../include/SDL/SDL_opengl.h:570 GL_SAMPLE_BUFFERS_ARB : constant := 16#80A8#; -- ../include/SDL/SDL_opengl.h:571 GL_SAMPLES_ARB : constant := 16#80A9#; -- ../include/SDL/SDL_opengl.h:572 GL_SAMPLE_COVERAGE_VALUE_ARB : constant := 16#80AA#; -- ../include/SDL/SDL_opengl.h:573 GL_SAMPLE_COVERAGE_INVERT_ARB : constant := 16#80AB#; -- ../include/SDL/SDL_opengl.h:574 GL_MULTISAMPLE_BIT_ARB : constant := 16#20000000#; -- ../include/SDL/SDL_opengl.h:575 GL_NORMAL_MAP_ARB : constant := 16#8511#; -- ../include/SDL/SDL_opengl.h:582 GL_REFLECTION_MAP_ARB : constant := 16#8512#; -- ../include/SDL/SDL_opengl.h:583 GL_TEXTURE_CUBE_MAP_ARB : constant := 16#8513#; -- ../include/SDL/SDL_opengl.h:584 GL_TEXTURE_BINDING_CUBE_MAP_ARB : constant := 16#8514#; -- ../include/SDL/SDL_opengl.h:585 GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB : constant := 16#8515#; -- ../include/SDL/SDL_opengl.h:586 GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB : constant := 16#8516#; -- ../include/SDL/SDL_opengl.h:587 GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB : constant := 16#8517#; -- ../include/SDL/SDL_opengl.h:588 GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB : constant := 16#8518#; -- ../include/SDL/SDL_opengl.h:589 GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB : constant := 16#8519#; -- ../include/SDL/SDL_opengl.h:590 GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB : constant := 16#851A#; -- ../include/SDL/SDL_opengl.h:591 GL_PROXY_TEXTURE_CUBE_MAP_ARB : constant := 16#851B#; -- ../include/SDL/SDL_opengl.h:592 GL_MAX_CUBE_MAP_TEXTURE_SIZE_ARB : constant := 16#851C#; -- ../include/SDL/SDL_opengl.h:593 GL_COMPRESSED_ALPHA_ARB : constant := 16#84E9#; -- ../include/SDL/SDL_opengl.h:597 GL_COMPRESSED_LUMINANCE_ARB : constant := 16#84EA#; -- ../include/SDL/SDL_opengl.h:598 GL_COMPRESSED_LUMINANCE_ALPHA_ARB : constant := 16#84EB#; -- ../include/SDL/SDL_opengl.h:599 GL_COMPRESSED_INTENSITY_ARB : constant := 16#84EC#; -- ../include/SDL/SDL_opengl.h:600 GL_COMPRESSED_RGB_ARB : constant := 16#84ED#; -- ../include/SDL/SDL_opengl.h:601 GL_COMPRESSED_RGBA_ARB : constant := 16#84EE#; -- ../include/SDL/SDL_opengl.h:602 GL_TEXTURE_COMPRESSION_HINT_ARB : constant := 16#84EF#; -- ../include/SDL/SDL_opengl.h:603 GL_TEXTURE_COMPRESSED_IMAGE_SIZE_ARB : constant := 16#86A0#; -- ../include/SDL/SDL_opengl.h:604 GL_TEXTURE_COMPRESSED_ARB : constant := 16#86A1#; -- ../include/SDL/SDL_opengl.h:605 GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB : constant := 16#86A2#; -- ../include/SDL/SDL_opengl.h:606 GL_COMPRESSED_TEXTURE_FORMATS_ARB : constant := 16#86A3#; -- ../include/SDL/SDL_opengl.h:607 GL_CLAMP_TO_BORDER_ARB : constant := 16#812D#; -- ../include/SDL/SDL_opengl.h:611 GL_POINT_SIZE_MIN_ARB : constant := 16#8126#; -- ../include/SDL/SDL_opengl.h:615 GL_POINT_SIZE_MAX_ARB : constant := 16#8127#; -- ../include/SDL/SDL_opengl.h:616 GL_POINT_FADE_THRESHOLD_SIZE_ARB : constant := 16#8128#; -- ../include/SDL/SDL_opengl.h:617 GL_POINT_DISTANCE_ATTENUATION_ARB : constant := 16#8129#; -- ../include/SDL/SDL_opengl.h:618 GL_MAX_VERTEX_UNITS_ARB : constant := 16#86A4#; -- ../include/SDL/SDL_opengl.h:622 GL_ACTIVE_VERTEX_UNITS_ARB : constant := 16#86A5#; -- ../include/SDL/SDL_opengl.h:623 GL_WEIGHT_SUM_UNITY_ARB : constant := 16#86A6#; -- ../include/SDL/SDL_opengl.h:624 GL_VERTEX_BLEND_ARB : constant := 16#86A7#; -- ../include/SDL/SDL_opengl.h:625 GL_CURRENT_WEIGHT_ARB : constant := 16#86A8#; -- ../include/SDL/SDL_opengl.h:626 GL_WEIGHT_ARRAY_TYPE_ARB : constant := 16#86A9#; -- ../include/SDL/SDL_opengl.h:627 GL_WEIGHT_ARRAY_STRIDE_ARB : constant := 16#86AA#; -- ../include/SDL/SDL_opengl.h:628 GL_WEIGHT_ARRAY_SIZE_ARB : constant := 16#86AB#; -- ../include/SDL/SDL_opengl.h:629 GL_WEIGHT_ARRAY_POINTER_ARB : constant := 16#86AC#; -- ../include/SDL/SDL_opengl.h:630 GL_WEIGHT_ARRAY_ARB : constant := 16#86AD#; -- ../include/SDL/SDL_opengl.h:631 GL_MODELVIEW0_ARB : constant := 16#1700#; -- ../include/SDL/SDL_opengl.h:632 GL_MODELVIEW1_ARB : constant := 16#850A#; -- ../include/SDL/SDL_opengl.h:633 GL_MODELVIEW2_ARB : constant := 16#8722#; -- ../include/SDL/SDL_opengl.h:634 GL_MODELVIEW3_ARB : constant := 16#8723#; -- ../include/SDL/SDL_opengl.h:635 GL_MODELVIEW4_ARB : constant := 16#8724#; -- ../include/SDL/SDL_opengl.h:636 GL_MODELVIEW5_ARB : constant := 16#8725#; -- ../include/SDL/SDL_opengl.h:637 GL_MODELVIEW6_ARB : constant := 16#8726#; -- ../include/SDL/SDL_opengl.h:638 GL_MODELVIEW7_ARB : constant := 16#8727#; -- ../include/SDL/SDL_opengl.h:639 GL_MODELVIEW8_ARB : constant := 16#8728#; -- ../include/SDL/SDL_opengl.h:640 GL_MODELVIEW9_ARB : constant := 16#8729#; -- ../include/SDL/SDL_opengl.h:641 GL_MODELVIEW10_ARB : constant := 16#872A#; -- ../include/SDL/SDL_opengl.h:642 GL_MODELVIEW11_ARB : constant := 16#872B#; -- ../include/SDL/SDL_opengl.h:643 GL_MODELVIEW12_ARB : constant := 16#872C#; -- ../include/SDL/SDL_opengl.h:644 GL_MODELVIEW13_ARB : constant := 16#872D#; -- ../include/SDL/SDL_opengl.h:645 GL_MODELVIEW14_ARB : constant := 16#872E#; -- ../include/SDL/SDL_opengl.h:646 GL_MODELVIEW15_ARB : constant := 16#872F#; -- ../include/SDL/SDL_opengl.h:647 GL_MODELVIEW16_ARB : constant := 16#8730#; -- ../include/SDL/SDL_opengl.h:648 GL_MODELVIEW17_ARB : constant := 16#8731#; -- ../include/SDL/SDL_opengl.h:649 GL_MODELVIEW18_ARB : constant := 16#8732#; -- ../include/SDL/SDL_opengl.h:650 GL_MODELVIEW19_ARB : constant := 16#8733#; -- ../include/SDL/SDL_opengl.h:651 GL_MODELVIEW20_ARB : constant := 16#8734#; -- ../include/SDL/SDL_opengl.h:652 GL_MODELVIEW21_ARB : constant := 16#8735#; -- ../include/SDL/SDL_opengl.h:653 GL_MODELVIEW22_ARB : constant := 16#8736#; -- ../include/SDL/SDL_opengl.h:654 GL_MODELVIEW23_ARB : constant := 16#8737#; -- ../include/SDL/SDL_opengl.h:655 GL_MODELVIEW24_ARB : constant := 16#8738#; -- ../include/SDL/SDL_opengl.h:656 GL_MODELVIEW25_ARB : constant := 16#8739#; -- ../include/SDL/SDL_opengl.h:657 GL_MODELVIEW26_ARB : constant := 16#873A#; -- ../include/SDL/SDL_opengl.h:658 GL_MODELVIEW27_ARB : constant := 16#873B#; -- ../include/SDL/SDL_opengl.h:659 GL_MODELVIEW28_ARB : constant := 16#873C#; -- ../include/SDL/SDL_opengl.h:660 GL_MODELVIEW29_ARB : constant := 16#873D#; -- ../include/SDL/SDL_opengl.h:661 GL_MODELVIEW30_ARB : constant := 16#873E#; -- ../include/SDL/SDL_opengl.h:662 GL_MODELVIEW31_ARB : constant := 16#873F#; -- ../include/SDL/SDL_opengl.h:663 GL_MATRIX_PALETTE_ARB : constant := 16#8840#; -- ../include/SDL/SDL_opengl.h:667 GL_MAX_MATRIX_PALETTE_STACK_DEPTH_ARB : constant := 16#8841#; -- ../include/SDL/SDL_opengl.h:668 GL_MAX_PALETTE_MATRICES_ARB : constant := 16#8842#; -- ../include/SDL/SDL_opengl.h:669 GL_CURRENT_PALETTE_MATRIX_ARB : constant := 16#8843#; -- ../include/SDL/SDL_opengl.h:670 GL_MATRIX_INDEX_ARRAY_ARB : constant := 16#8844#; -- ../include/SDL/SDL_opengl.h:671 GL_CURRENT_MATRIX_INDEX_ARB : constant := 16#8845#; -- ../include/SDL/SDL_opengl.h:672 GL_MATRIX_INDEX_ARRAY_SIZE_ARB : constant := 16#8846#; -- ../include/SDL/SDL_opengl.h:673 GL_MATRIX_INDEX_ARRAY_TYPE_ARB : constant := 16#8847#; -- ../include/SDL/SDL_opengl.h:674 GL_MATRIX_INDEX_ARRAY_STRIDE_ARB : constant := 16#8848#; -- ../include/SDL/SDL_opengl.h:675 GL_MATRIX_INDEX_ARRAY_POINTER_ARB : constant := 16#8849#; -- ../include/SDL/SDL_opengl.h:676 GL_COMBINE_ARB : constant := 16#8570#; -- ../include/SDL/SDL_opengl.h:680 GL_COMBINE_RGB_ARB : constant := 16#8571#; -- ../include/SDL/SDL_opengl.h:681 GL_COMBINE_ALPHA_ARB : constant := 16#8572#; -- ../include/SDL/SDL_opengl.h:682 GL_SOURCE0_RGB_ARB : constant := 16#8580#; -- ../include/SDL/SDL_opengl.h:683 GL_SOURCE1_RGB_ARB : constant := 16#8581#; -- ../include/SDL/SDL_opengl.h:684 GL_SOURCE2_RGB_ARB : constant := 16#8582#; -- ../include/SDL/SDL_opengl.h:685 GL_SOURCE0_ALPHA_ARB : constant := 16#8588#; -- ../include/SDL/SDL_opengl.h:686 GL_SOURCE1_ALPHA_ARB : constant := 16#8589#; -- ../include/SDL/SDL_opengl.h:687 GL_SOURCE2_ALPHA_ARB : constant := 16#858A#; -- ../include/SDL/SDL_opengl.h:688 GL_OPERAND0_RGB_ARB : constant := 16#8590#; -- ../include/SDL/SDL_opengl.h:689 GL_OPERAND1_RGB_ARB : constant := 16#8591#; -- ../include/SDL/SDL_opengl.h:690 GL_OPERAND2_RGB_ARB : constant := 16#8592#; -- ../include/SDL/SDL_opengl.h:691 GL_OPERAND0_ALPHA_ARB : constant := 16#8598#; -- ../include/SDL/SDL_opengl.h:692 GL_OPERAND1_ALPHA_ARB : constant := 16#8599#; -- ../include/SDL/SDL_opengl.h:693 GL_OPERAND2_ALPHA_ARB : constant := 16#859A#; -- ../include/SDL/SDL_opengl.h:694 GL_RGB_SCALE_ARB : constant := 16#8573#; -- ../include/SDL/SDL_opengl.h:695 GL_ADD_SIGNED_ARB : constant := 16#8574#; -- ../include/SDL/SDL_opengl.h:696 GL_INTERPOLATE_ARB : constant := 16#8575#; -- ../include/SDL/SDL_opengl.h:697 GL_SUBTRACT_ARB : constant := 16#84E7#; -- ../include/SDL/SDL_opengl.h:698 GL_CONSTANT_ARB : constant := 16#8576#; -- ../include/SDL/SDL_opengl.h:699 GL_PRIMARY_COLOR_ARB : constant := 16#8577#; -- ../include/SDL/SDL_opengl.h:700 GL_PREVIOUS_ARB : constant := 16#8578#; -- ../include/SDL/SDL_opengl.h:701 GL_DOT3_RGB_ARB : constant := 16#86AE#; -- ../include/SDL/SDL_opengl.h:708 GL_DOT3_RGBA_ARB : constant := 16#86AF#; -- ../include/SDL/SDL_opengl.h:709 GL_MIRRORED_REPEAT_ARB : constant := 16#8370#; -- ../include/SDL/SDL_opengl.h:713 GL_DEPTH_COMPONENT16_ARB : constant := 16#81A5#; -- ../include/SDL/SDL_opengl.h:717 GL_DEPTH_COMPONENT24_ARB : constant := 16#81A6#; -- ../include/SDL/SDL_opengl.h:718 GL_DEPTH_COMPONENT32_ARB : constant := 16#81A7#; -- ../include/SDL/SDL_opengl.h:719 GL_TEXTURE_DEPTH_SIZE_ARB : constant := 16#884A#; -- ../include/SDL/SDL_opengl.h:720 GL_DEPTH_TEXTURE_MODE_ARB : constant := 16#884B#; -- ../include/SDL/SDL_opengl.h:721 GL_TEXTURE_COMPARE_MODE_ARB : constant := 16#884C#; -- ../include/SDL/SDL_opengl.h:725 GL_TEXTURE_COMPARE_FUNC_ARB : constant := 16#884D#; -- ../include/SDL/SDL_opengl.h:726 GL_COMPARE_R_TO_TEXTURE_ARB : constant := 16#884E#; -- ../include/SDL/SDL_opengl.h:727 GL_TEXTURE_COMPARE_FAIL_VALUE_ARB : constant := 16#80BF#; -- ../include/SDL/SDL_opengl.h:731 GL_COLOR_SUM_ARB : constant := 16#8458#; -- ../include/SDL/SDL_opengl.h:738 GL_VERTEX_PROGRAM_ARB : constant := 16#8620#; -- ../include/SDL/SDL_opengl.h:739 GL_VERTEX_ATTRIB_ARRAY_ENABLED_ARB : constant := 16#8622#; -- ../include/SDL/SDL_opengl.h:740 GL_VERTEX_ATTRIB_ARRAY_SIZE_ARB : constant := 16#8623#; -- ../include/SDL/SDL_opengl.h:741 GL_VERTEX_ATTRIB_ARRAY_STRIDE_ARB : constant := 16#8624#; -- ../include/SDL/SDL_opengl.h:742 GL_VERTEX_ATTRIB_ARRAY_TYPE_ARB : constant := 16#8625#; -- ../include/SDL/SDL_opengl.h:743 GL_CURRENT_VERTEX_ATTRIB_ARB : constant := 16#8626#; -- ../include/SDL/SDL_opengl.h:744 GL_PROGRAM_LENGTH_ARB : constant := 16#8627#; -- ../include/SDL/SDL_opengl.h:745 GL_PROGRAM_STRING_ARB : constant := 16#8628#; -- ../include/SDL/SDL_opengl.h:746 GL_MAX_PROGRAM_MATRIX_STACK_DEPTH_ARB : constant := 16#862E#; -- ../include/SDL/SDL_opengl.h:747 GL_MAX_PROGRAM_MATRICES_ARB : constant := 16#862F#; -- ../include/SDL/SDL_opengl.h:748 GL_CURRENT_MATRIX_STACK_DEPTH_ARB : constant := 16#8640#; -- ../include/SDL/SDL_opengl.h:749 GL_CURRENT_MATRIX_ARB : constant := 16#8641#; -- ../include/SDL/SDL_opengl.h:750 GL_VERTEX_PROGRAM_POINT_SIZE_ARB : constant := 16#8642#; -- ../include/SDL/SDL_opengl.h:751 GL_VERTEX_PROGRAM_TWO_SIDE_ARB : constant := 16#8643#; -- ../include/SDL/SDL_opengl.h:752 GL_VERTEX_ATTRIB_ARRAY_POINTER_ARB : constant := 16#8645#; -- ../include/SDL/SDL_opengl.h:753 GL_PROGRAM_ERROR_POSITION_ARB : constant := 16#864B#; -- ../include/SDL/SDL_opengl.h:754 GL_PROGRAM_BINDING_ARB : constant := 16#8677#; -- ../include/SDL/SDL_opengl.h:755 GL_MAX_VERTEX_ATTRIBS_ARB : constant := 16#8869#; -- ../include/SDL/SDL_opengl.h:756 GL_VERTEX_ATTRIB_ARRAY_NORMALIZED_ARB : constant := 16#886A#; -- ../include/SDL/SDL_opengl.h:757 GL_PROGRAM_ERROR_STRING_ARB : constant := 16#8874#; -- ../include/SDL/SDL_opengl.h:758 GL_PROGRAM_FORMAT_ASCII_ARB : constant := 16#8875#; -- ../include/SDL/SDL_opengl.h:759 GL_PROGRAM_FORMAT_ARB : constant := 16#8876#; -- ../include/SDL/SDL_opengl.h:760 GL_PROGRAM_INSTRUCTIONS_ARB : constant := 16#88A0#; -- ../include/SDL/SDL_opengl.h:761 GL_MAX_PROGRAM_INSTRUCTIONS_ARB : constant := 16#88A1#; -- ../include/SDL/SDL_opengl.h:762 GL_PROGRAM_NATIVE_INSTRUCTIONS_ARB : constant := 16#88A2#; -- ../include/SDL/SDL_opengl.h:763 GL_MAX_PROGRAM_NATIVE_INSTRUCTIONS_ARB : constant := 16#88A3#; -- ../include/SDL/SDL_opengl.h:764 GL_PROGRAM_TEMPORARIES_ARB : constant := 16#88A4#; -- ../include/SDL/SDL_opengl.h:765 GL_MAX_PROGRAM_TEMPORARIES_ARB : constant := 16#88A5#; -- ../include/SDL/SDL_opengl.h:766 GL_PROGRAM_NATIVE_TEMPORARIES_ARB : constant := 16#88A6#; -- ../include/SDL/SDL_opengl.h:767 GL_MAX_PROGRAM_NATIVE_TEMPORARIES_ARB : constant := 16#88A7#; -- ../include/SDL/SDL_opengl.h:768 GL_PROGRAM_PARAMETERS_ARB : constant := 16#88A8#; -- ../include/SDL/SDL_opengl.h:769 GL_MAX_PROGRAM_PARAMETERS_ARB : constant := 16#88A9#; -- ../include/SDL/SDL_opengl.h:770 GL_PROGRAM_NATIVE_PARAMETERS_ARB : constant := 16#88AA#; -- ../include/SDL/SDL_opengl.h:771 GL_MAX_PROGRAM_NATIVE_PARAMETERS_ARB : constant := 16#88AB#; -- ../include/SDL/SDL_opengl.h:772 GL_PROGRAM_ATTRIBS_ARB : constant := 16#88AC#; -- ../include/SDL/SDL_opengl.h:773 GL_MAX_PROGRAM_ATTRIBS_ARB : constant := 16#88AD#; -- ../include/SDL/SDL_opengl.h:774 GL_PROGRAM_NATIVE_ATTRIBS_ARB : constant := 16#88AE#; -- ../include/SDL/SDL_opengl.h:775 GL_MAX_PROGRAM_NATIVE_ATTRIBS_ARB : constant := 16#88AF#; -- ../include/SDL/SDL_opengl.h:776 GL_PROGRAM_ADDRESS_REGISTERS_ARB : constant := 16#88B0#; -- ../include/SDL/SDL_opengl.h:777 GL_MAX_PROGRAM_ADDRESS_REGISTERS_ARB : constant := 16#88B1#; -- ../include/SDL/SDL_opengl.h:778 GL_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB : constant := 16#88B2#; -- ../include/SDL/SDL_opengl.h:779 GL_MAX_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB : constant := 16#88B3#; -- ../include/SDL/SDL_opengl.h:780 GL_MAX_PROGRAM_LOCAL_PARAMETERS_ARB : constant := 16#88B4#; -- ../include/SDL/SDL_opengl.h:781 GL_MAX_PROGRAM_ENV_PARAMETERS_ARB : constant := 16#88B5#; -- ../include/SDL/SDL_opengl.h:782 GL_PROGRAM_UNDER_NATIVE_LIMITS_ARB : constant := 16#88B6#; -- ../include/SDL/SDL_opengl.h:783 GL_TRANSPOSE_CURRENT_MATRIX_ARB : constant := 16#88B7#; -- ../include/SDL/SDL_opengl.h:784 GL_MATRIX0_ARB : constant := 16#88C0#; -- ../include/SDL/SDL_opengl.h:785 GL_MATRIX1_ARB : constant := 16#88C1#; -- ../include/SDL/SDL_opengl.h:786 GL_MATRIX2_ARB : constant := 16#88C2#; -- ../include/SDL/SDL_opengl.h:787 GL_MATRIX3_ARB : constant := 16#88C3#; -- ../include/SDL/SDL_opengl.h:788 GL_MATRIX4_ARB : constant := 16#88C4#; -- ../include/SDL/SDL_opengl.h:789 GL_MATRIX5_ARB : constant := 16#88C5#; -- ../include/SDL/SDL_opengl.h:790 GL_MATRIX6_ARB : constant := 16#88C6#; -- ../include/SDL/SDL_opengl.h:791 GL_MATRIX7_ARB : constant := 16#88C7#; -- ../include/SDL/SDL_opengl.h:792 GL_MATRIX8_ARB : constant := 16#88C8#; -- ../include/SDL/SDL_opengl.h:793 GL_MATRIX9_ARB : constant := 16#88C9#; -- ../include/SDL/SDL_opengl.h:794 GL_MATRIX10_ARB : constant := 16#88CA#; -- ../include/SDL/SDL_opengl.h:795 GL_MATRIX11_ARB : constant := 16#88CB#; -- ../include/SDL/SDL_opengl.h:796 GL_MATRIX12_ARB : constant := 16#88CC#; -- ../include/SDL/SDL_opengl.h:797 GL_MATRIX13_ARB : constant := 16#88CD#; -- ../include/SDL/SDL_opengl.h:798 GL_MATRIX14_ARB : constant := 16#88CE#; -- ../include/SDL/SDL_opengl.h:799 GL_MATRIX15_ARB : constant := 16#88CF#; -- ../include/SDL/SDL_opengl.h:800 GL_MATRIX16_ARB : constant := 16#88D0#; -- ../include/SDL/SDL_opengl.h:801 GL_MATRIX17_ARB : constant := 16#88D1#; -- ../include/SDL/SDL_opengl.h:802 GL_MATRIX18_ARB : constant := 16#88D2#; -- ../include/SDL/SDL_opengl.h:803 GL_MATRIX19_ARB : constant := 16#88D3#; -- ../include/SDL/SDL_opengl.h:804 GL_MATRIX20_ARB : constant := 16#88D4#; -- ../include/SDL/SDL_opengl.h:805 GL_MATRIX21_ARB : constant := 16#88D5#; -- ../include/SDL/SDL_opengl.h:806 GL_MATRIX22_ARB : constant := 16#88D6#; -- ../include/SDL/SDL_opengl.h:807 GL_MATRIX23_ARB : constant := 16#88D7#; -- ../include/SDL/SDL_opengl.h:808 GL_MATRIX24_ARB : constant := 16#88D8#; -- ../include/SDL/SDL_opengl.h:809 GL_MATRIX25_ARB : constant := 16#88D9#; -- ../include/SDL/SDL_opengl.h:810 GL_MATRIX26_ARB : constant := 16#88DA#; -- ../include/SDL/SDL_opengl.h:811 GL_MATRIX27_ARB : constant := 16#88DB#; -- ../include/SDL/SDL_opengl.h:812 GL_MATRIX28_ARB : constant := 16#88DC#; -- ../include/SDL/SDL_opengl.h:813 GL_MATRIX29_ARB : constant := 16#88DD#; -- ../include/SDL/SDL_opengl.h:814 GL_MATRIX30_ARB : constant := 16#88DE#; -- ../include/SDL/SDL_opengl.h:815 GL_MATRIX31_ARB : constant := 16#88DF#; -- ../include/SDL/SDL_opengl.h:816 GL_FRAGMENT_PROGRAM_ARB : constant := 16#8804#; -- ../include/SDL/SDL_opengl.h:820 GL_PROGRAM_ALU_INSTRUCTIONS_ARB : constant := 16#8805#; -- ../include/SDL/SDL_opengl.h:821 GL_PROGRAM_TEX_INSTRUCTIONS_ARB : constant := 16#8806#; -- ../include/SDL/SDL_opengl.h:822 GL_PROGRAM_TEX_INDIRECTIONS_ARB : constant := 16#8807#; -- ../include/SDL/SDL_opengl.h:823 GL_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB : constant := 16#8808#; -- ../include/SDL/SDL_opengl.h:824 GL_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB : constant := 16#8809#; -- ../include/SDL/SDL_opengl.h:825 GL_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB : constant := 16#880A#; -- ../include/SDL/SDL_opengl.h:826 GL_MAX_PROGRAM_ALU_INSTRUCTIONS_ARB : constant := 16#880B#; -- ../include/SDL/SDL_opengl.h:827 GL_MAX_PROGRAM_TEX_INSTRUCTIONS_ARB : constant := 16#880C#; -- ../include/SDL/SDL_opengl.h:828 GL_MAX_PROGRAM_TEX_INDIRECTIONS_ARB : constant := 16#880D#; -- ../include/SDL/SDL_opengl.h:829 GL_MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB : constant := 16#880E#; -- ../include/SDL/SDL_opengl.h:830 GL_MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB : constant := 16#880F#; -- ../include/SDL/SDL_opengl.h:831 GL_MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB : constant := 16#8810#; -- ../include/SDL/SDL_opengl.h:832 GL_MAX_TEXTURE_COORDS_ARB : constant := 16#8871#; -- ../include/SDL/SDL_opengl.h:833 GL_MAX_TEXTURE_IMAGE_UNITS_ARB : constant := 16#8872#; -- ../include/SDL/SDL_opengl.h:834 GL_BUFFER_SIZE_ARB : constant := 16#8764#; -- ../include/SDL/SDL_opengl.h:838 GL_BUFFER_USAGE_ARB : constant := 16#8765#; -- ../include/SDL/SDL_opengl.h:839 GL_ARRAY_BUFFER_ARB : constant := 16#8892#; -- ../include/SDL/SDL_opengl.h:840 GL_ELEMENT_ARRAY_BUFFER_ARB : constant := 16#8893#; -- ../include/SDL/SDL_opengl.h:841 GL_ARRAY_BUFFER_BINDING_ARB : constant := 16#8894#; -- ../include/SDL/SDL_opengl.h:842 GL_ELEMENT_ARRAY_BUFFER_BINDING_ARB : constant := 16#8895#; -- ../include/SDL/SDL_opengl.h:843 GL_VERTEX_ARRAY_BUFFER_BINDING_ARB : constant := 16#8896#; -- ../include/SDL/SDL_opengl.h:844 GL_NORMAL_ARRAY_BUFFER_BINDING_ARB : constant := 16#8897#; -- ../include/SDL/SDL_opengl.h:845 GL_COLOR_ARRAY_BUFFER_BINDING_ARB : constant := 16#8898#; -- ../include/SDL/SDL_opengl.h:846 GL_INDEX_ARRAY_BUFFER_BINDING_ARB : constant := 16#8899#; -- ../include/SDL/SDL_opengl.h:847 GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING_ARB : constant := 16#889A#; -- ../include/SDL/SDL_opengl.h:848 GL_EDGE_FLAG_ARRAY_BUFFER_BINDING_ARB : constant := 16#889B#; -- ../include/SDL/SDL_opengl.h:849 GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING_ARB : constant := 16#889C#; -- ../include/SDL/SDL_opengl.h:850 GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING_ARB : constant := 16#889D#; -- ../include/SDL/SDL_opengl.h:851 GL_WEIGHT_ARRAY_BUFFER_BINDING_ARB : constant := 16#889E#; -- ../include/SDL/SDL_opengl.h:852 GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING_ARB : constant := 16#889F#; -- ../include/SDL/SDL_opengl.h:853 GL_READ_ONLY_ARB : constant := 16#88B8#; -- ../include/SDL/SDL_opengl.h:854 GL_WRITE_ONLY_ARB : constant := 16#88B9#; -- ../include/SDL/SDL_opengl.h:855 GL_READ_WRITE_ARB : constant := 16#88BA#; -- ../include/SDL/SDL_opengl.h:856 GL_BUFFER_ACCESS_ARB : constant := 16#88BB#; -- ../include/SDL/SDL_opengl.h:857 GL_BUFFER_MAPPED_ARB : constant := 16#88BC#; -- ../include/SDL/SDL_opengl.h:858 GL_BUFFER_MAP_POINTER_ARB : constant := 16#88BD#; -- ../include/SDL/SDL_opengl.h:859 GL_STREAM_DRAW_ARB : constant := 16#88E0#; -- ../include/SDL/SDL_opengl.h:860 GL_STREAM_READ_ARB : constant := 16#88E1#; -- ../include/SDL/SDL_opengl.h:861 GL_STREAM_COPY_ARB : constant := 16#88E2#; -- ../include/SDL/SDL_opengl.h:862 GL_STATIC_DRAW_ARB : constant := 16#88E4#; -- ../include/SDL/SDL_opengl.h:863 GL_STATIC_READ_ARB : constant := 16#88E5#; -- ../include/SDL/SDL_opengl.h:864 GL_STATIC_COPY_ARB : constant := 16#88E6#; -- ../include/SDL/SDL_opengl.h:865 GL_DYNAMIC_DRAW_ARB : constant := 16#88E8#; -- ../include/SDL/SDL_opengl.h:866 GL_DYNAMIC_READ_ARB : constant := 16#88E9#; -- ../include/SDL/SDL_opengl.h:867 GL_DYNAMIC_COPY_ARB : constant := 16#88EA#; -- ../include/SDL/SDL_opengl.h:868 GL_QUERY_COUNTER_BITS_ARB : constant := 16#8864#; -- ../include/SDL/SDL_opengl.h:872 GL_CURRENT_QUERY_ARB : constant := 16#8865#; -- ../include/SDL/SDL_opengl.h:873 GL_QUERY_RESULT_ARB : constant := 16#8866#; -- ../include/SDL/SDL_opengl.h:874 GL_QUERY_RESULT_AVAILABLE_ARB : constant := 16#8867#; -- ../include/SDL/SDL_opengl.h:875 GL_SAMPLES_PASSED_ARB : constant := 16#8914#; -- ../include/SDL/SDL_opengl.h:876 GL_PROGRAM_OBJECT_ARB : constant := 16#8B40#; -- ../include/SDL/SDL_opengl.h:880 GL_SHADER_OBJECT_ARB : constant := 16#8B48#; -- ../include/SDL/SDL_opengl.h:881 GL_OBJECT_TYPE_ARB : constant := 16#8B4E#; -- ../include/SDL/SDL_opengl.h:882 GL_OBJECT_SUBTYPE_ARB : constant := 16#8B4F#; -- ../include/SDL/SDL_opengl.h:883 GL_FLOAT_VEC2_ARB : constant := 16#8B50#; -- ../include/SDL/SDL_opengl.h:884 GL_FLOAT_VEC3_ARB : constant := 16#8B51#; -- ../include/SDL/SDL_opengl.h:885 GL_FLOAT_VEC4_ARB : constant := 16#8B52#; -- ../include/SDL/SDL_opengl.h:886 GL_INT_VEC2_ARB : constant := 16#8B53#; -- ../include/SDL/SDL_opengl.h:887 GL_INT_VEC3_ARB : constant := 16#8B54#; -- ../include/SDL/SDL_opengl.h:888 GL_INT_VEC4_ARB : constant := 16#8B55#; -- ../include/SDL/SDL_opengl.h:889 GL_BOOL_ARB : constant := 16#8B56#; -- ../include/SDL/SDL_opengl.h:890 GL_BOOL_VEC2_ARB : constant := 16#8B57#; -- ../include/SDL/SDL_opengl.h:891 GL_BOOL_VEC3_ARB : constant := 16#8B58#; -- ../include/SDL/SDL_opengl.h:892 GL_BOOL_VEC4_ARB : constant := 16#8B59#; -- ../include/SDL/SDL_opengl.h:893 GL_FLOAT_MAT2_ARB : constant := 16#8B5A#; -- ../include/SDL/SDL_opengl.h:894 GL_FLOAT_MAT3_ARB : constant := 16#8B5B#; -- ../include/SDL/SDL_opengl.h:895 GL_FLOAT_MAT4_ARB : constant := 16#8B5C#; -- ../include/SDL/SDL_opengl.h:896 GL_SAMPLER_1D_ARB : constant := 16#8B5D#; -- ../include/SDL/SDL_opengl.h:897 GL_SAMPLER_2D_ARB : constant := 16#8B5E#; -- ../include/SDL/SDL_opengl.h:898 GL_SAMPLER_3D_ARB : constant := 16#8B5F#; -- ../include/SDL/SDL_opengl.h:899 GL_SAMPLER_CUBE_ARB : constant := 16#8B60#; -- ../include/SDL/SDL_opengl.h:900 GL_SAMPLER_1D_SHADOW_ARB : constant := 16#8B61#; -- ../include/SDL/SDL_opengl.h:901 GL_SAMPLER_2D_SHADOW_ARB : constant := 16#8B62#; -- ../include/SDL/SDL_opengl.h:902 GL_SAMPLER_2D_RECT_ARB : constant := 16#8B63#; -- ../include/SDL/SDL_opengl.h:903 GL_SAMPLER_2D_RECT_SHADOW_ARB : constant := 16#8B64#; -- ../include/SDL/SDL_opengl.h:904 GL_OBJECT_DELETE_STATUS_ARB : constant := 16#8B80#; -- ../include/SDL/SDL_opengl.h:905 GL_OBJECT_COMPILE_STATUS_ARB : constant := 16#8B81#; -- ../include/SDL/SDL_opengl.h:906 GL_OBJECT_LINK_STATUS_ARB : constant := 16#8B82#; -- ../include/SDL/SDL_opengl.h:907 GL_OBJECT_VALIDATE_STATUS_ARB : constant := 16#8B83#; -- ../include/SDL/SDL_opengl.h:908 GL_OBJECT_INFO_LOG_LENGTH_ARB : constant := 16#8B84#; -- ../include/SDL/SDL_opengl.h:909 GL_OBJECT_ATTACHED_OBJECTS_ARB : constant := 16#8B85#; -- ../include/SDL/SDL_opengl.h:910 GL_OBJECT_ACTIVE_UNIFORMS_ARB : constant := 16#8B86#; -- ../include/SDL/SDL_opengl.h:911 GL_OBJECT_ACTIVE_UNIFORM_MAX_LENGTH_ARB : constant := 16#8B87#; -- ../include/SDL/SDL_opengl.h:912 GL_OBJECT_SHADER_SOURCE_LENGTH_ARB : constant := 16#8B88#; -- ../include/SDL/SDL_opengl.h:913 GL_VERTEX_SHADER_ARB : constant := 16#8B31#; -- ../include/SDL/SDL_opengl.h:917 GL_MAX_VERTEX_UNIFORM_COMPONENTS_ARB : constant := 16#8B4A#; -- ../include/SDL/SDL_opengl.h:918 GL_MAX_VARYING_FLOATS_ARB : constant := 16#8B4B#; -- ../include/SDL/SDL_opengl.h:919 GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB : constant := 16#8B4C#; -- ../include/SDL/SDL_opengl.h:920 GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS_ARB : constant := 16#8B4D#; -- ../include/SDL/SDL_opengl.h:921 GL_OBJECT_ACTIVE_ATTRIBUTES_ARB : constant := 16#8B89#; -- ../include/SDL/SDL_opengl.h:922 GL_OBJECT_ACTIVE_ATTRIBUTE_MAX_LENGTH_ARB : constant := 16#8B8A#; -- ../include/SDL/SDL_opengl.h:923 GL_FRAGMENT_SHADER_ARB : constant := 16#8B30#; -- ../include/SDL/SDL_opengl.h:927 GL_MAX_FRAGMENT_UNIFORM_COMPONENTS_ARB : constant := 16#8B49#; -- ../include/SDL/SDL_opengl.h:928 GL_FRAGMENT_SHADER_DERIVATIVE_HINT_ARB : constant := 16#8B8B#; -- ../include/SDL/SDL_opengl.h:929 GL_SHADING_LANGUAGE_VERSION_ARB : constant := 16#8B8C#; -- ../include/SDL/SDL_opengl.h:933 GL_POINT_SPRITE_ARB : constant := 16#8861#; -- ../include/SDL/SDL_opengl.h:940 GL_COORD_REPLACE_ARB : constant := 16#8862#; -- ../include/SDL/SDL_opengl.h:941 GL_MAX_DRAW_BUFFERS_ARB : constant := 16#8824#; -- ../include/SDL/SDL_opengl.h:948 GL_DRAW_BUFFER0_ARB : constant := 16#8825#; -- ../include/SDL/SDL_opengl.h:949 GL_DRAW_BUFFER1_ARB : constant := 16#8826#; -- ../include/SDL/SDL_opengl.h:950 GL_DRAW_BUFFER2_ARB : constant := 16#8827#; -- ../include/SDL/SDL_opengl.h:951 GL_DRAW_BUFFER3_ARB : constant := 16#8828#; -- ../include/SDL/SDL_opengl.h:952 GL_DRAW_BUFFER4_ARB : constant := 16#8829#; -- ../include/SDL/SDL_opengl.h:953 GL_DRAW_BUFFER5_ARB : constant := 16#882A#; -- ../include/SDL/SDL_opengl.h:954 GL_DRAW_BUFFER6_ARB : constant := 16#882B#; -- ../include/SDL/SDL_opengl.h:955 GL_DRAW_BUFFER7_ARB : constant := 16#882C#; -- ../include/SDL/SDL_opengl.h:956 GL_DRAW_BUFFER8_ARB : constant := 16#882D#; -- ../include/SDL/SDL_opengl.h:957 GL_DRAW_BUFFER9_ARB : constant := 16#882E#; -- ../include/SDL/SDL_opengl.h:958 GL_DRAW_BUFFER10_ARB : constant := 16#882F#; -- ../include/SDL/SDL_opengl.h:959 GL_DRAW_BUFFER11_ARB : constant := 16#8830#; -- ../include/SDL/SDL_opengl.h:960 GL_DRAW_BUFFER12_ARB : constant := 16#8831#; -- ../include/SDL/SDL_opengl.h:961 GL_DRAW_BUFFER13_ARB : constant := 16#8832#; -- ../include/SDL/SDL_opengl.h:962 GL_DRAW_BUFFER14_ARB : constant := 16#8833#; -- ../include/SDL/SDL_opengl.h:963 GL_DRAW_BUFFER15_ARB : constant := 16#8834#; -- ../include/SDL/SDL_opengl.h:964 GL_TEXTURE_RECTANGLE_ARB : constant := 16#84F5#; -- ../include/SDL/SDL_opengl.h:968 GL_TEXTURE_BINDING_RECTANGLE_ARB : constant := 16#84F6#; -- ../include/SDL/SDL_opengl.h:969 GL_PROXY_TEXTURE_RECTANGLE_ARB : constant := 16#84F7#; -- ../include/SDL/SDL_opengl.h:970 GL_MAX_RECTANGLE_TEXTURE_SIZE_ARB : constant := 16#84F8#; -- ../include/SDL/SDL_opengl.h:971 GL_RGBA_FLOAT_MODE_ARB : constant := 16#8820#; -- ../include/SDL/SDL_opengl.h:975 GL_CLAMP_VERTEX_COLOR_ARB : constant := 16#891A#; -- ../include/SDL/SDL_opengl.h:976 GL_CLAMP_FRAGMENT_COLOR_ARB : constant := 16#891B#; -- ../include/SDL/SDL_opengl.h:977 GL_CLAMP_READ_COLOR_ARB : constant := 16#891C#; -- ../include/SDL/SDL_opengl.h:978 GL_FIXED_ONLY_ARB : constant := 16#891D#; -- ../include/SDL/SDL_opengl.h:979 GL_HALF_FLOAT_ARB : constant := 16#140B#; -- ../include/SDL/SDL_opengl.h:983 GL_TEXTURE_RED_TYPE_ARB : constant := 16#8C10#; -- ../include/SDL/SDL_opengl.h:987 GL_TEXTURE_GREEN_TYPE_ARB : constant := 16#8C11#; -- ../include/SDL/SDL_opengl.h:988 GL_TEXTURE_BLUE_TYPE_ARB : constant := 16#8C12#; -- ../include/SDL/SDL_opengl.h:989 GL_TEXTURE_ALPHA_TYPE_ARB : constant := 16#8C13#; -- ../include/SDL/SDL_opengl.h:990 GL_TEXTURE_LUMINANCE_TYPE_ARB : constant := 16#8C14#; -- ../include/SDL/SDL_opengl.h:991 GL_TEXTURE_INTENSITY_TYPE_ARB : constant := 16#8C15#; -- ../include/SDL/SDL_opengl.h:992 GL_TEXTURE_DEPTH_TYPE_ARB : constant := 16#8C16#; -- ../include/SDL/SDL_opengl.h:993 GL_UNSIGNED_NORMALIZED_ARB : constant := 16#8C17#; -- ../include/SDL/SDL_opengl.h:994 GL_RGBA32F_ARB : constant := 16#8814#; -- ../include/SDL/SDL_opengl.h:995 GL_RGB32F_ARB : constant := 16#8815#; -- ../include/SDL/SDL_opengl.h:996 GL_ALPHA32F_ARB : constant := 16#8816#; -- ../include/SDL/SDL_opengl.h:997 GL_INTENSITY32F_ARB : constant := 16#8817#; -- ../include/SDL/SDL_opengl.h:998 GL_LUMINANCE32F_ARB : constant := 16#8818#; -- ../include/SDL/SDL_opengl.h:999 GL_LUMINANCE_ALPHA32F_ARB : constant := 16#8819#; -- ../include/SDL/SDL_opengl.h:1000 GL_RGBA16F_ARB : constant := 16#881A#; -- ../include/SDL/SDL_opengl.h:1001 GL_RGB16F_ARB : constant := 16#881B#; -- ../include/SDL/SDL_opengl.h:1002 GL_ALPHA16F_ARB : constant := 16#881C#; -- ../include/SDL/SDL_opengl.h:1003 GL_INTENSITY16F_ARB : constant := 16#881D#; -- ../include/SDL/SDL_opengl.h:1004 GL_LUMINANCE16F_ARB : constant := 16#881E#; -- ../include/SDL/SDL_opengl.h:1005 GL_LUMINANCE_ALPHA16F_ARB : constant := 16#881F#; -- ../include/SDL/SDL_opengl.h:1006 GL_PIXEL_PACK_BUFFER_ARB : constant := 16#88EB#; -- ../include/SDL/SDL_opengl.h:1010 GL_PIXEL_UNPACK_BUFFER_ARB : constant := 16#88EC#; -- ../include/SDL/SDL_opengl.h:1011 GL_PIXEL_PACK_BUFFER_BINDING_ARB : constant := 16#88ED#; -- ../include/SDL/SDL_opengl.h:1012 GL_PIXEL_UNPACK_BUFFER_BINDING_ARB : constant := 16#88EF#; -- ../include/SDL/SDL_opengl.h:1013 GL_ABGR_EXT : constant := 16#8000#; -- ../include/SDL/SDL_opengl.h:1017 GL_CONSTANT_COLOR_EXT : constant := 16#8001#; -- ../include/SDL/SDL_opengl.h:1021 GL_ONE_MINUS_CONSTANT_COLOR_EXT : constant := 16#8002#; -- ../include/SDL/SDL_opengl.h:1022 GL_CONSTANT_ALPHA_EXT : constant := 16#8003#; -- ../include/SDL/SDL_opengl.h:1023 GL_ONE_MINUS_CONSTANT_ALPHA_EXT : constant := 16#8004#; -- ../include/SDL/SDL_opengl.h:1024 GL_BLEND_COLOR_EXT : constant := 16#8005#; -- ../include/SDL/SDL_opengl.h:1025 GL_POLYGON_OFFSET_EXT : constant := 16#8037#; -- ../include/SDL/SDL_opengl.h:1029 GL_POLYGON_OFFSET_FACTOR_EXT : constant := 16#8038#; -- ../include/SDL/SDL_opengl.h:1030 GL_POLYGON_OFFSET_BIAS_EXT : constant := 16#8039#; -- ../include/SDL/SDL_opengl.h:1031 GL_ALPHA4_EXT : constant := 16#803B#; -- ../include/SDL/SDL_opengl.h:1035 GL_ALPHA8_EXT : constant := 16#803C#; -- ../include/SDL/SDL_opengl.h:1036 GL_ALPHA12_EXT : constant := 16#803D#; -- ../include/SDL/SDL_opengl.h:1037 GL_ALPHA16_EXT : constant := 16#803E#; -- ../include/SDL/SDL_opengl.h:1038 GL_LUMINANCE4_EXT : constant := 16#803F#; -- ../include/SDL/SDL_opengl.h:1039 GL_LUMINANCE8_EXT : constant := 16#8040#; -- ../include/SDL/SDL_opengl.h:1040 GL_LUMINANCE12_EXT : constant := 16#8041#; -- ../include/SDL/SDL_opengl.h:1041 GL_LUMINANCE16_EXT : constant := 16#8042#; -- ../include/SDL/SDL_opengl.h:1042 GL_LUMINANCE4_ALPHA4_EXT : constant := 16#8043#; -- ../include/SDL/SDL_opengl.h:1043 GL_LUMINANCE6_ALPHA2_EXT : constant := 16#8044#; -- ../include/SDL/SDL_opengl.h:1044 GL_LUMINANCE8_ALPHA8_EXT : constant := 16#8045#; -- ../include/SDL/SDL_opengl.h:1045 GL_LUMINANCE12_ALPHA4_EXT : constant := 16#8046#; -- ../include/SDL/SDL_opengl.h:1046 GL_LUMINANCE12_ALPHA12_EXT : constant := 16#8047#; -- ../include/SDL/SDL_opengl.h:1047 GL_LUMINANCE16_ALPHA16_EXT : constant := 16#8048#; -- ../include/SDL/SDL_opengl.h:1048 GL_INTENSITY_EXT : constant := 16#8049#; -- ../include/SDL/SDL_opengl.h:1049 GL_INTENSITY4_EXT : constant := 16#804A#; -- ../include/SDL/SDL_opengl.h:1050 GL_INTENSITY8_EXT : constant := 16#804B#; -- ../include/SDL/SDL_opengl.h:1051 GL_INTENSITY12_EXT : constant := 16#804C#; -- ../include/SDL/SDL_opengl.h:1052 GL_INTENSITY16_EXT : constant := 16#804D#; -- ../include/SDL/SDL_opengl.h:1053 GL_RGB2_EXT : constant := 16#804E#; -- ../include/SDL/SDL_opengl.h:1054 GL_RGB4_EXT : constant := 16#804F#; -- ../include/SDL/SDL_opengl.h:1055 GL_RGB5_EXT : constant := 16#8050#; -- ../include/SDL/SDL_opengl.h:1056 GL_RGB8_EXT : constant := 16#8051#; -- ../include/SDL/SDL_opengl.h:1057 GL_RGB10_EXT : constant := 16#8052#; -- ../include/SDL/SDL_opengl.h:1058 GL_RGB12_EXT : constant := 16#8053#; -- ../include/SDL/SDL_opengl.h:1059 GL_RGB16_EXT : constant := 16#8054#; -- ../include/SDL/SDL_opengl.h:1060 GL_RGBA2_EXT : constant := 16#8055#; -- ../include/SDL/SDL_opengl.h:1061 GL_RGBA4_EXT : constant := 16#8056#; -- ../include/SDL/SDL_opengl.h:1062 GL_RGB5_A1_EXT : constant := 16#8057#; -- ../include/SDL/SDL_opengl.h:1063 GL_RGBA8_EXT : constant := 16#8058#; -- ../include/SDL/SDL_opengl.h:1064 GL_RGB10_A2_EXT : constant := 16#8059#; -- ../include/SDL/SDL_opengl.h:1065 GL_RGBA12_EXT : constant := 16#805A#; -- ../include/SDL/SDL_opengl.h:1066 GL_RGBA16_EXT : constant := 16#805B#; -- ../include/SDL/SDL_opengl.h:1067 GL_TEXTURE_RED_SIZE_EXT : constant := 16#805C#; -- ../include/SDL/SDL_opengl.h:1068 GL_TEXTURE_GREEN_SIZE_EXT : constant := 16#805D#; -- ../include/SDL/SDL_opengl.h:1069 GL_TEXTURE_BLUE_SIZE_EXT : constant := 16#805E#; -- ../include/SDL/SDL_opengl.h:1070 GL_TEXTURE_ALPHA_SIZE_EXT : constant := 16#805F#; -- ../include/SDL/SDL_opengl.h:1071 GL_TEXTURE_LUMINANCE_SIZE_EXT : constant := 16#8060#; -- ../include/SDL/SDL_opengl.h:1072 GL_TEXTURE_INTENSITY_SIZE_EXT : constant := 16#8061#; -- ../include/SDL/SDL_opengl.h:1073 GL_REPLACE_EXT : constant := 16#8062#; -- ../include/SDL/SDL_opengl.h:1074 GL_PROXY_TEXTURE_1D_EXT : constant := 16#8063#; -- ../include/SDL/SDL_opengl.h:1075 GL_PROXY_TEXTURE_2D_EXT : constant := 16#8064#; -- ../include/SDL/SDL_opengl.h:1076 GL_TEXTURE_TOO_LARGE_EXT : constant := 16#8065#; -- ../include/SDL/SDL_opengl.h:1077 GL_PACK_SKIP_IMAGES_EXT : constant := 16#806B#; -- ../include/SDL/SDL_opengl.h:1081 GL_PACK_IMAGE_HEIGHT_EXT : constant := 16#806C#; -- ../include/SDL/SDL_opengl.h:1082 GL_UNPACK_SKIP_IMAGES_EXT : constant := 16#806D#; -- ../include/SDL/SDL_opengl.h:1083 GL_UNPACK_IMAGE_HEIGHT_EXT : constant := 16#806E#; -- ../include/SDL/SDL_opengl.h:1084 GL_TEXTURE_3D_EXT : constant := 16#806F#; -- ../include/SDL/SDL_opengl.h:1085 GL_PROXY_TEXTURE_3D_EXT : constant := 16#8070#; -- ../include/SDL/SDL_opengl.h:1086 GL_TEXTURE_DEPTH_EXT : constant := 16#8071#; -- ../include/SDL/SDL_opengl.h:1087 GL_TEXTURE_WRAP_R_EXT : constant := 16#8072#; -- ../include/SDL/SDL_opengl.h:1088 GL_MAX_3D_TEXTURE_SIZE_EXT : constant := 16#8073#; -- ../include/SDL/SDL_opengl.h:1089 GL_FILTER4_SGIS : constant := 16#8146#; -- ../include/SDL/SDL_opengl.h:1093 GL_TEXTURE_FILTER4_SIZE_SGIS : constant := 16#8147#; -- ../include/SDL/SDL_opengl.h:1094 GL_HISTOGRAM_EXT : constant := 16#8024#; -- ../include/SDL/SDL_opengl.h:1104 GL_PROXY_HISTOGRAM_EXT : constant := 16#8025#; -- ../include/SDL/SDL_opengl.h:1105 GL_HISTOGRAM_WIDTH_EXT : constant := 16#8026#; -- ../include/SDL/SDL_opengl.h:1106 GL_HISTOGRAM_FORMAT_EXT : constant := 16#8027#; -- ../include/SDL/SDL_opengl.h:1107 GL_HISTOGRAM_RED_SIZE_EXT : constant := 16#8028#; -- ../include/SDL/SDL_opengl.h:1108 GL_HISTOGRAM_GREEN_SIZE_EXT : constant := 16#8029#; -- ../include/SDL/SDL_opengl.h:1109 GL_HISTOGRAM_BLUE_SIZE_EXT : constant := 16#802A#; -- ../include/SDL/SDL_opengl.h:1110 GL_HISTOGRAM_ALPHA_SIZE_EXT : constant := 16#802B#; -- ../include/SDL/SDL_opengl.h:1111 GL_HISTOGRAM_LUMINANCE_SIZE_EXT : constant := 16#802C#; -- ../include/SDL/SDL_opengl.h:1112 GL_HISTOGRAM_SINK_EXT : constant := 16#802D#; -- ../include/SDL/SDL_opengl.h:1113 GL_MINMAX_EXT : constant := 16#802E#; -- ../include/SDL/SDL_opengl.h:1114 GL_MINMAX_FORMAT_EXT : constant := 16#802F#; -- ../include/SDL/SDL_opengl.h:1115 GL_MINMAX_SINK_EXT : constant := 16#8030#; -- ../include/SDL/SDL_opengl.h:1116 GL_TABLE_TOO_LARGE_EXT : constant := 16#8031#; -- ../include/SDL/SDL_opengl.h:1117 GL_CONVOLUTION_1D_EXT : constant := 16#8010#; -- ../include/SDL/SDL_opengl.h:1121 GL_CONVOLUTION_2D_EXT : constant := 16#8011#; -- ../include/SDL/SDL_opengl.h:1122 GL_SEPARABLE_2D_EXT : constant := 16#8012#; -- ../include/SDL/SDL_opengl.h:1123 GL_CONVOLUTION_BORDER_MODE_EXT : constant := 16#8013#; -- ../include/SDL/SDL_opengl.h:1124 GL_CONVOLUTION_FILTER_SCALE_EXT : constant := 16#8014#; -- ../include/SDL/SDL_opengl.h:1125 GL_CONVOLUTION_FILTER_BIAS_EXT : constant := 16#8015#; -- ../include/SDL/SDL_opengl.h:1126 GL_REDUCE_EXT : constant := 16#8016#; -- ../include/SDL/SDL_opengl.h:1127 GL_CONVOLUTION_FORMAT_EXT : constant := 16#8017#; -- ../include/SDL/SDL_opengl.h:1128 GL_CONVOLUTION_WIDTH_EXT : constant := 16#8018#; -- ../include/SDL/SDL_opengl.h:1129 GL_CONVOLUTION_HEIGHT_EXT : constant := 16#8019#; -- ../include/SDL/SDL_opengl.h:1130 GL_MAX_CONVOLUTION_WIDTH_EXT : constant := 16#801A#; -- ../include/SDL/SDL_opengl.h:1131 GL_MAX_CONVOLUTION_HEIGHT_EXT : constant := 16#801B#; -- ../include/SDL/SDL_opengl.h:1132 GL_POST_CONVOLUTION_RED_SCALE_EXT : constant := 16#801C#; -- ../include/SDL/SDL_opengl.h:1133 GL_POST_CONVOLUTION_GREEN_SCALE_EXT : constant := 16#801D#; -- ../include/SDL/SDL_opengl.h:1134 GL_POST_CONVOLUTION_BLUE_SCALE_EXT : constant := 16#801E#; -- ../include/SDL/SDL_opengl.h:1135 GL_POST_CONVOLUTION_ALPHA_SCALE_EXT : constant := 16#801F#; -- ../include/SDL/SDL_opengl.h:1136 GL_POST_CONVOLUTION_RED_BIAS_EXT : constant := 16#8020#; -- ../include/SDL/SDL_opengl.h:1137 GL_POST_CONVOLUTION_GREEN_BIAS_EXT : constant := 16#8021#; -- ../include/SDL/SDL_opengl.h:1138 GL_POST_CONVOLUTION_BLUE_BIAS_EXT : constant := 16#8022#; -- ../include/SDL/SDL_opengl.h:1139 GL_POST_CONVOLUTION_ALPHA_BIAS_EXT : constant := 16#8023#; -- ../include/SDL/SDL_opengl.h:1140 GL_COLOR_MATRIX_SGI : constant := 16#80B1#; -- ../include/SDL/SDL_opengl.h:1144 GL_COLOR_MATRIX_STACK_DEPTH_SGI : constant := 16#80B2#; -- ../include/SDL/SDL_opengl.h:1145 GL_MAX_COLOR_MATRIX_STACK_DEPTH_SGI : constant := 16#80B3#; -- ../include/SDL/SDL_opengl.h:1146 GL_POST_COLOR_MATRIX_RED_SCALE_SGI : constant := 16#80B4#; -- ../include/SDL/SDL_opengl.h:1147 GL_POST_COLOR_MATRIX_GREEN_SCALE_SGI : constant := 16#80B5#; -- ../include/SDL/SDL_opengl.h:1148 GL_POST_COLOR_MATRIX_BLUE_SCALE_SGI : constant := 16#80B6#; -- ../include/SDL/SDL_opengl.h:1149 GL_POST_COLOR_MATRIX_ALPHA_SCALE_SGI : constant := 16#80B7#; -- ../include/SDL/SDL_opengl.h:1150 GL_POST_COLOR_MATRIX_RED_BIAS_SGI : constant := 16#80B8#; -- ../include/SDL/SDL_opengl.h:1151 GL_POST_COLOR_MATRIX_GREEN_BIAS_SGI : constant := 16#80B9#; -- ../include/SDL/SDL_opengl.h:1152 GL_POST_COLOR_MATRIX_BLUE_BIAS_SGI : constant := 16#80BA#; -- ../include/SDL/SDL_opengl.h:1153 GL_POST_COLOR_MATRIX_ALPHA_BIAS_SGI : constant := 16#80BB#; -- ../include/SDL/SDL_opengl.h:1154 GL_COLOR_TABLE_SGI : constant := 16#80D0#; -- ../include/SDL/SDL_opengl.h:1158 GL_POST_CONVOLUTION_COLOR_TABLE_SGI : constant := 16#80D1#; -- ../include/SDL/SDL_opengl.h:1159 GL_POST_COLOR_MATRIX_COLOR_TABLE_SGI : constant := 16#80D2#; -- ../include/SDL/SDL_opengl.h:1160 GL_PROXY_COLOR_TABLE_SGI : constant := 16#80D3#; -- ../include/SDL/SDL_opengl.h:1161 GL_PROXY_POST_CONVOLUTION_COLOR_TABLE_SGI : constant := 16#80D4#; -- ../include/SDL/SDL_opengl.h:1162 GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE_SGI : constant := 16#80D5#; -- ../include/SDL/SDL_opengl.h:1163 GL_COLOR_TABLE_SCALE_SGI : constant := 16#80D6#; -- ../include/SDL/SDL_opengl.h:1164 GL_COLOR_TABLE_BIAS_SGI : constant := 16#80D7#; -- ../include/SDL/SDL_opengl.h:1165 GL_COLOR_TABLE_FORMAT_SGI : constant := 16#80D8#; -- ../include/SDL/SDL_opengl.h:1166 GL_COLOR_TABLE_WIDTH_SGI : constant := 16#80D9#; -- ../include/SDL/SDL_opengl.h:1167 GL_COLOR_TABLE_RED_SIZE_SGI : constant := 16#80DA#; -- ../include/SDL/SDL_opengl.h:1168 GL_COLOR_TABLE_GREEN_SIZE_SGI : constant := 16#80DB#; -- ../include/SDL/SDL_opengl.h:1169 GL_COLOR_TABLE_BLUE_SIZE_SGI : constant := 16#80DC#; -- ../include/SDL/SDL_opengl.h:1170 GL_COLOR_TABLE_ALPHA_SIZE_SGI : constant := 16#80DD#; -- ../include/SDL/SDL_opengl.h:1171 GL_COLOR_TABLE_LUMINANCE_SIZE_SGI : constant := 16#80DE#; -- ../include/SDL/SDL_opengl.h:1172 GL_COLOR_TABLE_INTENSITY_SIZE_SGI : constant := 16#80DF#; -- ../include/SDL/SDL_opengl.h:1173 GL_PIXEL_TEXTURE_SGIS : constant := 16#8353#; -- ../include/SDL/SDL_opengl.h:1177 GL_PIXEL_FRAGMENT_RGB_SOURCE_SGIS : constant := 16#8354#; -- ../include/SDL/SDL_opengl.h:1178 GL_PIXEL_FRAGMENT_ALPHA_SOURCE_SGIS : constant := 16#8355#; -- ../include/SDL/SDL_opengl.h:1179 GL_PIXEL_GROUP_COLOR_SGIS : constant := 16#8356#; -- ../include/SDL/SDL_opengl.h:1180 GL_PIXEL_TEX_GEN_SGIX : constant := 16#8139#; -- ../include/SDL/SDL_opengl.h:1184 GL_PIXEL_TEX_GEN_MODE_SGIX : constant := 16#832B#; -- ../include/SDL/SDL_opengl.h:1185 GL_PACK_SKIP_VOLUMES_SGIS : constant := 16#8130#; -- ../include/SDL/SDL_opengl.h:1189 GL_PACK_IMAGE_DEPTH_SGIS : constant := 16#8131#; -- ../include/SDL/SDL_opengl.h:1190 GL_UNPACK_SKIP_VOLUMES_SGIS : constant := 16#8132#; -- ../include/SDL/SDL_opengl.h:1191 GL_UNPACK_IMAGE_DEPTH_SGIS : constant := 16#8133#; -- ../include/SDL/SDL_opengl.h:1192 GL_TEXTURE_4D_SGIS : constant := 16#8134#; -- ../include/SDL/SDL_opengl.h:1193 GL_PROXY_TEXTURE_4D_SGIS : constant := 16#8135#; -- ../include/SDL/SDL_opengl.h:1194 GL_TEXTURE_4DSIZE_SGIS : constant := 16#8136#; -- ../include/SDL/SDL_opengl.h:1195 GL_TEXTURE_WRAP_Q_SGIS : constant := 16#8137#; -- ../include/SDL/SDL_opengl.h:1196 GL_MAX_4D_TEXTURE_SIZE_SGIS : constant := 16#8138#; -- ../include/SDL/SDL_opengl.h:1197 GL_TEXTURE_4D_BINDING_SGIS : constant := 16#814F#; -- ../include/SDL/SDL_opengl.h:1198 GL_TEXTURE_COLOR_TABLE_SGI : constant := 16#80BC#; -- ../include/SDL/SDL_opengl.h:1202 GL_PROXY_TEXTURE_COLOR_TABLE_SGI : constant := 16#80BD#; -- ../include/SDL/SDL_opengl.h:1203 GL_CMYK_EXT : constant := 16#800C#; -- ../include/SDL/SDL_opengl.h:1207 GL_CMYKA_EXT : constant := 16#800D#; -- ../include/SDL/SDL_opengl.h:1208 GL_PACK_CMYK_HINT_EXT : constant := 16#800E#; -- ../include/SDL/SDL_opengl.h:1209 GL_UNPACK_CMYK_HINT_EXT : constant := 16#800F#; -- ../include/SDL/SDL_opengl.h:1210 GL_TEXTURE_PRIORITY_EXT : constant := 16#8066#; -- ../include/SDL/SDL_opengl.h:1214 GL_TEXTURE_RESIDENT_EXT : constant := 16#8067#; -- ../include/SDL/SDL_opengl.h:1215 GL_TEXTURE_1D_BINDING_EXT : constant := 16#8068#; -- ../include/SDL/SDL_opengl.h:1216 GL_TEXTURE_2D_BINDING_EXT : constant := 16#8069#; -- ../include/SDL/SDL_opengl.h:1217 GL_TEXTURE_3D_BINDING_EXT : constant := 16#806A#; -- ../include/SDL/SDL_opengl.h:1218 GL_DETAIL_TEXTURE_2D_SGIS : constant := 16#8095#; -- ../include/SDL/SDL_opengl.h:1222 GL_DETAIL_TEXTURE_2D_BINDING_SGIS : constant := 16#8096#; -- ../include/SDL/SDL_opengl.h:1223 GL_LINEAR_DETAIL_SGIS : constant := 16#8097#; -- ../include/SDL/SDL_opengl.h:1224 GL_LINEAR_DETAIL_ALPHA_SGIS : constant := 16#8098#; -- ../include/SDL/SDL_opengl.h:1225 GL_LINEAR_DETAIL_COLOR_SGIS : constant := 16#8099#; -- ../include/SDL/SDL_opengl.h:1226 GL_DETAIL_TEXTURE_LEVEL_SGIS : constant := 16#809A#; -- ../include/SDL/SDL_opengl.h:1227 GL_DETAIL_TEXTURE_MODE_SGIS : constant := 16#809B#; -- ../include/SDL/SDL_opengl.h:1228 GL_DETAIL_TEXTURE_FUNC_POINTS_SGIS : constant := 16#809C#; -- ../include/SDL/SDL_opengl.h:1229 GL_LINEAR_SHARPEN_SGIS : constant := 16#80AD#; -- ../include/SDL/SDL_opengl.h:1233 GL_LINEAR_SHARPEN_ALPHA_SGIS : constant := 16#80AE#; -- ../include/SDL/SDL_opengl.h:1234 GL_LINEAR_SHARPEN_COLOR_SGIS : constant := 16#80AF#; -- ../include/SDL/SDL_opengl.h:1235 GL_SHARPEN_TEXTURE_FUNC_POINTS_SGIS : constant := 16#80B0#; -- ../include/SDL/SDL_opengl.h:1236 GL_UNSIGNED_BYTE_3_3_2_EXT : constant := 16#8032#; -- ../include/SDL/SDL_opengl.h:1240 GL_UNSIGNED_SHORT_4_4_4_4_EXT : constant := 16#8033#; -- ../include/SDL/SDL_opengl.h:1241 GL_UNSIGNED_SHORT_5_5_5_1_EXT : constant := 16#8034#; -- ../include/SDL/SDL_opengl.h:1242 GL_UNSIGNED_INT_8_8_8_8_EXT : constant := 16#8035#; -- ../include/SDL/SDL_opengl.h:1243 GL_UNSIGNED_INT_10_10_10_2_EXT : constant := 16#8036#; -- ../include/SDL/SDL_opengl.h:1244 GL_TEXTURE_MIN_LOD_SGIS : constant := 16#813A#; -- ../include/SDL/SDL_opengl.h:1248 GL_TEXTURE_MAX_LOD_SGIS : constant := 16#813B#; -- ../include/SDL/SDL_opengl.h:1249 GL_TEXTURE_BASE_LEVEL_SGIS : constant := 16#813C#; -- ../include/SDL/SDL_opengl.h:1250 GL_TEXTURE_MAX_LEVEL_SGIS : constant := 16#813D#; -- ../include/SDL/SDL_opengl.h:1251 GL_MULTISAMPLE_SGIS : constant := 16#809D#; -- ../include/SDL/SDL_opengl.h:1255 GL_SAMPLE_ALPHA_TO_MASK_SGIS : constant := 16#809E#; -- ../include/SDL/SDL_opengl.h:1256 GL_SAMPLE_ALPHA_TO_ONE_SGIS : constant := 16#809F#; -- ../include/SDL/SDL_opengl.h:1257 GL_SAMPLE_MASK_SGIS : constant := 16#80A0#; -- ../include/SDL/SDL_opengl.h:1258 GL_1PASS_SGIS : constant := 16#80A1#; -- ../include/SDL/SDL_opengl.h:1259 GL_2PASS_0_SGIS : constant := 16#80A2#; -- ../include/SDL/SDL_opengl.h:1260 GL_2PASS_1_SGIS : constant := 16#80A3#; -- ../include/SDL/SDL_opengl.h:1261 GL_4PASS_0_SGIS : constant := 16#80A4#; -- ../include/SDL/SDL_opengl.h:1262 GL_4PASS_1_SGIS : constant := 16#80A5#; -- ../include/SDL/SDL_opengl.h:1263 GL_4PASS_2_SGIS : constant := 16#80A6#; -- ../include/SDL/SDL_opengl.h:1264 GL_4PASS_3_SGIS : constant := 16#80A7#; -- ../include/SDL/SDL_opengl.h:1265 GL_SAMPLE_BUFFERS_SGIS : constant := 16#80A8#; -- ../include/SDL/SDL_opengl.h:1266 GL_SAMPLES_SGIS : constant := 16#80A9#; -- ../include/SDL/SDL_opengl.h:1267 GL_SAMPLE_MASK_VALUE_SGIS : constant := 16#80AA#; -- ../include/SDL/SDL_opengl.h:1268 GL_SAMPLE_MASK_INVERT_SGIS : constant := 16#80AB#; -- ../include/SDL/SDL_opengl.h:1269 GL_SAMPLE_PATTERN_SGIS : constant := 16#80AC#; -- ../include/SDL/SDL_opengl.h:1270 GL_RESCALE_NORMAL_EXT : constant := 16#803A#; -- ../include/SDL/SDL_opengl.h:1274 GL_GENERATE_MIPMAP_SGIS : constant := 16#8191#; -- ../include/SDL/SDL_opengl.h:1316 GL_GENERATE_MIPMAP_HINT_SGIS : constant := 16#8192#; -- ../include/SDL/SDL_opengl.h:1317 GL_LINEAR_CLIPMAP_LINEAR_SGIX : constant := 16#8170#; -- ../include/SDL/SDL_opengl.h:1321 GL_TEXTURE_CLIPMAP_CENTER_SGIX : constant := 16#8171#; -- ../include/SDL/SDL_opengl.h:1322 GL_TEXTURE_CLIPMAP_FRAME_SGIX : constant := 16#8172#; -- ../include/SDL/SDL_opengl.h:1323 GL_TEXTURE_CLIPMAP_OFFSET_SGIX : constant := 16#8173#; -- ../include/SDL/SDL_opengl.h:1324 GL_TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX : constant := 16#8174#; -- ../include/SDL/SDL_opengl.h:1325 GL_TEXTURE_CLIPMAP_LOD_OFFSET_SGIX : constant := 16#8175#; -- ../include/SDL/SDL_opengl.h:1326 GL_TEXTURE_CLIPMAP_DEPTH_SGIX : constant := 16#8176#; -- ../include/SDL/SDL_opengl.h:1327 GL_MAX_CLIPMAP_DEPTH_SGIX : constant := 16#8177#; -- ../include/SDL/SDL_opengl.h:1328 GL_MAX_CLIPMAP_VIRTUAL_DEPTH_SGIX : constant := 16#8178#; -- ../include/SDL/SDL_opengl.h:1329 GL_NEAREST_CLIPMAP_NEAREST_SGIX : constant := 16#844D#; -- ../include/SDL/SDL_opengl.h:1330 GL_NEAREST_CLIPMAP_LINEAR_SGIX : constant := 16#844E#; -- ../include/SDL/SDL_opengl.h:1331 GL_LINEAR_CLIPMAP_NEAREST_SGIX : constant := 16#844F#; -- ../include/SDL/SDL_opengl.h:1332 GL_TEXTURE_COMPARE_SGIX : constant := 16#819A#; -- ../include/SDL/SDL_opengl.h:1336 GL_TEXTURE_COMPARE_OPERATOR_SGIX : constant := 16#819B#; -- ../include/SDL/SDL_opengl.h:1337 GL_TEXTURE_LEQUAL_R_SGIX : constant := 16#819C#; -- ../include/SDL/SDL_opengl.h:1338 GL_TEXTURE_GEQUAL_R_SGIX : constant := 16#819D#; -- ../include/SDL/SDL_opengl.h:1339 GL_CLAMP_TO_EDGE_SGIS : constant := 16#812F#; -- ../include/SDL/SDL_opengl.h:1343 GL_CLAMP_TO_BORDER_SGIS : constant := 16#812D#; -- ../include/SDL/SDL_opengl.h:1347 GL_FUNC_ADD_EXT : constant := 16#8006#; -- ../include/SDL/SDL_opengl.h:1351 GL_MIN_EXT : constant := 16#8007#; -- ../include/SDL/SDL_opengl.h:1352 GL_MAX_EXT : constant := 16#8008#; -- ../include/SDL/SDL_opengl.h:1353 GL_BLEND_EQUATION_EXT : constant := 16#8009#; -- ../include/SDL/SDL_opengl.h:1354 GL_FUNC_SUBTRACT_EXT : constant := 16#800A#; -- ../include/SDL/SDL_opengl.h:1358 GL_FUNC_REVERSE_SUBTRACT_EXT : constant := 16#800B#; -- ../include/SDL/SDL_opengl.h:1359 GL_INTERLACE_SGIX : constant := 16#8094#; -- ../include/SDL/SDL_opengl.h:1366 GL_PIXEL_TILE_BEST_ALIGNMENT_SGIX : constant := 16#813E#; -- ../include/SDL/SDL_opengl.h:1370 GL_PIXEL_TILE_CACHE_INCREMENT_SGIX : constant := 16#813F#; -- ../include/SDL/SDL_opengl.h:1371 GL_PIXEL_TILE_WIDTH_SGIX : constant := 16#8140#; -- ../include/SDL/SDL_opengl.h:1372 GL_PIXEL_TILE_HEIGHT_SGIX : constant := 16#8141#; -- ../include/SDL/SDL_opengl.h:1373 GL_PIXEL_TILE_GRID_WIDTH_SGIX : constant := 16#8142#; -- ../include/SDL/SDL_opengl.h:1374 GL_PIXEL_TILE_GRID_HEIGHT_SGIX : constant := 16#8143#; -- ../include/SDL/SDL_opengl.h:1375 GL_PIXEL_TILE_GRID_DEPTH_SGIX : constant := 16#8144#; -- ../include/SDL/SDL_opengl.h:1376 GL_PIXEL_TILE_CACHE_SIZE_SGIX : constant := 16#8145#; -- ../include/SDL/SDL_opengl.h:1377 GL_DUAL_ALPHA4_SGIS : constant := 16#8110#; -- ../include/SDL/SDL_opengl.h:1381 GL_DUAL_ALPHA8_SGIS : constant := 16#8111#; -- ../include/SDL/SDL_opengl.h:1382 GL_DUAL_ALPHA12_SGIS : constant := 16#8112#; -- ../include/SDL/SDL_opengl.h:1383 GL_DUAL_ALPHA16_SGIS : constant := 16#8113#; -- ../include/SDL/SDL_opengl.h:1384 GL_DUAL_LUMINANCE4_SGIS : constant := 16#8114#; -- ../include/SDL/SDL_opengl.h:1385 GL_DUAL_LUMINANCE8_SGIS : constant := 16#8115#; -- ../include/SDL/SDL_opengl.h:1386 GL_DUAL_LUMINANCE12_SGIS : constant := 16#8116#; -- ../include/SDL/SDL_opengl.h:1387 GL_DUAL_LUMINANCE16_SGIS : constant := 16#8117#; -- ../include/SDL/SDL_opengl.h:1388 GL_DUAL_INTENSITY4_SGIS : constant := 16#8118#; -- ../include/SDL/SDL_opengl.h:1389 GL_DUAL_INTENSITY8_SGIS : constant := 16#8119#; -- ../include/SDL/SDL_opengl.h:1390 GL_DUAL_INTENSITY12_SGIS : constant := 16#811A#; -- ../include/SDL/SDL_opengl.h:1391 GL_DUAL_INTENSITY16_SGIS : constant := 16#811B#; -- ../include/SDL/SDL_opengl.h:1392 GL_DUAL_LUMINANCE_ALPHA4_SGIS : constant := 16#811C#; -- ../include/SDL/SDL_opengl.h:1393 GL_DUAL_LUMINANCE_ALPHA8_SGIS : constant := 16#811D#; -- ../include/SDL/SDL_opengl.h:1394 GL_QUAD_ALPHA4_SGIS : constant := 16#811E#; -- ../include/SDL/SDL_opengl.h:1395 GL_QUAD_ALPHA8_SGIS : constant := 16#811F#; -- ../include/SDL/SDL_opengl.h:1396 GL_QUAD_LUMINANCE4_SGIS : constant := 16#8120#; -- ../include/SDL/SDL_opengl.h:1397 GL_QUAD_LUMINANCE8_SGIS : constant := 16#8121#; -- ../include/SDL/SDL_opengl.h:1398 GL_QUAD_INTENSITY4_SGIS : constant := 16#8122#; -- ../include/SDL/SDL_opengl.h:1399 GL_QUAD_INTENSITY8_SGIS : constant := 16#8123#; -- ../include/SDL/SDL_opengl.h:1400 GL_DUAL_TEXTURE_SELECT_SGIS : constant := 16#8124#; -- ../include/SDL/SDL_opengl.h:1401 GL_QUAD_TEXTURE_SELECT_SGIS : constant := 16#8125#; -- ../include/SDL/SDL_opengl.h:1402 GL_SPRITE_SGIX : constant := 16#8148#; -- ../include/SDL/SDL_opengl.h:1406 GL_SPRITE_MODE_SGIX : constant := 16#8149#; -- ../include/SDL/SDL_opengl.h:1407 GL_SPRITE_AXIS_SGIX : constant := 16#814A#; -- ../include/SDL/SDL_opengl.h:1408 GL_SPRITE_TRANSLATION_SGIX : constant := 16#814B#; -- ../include/SDL/SDL_opengl.h:1409 GL_SPRITE_AXIAL_SGIX : constant := 16#814C#; -- ../include/SDL/SDL_opengl.h:1410 GL_SPRITE_OBJECT_ALIGNED_SGIX : constant := 16#814D#; -- ../include/SDL/SDL_opengl.h:1411 GL_SPRITE_EYE_ALIGNED_SGIX : constant := 16#814E#; -- ../include/SDL/SDL_opengl.h:1412 GL_TEXTURE_MULTI_BUFFER_HINT_SGIX : constant := 16#812E#; -- ../include/SDL/SDL_opengl.h:1416 GL_POINT_SIZE_MIN_EXT : constant := 16#8126#; -- ../include/SDL/SDL_opengl.h:1420 GL_POINT_SIZE_MAX_EXT : constant := 16#8127#; -- ../include/SDL/SDL_opengl.h:1421 GL_POINT_FADE_THRESHOLD_SIZE_EXT : constant := 16#8128#; -- ../include/SDL/SDL_opengl.h:1422 GL_DISTANCE_ATTENUATION_EXT : constant := 16#8129#; -- ../include/SDL/SDL_opengl.h:1423 GL_POINT_SIZE_MIN_SGIS : constant := 16#8126#; -- ../include/SDL/SDL_opengl.h:1427 GL_POINT_SIZE_MAX_SGIS : constant := 16#8127#; -- ../include/SDL/SDL_opengl.h:1428 GL_POINT_FADE_THRESHOLD_SIZE_SGIS : constant := 16#8128#; -- ../include/SDL/SDL_opengl.h:1429 GL_DISTANCE_ATTENUATION_SGIS : constant := 16#8129#; -- ../include/SDL/SDL_opengl.h:1430 GL_INSTRUMENT_BUFFER_POINTER_SGIX : constant := 16#8180#; -- ../include/SDL/SDL_opengl.h:1434 GL_INSTRUMENT_MEASUREMENTS_SGIX : constant := 16#8181#; -- ../include/SDL/SDL_opengl.h:1435 GL_POST_TEXTURE_FILTER_BIAS_SGIX : constant := 16#8179#; -- ../include/SDL/SDL_opengl.h:1439 GL_POST_TEXTURE_FILTER_SCALE_SGIX : constant := 16#817A#; -- ../include/SDL/SDL_opengl.h:1440 GL_POST_TEXTURE_FILTER_BIAS_RANGE_SGIX : constant := 16#817B#; -- ../include/SDL/SDL_opengl.h:1441 GL_POST_TEXTURE_FILTER_SCALE_RANGE_SGIX : constant := 16#817C#; -- ../include/SDL/SDL_opengl.h:1442 GL_FRAMEZOOM_SGIX : constant := 16#818B#; -- ../include/SDL/SDL_opengl.h:1446 GL_FRAMEZOOM_FACTOR_SGIX : constant := 16#818C#; -- ../include/SDL/SDL_opengl.h:1447 GL_MAX_FRAMEZOOM_FACTOR_SGIX : constant := 16#818D#; -- ../include/SDL/SDL_opengl.h:1448 GL_TEXTURE_DEFORMATION_BIT_SGIX : constant := 16#00000001#; -- ../include/SDL/SDL_opengl.h:1455 GL_GEOMETRY_DEFORMATION_BIT_SGIX : constant := 16#00000002#; -- ../include/SDL/SDL_opengl.h:1456 GL_GEOMETRY_DEFORMATION_SGIX : constant := 16#8194#; -- ../include/SDL/SDL_opengl.h:1460 GL_TEXTURE_DEFORMATION_SGIX : constant := 16#8195#; -- ../include/SDL/SDL_opengl.h:1461 GL_DEFORMATIONS_MASK_SGIX : constant := 16#8196#; -- ../include/SDL/SDL_opengl.h:1462 GL_MAX_DEFORMATION_ORDER_SGIX : constant := 16#8197#; -- ../include/SDL/SDL_opengl.h:1463 GL_REFERENCE_PLANE_SGIX : constant := 16#817D#; -- ../include/SDL/SDL_opengl.h:1467 GL_REFERENCE_PLANE_EQUATION_SGIX : constant := 16#817E#; -- ../include/SDL/SDL_opengl.h:1468 GL_DEPTH_COMPONENT16_SGIX : constant := 16#81A5#; -- ../include/SDL/SDL_opengl.h:1475 GL_DEPTH_COMPONENT24_SGIX : constant := 16#81A6#; -- ../include/SDL/SDL_opengl.h:1476 GL_DEPTH_COMPONENT32_SGIX : constant := 16#81A7#; -- ../include/SDL/SDL_opengl.h:1477 GL_FOG_FUNC_SGIS : constant := 16#812A#; -- ../include/SDL/SDL_opengl.h:1481 GL_FOG_FUNC_POINTS_SGIS : constant := 16#812B#; -- ../include/SDL/SDL_opengl.h:1482 GL_MAX_FOG_FUNC_POINTS_SGIS : constant := 16#812C#; -- ../include/SDL/SDL_opengl.h:1483 GL_FOG_OFFSET_SGIX : constant := 16#8198#; -- ../include/SDL/SDL_opengl.h:1487 GL_FOG_OFFSET_VALUE_SGIX : constant := 16#8199#; -- ../include/SDL/SDL_opengl.h:1488 GL_IMAGE_SCALE_X_HP : constant := 16#8155#; -- ../include/SDL/SDL_opengl.h:1492 GL_IMAGE_SCALE_Y_HP : constant := 16#8156#; -- ../include/SDL/SDL_opengl.h:1493 GL_IMAGE_TRANSLATE_X_HP : constant := 16#8157#; -- ../include/SDL/SDL_opengl.h:1494 GL_IMAGE_TRANSLATE_Y_HP : constant := 16#8158#; -- ../include/SDL/SDL_opengl.h:1495 GL_IMAGE_ROTATE_ANGLE_HP : constant := 16#8159#; -- ../include/SDL/SDL_opengl.h:1496 GL_IMAGE_ROTATE_ORIGIN_X_HP : constant := 16#815A#; -- ../include/SDL/SDL_opengl.h:1497 GL_IMAGE_ROTATE_ORIGIN_Y_HP : constant := 16#815B#; -- ../include/SDL/SDL_opengl.h:1498 GL_IMAGE_MAG_FILTER_HP : constant := 16#815C#; -- ../include/SDL/SDL_opengl.h:1499 GL_IMAGE_MIN_FILTER_HP : constant := 16#815D#; -- ../include/SDL/SDL_opengl.h:1500 GL_IMAGE_CUBIC_WEIGHT_HP : constant := 16#815E#; -- ../include/SDL/SDL_opengl.h:1501 GL_CUBIC_HP : constant := 16#815F#; -- ../include/SDL/SDL_opengl.h:1502 GL_AVERAGE_HP : constant := 16#8160#; -- ../include/SDL/SDL_opengl.h:1503 GL_IMAGE_TRANSFORM_2D_HP : constant := 16#8161#; -- ../include/SDL/SDL_opengl.h:1504 GL_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP : constant := 16#8162#; -- ../include/SDL/SDL_opengl.h:1505 GL_PROXY_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP : constant := 16#8163#; -- ../include/SDL/SDL_opengl.h:1506 GL_IGNORE_BORDER_HP : constant := 16#8150#; -- ../include/SDL/SDL_opengl.h:1510 GL_CONSTANT_BORDER_HP : constant := 16#8151#; -- ../include/SDL/SDL_opengl.h:1511 GL_REPLICATE_BORDER_HP : constant := 16#8153#; -- ../include/SDL/SDL_opengl.h:1512 GL_CONVOLUTION_BORDER_COLOR_HP : constant := 16#8154#; -- ../include/SDL/SDL_opengl.h:1513 GL_TEXTURE_ENV_BIAS_SGIX : constant := 16#80BE#; -- ../include/SDL/SDL_opengl.h:1520 GL_VERTEX_DATA_HINT_PGI : constant := 16#1A22A#; -- ../include/SDL/SDL_opengl.h:1527 GL_VERTEX_CONSISTENT_HINT_PGI : constant := 16#1A22B#; -- ../include/SDL/SDL_opengl.h:1528 GL_MATERIAL_SIDE_HINT_PGI : constant := 16#1A22C#; -- ../include/SDL/SDL_opengl.h:1529 GL_MAX_VERTEX_HINT_PGI : constant := 16#1A22D#; -- ../include/SDL/SDL_opengl.h:1530 GL_COLOR3_BIT_PGI : constant := 16#00010000#; -- ../include/SDL/SDL_opengl.h:1531 GL_COLOR4_BIT_PGI : constant := 16#00020000#; -- ../include/SDL/SDL_opengl.h:1532 GL_EDGEFLAG_BIT_PGI : constant := 16#00040000#; -- ../include/SDL/SDL_opengl.h:1533 GL_INDEX_BIT_PGI : constant := 16#00080000#; -- ../include/SDL/SDL_opengl.h:1534 GL_MAT_AMBIENT_BIT_PGI : constant := 16#00100000#; -- ../include/SDL/SDL_opengl.h:1535 GL_MAT_AMBIENT_AND_DIFFUSE_BIT_PGI : constant := 16#00200000#; -- ../include/SDL/SDL_opengl.h:1536 GL_MAT_DIFFUSE_BIT_PGI : constant := 16#00400000#; -- ../include/SDL/SDL_opengl.h:1537 GL_MAT_EMISSION_BIT_PGI : constant := 16#00800000#; -- ../include/SDL/SDL_opengl.h:1538 GL_MAT_COLOR_INDEXES_BIT_PGI : constant := 16#01000000#; -- ../include/SDL/SDL_opengl.h:1539 GL_MAT_SHININESS_BIT_PGI : constant := 16#02000000#; -- ../include/SDL/SDL_opengl.h:1540 GL_MAT_SPECULAR_BIT_PGI : constant := 16#04000000#; -- ../include/SDL/SDL_opengl.h:1541 GL_NORMAL_BIT_PGI : constant := 16#08000000#; -- ../include/SDL/SDL_opengl.h:1542 GL_TEXCOORD1_BIT_PGI : constant := 16#10000000#; -- ../include/SDL/SDL_opengl.h:1543 GL_TEXCOORD2_BIT_PGI : constant := 16#20000000#; -- ../include/SDL/SDL_opengl.h:1544 GL_TEXCOORD3_BIT_PGI : constant := 16#40000000#; -- ../include/SDL/SDL_opengl.h:1545 GL_TEXCOORD4_BIT_PGI : constant := 16#80000000#; -- ../include/SDL/SDL_opengl.h:1546 GL_VERTEX23_BIT_PGI : constant := 16#00000004#; -- ../include/SDL/SDL_opengl.h:1547 GL_VERTEX4_BIT_PGI : constant := 16#00000008#; -- ../include/SDL/SDL_opengl.h:1548 GL_PREFER_DOUBLEBUFFER_HINT_PGI : constant := 16#1A1F8#; -- ../include/SDL/SDL_opengl.h:1552 GL_CONSERVE_MEMORY_HINT_PGI : constant := 16#1A1FD#; -- ../include/SDL/SDL_opengl.h:1553 GL_RECLAIM_MEMORY_HINT_PGI : constant := 16#1A1FE#; -- ../include/SDL/SDL_opengl.h:1554 GL_NATIVE_GRAPHICS_HANDLE_PGI : constant := 16#1A202#; -- ../include/SDL/SDL_opengl.h:1555 GL_NATIVE_GRAPHICS_BEGIN_HINT_PGI : constant := 16#1A203#; -- ../include/SDL/SDL_opengl.h:1556 GL_NATIVE_GRAPHICS_END_HINT_PGI : constant := 16#1A204#; -- ../include/SDL/SDL_opengl.h:1557 GL_ALWAYS_FAST_HINT_PGI : constant := 16#1A20C#; -- ../include/SDL/SDL_opengl.h:1558 GL_ALWAYS_SOFT_HINT_PGI : constant := 16#1A20D#; -- ../include/SDL/SDL_opengl.h:1559 GL_ALLOW_DRAW_OBJ_HINT_PGI : constant := 16#1A20E#; -- ../include/SDL/SDL_opengl.h:1560 GL_ALLOW_DRAW_WIN_HINT_PGI : constant := 16#1A20F#; -- ../include/SDL/SDL_opengl.h:1561 GL_ALLOW_DRAW_FRG_HINT_PGI : constant := 16#1A210#; -- ../include/SDL/SDL_opengl.h:1562 GL_ALLOW_DRAW_MEM_HINT_PGI : constant := 16#1A211#; -- ../include/SDL/SDL_opengl.h:1563 GL_STRICT_DEPTHFUNC_HINT_PGI : constant := 16#1A216#; -- ../include/SDL/SDL_opengl.h:1564 GL_STRICT_LIGHTING_HINT_PGI : constant := 16#1A217#; -- ../include/SDL/SDL_opengl.h:1565 GL_STRICT_SCISSOR_HINT_PGI : constant := 16#1A218#; -- ../include/SDL/SDL_opengl.h:1566 GL_FULL_STIPPLE_HINT_PGI : constant := 16#1A219#; -- ../include/SDL/SDL_opengl.h:1567 GL_CLIP_NEAR_HINT_PGI : constant := 16#1A220#; -- ../include/SDL/SDL_opengl.h:1568 GL_CLIP_FAR_HINT_PGI : constant := 16#1A221#; -- ../include/SDL/SDL_opengl.h:1569 GL_WIDE_LINE_HINT_PGI : constant := 16#1A222#; -- ../include/SDL/SDL_opengl.h:1570 GL_BACK_NORMALS_HINT_PGI : constant := 16#1A223#; -- ../include/SDL/SDL_opengl.h:1571 GL_CLIP_VOLUME_CLIPPING_HINT_EXT : constant := 16#80F0#; -- ../include/SDL/SDL_opengl.h:1585 GL_LIST_PRIORITY_SGIX : constant := 16#8182#; -- ../include/SDL/SDL_opengl.h:1589 GL_IR_INSTRUMENT1_SGIX : constant := 16#817F#; -- ../include/SDL/SDL_opengl.h:1593 GL_CALLIGRAPHIC_FRAGMENT_SGIX : constant := 16#8183#; -- ../include/SDL/SDL_opengl.h:1597 GL_TEXTURE_LOD_BIAS_S_SGIX : constant := 16#818E#; -- ../include/SDL/SDL_opengl.h:1601 GL_TEXTURE_LOD_BIAS_T_SGIX : constant := 16#818F#; -- ../include/SDL/SDL_opengl.h:1602 GL_TEXTURE_LOD_BIAS_R_SGIX : constant := 16#8190#; -- ../include/SDL/SDL_opengl.h:1603 GL_SHADOW_AMBIENT_SGIX : constant := 16#80BF#; -- ../include/SDL/SDL_opengl.h:1607 GL_INDEX_MATERIAL_EXT : constant := 16#81B8#; -- ../include/SDL/SDL_opengl.h:1614 GL_INDEX_MATERIAL_PARAMETER_EXT : constant := 16#81B9#; -- ../include/SDL/SDL_opengl.h:1615 GL_INDEX_MATERIAL_FACE_EXT : constant := 16#81BA#; -- ../include/SDL/SDL_opengl.h:1616 GL_INDEX_TEST_EXT : constant := 16#81B5#; -- ../include/SDL/SDL_opengl.h:1620 GL_INDEX_TEST_FUNC_EXT : constant := 16#81B6#; -- ../include/SDL/SDL_opengl.h:1621 GL_INDEX_TEST_REF_EXT : constant := 16#81B7#; -- ../include/SDL/SDL_opengl.h:1622 GL_IUI_V2F_EXT : constant := 16#81AD#; -- ../include/SDL/SDL_opengl.h:1626 GL_IUI_V3F_EXT : constant := 16#81AE#; -- ../include/SDL/SDL_opengl.h:1627 GL_IUI_N3F_V2F_EXT : constant := 16#81AF#; -- ../include/SDL/SDL_opengl.h:1628 GL_IUI_N3F_V3F_EXT : constant := 16#81B0#; -- ../include/SDL/SDL_opengl.h:1629 GL_T2F_IUI_V2F_EXT : constant := 16#81B1#; -- ../include/SDL/SDL_opengl.h:1630 GL_T2F_IUI_V3F_EXT : constant := 16#81B2#; -- ../include/SDL/SDL_opengl.h:1631 GL_T2F_IUI_N3F_V2F_EXT : constant := 16#81B3#; -- ../include/SDL/SDL_opengl.h:1632 GL_T2F_IUI_N3F_V3F_EXT : constant := 16#81B4#; -- ../include/SDL/SDL_opengl.h:1633 GL_ARRAY_ELEMENT_LOCK_FIRST_EXT : constant := 16#81A8#; -- ../include/SDL/SDL_opengl.h:1637 GL_ARRAY_ELEMENT_LOCK_COUNT_EXT : constant := 16#81A9#; -- ../include/SDL/SDL_opengl.h:1638 GL_CULL_VERTEX_EXT : constant := 16#81AA#; -- ../include/SDL/SDL_opengl.h:1642 GL_CULL_VERTEX_EYE_POSITION_EXT : constant := 16#81AB#; -- ../include/SDL/SDL_opengl.h:1643 GL_CULL_VERTEX_OBJECT_POSITION_EXT : constant := 16#81AC#; -- ../include/SDL/SDL_opengl.h:1644 GL_YCRCB_422_SGIX : constant := 16#81BB#; -- ../include/SDL/SDL_opengl.h:1648 GL_YCRCB_444_SGIX : constant := 16#81BC#; -- ../include/SDL/SDL_opengl.h:1649 GL_FRAGMENT_LIGHTING_SGIX : constant := 16#8400#; -- ../include/SDL/SDL_opengl.h:1653 GL_FRAGMENT_COLOR_MATERIAL_SGIX : constant := 16#8401#; -- ../include/SDL/SDL_opengl.h:1654 GL_FRAGMENT_COLOR_MATERIAL_FACE_SGIX : constant := 16#8402#; -- ../include/SDL/SDL_opengl.h:1655 GL_FRAGMENT_COLOR_MATERIAL_PARAMETER_SGIX : constant := 16#8403#; -- ../include/SDL/SDL_opengl.h:1656 GL_MAX_FRAGMENT_LIGHTS_SGIX : constant := 16#8404#; -- ../include/SDL/SDL_opengl.h:1657 GL_MAX_ACTIVE_LIGHTS_SGIX : constant := 16#8405#; -- ../include/SDL/SDL_opengl.h:1658 GL_CURRENT_RASTER_NORMAL_SGIX : constant := 16#8406#; -- ../include/SDL/SDL_opengl.h:1659 GL_LIGHT_ENV_MODE_SGIX : constant := 16#8407#; -- ../include/SDL/SDL_opengl.h:1660 GL_FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX : constant := 16#8408#; -- ../include/SDL/SDL_opengl.h:1661 GL_FRAGMENT_LIGHT_MODEL_TWO_SIDE_SGIX : constant := 16#8409#; -- ../include/SDL/SDL_opengl.h:1662 GL_FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX : constant := 16#840A#; -- ../include/SDL/SDL_opengl.h:1663 GL_FRAGMENT_LIGHT_MODEL_NORMAL_INTERPOLATION_SGIX : constant := 16#840B#; -- ../include/SDL/SDL_opengl.h:1664 GL_FRAGMENT_LIGHT0_SGIX : constant := 16#840C#; -- ../include/SDL/SDL_opengl.h:1665 GL_FRAGMENT_LIGHT1_SGIX : constant := 16#840D#; -- ../include/SDL/SDL_opengl.h:1666 GL_FRAGMENT_LIGHT2_SGIX : constant := 16#840E#; -- ../include/SDL/SDL_opengl.h:1667 GL_FRAGMENT_LIGHT3_SGIX : constant := 16#840F#; -- ../include/SDL/SDL_opengl.h:1668 GL_FRAGMENT_LIGHT4_SGIX : constant := 16#8410#; -- ../include/SDL/SDL_opengl.h:1669 GL_FRAGMENT_LIGHT5_SGIX : constant := 16#8411#; -- ../include/SDL/SDL_opengl.h:1670 GL_FRAGMENT_LIGHT6_SGIX : constant := 16#8412#; -- ../include/SDL/SDL_opengl.h:1671 GL_FRAGMENT_LIGHT7_SGIX : constant := 16#8413#; -- ../include/SDL/SDL_opengl.h:1672 GL_RASTER_POSITION_UNCLIPPED_IBM : constant := 16#19262#; -- ../include/SDL/SDL_opengl.h:1676 GL_TEXTURE_LIGHTING_MODE_HP : constant := 16#8167#; -- ../include/SDL/SDL_opengl.h:1680 GL_TEXTURE_POST_SPECULAR_HP : constant := 16#8168#; -- ../include/SDL/SDL_opengl.h:1681 GL_TEXTURE_PRE_SPECULAR_HP : constant := 16#8169#; -- ../include/SDL/SDL_opengl.h:1682 GL_MAX_ELEMENTS_VERTICES_EXT : constant := 16#80E8#; -- ../include/SDL/SDL_opengl.h:1686 GL_MAX_ELEMENTS_INDICES_EXT : constant := 16#80E9#; -- ../include/SDL/SDL_opengl.h:1687 GL_PHONG_WIN : constant := 16#80EA#; -- ../include/SDL/SDL_opengl.h:1691 GL_PHONG_HINT_WIN : constant := 16#80EB#; -- ../include/SDL/SDL_opengl.h:1692 GL_FOG_SPECULAR_TEXTURE_WIN : constant := 16#80EC#; -- ../include/SDL/SDL_opengl.h:1696 GL_FRAGMENT_MATERIAL_EXT : constant := 16#8349#; -- ../include/SDL/SDL_opengl.h:1700 GL_FRAGMENT_NORMAL_EXT : constant := 16#834A#; -- ../include/SDL/SDL_opengl.h:1701 GL_FRAGMENT_COLOR_EXT : constant := 16#834C#; -- ../include/SDL/SDL_opengl.h:1702 GL_ATTENUATION_EXT : constant := 16#834D#; -- ../include/SDL/SDL_opengl.h:1703 GL_SHADOW_ATTENUATION_EXT : constant := 16#834E#; -- ../include/SDL/SDL_opengl.h:1704 GL_TEXTURE_APPLICATION_MODE_EXT : constant := 16#834F#; -- ../include/SDL/SDL_opengl.h:1705 GL_TEXTURE_LIGHT_EXT : constant := 16#8350#; -- ../include/SDL/SDL_opengl.h:1706 GL_TEXTURE_MATERIAL_FACE_EXT : constant := 16#8351#; -- ../include/SDL/SDL_opengl.h:1707 GL_TEXTURE_MATERIAL_PARAMETER_EXT : constant := 16#8352#; -- ../include/SDL/SDL_opengl.h:1708 GL_ALPHA_MIN_SGIX : constant := 16#8320#; -- ../include/SDL/SDL_opengl.h:1713 GL_ALPHA_MAX_SGIX : constant := 16#8321#; -- ../include/SDL/SDL_opengl.h:1714 GL_PIXEL_TEX_GEN_Q_CEILING_SGIX : constant := 16#8184#; -- ../include/SDL/SDL_opengl.h:1718 GL_PIXEL_TEX_GEN_Q_ROUND_SGIX : constant := 16#8185#; -- ../include/SDL/SDL_opengl.h:1719 GL_PIXEL_TEX_GEN_Q_FLOOR_SGIX : constant := 16#8186#; -- ../include/SDL/SDL_opengl.h:1720 GL_PIXEL_TEX_GEN_ALPHA_REPLACE_SGIX : constant := 16#8187#; -- ../include/SDL/SDL_opengl.h:1721 GL_PIXEL_TEX_GEN_ALPHA_NO_REPLACE_SGIX : constant := 16#8188#; -- ../include/SDL/SDL_opengl.h:1722 GL_PIXEL_TEX_GEN_ALPHA_LS_SGIX : constant := 16#8189#; -- ../include/SDL/SDL_opengl.h:1723 GL_PIXEL_TEX_GEN_ALPHA_MS_SGIX : constant := 16#818A#; -- ../include/SDL/SDL_opengl.h:1724 GL_ASYNC_MARKER_SGIX : constant := 16#8329#; -- ../include/SDL/SDL_opengl.h:1733 GL_ASYNC_TEX_IMAGE_SGIX : constant := 16#835C#; -- ../include/SDL/SDL_opengl.h:1737 GL_ASYNC_DRAW_PIXELS_SGIX : constant := 16#835D#; -- ../include/SDL/SDL_opengl.h:1738 GL_ASYNC_READ_PIXELS_SGIX : constant := 16#835E#; -- ../include/SDL/SDL_opengl.h:1739 GL_MAX_ASYNC_TEX_IMAGE_SGIX : constant := 16#835F#; -- ../include/SDL/SDL_opengl.h:1740 GL_MAX_ASYNC_DRAW_PIXELS_SGIX : constant := 16#8360#; -- ../include/SDL/SDL_opengl.h:1741 GL_MAX_ASYNC_READ_PIXELS_SGIX : constant := 16#8361#; -- ../include/SDL/SDL_opengl.h:1742 GL_ASYNC_HISTOGRAM_SGIX : constant := 16#832C#; -- ../include/SDL/SDL_opengl.h:1746 GL_MAX_ASYNC_HISTOGRAM_SGIX : constant := 16#832D#; -- ../include/SDL/SDL_opengl.h:1747 GL_PARALLEL_ARRAYS_INTEL : constant := 16#83F4#; -- ../include/SDL/SDL_opengl.h:1754 GL_VERTEX_ARRAY_PARALLEL_POINTERS_INTEL : constant := 16#83F5#; -- ../include/SDL/SDL_opengl.h:1755 GL_NORMAL_ARRAY_PARALLEL_POINTERS_INTEL : constant := 16#83F6#; -- ../include/SDL/SDL_opengl.h:1756 GL_COLOR_ARRAY_PARALLEL_POINTERS_INTEL : constant := 16#83F7#; -- ../include/SDL/SDL_opengl.h:1757 GL_TEXTURE_COORD_ARRAY_PARALLEL_POINTERS_INTEL : constant := 16#83F8#; -- ../include/SDL/SDL_opengl.h:1758 GL_OCCLUSION_TEST_HP : constant := 16#8165#; -- ../include/SDL/SDL_opengl.h:1762 GL_OCCLUSION_TEST_RESULT_HP : constant := 16#8166#; -- ../include/SDL/SDL_opengl.h:1763 GL_PIXEL_TRANSFORM_2D_EXT : constant := 16#8330#; -- ../include/SDL/SDL_opengl.h:1767 GL_PIXEL_MAG_FILTER_EXT : constant := 16#8331#; -- ../include/SDL/SDL_opengl.h:1768 GL_PIXEL_MIN_FILTER_EXT : constant := 16#8332#; -- ../include/SDL/SDL_opengl.h:1769 GL_PIXEL_CUBIC_WEIGHT_EXT : constant := 16#8333#; -- ../include/SDL/SDL_opengl.h:1770 GL_CUBIC_EXT : constant := 16#8334#; -- ../include/SDL/SDL_opengl.h:1771 GL_AVERAGE_EXT : constant := 16#8335#; -- ../include/SDL/SDL_opengl.h:1772 GL_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT : constant := 16#8336#; -- ../include/SDL/SDL_opengl.h:1773 GL_MAX_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT : constant := 16#8337#; -- ../include/SDL/SDL_opengl.h:1774 GL_PIXEL_TRANSFORM_2D_MATRIX_EXT : constant := 16#8338#; -- ../include/SDL/SDL_opengl.h:1775 GL_SHARED_TEXTURE_PALETTE_EXT : constant := 16#81FB#; -- ../include/SDL/SDL_opengl.h:1782 GL_LIGHT_MODEL_COLOR_CONTROL_EXT : constant := 16#81F8#; -- ../include/SDL/SDL_opengl.h:1786 GL_SINGLE_COLOR_EXT : constant := 16#81F9#; -- ../include/SDL/SDL_opengl.h:1787 GL_SEPARATE_SPECULAR_COLOR_EXT : constant := 16#81FA#; -- ../include/SDL/SDL_opengl.h:1788 GL_COLOR_SUM_EXT : constant := 16#8458#; -- ../include/SDL/SDL_opengl.h:1792 GL_CURRENT_SECONDARY_COLOR_EXT : constant := 16#8459#; -- ../include/SDL/SDL_opengl.h:1793 GL_SECONDARY_COLOR_ARRAY_SIZE_EXT : constant := 16#845A#; -- ../include/SDL/SDL_opengl.h:1794 GL_SECONDARY_COLOR_ARRAY_TYPE_EXT : constant := 16#845B#; -- ../include/SDL/SDL_opengl.h:1795 GL_SECONDARY_COLOR_ARRAY_STRIDE_EXT : constant := 16#845C#; -- ../include/SDL/SDL_opengl.h:1796 GL_SECONDARY_COLOR_ARRAY_POINTER_EXT : constant := 16#845D#; -- ../include/SDL/SDL_opengl.h:1797 GL_SECONDARY_COLOR_ARRAY_EXT : constant := 16#845E#; -- ../include/SDL/SDL_opengl.h:1798 GL_PERTURB_EXT : constant := 16#85AE#; -- ../include/SDL/SDL_opengl.h:1802 GL_TEXTURE_NORMAL_EXT : constant := 16#85AF#; -- ../include/SDL/SDL_opengl.h:1803 GL_FOG_COORDINATE_SOURCE_EXT : constant := 16#8450#; -- ../include/SDL/SDL_opengl.h:1810 GL_FOG_COORDINATE_EXT : constant := 16#8451#; -- ../include/SDL/SDL_opengl.h:1811 GL_FRAGMENT_DEPTH_EXT : constant := 16#8452#; -- ../include/SDL/SDL_opengl.h:1812 GL_CURRENT_FOG_COORDINATE_EXT : constant := 16#8453#; -- ../include/SDL/SDL_opengl.h:1813 GL_FOG_COORDINATE_ARRAY_TYPE_EXT : constant := 16#8454#; -- ../include/SDL/SDL_opengl.h:1814 GL_FOG_COORDINATE_ARRAY_STRIDE_EXT : constant := 16#8455#; -- ../include/SDL/SDL_opengl.h:1815 GL_FOG_COORDINATE_ARRAY_POINTER_EXT : constant := 16#8456#; -- ../include/SDL/SDL_opengl.h:1816 GL_FOG_COORDINATE_ARRAY_EXT : constant := 16#8457#; -- ../include/SDL/SDL_opengl.h:1817 GL_SCREEN_COORDINATES_REND : constant := 16#8490#; -- ../include/SDL/SDL_opengl.h:1821 GL_INVERTED_SCREEN_W_REND : constant := 16#8491#; -- ../include/SDL/SDL_opengl.h:1822 GL_TANGENT_ARRAY_EXT : constant := 16#8439#; -- ../include/SDL/SDL_opengl.h:1826 GL_BINORMAL_ARRAY_EXT : constant := 16#843A#; -- ../include/SDL/SDL_opengl.h:1827 GL_CURRENT_TANGENT_EXT : constant := 16#843B#; -- ../include/SDL/SDL_opengl.h:1828 GL_CURRENT_BINORMAL_EXT : constant := 16#843C#; -- ../include/SDL/SDL_opengl.h:1829 GL_TANGENT_ARRAY_TYPE_EXT : constant := 16#843E#; -- ../include/SDL/SDL_opengl.h:1830 GL_TANGENT_ARRAY_STRIDE_EXT : constant := 16#843F#; -- ../include/SDL/SDL_opengl.h:1831 GL_BINORMAL_ARRAY_TYPE_EXT : constant := 16#8440#; -- ../include/SDL/SDL_opengl.h:1832 GL_BINORMAL_ARRAY_STRIDE_EXT : constant := 16#8441#; -- ../include/SDL/SDL_opengl.h:1833 GL_TANGENT_ARRAY_POINTER_EXT : constant := 16#8442#; -- ../include/SDL/SDL_opengl.h:1834 GL_BINORMAL_ARRAY_POINTER_EXT : constant := 16#8443#; -- ../include/SDL/SDL_opengl.h:1835 GL_MAP1_TANGENT_EXT : constant := 16#8444#; -- ../include/SDL/SDL_opengl.h:1836 GL_MAP2_TANGENT_EXT : constant := 16#8445#; -- ../include/SDL/SDL_opengl.h:1837 GL_MAP1_BINORMAL_EXT : constant := 16#8446#; -- ../include/SDL/SDL_opengl.h:1838 GL_MAP2_BINORMAL_EXT : constant := 16#8447#; -- ../include/SDL/SDL_opengl.h:1839 GL_COMBINE_EXT : constant := 16#8570#; -- ../include/SDL/SDL_opengl.h:1843 GL_COMBINE_RGB_EXT : constant := 16#8571#; -- ../include/SDL/SDL_opengl.h:1844 GL_COMBINE_ALPHA_EXT : constant := 16#8572#; -- ../include/SDL/SDL_opengl.h:1845 GL_RGB_SCALE_EXT : constant := 16#8573#; -- ../include/SDL/SDL_opengl.h:1846 GL_ADD_SIGNED_EXT : constant := 16#8574#; -- ../include/SDL/SDL_opengl.h:1847 GL_INTERPOLATE_EXT : constant := 16#8575#; -- ../include/SDL/SDL_opengl.h:1848 GL_CONSTANT_EXT : constant := 16#8576#; -- ../include/SDL/SDL_opengl.h:1849 GL_PRIMARY_COLOR_EXT : constant := 16#8577#; -- ../include/SDL/SDL_opengl.h:1850 GL_PREVIOUS_EXT : constant := 16#8578#; -- ../include/SDL/SDL_opengl.h:1851 GL_SOURCE0_RGB_EXT : constant := 16#8580#; -- ../include/SDL/SDL_opengl.h:1852 GL_SOURCE1_RGB_EXT : constant := 16#8581#; -- ../include/SDL/SDL_opengl.h:1853 GL_SOURCE2_RGB_EXT : constant := 16#8582#; -- ../include/SDL/SDL_opengl.h:1854 GL_SOURCE0_ALPHA_EXT : constant := 16#8588#; -- ../include/SDL/SDL_opengl.h:1855 GL_SOURCE1_ALPHA_EXT : constant := 16#8589#; -- ../include/SDL/SDL_opengl.h:1856 GL_SOURCE2_ALPHA_EXT : constant := 16#858A#; -- ../include/SDL/SDL_opengl.h:1857 GL_OPERAND0_RGB_EXT : constant := 16#8590#; -- ../include/SDL/SDL_opengl.h:1858 GL_OPERAND1_RGB_EXT : constant := 16#8591#; -- ../include/SDL/SDL_opengl.h:1859 GL_OPERAND2_RGB_EXT : constant := 16#8592#; -- ../include/SDL/SDL_opengl.h:1860 GL_OPERAND0_ALPHA_EXT : constant := 16#8598#; -- ../include/SDL/SDL_opengl.h:1861 GL_OPERAND1_ALPHA_EXT : constant := 16#8599#; -- ../include/SDL/SDL_opengl.h:1862 GL_OPERAND2_ALPHA_EXT : constant := 16#859A#; -- ../include/SDL/SDL_opengl.h:1863 GL_LIGHT_MODEL_SPECULAR_VECTOR_APPLE : constant := 16#85B0#; -- ../include/SDL/SDL_opengl.h:1867 GL_TRANSFORM_HINT_APPLE : constant := 16#85B1#; -- ../include/SDL/SDL_opengl.h:1871 GL_FOG_SCALE_SGIX : constant := 16#81FC#; -- ../include/SDL/SDL_opengl.h:1875 GL_FOG_SCALE_VALUE_SGIX : constant := 16#81FD#; -- ../include/SDL/SDL_opengl.h:1876 GL_UNPACK_CONSTANT_DATA_SUNX : constant := 16#81D5#; -- ../include/SDL/SDL_opengl.h:1880 GL_TEXTURE_CONSTANT_DATA_SUNX : constant := 16#81D6#; -- ../include/SDL/SDL_opengl.h:1881 GL_GLOBAL_ALPHA_SUN : constant := 16#81D9#; -- ../include/SDL/SDL_opengl.h:1885 GL_GLOBAL_ALPHA_FACTOR_SUN : constant := 16#81DA#; -- ../include/SDL/SDL_opengl.h:1886 GL_RESTART_SUN : constant := 16#0001#; -- ../include/SDL/SDL_opengl.h:1890 GL_REPLACE_MIDDLE_SUN : constant := 16#0002#; -- ../include/SDL/SDL_opengl.h:1891 GL_REPLACE_OLDEST_SUN : constant := 16#0003#; -- ../include/SDL/SDL_opengl.h:1892 GL_TRIANGLE_LIST_SUN : constant := 16#81D7#; -- ../include/SDL/SDL_opengl.h:1893 GL_REPLACEMENT_CODE_SUN : constant := 16#81D8#; -- ../include/SDL/SDL_opengl.h:1894 GL_REPLACEMENT_CODE_ARRAY_SUN : constant := 16#85C0#; -- ../include/SDL/SDL_opengl.h:1895 GL_REPLACEMENT_CODE_ARRAY_TYPE_SUN : constant := 16#85C1#; -- ../include/SDL/SDL_opengl.h:1896 GL_REPLACEMENT_CODE_ARRAY_STRIDE_SUN : constant := 16#85C2#; -- ../include/SDL/SDL_opengl.h:1897 GL_REPLACEMENT_CODE_ARRAY_POINTER_SUN : constant := 16#85C3#; -- ../include/SDL/SDL_opengl.h:1898 GL_R1UI_V3F_SUN : constant := 16#85C4#; -- ../include/SDL/SDL_opengl.h:1899 GL_R1UI_C4UB_V3F_SUN : constant := 16#85C5#; -- ../include/SDL/SDL_opengl.h:1900 GL_R1UI_C3F_V3F_SUN : constant := 16#85C6#; -- ../include/SDL/SDL_opengl.h:1901 GL_R1UI_N3F_V3F_SUN : constant := 16#85C7#; -- ../include/SDL/SDL_opengl.h:1902 GL_R1UI_C4F_N3F_V3F_SUN : constant := 16#85C8#; -- ../include/SDL/SDL_opengl.h:1903 GL_R1UI_T2F_V3F_SUN : constant := 16#85C9#; -- ../include/SDL/SDL_opengl.h:1904 GL_R1UI_T2F_N3F_V3F_SUN : constant := 16#85CA#; -- ../include/SDL/SDL_opengl.h:1905 GL_R1UI_T2F_C4F_N3F_V3F_SUN : constant := 16#85CB#; -- ../include/SDL/SDL_opengl.h:1906 GL_BLEND_DST_RGB_EXT : constant := 16#80C8#; -- ../include/SDL/SDL_opengl.h:1913 GL_BLEND_SRC_RGB_EXT : constant := 16#80C9#; -- ../include/SDL/SDL_opengl.h:1914 GL_BLEND_DST_ALPHA_EXT : constant := 16#80CA#; -- ../include/SDL/SDL_opengl.h:1915 GL_BLEND_SRC_ALPHA_EXT : constant := 16#80CB#; -- ../include/SDL/SDL_opengl.h:1916 GL_RED_MIN_CLAMP_INGR : constant := 16#8560#; -- ../include/SDL/SDL_opengl.h:1920 GL_GREEN_MIN_CLAMP_INGR : constant := 16#8561#; -- ../include/SDL/SDL_opengl.h:1921 GL_BLUE_MIN_CLAMP_INGR : constant := 16#8562#; -- ../include/SDL/SDL_opengl.h:1922 GL_ALPHA_MIN_CLAMP_INGR : constant := 16#8563#; -- ../include/SDL/SDL_opengl.h:1923 GL_RED_MAX_CLAMP_INGR : constant := 16#8564#; -- ../include/SDL/SDL_opengl.h:1924 GL_GREEN_MAX_CLAMP_INGR : constant := 16#8565#; -- ../include/SDL/SDL_opengl.h:1925 GL_BLUE_MAX_CLAMP_INGR : constant := 16#8566#; -- ../include/SDL/SDL_opengl.h:1926 GL_ALPHA_MAX_CLAMP_INGR : constant := 16#8567#; -- ../include/SDL/SDL_opengl.h:1927 GL_INTERLACE_READ_INGR : constant := 16#8568#; -- ../include/SDL/SDL_opengl.h:1931 GL_INCR_WRAP_EXT : constant := 16#8507#; -- ../include/SDL/SDL_opengl.h:1935 GL_DECR_WRAP_EXT : constant := 16#8508#; -- ../include/SDL/SDL_opengl.h:1936 GL_422_EXT : constant := 16#80CC#; -- ../include/SDL/SDL_opengl.h:1940 GL_422_REV_EXT : constant := 16#80CD#; -- ../include/SDL/SDL_opengl.h:1941 GL_422_AVERAGE_EXT : constant := 16#80CE#; -- ../include/SDL/SDL_opengl.h:1942 GL_422_REV_AVERAGE_EXT : constant := 16#80CF#; -- ../include/SDL/SDL_opengl.h:1943 GL_NORMAL_MAP_NV : constant := 16#8511#; -- ../include/SDL/SDL_opengl.h:1947 GL_REFLECTION_MAP_NV : constant := 16#8512#; -- ../include/SDL/SDL_opengl.h:1948 GL_NORMAL_MAP_EXT : constant := 16#8511#; -- ../include/SDL/SDL_opengl.h:1952 GL_REFLECTION_MAP_EXT : constant := 16#8512#; -- ../include/SDL/SDL_opengl.h:1953 GL_TEXTURE_CUBE_MAP_EXT : constant := 16#8513#; -- ../include/SDL/SDL_opengl.h:1954 GL_TEXTURE_BINDING_CUBE_MAP_EXT : constant := 16#8514#; -- ../include/SDL/SDL_opengl.h:1955 GL_TEXTURE_CUBE_MAP_POSITIVE_X_EXT : constant := 16#8515#; -- ../include/SDL/SDL_opengl.h:1956 GL_TEXTURE_CUBE_MAP_NEGATIVE_X_EXT : constant := 16#8516#; -- ../include/SDL/SDL_opengl.h:1957 GL_TEXTURE_CUBE_MAP_POSITIVE_Y_EXT : constant := 16#8517#; -- ../include/SDL/SDL_opengl.h:1958 GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_EXT : constant := 16#8518#; -- ../include/SDL/SDL_opengl.h:1959 GL_TEXTURE_CUBE_MAP_POSITIVE_Z_EXT : constant := 16#8519#; -- ../include/SDL/SDL_opengl.h:1960 GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_EXT : constant := 16#851A#; -- ../include/SDL/SDL_opengl.h:1961 GL_PROXY_TEXTURE_CUBE_MAP_EXT : constant := 16#851B#; -- ../include/SDL/SDL_opengl.h:1962 GL_MAX_CUBE_MAP_TEXTURE_SIZE_EXT : constant := 16#851C#; -- ../include/SDL/SDL_opengl.h:1963 GL_WRAP_BORDER_SUN : constant := 16#81D4#; -- ../include/SDL/SDL_opengl.h:1967 GL_MAX_TEXTURE_LOD_BIAS_EXT : constant := 16#84FD#; -- ../include/SDL/SDL_opengl.h:1974 GL_TEXTURE_FILTER_CONTROL_EXT : constant := 16#8500#; -- ../include/SDL/SDL_opengl.h:1975 GL_TEXTURE_LOD_BIAS_EXT : constant := 16#8501#; -- ../include/SDL/SDL_opengl.h:1976 GL_TEXTURE_MAX_ANISOTROPY_EXT : constant := 16#84FE#; -- ../include/SDL/SDL_opengl.h:1980 GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT : constant := 16#84FF#; -- ../include/SDL/SDL_opengl.h:1981 -- unsupported macro: GL_MODELVIEW0_STACK_DEPTH_EXT GL_MODELVIEW_STACK_DEPTH GL_MODELVIEW1_STACK_DEPTH_EXT : constant := 16#8502#; -- ../include/SDL/SDL_opengl.h:1986 -- unsupported macro: GL_MODELVIEW0_MATRIX_EXT GL_MODELVIEW_MATRIX GL_MODELVIEW1_MATRIX_EXT : constant := 16#8506#; -- ../include/SDL/SDL_opengl.h:1988 GL_VERTEX_WEIGHTING_EXT : constant := 16#8509#; -- ../include/SDL/SDL_opengl.h:1989 -- unsupported macro: GL_MODELVIEW0_EXT GL_MODELVIEW GL_MODELVIEW1_EXT : constant := 16#850A#; -- ../include/SDL/SDL_opengl.h:1991 GL_CURRENT_VERTEX_WEIGHT_EXT : constant := 16#850B#; -- ../include/SDL/SDL_opengl.h:1992 GL_VERTEX_WEIGHT_ARRAY_EXT : constant := 16#850C#; -- ../include/SDL/SDL_opengl.h:1993 GL_VERTEX_WEIGHT_ARRAY_SIZE_EXT : constant := 16#850D#; -- ../include/SDL/SDL_opengl.h:1994 GL_VERTEX_WEIGHT_ARRAY_TYPE_EXT : constant := 16#850E#; -- ../include/SDL/SDL_opengl.h:1995 GL_VERTEX_WEIGHT_ARRAY_STRIDE_EXT : constant := 16#850F#; -- ../include/SDL/SDL_opengl.h:1996 GL_VERTEX_WEIGHT_ARRAY_POINTER_EXT : constant := 16#8510#; -- ../include/SDL/SDL_opengl.h:1997 GL_MAX_SHININESS_NV : constant := 16#8504#; -- ../include/SDL/SDL_opengl.h:2001 GL_MAX_SPOT_EXPONENT_NV : constant := 16#8505#; -- ../include/SDL/SDL_opengl.h:2002 GL_VERTEX_ARRAY_RANGE_NV : constant := 16#851D#; -- ../include/SDL/SDL_opengl.h:2006 GL_VERTEX_ARRAY_RANGE_LENGTH_NV : constant := 16#851E#; -- ../include/SDL/SDL_opengl.h:2007 GL_VERTEX_ARRAY_RANGE_VALID_NV : constant := 16#851F#; -- ../include/SDL/SDL_opengl.h:2008 GL_MAX_VERTEX_ARRAY_RANGE_ELEMENT_NV : constant := 16#8520#; -- ../include/SDL/SDL_opengl.h:2009 GL_VERTEX_ARRAY_RANGE_POINTER_NV : constant := 16#8521#; -- ../include/SDL/SDL_opengl.h:2010 GL_REGISTER_COMBINERS_NV : constant := 16#8522#; -- ../include/SDL/SDL_opengl.h:2014 GL_VARIABLE_A_NV : constant := 16#8523#; -- ../include/SDL/SDL_opengl.h:2015 GL_VARIABLE_B_NV : constant := 16#8524#; -- ../include/SDL/SDL_opengl.h:2016 GL_VARIABLE_C_NV : constant := 16#8525#; -- ../include/SDL/SDL_opengl.h:2017 GL_VARIABLE_D_NV : constant := 16#8526#; -- ../include/SDL/SDL_opengl.h:2018 GL_VARIABLE_E_NV : constant := 16#8527#; -- ../include/SDL/SDL_opengl.h:2019 GL_VARIABLE_F_NV : constant := 16#8528#; -- ../include/SDL/SDL_opengl.h:2020 GL_VARIABLE_G_NV : constant := 16#8529#; -- ../include/SDL/SDL_opengl.h:2021 GL_CONSTANT_COLOR0_NV : constant := 16#852A#; -- ../include/SDL/SDL_opengl.h:2022 GL_CONSTANT_COLOR1_NV : constant := 16#852B#; -- ../include/SDL/SDL_opengl.h:2023 GL_PRIMARY_COLOR_NV : constant := 16#852C#; -- ../include/SDL/SDL_opengl.h:2024 GL_SECONDARY_COLOR_NV : constant := 16#852D#; -- ../include/SDL/SDL_opengl.h:2025 GL_SPARE0_NV : constant := 16#852E#; -- ../include/SDL/SDL_opengl.h:2026 GL_SPARE1_NV : constant := 16#852F#; -- ../include/SDL/SDL_opengl.h:2027 GL_DISCARD_NV : constant := 16#8530#; -- ../include/SDL/SDL_opengl.h:2028 GL_E_TIMES_F_NV : constant := 16#8531#; -- ../include/SDL/SDL_opengl.h:2029 GL_SPARE0_PLUS_SECONDARY_COLOR_NV : constant := 16#8532#; -- ../include/SDL/SDL_opengl.h:2030 GL_UNSIGNED_IDENTITY_NV : constant := 16#8536#; -- ../include/SDL/SDL_opengl.h:2031 GL_UNSIGNED_INVERT_NV : constant := 16#8537#; -- ../include/SDL/SDL_opengl.h:2032 GL_EXPAND_NORMAL_NV : constant := 16#8538#; -- ../include/SDL/SDL_opengl.h:2033 GL_EXPAND_NEGATE_NV : constant := 16#8539#; -- ../include/SDL/SDL_opengl.h:2034 GL_HALF_BIAS_NORMAL_NV : constant := 16#853A#; -- ../include/SDL/SDL_opengl.h:2035 GL_HALF_BIAS_NEGATE_NV : constant := 16#853B#; -- ../include/SDL/SDL_opengl.h:2036 GL_SIGNED_IDENTITY_NV : constant := 16#853C#; -- ../include/SDL/SDL_opengl.h:2037 GL_SIGNED_NEGATE_NV : constant := 16#853D#; -- ../include/SDL/SDL_opengl.h:2038 GL_SCALE_BY_TWO_NV : constant := 16#853E#; -- ../include/SDL/SDL_opengl.h:2039 GL_SCALE_BY_FOUR_NV : constant := 16#853F#; -- ../include/SDL/SDL_opengl.h:2040 GL_SCALE_BY_ONE_HALF_NV : constant := 16#8540#; -- ../include/SDL/SDL_opengl.h:2041 GL_BIAS_BY_NEGATIVE_ONE_HALF_NV : constant := 16#8541#; -- ../include/SDL/SDL_opengl.h:2042 GL_COMBINER_INPUT_NV : constant := 16#8542#; -- ../include/SDL/SDL_opengl.h:2043 GL_COMBINER_MAPPING_NV : constant := 16#8543#; -- ../include/SDL/SDL_opengl.h:2044 GL_COMBINER_COMPONENT_USAGE_NV : constant := 16#8544#; -- ../include/SDL/SDL_opengl.h:2045 GL_COMBINER_AB_DOT_PRODUCT_NV : constant := 16#8545#; -- ../include/SDL/SDL_opengl.h:2046 GL_COMBINER_CD_DOT_PRODUCT_NV : constant := 16#8546#; -- ../include/SDL/SDL_opengl.h:2047 GL_COMBINER_MUX_SUM_NV : constant := 16#8547#; -- ../include/SDL/SDL_opengl.h:2048 GL_COMBINER_SCALE_NV : constant := 16#8548#; -- ../include/SDL/SDL_opengl.h:2049 GL_COMBINER_BIAS_NV : constant := 16#8549#; -- ../include/SDL/SDL_opengl.h:2050 GL_COMBINER_AB_OUTPUT_NV : constant := 16#854A#; -- ../include/SDL/SDL_opengl.h:2051 GL_COMBINER_CD_OUTPUT_NV : constant := 16#854B#; -- ../include/SDL/SDL_opengl.h:2052 GL_COMBINER_SUM_OUTPUT_NV : constant := 16#854C#; -- ../include/SDL/SDL_opengl.h:2053 GL_MAX_GENERAL_COMBINERS_NV : constant := 16#854D#; -- ../include/SDL/SDL_opengl.h:2054 GL_NUM_GENERAL_COMBINERS_NV : constant := 16#854E#; -- ../include/SDL/SDL_opengl.h:2055 GL_COLOR_SUM_CLAMP_NV : constant := 16#854F#; -- ../include/SDL/SDL_opengl.h:2056 GL_COMBINER0_NV : constant := 16#8550#; -- ../include/SDL/SDL_opengl.h:2057 GL_COMBINER1_NV : constant := 16#8551#; -- ../include/SDL/SDL_opengl.h:2058 GL_COMBINER2_NV : constant := 16#8552#; -- ../include/SDL/SDL_opengl.h:2059 GL_COMBINER3_NV : constant := 16#8553#; -- ../include/SDL/SDL_opengl.h:2060 GL_COMBINER4_NV : constant := 16#8554#; -- ../include/SDL/SDL_opengl.h:2061 GL_COMBINER5_NV : constant := 16#8555#; -- ../include/SDL/SDL_opengl.h:2062 GL_COMBINER6_NV : constant := 16#8556#; -- ../include/SDL/SDL_opengl.h:2063 GL_COMBINER7_NV : constant := 16#8557#; -- ../include/SDL/SDL_opengl.h:2064 GL_FOG_DISTANCE_MODE_NV : constant := 16#855A#; -- ../include/SDL/SDL_opengl.h:2073 GL_EYE_RADIAL_NV : constant := 16#855B#; -- ../include/SDL/SDL_opengl.h:2074 GL_EYE_PLANE_ABSOLUTE_NV : constant := 16#855C#; -- ../include/SDL/SDL_opengl.h:2075 GL_EMBOSS_LIGHT_NV : constant := 16#855D#; -- ../include/SDL/SDL_opengl.h:2080 GL_EMBOSS_CONSTANT_NV : constant := 16#855E#; -- ../include/SDL/SDL_opengl.h:2081 GL_EMBOSS_MAP_NV : constant := 16#855F#; -- ../include/SDL/SDL_opengl.h:2082 GL_COMBINE4_NV : constant := 16#8503#; -- ../include/SDL/SDL_opengl.h:2089 GL_SOURCE3_RGB_NV : constant := 16#8583#; -- ../include/SDL/SDL_opengl.h:2090 GL_SOURCE3_ALPHA_NV : constant := 16#858B#; -- ../include/SDL/SDL_opengl.h:2091 GL_OPERAND3_RGB_NV : constant := 16#8593#; -- ../include/SDL/SDL_opengl.h:2092 GL_OPERAND3_ALPHA_NV : constant := 16#859B#; -- ../include/SDL/SDL_opengl.h:2093 GL_COMPRESSED_RGB_S3TC_DXT1_EXT : constant := 16#83F0#; -- ../include/SDL/SDL_opengl.h:2103 GL_COMPRESSED_RGBA_S3TC_DXT1_EXT : constant := 16#83F1#; -- ../include/SDL/SDL_opengl.h:2104 GL_COMPRESSED_RGBA_S3TC_DXT3_EXT : constant := 16#83F2#; -- ../include/SDL/SDL_opengl.h:2105 GL_COMPRESSED_RGBA_S3TC_DXT5_EXT : constant := 16#83F3#; -- ../include/SDL/SDL_opengl.h:2106 GL_CULL_VERTEX_IBM : constant := 103050; -- ../include/SDL/SDL_opengl.h:2110 GL_VERTEX_ARRAY_LIST_IBM : constant := 103070; -- ../include/SDL/SDL_opengl.h:2117 GL_NORMAL_ARRAY_LIST_IBM : constant := 103071; -- ../include/SDL/SDL_opengl.h:2118 GL_COLOR_ARRAY_LIST_IBM : constant := 103072; -- ../include/SDL/SDL_opengl.h:2119 GL_INDEX_ARRAY_LIST_IBM : constant := 103073; -- ../include/SDL/SDL_opengl.h:2120 GL_TEXTURE_COORD_ARRAY_LIST_IBM : constant := 103074; -- ../include/SDL/SDL_opengl.h:2121 GL_EDGE_FLAG_ARRAY_LIST_IBM : constant := 103075; -- ../include/SDL/SDL_opengl.h:2122 GL_FOG_COORDINATE_ARRAY_LIST_IBM : constant := 103076; -- ../include/SDL/SDL_opengl.h:2123 GL_SECONDARY_COLOR_ARRAY_LIST_IBM : constant := 103077; -- ../include/SDL/SDL_opengl.h:2124 GL_VERTEX_ARRAY_LIST_STRIDE_IBM : constant := 103080; -- ../include/SDL/SDL_opengl.h:2125 GL_NORMAL_ARRAY_LIST_STRIDE_IBM : constant := 103081; -- ../include/SDL/SDL_opengl.h:2126 GL_COLOR_ARRAY_LIST_STRIDE_IBM : constant := 103082; -- ../include/SDL/SDL_opengl.h:2127 GL_INDEX_ARRAY_LIST_STRIDE_IBM : constant := 103083; -- ../include/SDL/SDL_opengl.h:2128 GL_TEXTURE_COORD_ARRAY_LIST_STRIDE_IBM : constant := 103084; -- ../include/SDL/SDL_opengl.h:2129 GL_EDGE_FLAG_ARRAY_LIST_STRIDE_IBM : constant := 103085; -- ../include/SDL/SDL_opengl.h:2130 GL_FOG_COORDINATE_ARRAY_LIST_STRIDE_IBM : constant := 103086; -- ../include/SDL/SDL_opengl.h:2131 GL_SECONDARY_COLOR_ARRAY_LIST_STRIDE_IBM : constant := 103087; -- ../include/SDL/SDL_opengl.h:2132 GL_PACK_SUBSAMPLE_RATE_SGIX : constant := 16#85A0#; -- ../include/SDL/SDL_opengl.h:2136 GL_UNPACK_SUBSAMPLE_RATE_SGIX : constant := 16#85A1#; -- ../include/SDL/SDL_opengl.h:2137 GL_PIXEL_SUBSAMPLE_4444_SGIX : constant := 16#85A2#; -- ../include/SDL/SDL_opengl.h:2138 GL_PIXEL_SUBSAMPLE_2424_SGIX : constant := 16#85A3#; -- ../include/SDL/SDL_opengl.h:2139 GL_PIXEL_SUBSAMPLE_4242_SGIX : constant := 16#85A4#; -- ../include/SDL/SDL_opengl.h:2140 GL_YCRCB_SGIX : constant := 16#8318#; -- ../include/SDL/SDL_opengl.h:2147 GL_YCRCBA_SGIX : constant := 16#8319#; -- ../include/SDL/SDL_opengl.h:2148 GL_DEPTH_PASS_INSTRUMENT_SGIX : constant := 16#8310#; -- ../include/SDL/SDL_opengl.h:2152 GL_DEPTH_PASS_INSTRUMENT_COUNTERS_SGIX : constant := 16#8311#; -- ../include/SDL/SDL_opengl.h:2153 GL_DEPTH_PASS_INSTRUMENT_MAX_SGIX : constant := 16#8312#; -- ../include/SDL/SDL_opengl.h:2154 GL_COMPRESSED_RGB_FXT1_3DFX : constant := 16#86B0#; -- ../include/SDL/SDL_opengl.h:2158 GL_COMPRESSED_RGBA_FXT1_3DFX : constant := 16#86B1#; -- ../include/SDL/SDL_opengl.h:2159 GL_MULTISAMPLE_3DFX : constant := 16#86B2#; -- ../include/SDL/SDL_opengl.h:2163 GL_SAMPLE_BUFFERS_3DFX : constant := 16#86B3#; -- ../include/SDL/SDL_opengl.h:2164 GL_SAMPLES_3DFX : constant := 16#86B4#; -- ../include/SDL/SDL_opengl.h:2165 GL_MULTISAMPLE_BIT_3DFX : constant := 16#20000000#; -- ../include/SDL/SDL_opengl.h:2166 GL_MULTISAMPLE_EXT : constant := 16#809D#; -- ../include/SDL/SDL_opengl.h:2173 GL_SAMPLE_ALPHA_TO_MASK_EXT : constant := 16#809E#; -- ../include/SDL/SDL_opengl.h:2174 GL_SAMPLE_ALPHA_TO_ONE_EXT : constant := 16#809F#; -- ../include/SDL/SDL_opengl.h:2175 GL_SAMPLE_MASK_EXT : constant := 16#80A0#; -- ../include/SDL/SDL_opengl.h:2176 GL_1PASS_EXT : constant := 16#80A1#; -- ../include/SDL/SDL_opengl.h:2177 GL_2PASS_0_EXT : constant := 16#80A2#; -- ../include/SDL/SDL_opengl.h:2178 GL_2PASS_1_EXT : constant := 16#80A3#; -- ../include/SDL/SDL_opengl.h:2179 GL_4PASS_0_EXT : constant := 16#80A4#; -- ../include/SDL/SDL_opengl.h:2180 GL_4PASS_1_EXT : constant := 16#80A5#; -- ../include/SDL/SDL_opengl.h:2181 GL_4PASS_2_EXT : constant := 16#80A6#; -- ../include/SDL/SDL_opengl.h:2182 GL_4PASS_3_EXT : constant := 16#80A7#; -- ../include/SDL/SDL_opengl.h:2183 GL_SAMPLE_BUFFERS_EXT : constant := 16#80A8#; -- ../include/SDL/SDL_opengl.h:2184 GL_SAMPLES_EXT : constant := 16#80A9#; -- ../include/SDL/SDL_opengl.h:2185 GL_SAMPLE_MASK_VALUE_EXT : constant := 16#80AA#; -- ../include/SDL/SDL_opengl.h:2186 GL_SAMPLE_MASK_INVERT_EXT : constant := 16#80AB#; -- ../include/SDL/SDL_opengl.h:2187 GL_SAMPLE_PATTERN_EXT : constant := 16#80AC#; -- ../include/SDL/SDL_opengl.h:2188 GL_MULTISAMPLE_BIT_EXT : constant := 16#20000000#; -- ../include/SDL/SDL_opengl.h:2189 GL_VERTEX_PRECLIP_SGIX : constant := 16#83EE#; -- ../include/SDL/SDL_opengl.h:2193 GL_VERTEX_PRECLIP_HINT_SGIX : constant := 16#83EF#; -- ../include/SDL/SDL_opengl.h:2194 GL_CONVOLUTION_HINT_SGIX : constant := 16#8316#; -- ../include/SDL/SDL_opengl.h:2198 GL_PACK_RESAMPLE_SGIX : constant := 16#842C#; -- ../include/SDL/SDL_opengl.h:2202 GL_UNPACK_RESAMPLE_SGIX : constant := 16#842D#; -- ../include/SDL/SDL_opengl.h:2203 GL_RESAMPLE_REPLICATE_SGIX : constant := 16#842E#; -- ../include/SDL/SDL_opengl.h:2204 GL_RESAMPLE_ZERO_FILL_SGIX : constant := 16#842F#; -- ../include/SDL/SDL_opengl.h:2205 GL_RESAMPLE_DECIMATE_SGIX : constant := 16#8430#; -- ../include/SDL/SDL_opengl.h:2206 GL_EYE_DISTANCE_TO_POINT_SGIS : constant := 16#81F0#; -- ../include/SDL/SDL_opengl.h:2210 GL_OBJECT_DISTANCE_TO_POINT_SGIS : constant := 16#81F1#; -- ../include/SDL/SDL_opengl.h:2211 GL_EYE_DISTANCE_TO_LINE_SGIS : constant := 16#81F2#; -- ../include/SDL/SDL_opengl.h:2212 GL_OBJECT_DISTANCE_TO_LINE_SGIS : constant := 16#81F3#; -- ../include/SDL/SDL_opengl.h:2213 GL_EYE_POINT_SGIS : constant := 16#81F4#; -- ../include/SDL/SDL_opengl.h:2214 GL_OBJECT_POINT_SGIS : constant := 16#81F5#; -- ../include/SDL/SDL_opengl.h:2215 GL_EYE_LINE_SGIS : constant := 16#81F6#; -- ../include/SDL/SDL_opengl.h:2216 GL_OBJECT_LINE_SGIS : constant := 16#81F7#; -- ../include/SDL/SDL_opengl.h:2217 GL_TEXTURE_COLOR_WRITEMASK_SGIS : constant := 16#81EF#; -- ../include/SDL/SDL_opengl.h:2221 GL_DOT3_RGB_EXT : constant := 16#8740#; -- ../include/SDL/SDL_opengl.h:2225 GL_DOT3_RGBA_EXT : constant := 16#8741#; -- ../include/SDL/SDL_opengl.h:2226 GL_MIRROR_CLAMP_ATI : constant := 16#8742#; -- ../include/SDL/SDL_opengl.h:2230 GL_MIRROR_CLAMP_TO_EDGE_ATI : constant := 16#8743#; -- ../include/SDL/SDL_opengl.h:2231 GL_ALL_COMPLETED_NV : constant := 16#84F2#; -- ../include/SDL/SDL_opengl.h:2235 GL_FENCE_STATUS_NV : constant := 16#84F3#; -- ../include/SDL/SDL_opengl.h:2236 GL_FENCE_CONDITION_NV : constant := 16#84F4#; -- ../include/SDL/SDL_opengl.h:2237 GL_MIRRORED_REPEAT_IBM : constant := 16#8370#; -- ../include/SDL/SDL_opengl.h:2241 GL_EVAL_2D_NV : constant := 16#86C0#; -- ../include/SDL/SDL_opengl.h:2245 GL_EVAL_TRIANGULAR_2D_NV : constant := 16#86C1#; -- ../include/SDL/SDL_opengl.h:2246 GL_MAP_TESSELLATION_NV : constant := 16#86C2#; -- ../include/SDL/SDL_opengl.h:2247 GL_MAP_ATTRIB_U_ORDER_NV : constant := 16#86C3#; -- ../include/SDL/SDL_opengl.h:2248 GL_MAP_ATTRIB_V_ORDER_NV : constant := 16#86C4#; -- ../include/SDL/SDL_opengl.h:2249 GL_EVAL_FRACTIONAL_TESSELLATION_NV : constant := 16#86C5#; -- ../include/SDL/SDL_opengl.h:2250 GL_EVAL_VERTEX_ATTRIB0_NV : constant := 16#86C6#; -- ../include/SDL/SDL_opengl.h:2251 GL_EVAL_VERTEX_ATTRIB1_NV : constant := 16#86C7#; -- ../include/SDL/SDL_opengl.h:2252 GL_EVAL_VERTEX_ATTRIB2_NV : constant := 16#86C8#; -- ../include/SDL/SDL_opengl.h:2253 GL_EVAL_VERTEX_ATTRIB3_NV : constant := 16#86C9#; -- ../include/SDL/SDL_opengl.h:2254 GL_EVAL_VERTEX_ATTRIB4_NV : constant := 16#86CA#; -- ../include/SDL/SDL_opengl.h:2255 GL_EVAL_VERTEX_ATTRIB5_NV : constant := 16#86CB#; -- ../include/SDL/SDL_opengl.h:2256 GL_EVAL_VERTEX_ATTRIB6_NV : constant := 16#86CC#; -- ../include/SDL/SDL_opengl.h:2257 GL_EVAL_VERTEX_ATTRIB7_NV : constant := 16#86CD#; -- ../include/SDL/SDL_opengl.h:2258 GL_EVAL_VERTEX_ATTRIB8_NV : constant := 16#86CE#; -- ../include/SDL/SDL_opengl.h:2259 GL_EVAL_VERTEX_ATTRIB9_NV : constant := 16#86CF#; -- ../include/SDL/SDL_opengl.h:2260 GL_EVAL_VERTEX_ATTRIB10_NV : constant := 16#86D0#; -- ../include/SDL/SDL_opengl.h:2261 GL_EVAL_VERTEX_ATTRIB11_NV : constant := 16#86D1#; -- ../include/SDL/SDL_opengl.h:2262 GL_EVAL_VERTEX_ATTRIB12_NV : constant := 16#86D2#; -- ../include/SDL/SDL_opengl.h:2263 GL_EVAL_VERTEX_ATTRIB13_NV : constant := 16#86D3#; -- ../include/SDL/SDL_opengl.h:2264 GL_EVAL_VERTEX_ATTRIB14_NV : constant := 16#86D4#; -- ../include/SDL/SDL_opengl.h:2265 GL_EVAL_VERTEX_ATTRIB15_NV : constant := 16#86D5#; -- ../include/SDL/SDL_opengl.h:2266 GL_MAX_MAP_TESSELLATION_NV : constant := 16#86D6#; -- ../include/SDL/SDL_opengl.h:2267 GL_MAX_RATIONAL_EVAL_ORDER_NV : constant := 16#86D7#; -- ../include/SDL/SDL_opengl.h:2268 GL_DEPTH_STENCIL_NV : constant := 16#84F9#; -- ../include/SDL/SDL_opengl.h:2272 GL_UNSIGNED_INT_24_8_NV : constant := 16#84FA#; -- ../include/SDL/SDL_opengl.h:2273 GL_PER_STAGE_CONSTANTS_NV : constant := 16#8535#; -- ../include/SDL/SDL_opengl.h:2277 GL_TEXTURE_RECTANGLE_NV : constant := 16#84F5#; -- ../include/SDL/SDL_opengl.h:2284 GL_TEXTURE_BINDING_RECTANGLE_NV : constant := 16#84F6#; -- ../include/SDL/SDL_opengl.h:2285 GL_PROXY_TEXTURE_RECTANGLE_NV : constant := 16#84F7#; -- ../include/SDL/SDL_opengl.h:2286 GL_MAX_RECTANGLE_TEXTURE_SIZE_NV : constant := 16#84F8#; -- ../include/SDL/SDL_opengl.h:2287 GL_OFFSET_TEXTURE_RECTANGLE_NV : constant := 16#864C#; -- ../include/SDL/SDL_opengl.h:2291 GL_OFFSET_TEXTURE_RECTANGLE_SCALE_NV : constant := 16#864D#; -- ../include/SDL/SDL_opengl.h:2292 GL_DOT_PRODUCT_TEXTURE_RECTANGLE_NV : constant := 16#864E#; -- ../include/SDL/SDL_opengl.h:2293 GL_RGBA_UNSIGNED_DOT_PRODUCT_MAPPING_NV : constant := 16#86D9#; -- ../include/SDL/SDL_opengl.h:2294 GL_UNSIGNED_INT_S8_S8_8_8_NV : constant := 16#86DA#; -- ../include/SDL/SDL_opengl.h:2295 GL_UNSIGNED_INT_8_8_S8_S8_REV_NV : constant := 16#86DB#; -- ../include/SDL/SDL_opengl.h:2296 GL_DSDT_MAG_INTENSITY_NV : constant := 16#86DC#; -- ../include/SDL/SDL_opengl.h:2297 GL_SHADER_CONSISTENT_NV : constant := 16#86DD#; -- ../include/SDL/SDL_opengl.h:2298 GL_TEXTURE_SHADER_NV : constant := 16#86DE#; -- ../include/SDL/SDL_opengl.h:2299 GL_SHADER_OPERATION_NV : constant := 16#86DF#; -- ../include/SDL/SDL_opengl.h:2300 GL_CULL_MODES_NV : constant := 16#86E0#; -- ../include/SDL/SDL_opengl.h:2301 GL_OFFSET_TEXTURE_MATRIX_NV : constant := 16#86E1#; -- ../include/SDL/SDL_opengl.h:2302 GL_OFFSET_TEXTURE_SCALE_NV : constant := 16#86E2#; -- ../include/SDL/SDL_opengl.h:2303 GL_OFFSET_TEXTURE_BIAS_NV : constant := 16#86E3#; -- ../include/SDL/SDL_opengl.h:2304 -- unsupported macro: GL_OFFSET_TEXTURE_2D_MATRIX_NV GL_OFFSET_TEXTURE_MATRIX_NV -- unsupported macro: GL_OFFSET_TEXTURE_2D_SCALE_NV GL_OFFSET_TEXTURE_SCALE_NV -- unsupported macro: GL_OFFSET_TEXTURE_2D_BIAS_NV GL_OFFSET_TEXTURE_BIAS_NV GL_PREVIOUS_TEXTURE_INPUT_NV : constant := 16#86E4#; -- ../include/SDL/SDL_opengl.h:2308 GL_CONST_EYE_NV : constant := 16#86E5#; -- ../include/SDL/SDL_opengl.h:2309 GL_PASS_THROUGH_NV : constant := 16#86E6#; -- ../include/SDL/SDL_opengl.h:2310 GL_CULL_FRAGMENT_NV : constant := 16#86E7#; -- ../include/SDL/SDL_opengl.h:2311 GL_OFFSET_TEXTURE_2D_NV : constant := 16#86E8#; -- ../include/SDL/SDL_opengl.h:2312 GL_DEPENDENT_AR_TEXTURE_2D_NV : constant := 16#86E9#; -- ../include/SDL/SDL_opengl.h:2313 GL_DEPENDENT_GB_TEXTURE_2D_NV : constant := 16#86EA#; -- ../include/SDL/SDL_opengl.h:2314 GL_DOT_PRODUCT_NV : constant := 16#86EC#; -- ../include/SDL/SDL_opengl.h:2315 GL_DOT_PRODUCT_DEPTH_REPLACE_NV : constant := 16#86ED#; -- ../include/SDL/SDL_opengl.h:2316 GL_DOT_PRODUCT_TEXTURE_2D_NV : constant := 16#86EE#; -- ../include/SDL/SDL_opengl.h:2317 GL_DOT_PRODUCT_TEXTURE_CUBE_MAP_NV : constant := 16#86F0#; -- ../include/SDL/SDL_opengl.h:2318 GL_DOT_PRODUCT_DIFFUSE_CUBE_MAP_NV : constant := 16#86F1#; -- ../include/SDL/SDL_opengl.h:2319 GL_DOT_PRODUCT_REFLECT_CUBE_MAP_NV : constant := 16#86F2#; -- ../include/SDL/SDL_opengl.h:2320 GL_DOT_PRODUCT_CONST_EYE_REFLECT_CUBE_MAP_NV : constant := 16#86F3#; -- ../include/SDL/SDL_opengl.h:2321 GL_HILO_NV : constant := 16#86F4#; -- ../include/SDL/SDL_opengl.h:2322 GL_DSDT_NV : constant := 16#86F5#; -- ../include/SDL/SDL_opengl.h:2323 GL_DSDT_MAG_NV : constant := 16#86F6#; -- ../include/SDL/SDL_opengl.h:2324 GL_DSDT_MAG_VIB_NV : constant := 16#86F7#; -- ../include/SDL/SDL_opengl.h:2325 GL_HILO16_NV : constant := 16#86F8#; -- ../include/SDL/SDL_opengl.h:2326 GL_SIGNED_HILO_NV : constant := 16#86F9#; -- ../include/SDL/SDL_opengl.h:2327 GL_SIGNED_HILO16_NV : constant := 16#86FA#; -- ../include/SDL/SDL_opengl.h:2328 GL_SIGNED_RGBA_NV : constant := 16#86FB#; -- ../include/SDL/SDL_opengl.h:2329 GL_SIGNED_RGBA8_NV : constant := 16#86FC#; -- ../include/SDL/SDL_opengl.h:2330 GL_SIGNED_RGB_NV : constant := 16#86FE#; -- ../include/SDL/SDL_opengl.h:2331 GL_SIGNED_RGB8_NV : constant := 16#86FF#; -- ../include/SDL/SDL_opengl.h:2332 GL_SIGNED_LUMINANCE_NV : constant := 16#8701#; -- ../include/SDL/SDL_opengl.h:2333 GL_SIGNED_LUMINANCE8_NV : constant := 16#8702#; -- ../include/SDL/SDL_opengl.h:2334 GL_SIGNED_LUMINANCE_ALPHA_NV : constant := 16#8703#; -- ../include/SDL/SDL_opengl.h:2335 GL_SIGNED_LUMINANCE8_ALPHA8_NV : constant := 16#8704#; -- ../include/SDL/SDL_opengl.h:2336 GL_SIGNED_ALPHA_NV : constant := 16#8705#; -- ../include/SDL/SDL_opengl.h:2337 GL_SIGNED_ALPHA8_NV : constant := 16#8706#; -- ../include/SDL/SDL_opengl.h:2338 GL_SIGNED_INTENSITY_NV : constant := 16#8707#; -- ../include/SDL/SDL_opengl.h:2339 GL_SIGNED_INTENSITY8_NV : constant := 16#8708#; -- ../include/SDL/SDL_opengl.h:2340 GL_DSDT8_NV : constant := 16#8709#; -- ../include/SDL/SDL_opengl.h:2341 GL_DSDT8_MAG8_NV : constant := 16#870A#; -- ../include/SDL/SDL_opengl.h:2342 GL_DSDT8_MAG8_INTENSITY8_NV : constant := 16#870B#; -- ../include/SDL/SDL_opengl.h:2343 GL_SIGNED_RGB_UNSIGNED_ALPHA_NV : constant := 16#870C#; -- ../include/SDL/SDL_opengl.h:2344 GL_SIGNED_RGB8_UNSIGNED_ALPHA8_NV : constant := 16#870D#; -- ../include/SDL/SDL_opengl.h:2345 GL_HI_SCALE_NV : constant := 16#870E#; -- ../include/SDL/SDL_opengl.h:2346 GL_LO_SCALE_NV : constant := 16#870F#; -- ../include/SDL/SDL_opengl.h:2347 GL_DS_SCALE_NV : constant := 16#8710#; -- ../include/SDL/SDL_opengl.h:2348 GL_DT_SCALE_NV : constant := 16#8711#; -- ../include/SDL/SDL_opengl.h:2349 GL_MAGNITUDE_SCALE_NV : constant := 16#8712#; -- ../include/SDL/SDL_opengl.h:2350 GL_VIBRANCE_SCALE_NV : constant := 16#8713#; -- ../include/SDL/SDL_opengl.h:2351 GL_HI_BIAS_NV : constant := 16#8714#; -- ../include/SDL/SDL_opengl.h:2352 GL_LO_BIAS_NV : constant := 16#8715#; -- ../include/SDL/SDL_opengl.h:2353 GL_DS_BIAS_NV : constant := 16#8716#; -- ../include/SDL/SDL_opengl.h:2354 GL_DT_BIAS_NV : constant := 16#8717#; -- ../include/SDL/SDL_opengl.h:2355 GL_MAGNITUDE_BIAS_NV : constant := 16#8718#; -- ../include/SDL/SDL_opengl.h:2356 GL_VIBRANCE_BIAS_NV : constant := 16#8719#; -- ../include/SDL/SDL_opengl.h:2357 GL_TEXTURE_BORDER_VALUES_NV : constant := 16#871A#; -- ../include/SDL/SDL_opengl.h:2358 GL_TEXTURE_HI_SIZE_NV : constant := 16#871B#; -- ../include/SDL/SDL_opengl.h:2359 GL_TEXTURE_LO_SIZE_NV : constant := 16#871C#; -- ../include/SDL/SDL_opengl.h:2360 GL_TEXTURE_DS_SIZE_NV : constant := 16#871D#; -- ../include/SDL/SDL_opengl.h:2361 GL_TEXTURE_DT_SIZE_NV : constant := 16#871E#; -- ../include/SDL/SDL_opengl.h:2362 GL_TEXTURE_MAG_SIZE_NV : constant := 16#871F#; -- ../include/SDL/SDL_opengl.h:2363 GL_DOT_PRODUCT_TEXTURE_3D_NV : constant := 16#86EF#; -- ../include/SDL/SDL_opengl.h:2367 GL_VERTEX_ARRAY_RANGE_WITHOUT_FLUSH_NV : constant := 16#8533#; -- ../include/SDL/SDL_opengl.h:2371 GL_VERTEX_PROGRAM_NV : constant := 16#8620#; -- ../include/SDL/SDL_opengl.h:2375 GL_VERTEX_STATE_PROGRAM_NV : constant := 16#8621#; -- ../include/SDL/SDL_opengl.h:2376 GL_ATTRIB_ARRAY_SIZE_NV : constant := 16#8623#; -- ../include/SDL/SDL_opengl.h:2377 GL_ATTRIB_ARRAY_STRIDE_NV : constant := 16#8624#; -- ../include/SDL/SDL_opengl.h:2378 GL_ATTRIB_ARRAY_TYPE_NV : constant := 16#8625#; -- ../include/SDL/SDL_opengl.h:2379 GL_CURRENT_ATTRIB_NV : constant := 16#8626#; -- ../include/SDL/SDL_opengl.h:2380 GL_PROGRAM_LENGTH_NV : constant := 16#8627#; -- ../include/SDL/SDL_opengl.h:2381 GL_PROGRAM_STRING_NV : constant := 16#8628#; -- ../include/SDL/SDL_opengl.h:2382 GL_MODELVIEW_PROJECTION_NV : constant := 16#8629#; -- ../include/SDL/SDL_opengl.h:2383 GL_IDENTITY_NV : constant := 16#862A#; -- ../include/SDL/SDL_opengl.h:2384 GL_INVERSE_NV : constant := 16#862B#; -- ../include/SDL/SDL_opengl.h:2385 GL_TRANSPOSE_NV : constant := 16#862C#; -- ../include/SDL/SDL_opengl.h:2386 GL_INVERSE_TRANSPOSE_NV : constant := 16#862D#; -- ../include/SDL/SDL_opengl.h:2387 GL_MAX_TRACK_MATRIX_STACK_DEPTH_NV : constant := 16#862E#; -- ../include/SDL/SDL_opengl.h:2388 GL_MAX_TRACK_MATRICES_NV : constant := 16#862F#; -- ../include/SDL/SDL_opengl.h:2389 GL_MATRIX0_NV : constant := 16#8630#; -- ../include/SDL/SDL_opengl.h:2390 GL_MATRIX1_NV : constant := 16#8631#; -- ../include/SDL/SDL_opengl.h:2391 GL_MATRIX2_NV : constant := 16#8632#; -- ../include/SDL/SDL_opengl.h:2392 GL_MATRIX3_NV : constant := 16#8633#; -- ../include/SDL/SDL_opengl.h:2393 GL_MATRIX4_NV : constant := 16#8634#; -- ../include/SDL/SDL_opengl.h:2394 GL_MATRIX5_NV : constant := 16#8635#; -- ../include/SDL/SDL_opengl.h:2395 GL_MATRIX6_NV : constant := 16#8636#; -- ../include/SDL/SDL_opengl.h:2396 GL_MATRIX7_NV : constant := 16#8637#; -- ../include/SDL/SDL_opengl.h:2397 GL_CURRENT_MATRIX_STACK_DEPTH_NV : constant := 16#8640#; -- ../include/SDL/SDL_opengl.h:2398 GL_CURRENT_MATRIX_NV : constant := 16#8641#; -- ../include/SDL/SDL_opengl.h:2399 GL_VERTEX_PROGRAM_POINT_SIZE_NV : constant := 16#8642#; -- ../include/SDL/SDL_opengl.h:2400 GL_VERTEX_PROGRAM_TWO_SIDE_NV : constant := 16#8643#; -- ../include/SDL/SDL_opengl.h:2401 GL_PROGRAM_PARAMETER_NV : constant := 16#8644#; -- ../include/SDL/SDL_opengl.h:2402 GL_ATTRIB_ARRAY_POINTER_NV : constant := 16#8645#; -- ../include/SDL/SDL_opengl.h:2403 GL_PROGRAM_TARGET_NV : constant := 16#8646#; -- ../include/SDL/SDL_opengl.h:2404 GL_PROGRAM_RESIDENT_NV : constant := 16#8647#; -- ../include/SDL/SDL_opengl.h:2405 GL_TRACK_MATRIX_NV : constant := 16#8648#; -- ../include/SDL/SDL_opengl.h:2406 GL_TRACK_MATRIX_TRANSFORM_NV : constant := 16#8649#; -- ../include/SDL/SDL_opengl.h:2407 GL_VERTEX_PROGRAM_BINDING_NV : constant := 16#864A#; -- ../include/SDL/SDL_opengl.h:2408 GL_PROGRAM_ERROR_POSITION_NV : constant := 16#864B#; -- ../include/SDL/SDL_opengl.h:2409 GL_VERTEX_ATTRIB_ARRAY0_NV : constant := 16#8650#; -- ../include/SDL/SDL_opengl.h:2410 GL_VERTEX_ATTRIB_ARRAY1_NV : constant := 16#8651#; -- ../include/SDL/SDL_opengl.h:2411 GL_VERTEX_ATTRIB_ARRAY2_NV : constant := 16#8652#; -- ../include/SDL/SDL_opengl.h:2412 GL_VERTEX_ATTRIB_ARRAY3_NV : constant := 16#8653#; -- ../include/SDL/SDL_opengl.h:2413 GL_VERTEX_ATTRIB_ARRAY4_NV : constant := 16#8654#; -- ../include/SDL/SDL_opengl.h:2414 GL_VERTEX_ATTRIB_ARRAY5_NV : constant := 16#8655#; -- ../include/SDL/SDL_opengl.h:2415 GL_VERTEX_ATTRIB_ARRAY6_NV : constant := 16#8656#; -- ../include/SDL/SDL_opengl.h:2416 GL_VERTEX_ATTRIB_ARRAY7_NV : constant := 16#8657#; -- ../include/SDL/SDL_opengl.h:2417 GL_VERTEX_ATTRIB_ARRAY8_NV : constant := 16#8658#; -- ../include/SDL/SDL_opengl.h:2418 GL_VERTEX_ATTRIB_ARRAY9_NV : constant := 16#8659#; -- ../include/SDL/SDL_opengl.h:2419 GL_VERTEX_ATTRIB_ARRAY10_NV : constant := 16#865A#; -- ../include/SDL/SDL_opengl.h:2420 GL_VERTEX_ATTRIB_ARRAY11_NV : constant := 16#865B#; -- ../include/SDL/SDL_opengl.h:2421 GL_VERTEX_ATTRIB_ARRAY12_NV : constant := 16#865C#; -- ../include/SDL/SDL_opengl.h:2422 GL_VERTEX_ATTRIB_ARRAY13_NV : constant := 16#865D#; -- ../include/SDL/SDL_opengl.h:2423 GL_VERTEX_ATTRIB_ARRAY14_NV : constant := 16#865E#; -- ../include/SDL/SDL_opengl.h:2424 GL_VERTEX_ATTRIB_ARRAY15_NV : constant := 16#865F#; -- ../include/SDL/SDL_opengl.h:2425 GL_MAP1_VERTEX_ATTRIB0_4_NV : constant := 16#8660#; -- ../include/SDL/SDL_opengl.h:2426 GL_MAP1_VERTEX_ATTRIB1_4_NV : constant := 16#8661#; -- ../include/SDL/SDL_opengl.h:2427 GL_MAP1_VERTEX_ATTRIB2_4_NV : constant := 16#8662#; -- ../include/SDL/SDL_opengl.h:2428 GL_MAP1_VERTEX_ATTRIB3_4_NV : constant := 16#8663#; -- ../include/SDL/SDL_opengl.h:2429 GL_MAP1_VERTEX_ATTRIB4_4_NV : constant := 16#8664#; -- ../include/SDL/SDL_opengl.h:2430 GL_MAP1_VERTEX_ATTRIB5_4_NV : constant := 16#8665#; -- ../include/SDL/SDL_opengl.h:2431 GL_MAP1_VERTEX_ATTRIB6_4_NV : constant := 16#8666#; -- ../include/SDL/SDL_opengl.h:2432 GL_MAP1_VERTEX_ATTRIB7_4_NV : constant := 16#8667#; -- ../include/SDL/SDL_opengl.h:2433 GL_MAP1_VERTEX_ATTRIB8_4_NV : constant := 16#8668#; -- ../include/SDL/SDL_opengl.h:2434 GL_MAP1_VERTEX_ATTRIB9_4_NV : constant := 16#8669#; -- ../include/SDL/SDL_opengl.h:2435 GL_MAP1_VERTEX_ATTRIB10_4_NV : constant := 16#866A#; -- ../include/SDL/SDL_opengl.h:2436 GL_MAP1_VERTEX_ATTRIB11_4_NV : constant := 16#866B#; -- ../include/SDL/SDL_opengl.h:2437 GL_MAP1_VERTEX_ATTRIB12_4_NV : constant := 16#866C#; -- ../include/SDL/SDL_opengl.h:2438 GL_MAP1_VERTEX_ATTRIB13_4_NV : constant := 16#866D#; -- ../include/SDL/SDL_opengl.h:2439 GL_MAP1_VERTEX_ATTRIB14_4_NV : constant := 16#866E#; -- ../include/SDL/SDL_opengl.h:2440 GL_MAP1_VERTEX_ATTRIB15_4_NV : constant := 16#866F#; -- ../include/SDL/SDL_opengl.h:2441 GL_MAP2_VERTEX_ATTRIB0_4_NV : constant := 16#8670#; -- ../include/SDL/SDL_opengl.h:2442 GL_MAP2_VERTEX_ATTRIB1_4_NV : constant := 16#8671#; -- ../include/SDL/SDL_opengl.h:2443 GL_MAP2_VERTEX_ATTRIB2_4_NV : constant := 16#8672#; -- ../include/SDL/SDL_opengl.h:2444 GL_MAP2_VERTEX_ATTRIB3_4_NV : constant := 16#8673#; -- ../include/SDL/SDL_opengl.h:2445 GL_MAP2_VERTEX_ATTRIB4_4_NV : constant := 16#8674#; -- ../include/SDL/SDL_opengl.h:2446 GL_MAP2_VERTEX_ATTRIB5_4_NV : constant := 16#8675#; -- ../include/SDL/SDL_opengl.h:2447 GL_MAP2_VERTEX_ATTRIB6_4_NV : constant := 16#8676#; -- ../include/SDL/SDL_opengl.h:2448 GL_MAP2_VERTEX_ATTRIB7_4_NV : constant := 16#8677#; -- ../include/SDL/SDL_opengl.h:2449 GL_MAP2_VERTEX_ATTRIB8_4_NV : constant := 16#8678#; -- ../include/SDL/SDL_opengl.h:2450 GL_MAP2_VERTEX_ATTRIB9_4_NV : constant := 16#8679#; -- ../include/SDL/SDL_opengl.h:2451 GL_MAP2_VERTEX_ATTRIB10_4_NV : constant := 16#867A#; -- ../include/SDL/SDL_opengl.h:2452 GL_MAP2_VERTEX_ATTRIB11_4_NV : constant := 16#867B#; -- ../include/SDL/SDL_opengl.h:2453 GL_MAP2_VERTEX_ATTRIB12_4_NV : constant := 16#867C#; -- ../include/SDL/SDL_opengl.h:2454 GL_MAP2_VERTEX_ATTRIB13_4_NV : constant := 16#867D#; -- ../include/SDL/SDL_opengl.h:2455 GL_MAP2_VERTEX_ATTRIB14_4_NV : constant := 16#867E#; -- ../include/SDL/SDL_opengl.h:2456 GL_MAP2_VERTEX_ATTRIB15_4_NV : constant := 16#867F#; -- ../include/SDL/SDL_opengl.h:2457 GL_TEXTURE_MAX_CLAMP_S_SGIX : constant := 16#8369#; -- ../include/SDL/SDL_opengl.h:2461 GL_TEXTURE_MAX_CLAMP_T_SGIX : constant := 16#836A#; -- ../include/SDL/SDL_opengl.h:2462 GL_TEXTURE_MAX_CLAMP_R_SGIX : constant := 16#836B#; -- ../include/SDL/SDL_opengl.h:2463 GL_SCALEBIAS_HINT_SGIX : constant := 16#8322#; -- ../include/SDL/SDL_opengl.h:2467 GL_INTERLACE_OML : constant := 16#8980#; -- ../include/SDL/SDL_opengl.h:2471 GL_INTERLACE_READ_OML : constant := 16#8981#; -- ../include/SDL/SDL_opengl.h:2472 GL_FORMAT_SUBSAMPLE_24_24_OML : constant := 16#8982#; -- ../include/SDL/SDL_opengl.h:2476 GL_FORMAT_SUBSAMPLE_244_244_OML : constant := 16#8983#; -- ../include/SDL/SDL_opengl.h:2477 GL_PACK_RESAMPLE_OML : constant := 16#8984#; -- ../include/SDL/SDL_opengl.h:2481 GL_UNPACK_RESAMPLE_OML : constant := 16#8985#; -- ../include/SDL/SDL_opengl.h:2482 GL_RESAMPLE_REPLICATE_OML : constant := 16#8986#; -- ../include/SDL/SDL_opengl.h:2483 GL_RESAMPLE_ZERO_FILL_OML : constant := 16#8987#; -- ../include/SDL/SDL_opengl.h:2484 GL_RESAMPLE_AVERAGE_OML : constant := 16#8988#; -- ../include/SDL/SDL_opengl.h:2485 GL_RESAMPLE_DECIMATE_OML : constant := 16#8989#; -- ../include/SDL/SDL_opengl.h:2486 GL_DEPTH_STENCIL_TO_RGBA_NV : constant := 16#886E#; -- ../include/SDL/SDL_opengl.h:2490 GL_DEPTH_STENCIL_TO_BGRA_NV : constant := 16#886F#; -- ../include/SDL/SDL_opengl.h:2491 GL_BUMP_ROT_MATRIX_ATI : constant := 16#8775#; -- ../include/SDL/SDL_opengl.h:2495 GL_BUMP_ROT_MATRIX_SIZE_ATI : constant := 16#8776#; -- ../include/SDL/SDL_opengl.h:2496 GL_BUMP_NUM_TEX_UNITS_ATI : constant := 16#8777#; -- ../include/SDL/SDL_opengl.h:2497 GL_BUMP_TEX_UNITS_ATI : constant := 16#8778#; -- ../include/SDL/SDL_opengl.h:2498 GL_DUDV_ATI : constant := 16#8779#; -- ../include/SDL/SDL_opengl.h:2499 GL_DU8DV8_ATI : constant := 16#877A#; -- ../include/SDL/SDL_opengl.h:2500 GL_BUMP_ENVMAP_ATI : constant := 16#877B#; -- ../include/SDL/SDL_opengl.h:2501 GL_BUMP_TARGET_ATI : constant := 16#877C#; -- ../include/SDL/SDL_opengl.h:2502 GL_FRAGMENT_SHADER_ATI : constant := 16#8920#; -- ../include/SDL/SDL_opengl.h:2506 GL_REG_0_ATI : constant := 16#8921#; -- ../include/SDL/SDL_opengl.h:2507 GL_REG_1_ATI : constant := 16#8922#; -- ../include/SDL/SDL_opengl.h:2508 GL_REG_2_ATI : constant := 16#8923#; -- ../include/SDL/SDL_opengl.h:2509 GL_REG_3_ATI : constant := 16#8924#; -- ../include/SDL/SDL_opengl.h:2510 GL_REG_4_ATI : constant := 16#8925#; -- ../include/SDL/SDL_opengl.h:2511 GL_REG_5_ATI : constant := 16#8926#; -- ../include/SDL/SDL_opengl.h:2512 GL_REG_6_ATI : constant := 16#8927#; -- ../include/SDL/SDL_opengl.h:2513 GL_REG_7_ATI : constant := 16#8928#; -- ../include/SDL/SDL_opengl.h:2514 GL_REG_8_ATI : constant := 16#8929#; -- ../include/SDL/SDL_opengl.h:2515 GL_REG_9_ATI : constant := 16#892A#; -- ../include/SDL/SDL_opengl.h:2516 GL_REG_10_ATI : constant := 16#892B#; -- ../include/SDL/SDL_opengl.h:2517 GL_REG_11_ATI : constant := 16#892C#; -- ../include/SDL/SDL_opengl.h:2518 GL_REG_12_ATI : constant := 16#892D#; -- ../include/SDL/SDL_opengl.h:2519 GL_REG_13_ATI : constant := 16#892E#; -- ../include/SDL/SDL_opengl.h:2520 GL_REG_14_ATI : constant := 16#892F#; -- ../include/SDL/SDL_opengl.h:2521 GL_REG_15_ATI : constant := 16#8930#; -- ../include/SDL/SDL_opengl.h:2522 GL_REG_16_ATI : constant := 16#8931#; -- ../include/SDL/SDL_opengl.h:2523 GL_REG_17_ATI : constant := 16#8932#; -- ../include/SDL/SDL_opengl.h:2524 GL_REG_18_ATI : constant := 16#8933#; -- ../include/SDL/SDL_opengl.h:2525 GL_REG_19_ATI : constant := 16#8934#; -- ../include/SDL/SDL_opengl.h:2526 GL_REG_20_ATI : constant := 16#8935#; -- ../include/SDL/SDL_opengl.h:2527 GL_REG_21_ATI : constant := 16#8936#; -- ../include/SDL/SDL_opengl.h:2528 GL_REG_22_ATI : constant := 16#8937#; -- ../include/SDL/SDL_opengl.h:2529 GL_REG_23_ATI : constant := 16#8938#; -- ../include/SDL/SDL_opengl.h:2530 GL_REG_24_ATI : constant := 16#8939#; -- ../include/SDL/SDL_opengl.h:2531 GL_REG_25_ATI : constant := 16#893A#; -- ../include/SDL/SDL_opengl.h:2532 GL_REG_26_ATI : constant := 16#893B#; -- ../include/SDL/SDL_opengl.h:2533 GL_REG_27_ATI : constant := 16#893C#; -- ../include/SDL/SDL_opengl.h:2534 GL_REG_28_ATI : constant := 16#893D#; -- ../include/SDL/SDL_opengl.h:2535 GL_REG_29_ATI : constant := 16#893E#; -- ../include/SDL/SDL_opengl.h:2536 GL_REG_30_ATI : constant := 16#893F#; -- ../include/SDL/SDL_opengl.h:2537 GL_REG_31_ATI : constant := 16#8940#; -- ../include/SDL/SDL_opengl.h:2538 GL_CON_0_ATI : constant := 16#8941#; -- ../include/SDL/SDL_opengl.h:2539 GL_CON_1_ATI : constant := 16#8942#; -- ../include/SDL/SDL_opengl.h:2540 GL_CON_2_ATI : constant := 16#8943#; -- ../include/SDL/SDL_opengl.h:2541 GL_CON_3_ATI : constant := 16#8944#; -- ../include/SDL/SDL_opengl.h:2542 GL_CON_4_ATI : constant := 16#8945#; -- ../include/SDL/SDL_opengl.h:2543 GL_CON_5_ATI : constant := 16#8946#; -- ../include/SDL/SDL_opengl.h:2544 GL_CON_6_ATI : constant := 16#8947#; -- ../include/SDL/SDL_opengl.h:2545 GL_CON_7_ATI : constant := 16#8948#; -- ../include/SDL/SDL_opengl.h:2546 GL_CON_8_ATI : constant := 16#8949#; -- ../include/SDL/SDL_opengl.h:2547 GL_CON_9_ATI : constant := 16#894A#; -- ../include/SDL/SDL_opengl.h:2548 GL_CON_10_ATI : constant := 16#894B#; -- ../include/SDL/SDL_opengl.h:2549 GL_CON_11_ATI : constant := 16#894C#; -- ../include/SDL/SDL_opengl.h:2550 GL_CON_12_ATI : constant := 16#894D#; -- ../include/SDL/SDL_opengl.h:2551 GL_CON_13_ATI : constant := 16#894E#; -- ../include/SDL/SDL_opengl.h:2552 GL_CON_14_ATI : constant := 16#894F#; -- ../include/SDL/SDL_opengl.h:2553 GL_CON_15_ATI : constant := 16#8950#; -- ../include/SDL/SDL_opengl.h:2554 GL_CON_16_ATI : constant := 16#8951#; -- ../include/SDL/SDL_opengl.h:2555 GL_CON_17_ATI : constant := 16#8952#; -- ../include/SDL/SDL_opengl.h:2556 GL_CON_18_ATI : constant := 16#8953#; -- ../include/SDL/SDL_opengl.h:2557 GL_CON_19_ATI : constant := 16#8954#; -- ../include/SDL/SDL_opengl.h:2558 GL_CON_20_ATI : constant := 16#8955#; -- ../include/SDL/SDL_opengl.h:2559 GL_CON_21_ATI : constant := 16#8956#; -- ../include/SDL/SDL_opengl.h:2560 GL_CON_22_ATI : constant := 16#8957#; -- ../include/SDL/SDL_opengl.h:2561 GL_CON_23_ATI : constant := 16#8958#; -- ../include/SDL/SDL_opengl.h:2562 GL_CON_24_ATI : constant := 16#8959#; -- ../include/SDL/SDL_opengl.h:2563 GL_CON_25_ATI : constant := 16#895A#; -- ../include/SDL/SDL_opengl.h:2564 GL_CON_26_ATI : constant := 16#895B#; -- ../include/SDL/SDL_opengl.h:2565 GL_CON_27_ATI : constant := 16#895C#; -- ../include/SDL/SDL_opengl.h:2566 GL_CON_28_ATI : constant := 16#895D#; -- ../include/SDL/SDL_opengl.h:2567 GL_CON_29_ATI : constant := 16#895E#; -- ../include/SDL/SDL_opengl.h:2568 GL_CON_30_ATI : constant := 16#895F#; -- ../include/SDL/SDL_opengl.h:2569 GL_CON_31_ATI : constant := 16#8960#; -- ../include/SDL/SDL_opengl.h:2570 GL_MOV_ATI : constant := 16#8961#; -- ../include/SDL/SDL_opengl.h:2571 GL_ADD_ATI : constant := 16#8963#; -- ../include/SDL/SDL_opengl.h:2572 GL_MUL_ATI : constant := 16#8964#; -- ../include/SDL/SDL_opengl.h:2573 GL_SUB_ATI : constant := 16#8965#; -- ../include/SDL/SDL_opengl.h:2574 GL_DOT3_ATI : constant := 16#8966#; -- ../include/SDL/SDL_opengl.h:2575 GL_DOT4_ATI : constant := 16#8967#; -- ../include/SDL/SDL_opengl.h:2576 GL_MAD_ATI : constant := 16#8968#; -- ../include/SDL/SDL_opengl.h:2577 GL_LERP_ATI : constant := 16#8969#; -- ../include/SDL/SDL_opengl.h:2578 GL_CND_ATI : constant := 16#896A#; -- ../include/SDL/SDL_opengl.h:2579 GL_CND0_ATI : constant := 16#896B#; -- ../include/SDL/SDL_opengl.h:2580 GL_DOT2_ADD_ATI : constant := 16#896C#; -- ../include/SDL/SDL_opengl.h:2581 GL_SECONDARY_INTERPOLATOR_ATI : constant := 16#896D#; -- ../include/SDL/SDL_opengl.h:2582 GL_NUM_FRAGMENT_REGISTERS_ATI : constant := 16#896E#; -- ../include/SDL/SDL_opengl.h:2583 GL_NUM_FRAGMENT_CONSTANTS_ATI : constant := 16#896F#; -- ../include/SDL/SDL_opengl.h:2584 GL_NUM_PASSES_ATI : constant := 16#8970#; -- ../include/SDL/SDL_opengl.h:2585 GL_NUM_INSTRUCTIONS_PER_PASS_ATI : constant := 16#8971#; -- ../include/SDL/SDL_opengl.h:2586 GL_NUM_INSTRUCTIONS_TOTAL_ATI : constant := 16#8972#; -- ../include/SDL/SDL_opengl.h:2587 GL_NUM_INPUT_INTERPOLATOR_COMPONENTS_ATI : constant := 16#8973#; -- ../include/SDL/SDL_opengl.h:2588 GL_NUM_LOOPBACK_COMPONENTS_ATI : constant := 16#8974#; -- ../include/SDL/SDL_opengl.h:2589 GL_COLOR_ALPHA_PAIRING_ATI : constant := 16#8975#; -- ../include/SDL/SDL_opengl.h:2590 GL_SWIZZLE_STR_ATI : constant := 16#8976#; -- ../include/SDL/SDL_opengl.h:2591 GL_SWIZZLE_STQ_ATI : constant := 16#8977#; -- ../include/SDL/SDL_opengl.h:2592 GL_SWIZZLE_STR_DR_ATI : constant := 16#8978#; -- ../include/SDL/SDL_opengl.h:2593 GL_SWIZZLE_STQ_DQ_ATI : constant := 16#8979#; -- ../include/SDL/SDL_opengl.h:2594 GL_SWIZZLE_STRQ_ATI : constant := 16#897A#; -- ../include/SDL/SDL_opengl.h:2595 GL_SWIZZLE_STRQ_DQ_ATI : constant := 16#897B#; -- ../include/SDL/SDL_opengl.h:2596 GL_RED_BIT_ATI : constant := 16#00000001#; -- ../include/SDL/SDL_opengl.h:2597 GL_GREEN_BIT_ATI : constant := 16#00000002#; -- ../include/SDL/SDL_opengl.h:2598 GL_BLUE_BIT_ATI : constant := 16#00000004#; -- ../include/SDL/SDL_opengl.h:2599 GL_2X_BIT_ATI : constant := 16#00000001#; -- ../include/SDL/SDL_opengl.h:2600 GL_4X_BIT_ATI : constant := 16#00000002#; -- ../include/SDL/SDL_opengl.h:2601 GL_8X_BIT_ATI : constant := 16#00000004#; -- ../include/SDL/SDL_opengl.h:2602 GL_HALF_BIT_ATI : constant := 16#00000008#; -- ../include/SDL/SDL_opengl.h:2603 GL_QUARTER_BIT_ATI : constant := 16#00000010#; -- ../include/SDL/SDL_opengl.h:2604 GL_EIGHTH_BIT_ATI : constant := 16#00000020#; -- ../include/SDL/SDL_opengl.h:2605 GL_SATURATE_BIT_ATI : constant := 16#00000040#; -- ../include/SDL/SDL_opengl.h:2606 GL_COMP_BIT_ATI : constant := 16#00000002#; -- ../include/SDL/SDL_opengl.h:2607 GL_NEGATE_BIT_ATI : constant := 16#00000004#; -- ../include/SDL/SDL_opengl.h:2608 GL_BIAS_BIT_ATI : constant := 16#00000008#; -- ../include/SDL/SDL_opengl.h:2609 GL_PN_TRIANGLES_ATI : constant := 16#87F0#; -- ../include/SDL/SDL_opengl.h:2613 GL_MAX_PN_TRIANGLES_TESSELATION_LEVEL_ATI : constant := 16#87F1#; -- ../include/SDL/SDL_opengl.h:2614 GL_PN_TRIANGLES_POINT_MODE_ATI : constant := 16#87F2#; -- ../include/SDL/SDL_opengl.h:2615 GL_PN_TRIANGLES_NORMAL_MODE_ATI : constant := 16#87F3#; -- ../include/SDL/SDL_opengl.h:2616 GL_PN_TRIANGLES_TESSELATION_LEVEL_ATI : constant := 16#87F4#; -- ../include/SDL/SDL_opengl.h:2617 GL_PN_TRIANGLES_POINT_MODE_LINEAR_ATI : constant := 16#87F5#; -- ../include/SDL/SDL_opengl.h:2618 GL_PN_TRIANGLES_POINT_MODE_CUBIC_ATI : constant := 16#87F6#; -- ../include/SDL/SDL_opengl.h:2619 GL_PN_TRIANGLES_NORMAL_MODE_LINEAR_ATI : constant := 16#87F7#; -- ../include/SDL/SDL_opengl.h:2620 GL_PN_TRIANGLES_NORMAL_MODE_QUADRATIC_ATI : constant := 16#87F8#; -- ../include/SDL/SDL_opengl.h:2621 GL_STATIC_ATI : constant := 16#8760#; -- ../include/SDL/SDL_opengl.h:2625 GL_DYNAMIC_ATI : constant := 16#8761#; -- ../include/SDL/SDL_opengl.h:2626 GL_PRESERVE_ATI : constant := 16#8762#; -- ../include/SDL/SDL_opengl.h:2627 GL_DISCARD_ATI : constant := 16#8763#; -- ../include/SDL/SDL_opengl.h:2628 GL_OBJECT_BUFFER_SIZE_ATI : constant := 16#8764#; -- ../include/SDL/SDL_opengl.h:2629 GL_OBJECT_BUFFER_USAGE_ATI : constant := 16#8765#; -- ../include/SDL/SDL_opengl.h:2630 GL_ARRAY_OBJECT_BUFFER_ATI : constant := 16#8766#; -- ../include/SDL/SDL_opengl.h:2631 GL_ARRAY_OBJECT_OFFSET_ATI : constant := 16#8767#; -- ../include/SDL/SDL_opengl.h:2632 GL_VERTEX_SHADER_EXT : constant := 16#8780#; -- ../include/SDL/SDL_opengl.h:2636 GL_VERTEX_SHADER_BINDING_EXT : constant := 16#8781#; -- ../include/SDL/SDL_opengl.h:2637 GL_OP_INDEX_EXT : constant := 16#8782#; -- ../include/SDL/SDL_opengl.h:2638 GL_OP_NEGATE_EXT : constant := 16#8783#; -- ../include/SDL/SDL_opengl.h:2639 GL_OP_DOT3_EXT : constant := 16#8784#; -- ../include/SDL/SDL_opengl.h:2640 GL_OP_DOT4_EXT : constant := 16#8785#; -- ../include/SDL/SDL_opengl.h:2641 GL_OP_MUL_EXT : constant := 16#8786#; -- ../include/SDL/SDL_opengl.h:2642 GL_OP_ADD_EXT : constant := 16#8787#; -- ../include/SDL/SDL_opengl.h:2643 GL_OP_MADD_EXT : constant := 16#8788#; -- ../include/SDL/SDL_opengl.h:2644 GL_OP_FRAC_EXT : constant := 16#8789#; -- ../include/SDL/SDL_opengl.h:2645 GL_OP_MAX_EXT : constant := 16#878A#; -- ../include/SDL/SDL_opengl.h:2646 GL_OP_MIN_EXT : constant := 16#878B#; -- ../include/SDL/SDL_opengl.h:2647 GL_OP_SET_GE_EXT : constant := 16#878C#; -- ../include/SDL/SDL_opengl.h:2648 GL_OP_SET_LT_EXT : constant := 16#878D#; -- ../include/SDL/SDL_opengl.h:2649 GL_OP_CLAMP_EXT : constant := 16#878E#; -- ../include/SDL/SDL_opengl.h:2650 GL_OP_FLOOR_EXT : constant := 16#878F#; -- ../include/SDL/SDL_opengl.h:2651 GL_OP_ROUND_EXT : constant := 16#8790#; -- ../include/SDL/SDL_opengl.h:2652 GL_OP_EXP_BASE_2_EXT : constant := 16#8791#; -- ../include/SDL/SDL_opengl.h:2653 GL_OP_LOG_BASE_2_EXT : constant := 16#8792#; -- ../include/SDL/SDL_opengl.h:2654 GL_OP_POWER_EXT : constant := 16#8793#; -- ../include/SDL/SDL_opengl.h:2655 GL_OP_RECIP_EXT : constant := 16#8794#; -- ../include/SDL/SDL_opengl.h:2656 GL_OP_RECIP_SQRT_EXT : constant := 16#8795#; -- ../include/SDL/SDL_opengl.h:2657 GL_OP_SUB_EXT : constant := 16#8796#; -- ../include/SDL/SDL_opengl.h:2658 GL_OP_CROSS_PRODUCT_EXT : constant := 16#8797#; -- ../include/SDL/SDL_opengl.h:2659 GL_OP_MULTIPLY_MATRIX_EXT : constant := 16#8798#; -- ../include/SDL/SDL_opengl.h:2660 GL_OP_MOV_EXT : constant := 16#8799#; -- ../include/SDL/SDL_opengl.h:2661 GL_OUTPUT_VERTEX_EXT : constant := 16#879A#; -- ../include/SDL/SDL_opengl.h:2662 GL_OUTPUT_COLOR0_EXT : constant := 16#879B#; -- ../include/SDL/SDL_opengl.h:2663 GL_OUTPUT_COLOR1_EXT : constant := 16#879C#; -- ../include/SDL/SDL_opengl.h:2664 GL_OUTPUT_TEXTURE_COORD0_EXT : constant := 16#879D#; -- ../include/SDL/SDL_opengl.h:2665 GL_OUTPUT_TEXTURE_COORD1_EXT : constant := 16#879E#; -- ../include/SDL/SDL_opengl.h:2666 GL_OUTPUT_TEXTURE_COORD2_EXT : constant := 16#879F#; -- ../include/SDL/SDL_opengl.h:2667 GL_OUTPUT_TEXTURE_COORD3_EXT : constant := 16#87A0#; -- ../include/SDL/SDL_opengl.h:2668 GL_OUTPUT_TEXTURE_COORD4_EXT : constant := 16#87A1#; -- ../include/SDL/SDL_opengl.h:2669 GL_OUTPUT_TEXTURE_COORD5_EXT : constant := 16#87A2#; -- ../include/SDL/SDL_opengl.h:2670 GL_OUTPUT_TEXTURE_COORD6_EXT : constant := 16#87A3#; -- ../include/SDL/SDL_opengl.h:2671 GL_OUTPUT_TEXTURE_COORD7_EXT : constant := 16#87A4#; -- ../include/SDL/SDL_opengl.h:2672 GL_OUTPUT_TEXTURE_COORD8_EXT : constant := 16#87A5#; -- ../include/SDL/SDL_opengl.h:2673 GL_OUTPUT_TEXTURE_COORD9_EXT : constant := 16#87A6#; -- ../include/SDL/SDL_opengl.h:2674 GL_OUTPUT_TEXTURE_COORD10_EXT : constant := 16#87A7#; -- ../include/SDL/SDL_opengl.h:2675 GL_OUTPUT_TEXTURE_COORD11_EXT : constant := 16#87A8#; -- ../include/SDL/SDL_opengl.h:2676 GL_OUTPUT_TEXTURE_COORD12_EXT : constant := 16#87A9#; -- ../include/SDL/SDL_opengl.h:2677 GL_OUTPUT_TEXTURE_COORD13_EXT : constant := 16#87AA#; -- ../include/SDL/SDL_opengl.h:2678 GL_OUTPUT_TEXTURE_COORD14_EXT : constant := 16#87AB#; -- ../include/SDL/SDL_opengl.h:2679 GL_OUTPUT_TEXTURE_COORD15_EXT : constant := 16#87AC#; -- ../include/SDL/SDL_opengl.h:2680 GL_OUTPUT_TEXTURE_COORD16_EXT : constant := 16#87AD#; -- ../include/SDL/SDL_opengl.h:2681 GL_OUTPUT_TEXTURE_COORD17_EXT : constant := 16#87AE#; -- ../include/SDL/SDL_opengl.h:2682 GL_OUTPUT_TEXTURE_COORD18_EXT : constant := 16#87AF#; -- ../include/SDL/SDL_opengl.h:2683 GL_OUTPUT_TEXTURE_COORD19_EXT : constant := 16#87B0#; -- ../include/SDL/SDL_opengl.h:2684 GL_OUTPUT_TEXTURE_COORD20_EXT : constant := 16#87B1#; -- ../include/SDL/SDL_opengl.h:2685 GL_OUTPUT_TEXTURE_COORD21_EXT : constant := 16#87B2#; -- ../include/SDL/SDL_opengl.h:2686 GL_OUTPUT_TEXTURE_COORD22_EXT : constant := 16#87B3#; -- ../include/SDL/SDL_opengl.h:2687 GL_OUTPUT_TEXTURE_COORD23_EXT : constant := 16#87B4#; -- ../include/SDL/SDL_opengl.h:2688 GL_OUTPUT_TEXTURE_COORD24_EXT : constant := 16#87B5#; -- ../include/SDL/SDL_opengl.h:2689 GL_OUTPUT_TEXTURE_COORD25_EXT : constant := 16#87B6#; -- ../include/SDL/SDL_opengl.h:2690 GL_OUTPUT_TEXTURE_COORD26_EXT : constant := 16#87B7#; -- ../include/SDL/SDL_opengl.h:2691 GL_OUTPUT_TEXTURE_COORD27_EXT : constant := 16#87B8#; -- ../include/SDL/SDL_opengl.h:2692 GL_OUTPUT_TEXTURE_COORD28_EXT : constant := 16#87B9#; -- ../include/SDL/SDL_opengl.h:2693 GL_OUTPUT_TEXTURE_COORD29_EXT : constant := 16#87BA#; -- ../include/SDL/SDL_opengl.h:2694 GL_OUTPUT_TEXTURE_COORD30_EXT : constant := 16#87BB#; -- ../include/SDL/SDL_opengl.h:2695 GL_OUTPUT_TEXTURE_COORD31_EXT : constant := 16#87BC#; -- ../include/SDL/SDL_opengl.h:2696 GL_OUTPUT_FOG_EXT : constant := 16#87BD#; -- ../include/SDL/SDL_opengl.h:2697 GL_SCALAR_EXT : constant := 16#87BE#; -- ../include/SDL/SDL_opengl.h:2698 GL_VECTOR_EXT : constant := 16#87BF#; -- ../include/SDL/SDL_opengl.h:2699 GL_MATRIX_EXT : constant := 16#87C0#; -- ../include/SDL/SDL_opengl.h:2700 GL_VARIANT_EXT : constant := 16#87C1#; -- ../include/SDL/SDL_opengl.h:2701 GL_INVARIANT_EXT : constant := 16#87C2#; -- ../include/SDL/SDL_opengl.h:2702 GL_LOCAL_CONSTANT_EXT : constant := 16#87C3#; -- ../include/SDL/SDL_opengl.h:2703 GL_LOCAL_EXT : constant := 16#87C4#; -- ../include/SDL/SDL_opengl.h:2704 GL_MAX_VERTEX_SHADER_INSTRUCTIONS_EXT : constant := 16#87C5#; -- ../include/SDL/SDL_opengl.h:2705 GL_MAX_VERTEX_SHADER_VARIANTS_EXT : constant := 16#87C6#; -- ../include/SDL/SDL_opengl.h:2706 GL_MAX_VERTEX_SHADER_INVARIANTS_EXT : constant := 16#87C7#; -- ../include/SDL/SDL_opengl.h:2707 GL_MAX_VERTEX_SHADER_LOCAL_CONSTANTS_EXT : constant := 16#87C8#; -- ../include/SDL/SDL_opengl.h:2708 GL_MAX_VERTEX_SHADER_LOCALS_EXT : constant := 16#87C9#; -- ../include/SDL/SDL_opengl.h:2709 GL_MAX_OPTIMIZED_VERTEX_SHADER_INSTRUCTIONS_EXT : constant := 16#87CA#; -- ../include/SDL/SDL_opengl.h:2710 GL_MAX_OPTIMIZED_VERTEX_SHADER_VARIANTS_EXT : constant := 16#87CB#; -- ../include/SDL/SDL_opengl.h:2711 GL_MAX_OPTIMIZED_VERTEX_SHADER_LOCAL_CONSTANTS_EXT : constant := 16#87CC#; -- ../include/SDL/SDL_opengl.h:2712 GL_MAX_OPTIMIZED_VERTEX_SHADER_INVARIANTS_EXT : constant := 16#87CD#; -- ../include/SDL/SDL_opengl.h:2713 GL_MAX_OPTIMIZED_VERTEX_SHADER_LOCALS_EXT : constant := 16#87CE#; -- ../include/SDL/SDL_opengl.h:2714 GL_VERTEX_SHADER_INSTRUCTIONS_EXT : constant := 16#87CF#; -- ../include/SDL/SDL_opengl.h:2715 GL_VERTEX_SHADER_VARIANTS_EXT : constant := 16#87D0#; -- ../include/SDL/SDL_opengl.h:2716 GL_VERTEX_SHADER_INVARIANTS_EXT : constant := 16#87D1#; -- ../include/SDL/SDL_opengl.h:2717 GL_VERTEX_SHADER_LOCAL_CONSTANTS_EXT : constant := 16#87D2#; -- ../include/SDL/SDL_opengl.h:2718 GL_VERTEX_SHADER_LOCALS_EXT : constant := 16#87D3#; -- ../include/SDL/SDL_opengl.h:2719 GL_VERTEX_SHADER_OPTIMIZED_EXT : constant := 16#87D4#; -- ../include/SDL/SDL_opengl.h:2720 GL_X_EXT : constant := 16#87D5#; -- ../include/SDL/SDL_opengl.h:2721 GL_Y_EXT : constant := 16#87D6#; -- ../include/SDL/SDL_opengl.h:2722 GL_Z_EXT : constant := 16#87D7#; -- ../include/SDL/SDL_opengl.h:2723 GL_W_EXT : constant := 16#87D8#; -- ../include/SDL/SDL_opengl.h:2724 GL_NEGATIVE_X_EXT : constant := 16#87D9#; -- ../include/SDL/SDL_opengl.h:2725 GL_NEGATIVE_Y_EXT : constant := 16#87DA#; -- ../include/SDL/SDL_opengl.h:2726 GL_NEGATIVE_Z_EXT : constant := 16#87DB#; -- ../include/SDL/SDL_opengl.h:2727 GL_NEGATIVE_W_EXT : constant := 16#87DC#; -- ../include/SDL/SDL_opengl.h:2728 GL_ZERO_EXT : constant := 16#87DD#; -- ../include/SDL/SDL_opengl.h:2729 GL_ONE_EXT : constant := 16#87DE#; -- ../include/SDL/SDL_opengl.h:2730 GL_NEGATIVE_ONE_EXT : constant := 16#87DF#; -- ../include/SDL/SDL_opengl.h:2731 GL_NORMALIZED_RANGE_EXT : constant := 16#87E0#; -- ../include/SDL/SDL_opengl.h:2732 GL_FULL_RANGE_EXT : constant := 16#87E1#; -- ../include/SDL/SDL_opengl.h:2733 GL_CURRENT_VERTEX_EXT : constant := 16#87E2#; -- ../include/SDL/SDL_opengl.h:2734 GL_MVP_MATRIX_EXT : constant := 16#87E3#; -- ../include/SDL/SDL_opengl.h:2735 GL_VARIANT_VALUE_EXT : constant := 16#87E4#; -- ../include/SDL/SDL_opengl.h:2736 GL_VARIANT_DATATYPE_EXT : constant := 16#87E5#; -- ../include/SDL/SDL_opengl.h:2737 GL_VARIANT_ARRAY_STRIDE_EXT : constant := 16#87E6#; -- ../include/SDL/SDL_opengl.h:2738 GL_VARIANT_ARRAY_TYPE_EXT : constant := 16#87E7#; -- ../include/SDL/SDL_opengl.h:2739 GL_VARIANT_ARRAY_EXT : constant := 16#87E8#; -- ../include/SDL/SDL_opengl.h:2740 GL_VARIANT_ARRAY_POINTER_EXT : constant := 16#87E9#; -- ../include/SDL/SDL_opengl.h:2741 GL_INVARIANT_VALUE_EXT : constant := 16#87EA#; -- ../include/SDL/SDL_opengl.h:2742 GL_INVARIANT_DATATYPE_EXT : constant := 16#87EB#; -- ../include/SDL/SDL_opengl.h:2743 GL_LOCAL_CONSTANT_VALUE_EXT : constant := 16#87EC#; -- ../include/SDL/SDL_opengl.h:2744 GL_LOCAL_CONSTANT_DATATYPE_EXT : constant := 16#87ED#; -- ../include/SDL/SDL_opengl.h:2745 GL_MAX_VERTEX_STREAMS_ATI : constant := 16#876B#; -- ../include/SDL/SDL_opengl.h:2749 GL_VERTEX_STREAM0_ATI : constant := 16#876C#; -- ../include/SDL/SDL_opengl.h:2750 GL_VERTEX_STREAM1_ATI : constant := 16#876D#; -- ../include/SDL/SDL_opengl.h:2751 GL_VERTEX_STREAM2_ATI : constant := 16#876E#; -- ../include/SDL/SDL_opengl.h:2752 GL_VERTEX_STREAM3_ATI : constant := 16#876F#; -- ../include/SDL/SDL_opengl.h:2753 GL_VERTEX_STREAM4_ATI : constant := 16#8770#; -- ../include/SDL/SDL_opengl.h:2754 GL_VERTEX_STREAM5_ATI : constant := 16#8771#; -- ../include/SDL/SDL_opengl.h:2755 GL_VERTEX_STREAM6_ATI : constant := 16#8772#; -- ../include/SDL/SDL_opengl.h:2756 GL_VERTEX_STREAM7_ATI : constant := 16#8773#; -- ../include/SDL/SDL_opengl.h:2757 GL_VERTEX_SOURCE_ATI : constant := 16#8774#; -- ../include/SDL/SDL_opengl.h:2758 GL_ELEMENT_ARRAY_ATI : constant := 16#8768#; -- ../include/SDL/SDL_opengl.h:2762 GL_ELEMENT_ARRAY_TYPE_ATI : constant := 16#8769#; -- ../include/SDL/SDL_opengl.h:2763 GL_ELEMENT_ARRAY_POINTER_ATI : constant := 16#876A#; -- ../include/SDL/SDL_opengl.h:2764 GL_QUAD_MESH_SUN : constant := 16#8614#; -- ../include/SDL/SDL_opengl.h:2768 GL_TRIANGLE_MESH_SUN : constant := 16#8615#; -- ../include/SDL/SDL_opengl.h:2769 GL_SLICE_ACCUM_SUN : constant := 16#85CC#; -- ../include/SDL/SDL_opengl.h:2773 GL_MULTISAMPLE_FILTER_HINT_NV : constant := 16#8534#; -- ../include/SDL/SDL_opengl.h:2777 GL_DEPTH_CLAMP_NV : constant := 16#864F#; -- ../include/SDL/SDL_opengl.h:2781 GL_PIXEL_COUNTER_BITS_NV : constant := 16#8864#; -- ../include/SDL/SDL_opengl.h:2785 GL_CURRENT_OCCLUSION_QUERY_ID_NV : constant := 16#8865#; -- ../include/SDL/SDL_opengl.h:2786 GL_PIXEL_COUNT_NV : constant := 16#8866#; -- ../include/SDL/SDL_opengl.h:2787 GL_PIXEL_COUNT_AVAILABLE_NV : constant := 16#8867#; -- ../include/SDL/SDL_opengl.h:2788 GL_POINT_SPRITE_NV : constant := 16#8861#; -- ../include/SDL/SDL_opengl.h:2792 GL_COORD_REPLACE_NV : constant := 16#8862#; -- ../include/SDL/SDL_opengl.h:2793 GL_POINT_SPRITE_R_MODE_NV : constant := 16#8863#; -- ../include/SDL/SDL_opengl.h:2794 GL_OFFSET_PROJECTIVE_TEXTURE_2D_NV : constant := 16#8850#; -- ../include/SDL/SDL_opengl.h:2798 GL_OFFSET_PROJECTIVE_TEXTURE_2D_SCALE_NV : constant := 16#8851#; -- ../include/SDL/SDL_opengl.h:2799 GL_OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_NV : constant := 16#8852#; -- ../include/SDL/SDL_opengl.h:2800 GL_OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_SCALE_NV : constant := 16#8853#; -- ../include/SDL/SDL_opengl.h:2801 GL_OFFSET_HILO_TEXTURE_2D_NV : constant := 16#8854#; -- ../include/SDL/SDL_opengl.h:2802 GL_OFFSET_HILO_TEXTURE_RECTANGLE_NV : constant := 16#8855#; -- ../include/SDL/SDL_opengl.h:2803 GL_OFFSET_HILO_PROJECTIVE_TEXTURE_2D_NV : constant := 16#8856#; -- ../include/SDL/SDL_opengl.h:2804 GL_OFFSET_HILO_PROJECTIVE_TEXTURE_RECTANGLE_NV : constant := 16#8857#; -- ../include/SDL/SDL_opengl.h:2805 GL_DEPENDENT_HILO_TEXTURE_2D_NV : constant := 16#8858#; -- ../include/SDL/SDL_opengl.h:2806 GL_DEPENDENT_RGB_TEXTURE_3D_NV : constant := 16#8859#; -- ../include/SDL/SDL_opengl.h:2807 GL_DEPENDENT_RGB_TEXTURE_CUBE_MAP_NV : constant := 16#885A#; -- ../include/SDL/SDL_opengl.h:2808 GL_DOT_PRODUCT_PASS_THROUGH_NV : constant := 16#885B#; -- ../include/SDL/SDL_opengl.h:2809 GL_DOT_PRODUCT_TEXTURE_1D_NV : constant := 16#885C#; -- ../include/SDL/SDL_opengl.h:2810 GL_DOT_PRODUCT_AFFINE_DEPTH_REPLACE_NV : constant := 16#885D#; -- ../include/SDL/SDL_opengl.h:2811 GL_HILO8_NV : constant := 16#885E#; -- ../include/SDL/SDL_opengl.h:2812 GL_SIGNED_HILO8_NV : constant := 16#885F#; -- ../include/SDL/SDL_opengl.h:2813 GL_FORCE_BLUE_TO_ONE_NV : constant := 16#8860#; -- ../include/SDL/SDL_opengl.h:2814 GL_STENCIL_TEST_TWO_SIDE_EXT : constant := 16#8910#; -- ../include/SDL/SDL_opengl.h:2824 GL_ACTIVE_STENCIL_FACE_EXT : constant := 16#8911#; -- ../include/SDL/SDL_opengl.h:2825 GL_TEXT_FRAGMENT_SHADER_ATI : constant := 16#8200#; -- ../include/SDL/SDL_opengl.h:2829 GL_UNPACK_CLIENT_STORAGE_APPLE : constant := 16#85B2#; -- ../include/SDL/SDL_opengl.h:2833 GL_ELEMENT_ARRAY_APPLE : constant := 16#8768#; -- ../include/SDL/SDL_opengl.h:2837 GL_ELEMENT_ARRAY_TYPE_APPLE : constant := 16#8769#; -- ../include/SDL/SDL_opengl.h:2838 GL_ELEMENT_ARRAY_POINTER_APPLE : constant := 16#876A#; -- ../include/SDL/SDL_opengl.h:2839 GL_DRAW_PIXELS_APPLE : constant := 16#8A0A#; -- ../include/SDL/SDL_opengl.h:2843 GL_FENCE_APPLE : constant := 16#8A0B#; -- ../include/SDL/SDL_opengl.h:2844 GL_VERTEX_ARRAY_BINDING_APPLE : constant := 16#85B5#; -- ../include/SDL/SDL_opengl.h:2848 GL_VERTEX_ARRAY_RANGE_APPLE : constant := 16#851D#; -- ../include/SDL/SDL_opengl.h:2852 GL_VERTEX_ARRAY_RANGE_LENGTH_APPLE : constant := 16#851E#; -- ../include/SDL/SDL_opengl.h:2853 GL_VERTEX_ARRAY_STORAGE_HINT_APPLE : constant := 16#851F#; -- ../include/SDL/SDL_opengl.h:2854 GL_VERTEX_ARRAY_RANGE_POINTER_APPLE : constant := 16#8521#; -- ../include/SDL/SDL_opengl.h:2855 GL_STORAGE_CACHED_APPLE : constant := 16#85BE#; -- ../include/SDL/SDL_opengl.h:2856 GL_STORAGE_SHARED_APPLE : constant := 16#85BF#; -- ../include/SDL/SDL_opengl.h:2857 GL_YCBCR_422_APPLE : constant := 16#85B9#; -- ../include/SDL/SDL_opengl.h:2861 GL_UNSIGNED_SHORT_8_8_APPLE : constant := 16#85BA#; -- ../include/SDL/SDL_opengl.h:2862 GL_UNSIGNED_SHORT_8_8_REV_APPLE : constant := 16#85BB#; -- ../include/SDL/SDL_opengl.h:2863 GL_RGB_S3TC : constant := 16#83A0#; -- ../include/SDL/SDL_opengl.h:2867 GL_RGB4_S3TC : constant := 16#83A1#; -- ../include/SDL/SDL_opengl.h:2868 GL_RGBA_S3TC : constant := 16#83A2#; -- ../include/SDL/SDL_opengl.h:2869 GL_RGBA4_S3TC : constant := 16#83A3#; -- ../include/SDL/SDL_opengl.h:2870 GL_MAX_DRAW_BUFFERS_ATI : constant := 16#8824#; -- ../include/SDL/SDL_opengl.h:2874 GL_DRAW_BUFFER0_ATI : constant := 16#8825#; -- ../include/SDL/SDL_opengl.h:2875 GL_DRAW_BUFFER1_ATI : constant := 16#8826#; -- ../include/SDL/SDL_opengl.h:2876 GL_DRAW_BUFFER2_ATI : constant := 16#8827#; -- ../include/SDL/SDL_opengl.h:2877 GL_DRAW_BUFFER3_ATI : constant := 16#8828#; -- ../include/SDL/SDL_opengl.h:2878 GL_DRAW_BUFFER4_ATI : constant := 16#8829#; -- ../include/SDL/SDL_opengl.h:2879 GL_DRAW_BUFFER5_ATI : constant := 16#882A#; -- ../include/SDL/SDL_opengl.h:2880 GL_DRAW_BUFFER6_ATI : constant := 16#882B#; -- ../include/SDL/SDL_opengl.h:2881 GL_DRAW_BUFFER7_ATI : constant := 16#882C#; -- ../include/SDL/SDL_opengl.h:2882 GL_DRAW_BUFFER8_ATI : constant := 16#882D#; -- ../include/SDL/SDL_opengl.h:2883 GL_DRAW_BUFFER9_ATI : constant := 16#882E#; -- ../include/SDL/SDL_opengl.h:2884 GL_DRAW_BUFFER10_ATI : constant := 16#882F#; -- ../include/SDL/SDL_opengl.h:2885 GL_DRAW_BUFFER11_ATI : constant := 16#8830#; -- ../include/SDL/SDL_opengl.h:2886 GL_DRAW_BUFFER12_ATI : constant := 16#8831#; -- ../include/SDL/SDL_opengl.h:2887 GL_DRAW_BUFFER13_ATI : constant := 16#8832#; -- ../include/SDL/SDL_opengl.h:2888 GL_DRAW_BUFFER14_ATI : constant := 16#8833#; -- ../include/SDL/SDL_opengl.h:2889 GL_DRAW_BUFFER15_ATI : constant := 16#8834#; -- ../include/SDL/SDL_opengl.h:2890 GL_TYPE_RGBA_FLOAT_ATI : constant := 16#8820#; -- ../include/SDL/SDL_opengl.h:2894 GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI : constant := 16#8835#; -- ../include/SDL/SDL_opengl.h:2895 GL_MODULATE_ADD_ATI : constant := 16#8744#; -- ../include/SDL/SDL_opengl.h:2899 GL_MODULATE_SIGNED_ADD_ATI : constant := 16#8745#; -- ../include/SDL/SDL_opengl.h:2900 GL_MODULATE_SUBTRACT_ATI : constant := 16#8746#; -- ../include/SDL/SDL_opengl.h:2901 GL_RGBA_FLOAT32_ATI : constant := 16#8814#; -- ../include/SDL/SDL_opengl.h:2905 GL_RGB_FLOAT32_ATI : constant := 16#8815#; -- ../include/SDL/SDL_opengl.h:2906 GL_ALPHA_FLOAT32_ATI : constant := 16#8816#; -- ../include/SDL/SDL_opengl.h:2907 GL_INTENSITY_FLOAT32_ATI : constant := 16#8817#; -- ../include/SDL/SDL_opengl.h:2908 GL_LUMINANCE_FLOAT32_ATI : constant := 16#8818#; -- ../include/SDL/SDL_opengl.h:2909 GL_LUMINANCE_ALPHA_FLOAT32_ATI : constant := 16#8819#; -- ../include/SDL/SDL_opengl.h:2910 GL_RGBA_FLOAT16_ATI : constant := 16#881A#; -- ../include/SDL/SDL_opengl.h:2911 GL_RGB_FLOAT16_ATI : constant := 16#881B#; -- ../include/SDL/SDL_opengl.h:2912 GL_ALPHA_FLOAT16_ATI : constant := 16#881C#; -- ../include/SDL/SDL_opengl.h:2913 GL_INTENSITY_FLOAT16_ATI : constant := 16#881D#; -- ../include/SDL/SDL_opengl.h:2914 GL_LUMINANCE_FLOAT16_ATI : constant := 16#881E#; -- ../include/SDL/SDL_opengl.h:2915 GL_LUMINANCE_ALPHA_FLOAT16_ATI : constant := 16#881F#; -- ../include/SDL/SDL_opengl.h:2916 GL_FLOAT_R_NV : constant := 16#8880#; -- ../include/SDL/SDL_opengl.h:2920 GL_FLOAT_RG_NV : constant := 16#8881#; -- ../include/SDL/SDL_opengl.h:2921 GL_FLOAT_RGB_NV : constant := 16#8882#; -- ../include/SDL/SDL_opengl.h:2922 GL_FLOAT_RGBA_NV : constant := 16#8883#; -- ../include/SDL/SDL_opengl.h:2923 GL_FLOAT_R16_NV : constant := 16#8884#; -- ../include/SDL/SDL_opengl.h:2924 GL_FLOAT_R32_NV : constant := 16#8885#; -- ../include/SDL/SDL_opengl.h:2925 GL_FLOAT_RG16_NV : constant := 16#8886#; -- ../include/SDL/SDL_opengl.h:2926 GL_FLOAT_RG32_NV : constant := 16#8887#; -- ../include/SDL/SDL_opengl.h:2927 GL_FLOAT_RGB16_NV : constant := 16#8888#; -- ../include/SDL/SDL_opengl.h:2928 GL_FLOAT_RGB32_NV : constant := 16#8889#; -- ../include/SDL/SDL_opengl.h:2929 GL_FLOAT_RGBA16_NV : constant := 16#888A#; -- ../include/SDL/SDL_opengl.h:2930 GL_FLOAT_RGBA32_NV : constant := 16#888B#; -- ../include/SDL/SDL_opengl.h:2931 GL_TEXTURE_FLOAT_COMPONENTS_NV : constant := 16#888C#; -- ../include/SDL/SDL_opengl.h:2932 GL_FLOAT_CLEAR_COLOR_VALUE_NV : constant := 16#888D#; -- ../include/SDL/SDL_opengl.h:2933 GL_FLOAT_RGBA_MODE_NV : constant := 16#888E#; -- ../include/SDL/SDL_opengl.h:2934 GL_MAX_FRAGMENT_PROGRAM_LOCAL_PARAMETERS_NV : constant := 16#8868#; -- ../include/SDL/SDL_opengl.h:2938 GL_FRAGMENT_PROGRAM_NV : constant := 16#8870#; -- ../include/SDL/SDL_opengl.h:2939 GL_MAX_TEXTURE_COORDS_NV : constant := 16#8871#; -- ../include/SDL/SDL_opengl.h:2940 GL_MAX_TEXTURE_IMAGE_UNITS_NV : constant := 16#8872#; -- ../include/SDL/SDL_opengl.h:2941 GL_FRAGMENT_PROGRAM_BINDING_NV : constant := 16#8873#; -- ../include/SDL/SDL_opengl.h:2942 GL_PROGRAM_ERROR_STRING_NV : constant := 16#8874#; -- ../include/SDL/SDL_opengl.h:2943 GL_HALF_FLOAT_NV : constant := 16#140B#; -- ../include/SDL/SDL_opengl.h:2947 GL_WRITE_PIXEL_DATA_RANGE_NV : constant := 16#8878#; -- ../include/SDL/SDL_opengl.h:2951 GL_READ_PIXEL_DATA_RANGE_NV : constant := 16#8879#; -- ../include/SDL/SDL_opengl.h:2952 GL_WRITE_PIXEL_DATA_RANGE_LENGTH_NV : constant := 16#887A#; -- ../include/SDL/SDL_opengl.h:2953 GL_READ_PIXEL_DATA_RANGE_LENGTH_NV : constant := 16#887B#; -- ../include/SDL/SDL_opengl.h:2954 GL_WRITE_PIXEL_DATA_RANGE_POINTER_NV : constant := 16#887C#; -- ../include/SDL/SDL_opengl.h:2955 GL_READ_PIXEL_DATA_RANGE_POINTER_NV : constant := 16#887D#; -- ../include/SDL/SDL_opengl.h:2956 GL_PRIMITIVE_RESTART_NV : constant := 16#8558#; -- ../include/SDL/SDL_opengl.h:2960 GL_PRIMITIVE_RESTART_INDEX_NV : constant := 16#8559#; -- ../include/SDL/SDL_opengl.h:2961 GL_TEXTURE_UNSIGNED_REMAP_MODE_NV : constant := 16#888F#; -- ../include/SDL/SDL_opengl.h:2965 GL_STENCIL_BACK_FUNC_ATI : constant := 16#8800#; -- ../include/SDL/SDL_opengl.h:2975 GL_STENCIL_BACK_FAIL_ATI : constant := 16#8801#; -- ../include/SDL/SDL_opengl.h:2976 GL_STENCIL_BACK_PASS_DEPTH_FAIL_ATI : constant := 16#8802#; -- ../include/SDL/SDL_opengl.h:2977 GL_STENCIL_BACK_PASS_DEPTH_PASS_ATI : constant := 16#8803#; -- ../include/SDL/SDL_opengl.h:2978 GL_IMPLEMENTATION_COLOR_READ_TYPE_OES : constant := 16#8B9A#; -- ../include/SDL/SDL_opengl.h:2985 GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES : constant := 16#8B9B#; -- ../include/SDL/SDL_opengl.h:2986 GL_DEPTH_BOUNDS_TEST_EXT : constant := 16#8890#; -- ../include/SDL/SDL_opengl.h:2990 GL_DEPTH_BOUNDS_EXT : constant := 16#8891#; -- ../include/SDL/SDL_opengl.h:2991 GL_MIRROR_CLAMP_EXT : constant := 16#8742#; -- ../include/SDL/SDL_opengl.h:2995 GL_MIRROR_CLAMP_TO_EDGE_EXT : constant := 16#8743#; -- ../include/SDL/SDL_opengl.h:2996 GL_MIRROR_CLAMP_TO_BORDER_EXT : constant := 16#8912#; -- ../include/SDL/SDL_opengl.h:2997 -- unsupported macro: GL_BLEND_EQUATION_RGB_EXT GL_BLEND_EQUATION GL_BLEND_EQUATION_ALPHA_EXT : constant := 16#883D#; -- ../include/SDL/SDL_opengl.h:3002 GL_PACK_INVERT_MESA : constant := 16#8758#; -- ../include/SDL/SDL_opengl.h:3006 GL_UNSIGNED_SHORT_8_8_MESA : constant := 16#85BA#; -- ../include/SDL/SDL_opengl.h:3010 GL_UNSIGNED_SHORT_8_8_REV_MESA : constant := 16#85BB#; -- ../include/SDL/SDL_opengl.h:3011 GL_YCBCR_MESA : constant := 16#8757#; -- ../include/SDL/SDL_opengl.h:3012 GL_PIXEL_PACK_BUFFER_EXT : constant := 16#88EB#; -- ../include/SDL/SDL_opengl.h:3016 GL_PIXEL_UNPACK_BUFFER_EXT : constant := 16#88EC#; -- ../include/SDL/SDL_opengl.h:3017 GL_PIXEL_PACK_BUFFER_BINDING_EXT : constant := 16#88ED#; -- ../include/SDL/SDL_opengl.h:3018 GL_PIXEL_UNPACK_BUFFER_BINDING_EXT : constant := 16#88EF#; -- ../include/SDL/SDL_opengl.h:3019 GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV : constant := 16#88F4#; -- ../include/SDL/SDL_opengl.h:3026 GL_MAX_PROGRAM_CALL_DEPTH_NV : constant := 16#88F5#; -- ../include/SDL/SDL_opengl.h:3027 GL_MAX_PROGRAM_IF_DEPTH_NV : constant := 16#88F6#; -- ../include/SDL/SDL_opengl.h:3028 GL_MAX_PROGRAM_LOOP_DEPTH_NV : constant := 16#88F7#; -- ../include/SDL/SDL_opengl.h:3029 GL_MAX_PROGRAM_LOOP_COUNT_NV : constant := 16#88F8#; -- ../include/SDL/SDL_opengl.h:3030 GL_INVALID_FRAMEBUFFER_OPERATION_EXT : constant := 16#0506#; -- ../include/SDL/SDL_opengl.h:3043 GL_MAX_RENDERBUFFER_SIZE_EXT : constant := 16#84E8#; -- ../include/SDL/SDL_opengl.h:3044 GL_FRAMEBUFFER_BINDING_EXT : constant := 16#8CA6#; -- ../include/SDL/SDL_opengl.h:3045 GL_RENDERBUFFER_BINDING_EXT : constant := 16#8CA7#; -- ../include/SDL/SDL_opengl.h:3046 GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_EXT : constant := 16#8CD0#; -- ../include/SDL/SDL_opengl.h:3047 GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_EXT : constant := 16#8CD1#; -- ../include/SDL/SDL_opengl.h:3048 GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_EXT : constant := 16#8CD2#; -- ../include/SDL/SDL_opengl.h:3049 GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_EXT : constant := 16#8CD3#; -- ../include/SDL/SDL_opengl.h:3050 GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_EXT : constant := 16#8CD4#; -- ../include/SDL/SDL_opengl.h:3051 GL_FRAMEBUFFER_COMPLETE_EXT : constant := 16#8CD5#; -- ../include/SDL/SDL_opengl.h:3052 GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_EXT : constant := 16#8CD6#; -- ../include/SDL/SDL_opengl.h:3053 GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_EXT : constant := 16#8CD7#; -- ../include/SDL/SDL_opengl.h:3054 GL_FRAMEBUFFER_INCOMPLETE_DUPLICATE_ATTACHMENT_EXT : constant := 16#8CD8#; -- ../include/SDL/SDL_opengl.h:3055 GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_EXT : constant := 16#8CD9#; -- ../include/SDL/SDL_opengl.h:3056 GL_FRAMEBUFFER_INCOMPLETE_FORMATS_EXT : constant := 16#8CDA#; -- ../include/SDL/SDL_opengl.h:3057 GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER_EXT : constant := 16#8CDB#; -- ../include/SDL/SDL_opengl.h:3058 GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER_EXT : constant := 16#8CDC#; -- ../include/SDL/SDL_opengl.h:3059 GL_FRAMEBUFFER_UNSUPPORTED_EXT : constant := 16#8CDD#; -- ../include/SDL/SDL_opengl.h:3060 GL_MAX_COLOR_ATTACHMENTS_EXT : constant := 16#8CDF#; -- ../include/SDL/SDL_opengl.h:3061 GL_COLOR_ATTACHMENT0_EXT : constant := 16#8CE0#; -- ../include/SDL/SDL_opengl.h:3062 GL_COLOR_ATTACHMENT1_EXT : constant := 16#8CE1#; -- ../include/SDL/SDL_opengl.h:3063 GL_COLOR_ATTACHMENT2_EXT : constant := 16#8CE2#; -- ../include/SDL/SDL_opengl.h:3064 GL_COLOR_ATTACHMENT3_EXT : constant := 16#8CE3#; -- ../include/SDL/SDL_opengl.h:3065 GL_COLOR_ATTACHMENT4_EXT : constant := 16#8CE4#; -- ../include/SDL/SDL_opengl.h:3066 GL_COLOR_ATTACHMENT5_EXT : constant := 16#8CE5#; -- ../include/SDL/SDL_opengl.h:3067 GL_COLOR_ATTACHMENT6_EXT : constant := 16#8CE6#; -- ../include/SDL/SDL_opengl.h:3068 GL_COLOR_ATTACHMENT7_EXT : constant := 16#8CE7#; -- ../include/SDL/SDL_opengl.h:3069 GL_COLOR_ATTACHMENT8_EXT : constant := 16#8CE8#; -- ../include/SDL/SDL_opengl.h:3070 GL_COLOR_ATTACHMENT9_EXT : constant := 16#8CE9#; -- ../include/SDL/SDL_opengl.h:3071 GL_COLOR_ATTACHMENT10_EXT : constant := 16#8CEA#; -- ../include/SDL/SDL_opengl.h:3072 GL_COLOR_ATTACHMENT11_EXT : constant := 16#8CEB#; -- ../include/SDL/SDL_opengl.h:3073 GL_COLOR_ATTACHMENT12_EXT : constant := 16#8CEC#; -- ../include/SDL/SDL_opengl.h:3074 GL_COLOR_ATTACHMENT13_EXT : constant := 16#8CED#; -- ../include/SDL/SDL_opengl.h:3075 GL_COLOR_ATTACHMENT14_EXT : constant := 16#8CEE#; -- ../include/SDL/SDL_opengl.h:3076 GL_COLOR_ATTACHMENT15_EXT : constant := 16#8CEF#; -- ../include/SDL/SDL_opengl.h:3077 GL_DEPTH_ATTACHMENT_EXT : constant := 16#8D00#; -- ../include/SDL/SDL_opengl.h:3078 GL_STENCIL_ATTACHMENT_EXT : constant := 16#8D20#; -- ../include/SDL/SDL_opengl.h:3079 GL_FRAMEBUFFER_EXT : constant := 16#8D40#; -- ../include/SDL/SDL_opengl.h:3080 GL_RENDERBUFFER_EXT : constant := 16#8D41#; -- ../include/SDL/SDL_opengl.h:3081 GL_RENDERBUFFER_WIDTH_EXT : constant := 16#8D42#; -- ../include/SDL/SDL_opengl.h:3082 GL_RENDERBUFFER_HEIGHT_EXT : constant := 16#8D43#; -- ../include/SDL/SDL_opengl.h:3083 GL_RENDERBUFFER_INTERNAL_FORMAT_EXT : constant := 16#8D44#; -- ../include/SDL/SDL_opengl.h:3084 GL_STENCIL_INDEX1_EXT : constant := 16#8D46#; -- ../include/SDL/SDL_opengl.h:3085 GL_STENCIL_INDEX4_EXT : constant := 16#8D47#; -- ../include/SDL/SDL_opengl.h:3086 GL_STENCIL_INDEX8_EXT : constant := 16#8D48#; -- ../include/SDL/SDL_opengl.h:3087 GL_STENCIL_INDEX16_EXT : constant := 16#8D49#; -- ../include/SDL/SDL_opengl.h:3088 GL_RENDERBUFFER_RED_SIZE_EXT : constant := 16#8D50#; -- ../include/SDL/SDL_opengl.h:3089 GL_RENDERBUFFER_GREEN_SIZE_EXT : constant := 16#8D51#; -- ../include/SDL/SDL_opengl.h:3090 GL_RENDERBUFFER_BLUE_SIZE_EXT : constant := 16#8D52#; -- ../include/SDL/SDL_opengl.h:3091 GL_RENDERBUFFER_ALPHA_SIZE_EXT : constant := 16#8D53#; -- ../include/SDL/SDL_opengl.h:3092 GL_RENDERBUFFER_DEPTH_SIZE_EXT : constant := 16#8D54#; -- ../include/SDL/SDL_opengl.h:3093 GL_RENDERBUFFER_STENCIL_SIZE_EXT : constant := 16#8D55#; -- ../include/SDL/SDL_opengl.h:3094 GL_VERSION_1_2 : constant := 1; -- ../include/SDL/SDL_opengl.h:3151 GL_VERSION_1_3 : constant := 1; -- ../include/SDL/SDL_opengl.h:3233 GL_VERSION_1_4 : constant := 1; -- ../include/SDL/SDL_opengl.h:3331 GL_VERSION_1_5 : constant := 1; -- ../include/SDL/SDL_opengl.h:3427 GL_VERSION_2_0 : constant := 1; -- ../include/SDL/SDL_opengl.h:3471 GL_ARB_multitexture : constant := 1; -- ../include/SDL/SDL_opengl.h:3663 GL_ARB_transpose_matrix : constant := 1; -- ../include/SDL/SDL_opengl.h:3737 GL_ARB_multisample : constant := 1; -- ../include/SDL/SDL_opengl.h:3751 GL_ARB_texture_env_add : constant := 1; -- ../include/SDL/SDL_opengl.h:3759 GL_ARB_texture_cube_map : constant := 1; -- ../include/SDL/SDL_opengl.h:3763 GL_ARB_texture_compression : constant := 1; -- ../include/SDL/SDL_opengl.h:3767 GL_ARB_texture_border_clamp : constant := 1; -- ../include/SDL/SDL_opengl.h:3787 GL_ARB_point_parameters : constant := 1; -- ../include/SDL/SDL_opengl.h:3791 GL_ARB_vertex_blend : constant := 1; -- ../include/SDL/SDL_opengl.h:3801 GL_ARB_matrix_palette : constant := 1; -- ../include/SDL/SDL_opengl.h:3827 GL_ARB_texture_env_combine : constant := 1; -- ../include/SDL/SDL_opengl.h:3843 GL_ARB_texture_env_crossbar : constant := 1; -- ../include/SDL/SDL_opengl.h:3847 GL_ARB_texture_env_dot3 : constant := 1; -- ../include/SDL/SDL_opengl.h:3851 GL_ARB_texture_mirrored_repeat : constant := 1; -- ../include/SDL/SDL_opengl.h:3855 GL_ARB_depth_texture : constant := 1; -- ../include/SDL/SDL_opengl.h:3859 GL_ARB_shadow : constant := 1; -- ../include/SDL/SDL_opengl.h:3863 GL_ARB_shadow_ambient : constant := 1; -- ../include/SDL/SDL_opengl.h:3867 GL_ARB_window_pos : constant := 1; -- ../include/SDL/SDL_opengl.h:3871 GL_ARB_vertex_program : constant := 1; -- ../include/SDL/SDL_opengl.h:3909 GL_ARB_fragment_program : constant := 1; -- ../include/SDL/SDL_opengl.h:4039 GL_ARB_vertex_buffer_object : constant := 1; -- ../include/SDL/SDL_opengl.h:4044 GL_ARB_occlusion_query : constant := 1; -- ../include/SDL/SDL_opengl.h:4072 GL_ARB_shader_objects : constant := 1; -- ../include/SDL/SDL_opengl.h:4094 GL_ARB_vertex_shader : constant := 1; -- ../include/SDL/SDL_opengl.h:4178 GL_ARB_fragment_shader : constant := 1; -- ../include/SDL/SDL_opengl.h:4190 GL_ARB_shading_language_100 : constant := 1; -- ../include/SDL/SDL_opengl.h:4194 GL_ARB_texture_non_power_of_two : constant := 1; -- ../include/SDL/SDL_opengl.h:4198 GL_ARB_point_sprite : constant := 1; -- ../include/SDL/SDL_opengl.h:4202 GL_ARB_fragment_program_shadow : constant := 1; -- ../include/SDL/SDL_opengl.h:4206 GL_ARB_draw_buffers : constant := 1; -- ../include/SDL/SDL_opengl.h:4210 GL_ARB_texture_rectangle : constant := 1; -- ../include/SDL/SDL_opengl.h:4218 GL_ARB_color_buffer_float : constant := 1; -- ../include/SDL/SDL_opengl.h:4222 GL_ARB_half_float_pixel : constant := 1; -- ../include/SDL/SDL_opengl.h:4230 GL_ARB_texture_float : constant := 1; -- ../include/SDL/SDL_opengl.h:4234 GL_ARB_pixel_buffer_object : constant := 1; -- ../include/SDL/SDL_opengl.h:4238 GL_EXT_abgr : constant := 1; -- ../include/SDL/SDL_opengl.h:4242 GL_EXT_blend_color : constant := 1; -- ../include/SDL/SDL_opengl.h:4246 GL_EXT_polygon_offset : constant := 1; -- ../include/SDL/SDL_opengl.h:4254 GL_EXT_texture : constant := 1; -- ../include/SDL/SDL_opengl.h:4262 GL_EXT_texture3D : constant := 1; -- ../include/SDL/SDL_opengl.h:4266 GL_SGIS_texture_filter4 : constant := 1; -- ../include/SDL/SDL_opengl.h:4276 GL_EXT_subtexture : constant := 1; -- ../include/SDL/SDL_opengl.h:4286 GL_EXT_copy_texture : constant := 1; -- ../include/SDL/SDL_opengl.h:4296 GL_EXT_histogram : constant := 1; -- ../include/SDL/SDL_opengl.h:4312 GL_EXT_convolution : constant := 1; -- ../include/SDL/SDL_opengl.h:4338 GL_EXT_color_matrix : constant := 1; -- ../include/SDL/SDL_opengl.h:4370 GL_SGI_color_table : constant := 1; -- ../include/SDL/SDL_opengl.h:4374 GL_SGIX_pixel_texture : constant := 1; -- ../include/SDL/SDL_opengl.h:4394 GL_SGIS_pixel_texture : constant := 1; -- ../include/SDL/SDL_opengl.h:4402 GL_SGIS_texture4D : constant := 1; -- ../include/SDL/SDL_opengl.h:4420 GL_SGI_texture_color_table : constant := 1; -- ../include/SDL/SDL_opengl.h:4430 GL_EXT_cmyka : constant := 1; -- ../include/SDL/SDL_opengl.h:4434 GL_EXT_texture_object : constant := 1; -- ../include/SDL/SDL_opengl.h:4438 GL_SGIS_detail_texture : constant := 1; -- ../include/SDL/SDL_opengl.h:4456 GL_SGIS_sharpen_texture : constant := 1; -- ../include/SDL/SDL_opengl.h:4466 GL_EXT_packed_pixels : constant := 1; -- ../include/SDL/SDL_opengl.h:4476 GL_SGIS_texture_lod : constant := 1; -- ../include/SDL/SDL_opengl.h:4480 GL_SGIS_multisample : constant := 1; -- ../include/SDL/SDL_opengl.h:4484 GL_EXT_rescale_normal : constant := 1; -- ../include/SDL/SDL_opengl.h:4494 GL_EXT_misc_attribute : constant := 1; -- ../include/SDL/SDL_opengl.h:4522 GL_SGIS_generate_mipmap : constant := 1; -- ../include/SDL/SDL_opengl.h:4526 GL_SGIX_clipmap : constant := 1; -- ../include/SDL/SDL_opengl.h:4530 GL_SGIX_shadow : constant := 1; -- ../include/SDL/SDL_opengl.h:4534 GL_SGIS_texture_edge_clamp : constant := 1; -- ../include/SDL/SDL_opengl.h:4538 GL_SGIS_texture_border_clamp : constant := 1; -- ../include/SDL/SDL_opengl.h:4542 GL_EXT_blend_minmax : constant := 1; -- ../include/SDL/SDL_opengl.h:4546 GL_EXT_blend_subtract : constant := 1; -- ../include/SDL/SDL_opengl.h:4554 GL_EXT_blend_logic_op : constant := 1; -- ../include/SDL/SDL_opengl.h:4558 GL_SGIX_interlace : constant := 1; -- ../include/SDL/SDL_opengl.h:4562 GL_SGIX_pixel_tiles : constant := 1; -- ../include/SDL/SDL_opengl.h:4566 GL_SGIX_texture_select : constant := 1; -- ../include/SDL/SDL_opengl.h:4570 GL_SGIX_sprite : constant := 1; -- ../include/SDL/SDL_opengl.h:4574 GL_SGIX_texture_multi_buffer : constant := 1; -- ../include/SDL/SDL_opengl.h:4588 GL_EXT_point_parameters : constant := 1; -- ../include/SDL/SDL_opengl.h:4592 GL_SGIS_point_parameters : constant := 1; -- ../include/SDL/SDL_opengl.h:4602 GL_SGIX_instruments : constant := 1; -- ../include/SDL/SDL_opengl.h:4612 GL_SGIX_texture_scale_bias : constant := 1; -- ../include/SDL/SDL_opengl.h:4630 GL_SGIX_framezoom : constant := 1; -- ../include/SDL/SDL_opengl.h:4634 GL_SGIX_tag_sample_buffer : constant := 1; -- ../include/SDL/SDL_opengl.h:4642 GL_SGIX_polynomial_ffd : constant := 1; -- ../include/SDL/SDL_opengl.h:4650 GL_SGIX_reference_plane : constant := 1; -- ../include/SDL/SDL_opengl.h:4664 GL_SGIX_flush_raster : constant := 1; -- ../include/SDL/SDL_opengl.h:4672 GL_SGIX_depth_texture : constant := 1; -- ../include/SDL/SDL_opengl.h:4680 GL_SGIS_fog_function : constant := 1; -- ../include/SDL/SDL_opengl.h:4684 GL_SGIX_fog_offset : constant := 1; -- ../include/SDL/SDL_opengl.h:4694 GL_HP_image_transform : constant := 1; -- ../include/SDL/SDL_opengl.h:4698 GL_HP_convolution_border_modes : constant := 1; -- ../include/SDL/SDL_opengl.h:4716 GL_SGIX_texture_add_env : constant := 1; -- ../include/SDL/SDL_opengl.h:4720 GL_EXT_color_subtable : constant := 1; -- ../include/SDL/SDL_opengl.h:4724 GL_PGI_vertex_hints : constant := 1; -- ../include/SDL/SDL_opengl.h:4734 GL_PGI_misc_hints : constant := 1; -- ../include/SDL/SDL_opengl.h:4738 GL_EXT_clip_volume_hint : constant := 1; -- ../include/SDL/SDL_opengl.h:4760 GL_SGIX_list_priority : constant := 1; -- ../include/SDL/SDL_opengl.h:4764 GL_SGIX_ir_instrument1 : constant := 1; -- ../include/SDL/SDL_opengl.h:4782 GL_SGIX_calligraphic_fragment : constant := 1; -- ../include/SDL/SDL_opengl.h:4786 GL_SGIX_texture_lod_bias : constant := 1; -- ../include/SDL/SDL_opengl.h:4790 GL_SGIX_shadow_ambient : constant := 1; -- ../include/SDL/SDL_opengl.h:4794 GL_EXT_index_texture : constant := 1; -- ../include/SDL/SDL_opengl.h:4798 GL_EXT_index_material : constant := 1; -- ../include/SDL/SDL_opengl.h:4802 GL_EXT_index_func : constant := 1; -- ../include/SDL/SDL_opengl.h:4810 GL_EXT_index_array_formats : constant := 1; -- ../include/SDL/SDL_opengl.h:4818 GL_EXT_compiled_vertex_array : constant := 1; -- ../include/SDL/SDL_opengl.h:4822 GL_EXT_cull_vertex : constant := 1; -- ../include/SDL/SDL_opengl.h:4832 GL_SGIX_ycrcb : constant := 1; -- ../include/SDL/SDL_opengl.h:4842 GL_SGIX_fragment_lighting : constant := 1; -- ../include/SDL/SDL_opengl.h:4846 GL_IBM_rasterpos_clip : constant := 1; -- ../include/SDL/SDL_opengl.h:4888 GL_HP_texture_lighting : constant := 1; -- ../include/SDL/SDL_opengl.h:4892 GL_EXT_draw_range_elements : constant := 1; -- ../include/SDL/SDL_opengl.h:4896 GL_WIN_phong_shading : constant := 1; -- ../include/SDL/SDL_opengl.h:4904 GL_WIN_specular_fog : constant := 1; -- ../include/SDL/SDL_opengl.h:4908 GL_EXT_light_texture : constant := 1; -- ../include/SDL/SDL_opengl.h:4912 GL_SGIX_blend_alpha_minmax : constant := 1; -- ../include/SDL/SDL_opengl.h:4924 GL_SGIX_async : constant := 1; -- ../include/SDL/SDL_opengl.h:4932 GL_SGIX_async_pixel : constant := 1; -- ../include/SDL/SDL_opengl.h:4950 GL_SGIX_async_histogram : constant := 1; -- ../include/SDL/SDL_opengl.h:4954 GL_INTEL_parallel_arrays : constant := 1; -- ../include/SDL/SDL_opengl.h:4958 GL_HP_occlusion_test : constant := 1; -- ../include/SDL/SDL_opengl.h:4972 GL_EXT_pixel_transform : constant := 1; -- ../include/SDL/SDL_opengl.h:4976 GL_EXT_pixel_transform_color_table : constant := 1; -- ../include/SDL/SDL_opengl.h:4990 GL_EXT_shared_texture_palette : constant := 1; -- ../include/SDL/SDL_opengl.h:4994 GL_EXT_separate_specular_color : constant := 1; -- ../include/SDL/SDL_opengl.h:4998 GL_EXT_secondary_color : constant := 1; -- ../include/SDL/SDL_opengl.h:5002 GL_EXT_texture_perturb_normal : constant := 1; -- ../include/SDL/SDL_opengl.h:5042 GL_EXT_multi_draw_arrays : constant := 1; -- ../include/SDL/SDL_opengl.h:5050 GL_EXT_fog_coord : constant := 1; -- ../include/SDL/SDL_opengl.h:5060 GL_REND_screen_coordinates : constant := 1; -- ../include/SDL/SDL_opengl.h:5076 GL_EXT_coordinate_frame : constant := 1; -- ../include/SDL/SDL_opengl.h:5080 GL_EXT_texture_env_combine : constant := 1; -- ../include/SDL/SDL_opengl.h:5130 GL_APPLE_specular_vector : constant := 1; -- ../include/SDL/SDL_opengl.h:5134 GL_APPLE_transform_hint : constant := 1; -- ../include/SDL/SDL_opengl.h:5138 GL_SGIX_fog_scale : constant := 1; -- ../include/SDL/SDL_opengl.h:5142 GL_SUNX_constant_data : constant := 1; -- ../include/SDL/SDL_opengl.h:5146 GL_SUN_global_alpha : constant := 1; -- ../include/SDL/SDL_opengl.h:5154 GL_SUN_triangle_list : constant := 1; -- ../include/SDL/SDL_opengl.h:5176 GL_SUN_vertex : constant := 1; -- ../include/SDL/SDL_opengl.h:5196 GL_EXT_blend_func_separate : constant := 1; -- ../include/SDL/SDL_opengl.h:5282 GL_INGR_blend_func_separate : constant := 1; -- ../include/SDL/SDL_opengl.h:5290 GL_INGR_color_clamp : constant := 1; -- ../include/SDL/SDL_opengl.h:5298 GL_INGR_interlace_read : constant := 1; -- ../include/SDL/SDL_opengl.h:5302 GL_EXT_stencil_wrap : constant := 1; -- ../include/SDL/SDL_opengl.h:5306 GL_EXT_422_pixels : constant := 1; -- ../include/SDL/SDL_opengl.h:5310 GL_NV_texgen_reflection : constant := 1; -- ../include/SDL/SDL_opengl.h:5314 GL_SUN_convolution_border_modes : constant := 1; -- ../include/SDL/SDL_opengl.h:5318 GL_EXT_texture_env_add : constant := 1; -- ../include/SDL/SDL_opengl.h:5322 GL_EXT_texture_lod_bias : constant := 1; -- ../include/SDL/SDL_opengl.h:5326 GL_EXT_texture_filter_anisotropic : constant := 1; -- ../include/SDL/SDL_opengl.h:5330 GL_EXT_vertex_weighting : constant := 1; -- ../include/SDL/SDL_opengl.h:5334 GL_NV_light_max_exponent : constant := 1; -- ../include/SDL/SDL_opengl.h:5346 GL_NV_vertex_array_range : constant := 1; -- ../include/SDL/SDL_opengl.h:5350 GL_NV_register_combiners : constant := 1; -- ../include/SDL/SDL_opengl.h:5360 GL_NV_fog_distance : constant := 1; -- ../include/SDL/SDL_opengl.h:5392 GL_NV_texgen_emboss : constant := 1; -- ../include/SDL/SDL_opengl.h:5396 GL_NV_blend_square : constant := 1; -- ../include/SDL/SDL_opengl.h:5400 GL_NV_texture_env_combine4 : constant := 1; -- ../include/SDL/SDL_opengl.h:5404 GL_MESA_resize_buffers : constant := 1; -- ../include/SDL/SDL_opengl.h:5408 GL_MESA_window_pos : constant := 1; -- ../include/SDL/SDL_opengl.h:5416 GL_IBM_cull_vertex : constant := 1; -- ../include/SDL/SDL_opengl.h:5470 GL_IBM_multimode_draw_arrays : constant := 1; -- ../include/SDL/SDL_opengl.h:5474 GL_IBM_vertex_array_lists : constant := 1; -- ../include/SDL/SDL_opengl.h:5484 GL_SGIX_subsample : constant := 1; -- ../include/SDL/SDL_opengl.h:5506 GL_SGIX_ycrcba : constant := 1; -- ../include/SDL/SDL_opengl.h:5510 GL_SGIX_ycrcb_subsample : constant := 1; -- ../include/SDL/SDL_opengl.h:5514 GL_SGIX_depth_pass_instrument : constant := 1; -- ../include/SDL/SDL_opengl.h:5518 GL_3DFX_texture_compression_FXT1 : constant := 1; -- ../include/SDL/SDL_opengl.h:5522 GL_3DFX_multisample : constant := 1; -- ../include/SDL/SDL_opengl.h:5526 GL_3DFX_tbuffer : constant := 1; -- ../include/SDL/SDL_opengl.h:5530 GL_EXT_multisample : constant := 1; -- ../include/SDL/SDL_opengl.h:5538 GL_SGIX_vertex_preclip : constant := 1; -- ../include/SDL/SDL_opengl.h:5548 GL_SGIX_convolution_accuracy : constant := 1; -- ../include/SDL/SDL_opengl.h:5552 GL_SGIX_resample : constant := 1; -- ../include/SDL/SDL_opengl.h:5556 GL_SGIS_point_line_texgen : constant := 1; -- ../include/SDL/SDL_opengl.h:5560 GL_SGIS_texture_color_mask : constant := 1; -- ../include/SDL/SDL_opengl.h:5564 GL_SGIX_igloo_interface : constant := 1; -- ../include/SDL/SDL_opengl.h:5572 GL_EXT_texture_env_dot3 : constant := 1; -- ../include/SDL/SDL_opengl.h:5580 GL_ATI_texture_mirror_once : constant := 1; -- ../include/SDL/SDL_opengl.h:5584 GL_NV_fence : constant := 1; -- ../include/SDL/SDL_opengl.h:5588 GL_NV_evaluators : constant := 1; -- ../include/SDL/SDL_opengl.h:5608 GL_NV_packed_depth_stencil : constant := 1; -- ../include/SDL/SDL_opengl.h:5632 GL_NV_register_combiners2 : constant := 1; -- ../include/SDL/SDL_opengl.h:5636 GL_NV_texture_compression_vtc : constant := 1; -- ../include/SDL/SDL_opengl.h:5646 GL_NV_texture_rectangle : constant := 1; -- ../include/SDL/SDL_opengl.h:5650 GL_NV_texture_shader : constant := 1; -- ../include/SDL/SDL_opengl.h:5654 GL_NV_texture_shader2 : constant := 1; -- ../include/SDL/SDL_opengl.h:5658 GL_NV_vertex_array_range2 : constant := 1; -- ../include/SDL/SDL_opengl.h:5662 GL_NV_vertex_program : constant := 1; -- ../include/SDL/SDL_opengl.h:5666 GL_SGIX_texture_coordinate_clamp : constant := 1; -- ../include/SDL/SDL_opengl.h:5800 GL_SGIX_scalebias_hint : constant := 1; -- ../include/SDL/SDL_opengl.h:5804 GL_OML_interlace : constant := 1; -- ../include/SDL/SDL_opengl.h:5808 GL_OML_subsample : constant := 1; -- ../include/SDL/SDL_opengl.h:5812 GL_OML_resample : constant := 1; -- ../include/SDL/SDL_opengl.h:5816 GL_NV_copy_depth_to_color : constant := 1; -- ../include/SDL/SDL_opengl.h:5820 GL_ATI_envmap_bumpmap : constant := 1; -- ../include/SDL/SDL_opengl.h:5824 GL_ATI_fragment_shader : constant := 1; -- ../include/SDL/SDL_opengl.h:5838 GL_ATI_pn_triangles : constant := 1; -- ../include/SDL/SDL_opengl.h:5872 GL_ATI_vertex_array_object : constant := 1; -- ../include/SDL/SDL_opengl.h:5882 GL_EXT_vertex_shader : constant := 1; -- ../include/SDL/SDL_opengl.h:5912 GL_ATI_vertex_streams : constant := 1; -- ../include/SDL/SDL_opengl.h:6002 GL_ATI_element_array : constant := 1; -- ../include/SDL/SDL_opengl.h:6098 GL_SUN_mesh_array : constant := 1; -- ../include/SDL/SDL_opengl.h:6110 GL_SUN_slice_accum : constant := 1; -- ../include/SDL/SDL_opengl.h:6118 GL_NV_multisample_filter_hint : constant := 1; -- ../include/SDL/SDL_opengl.h:6122 GL_NV_depth_clamp : constant := 1; -- ../include/SDL/SDL_opengl.h:6126 GL_NV_occlusion_query : constant := 1; -- ../include/SDL/SDL_opengl.h:6130 GL_NV_point_sprite : constant := 1; -- ../include/SDL/SDL_opengl.h:6150 GL_NV_texture_shader3 : constant := 1; -- ../include/SDL/SDL_opengl.h:6160 GL_NV_vertex_program1_1 : constant := 1; -- ../include/SDL/SDL_opengl.h:6164 GL_EXT_shadow_funcs : constant := 1; -- ../include/SDL/SDL_opengl.h:6168 GL_EXT_stencil_two_side : constant := 1; -- ../include/SDL/SDL_opengl.h:6172 GL_ATI_text_fragment_shader : constant := 1; -- ../include/SDL/SDL_opengl.h:6180 GL_APPLE_client_storage : constant := 1; -- ../include/SDL/SDL_opengl.h:6184 GL_APPLE_element_array : constant := 1; -- ../include/SDL/SDL_opengl.h:6188 GL_APPLE_fence : constant := 1; -- ../include/SDL/SDL_opengl.h:6204 GL_APPLE_vertex_array_object : constant := 1; -- ../include/SDL/SDL_opengl.h:6226 GL_APPLE_vertex_array_range : constant := 1; -- ../include/SDL/SDL_opengl.h:6240 GL_APPLE_ycbcr_422 : constant := 1; -- ../include/SDL/SDL_opengl.h:6252 GL_S3_s3tc : constant := 1; -- ../include/SDL/SDL_opengl.h:6256 GL_ATI_draw_buffers : constant := 1; -- ../include/SDL/SDL_opengl.h:6260 GL_ATI_pixel_format_float : constant := 1; -- ../include/SDL/SDL_opengl.h:6268 GL_ATI_texture_env_combine3 : constant := 1; -- ../include/SDL/SDL_opengl.h:6275 GL_ATI_texture_float : constant := 1; -- ../include/SDL/SDL_opengl.h:6279 GL_NV_float_buffer : constant := 1; -- ../include/SDL/SDL_opengl.h:6283 GL_NV_fragment_program : constant := 1; -- ../include/SDL/SDL_opengl.h:6287 GL_NV_half_float : constant := 1; -- ../include/SDL/SDL_opengl.h:6306 GL_NV_pixel_data_range : constant := 1; -- ../include/SDL/SDL_opengl.h:6404 GL_NV_primitive_restart : constant := 1; -- ../include/SDL/SDL_opengl.h:6414 GL_NV_texture_expand_normal : constant := 1; -- ../include/SDL/SDL_opengl.h:6424 GL_NV_vertex_program2 : constant := 1; -- ../include/SDL/SDL_opengl.h:6428 GL_ATI_map_object_buffer : constant := 1; -- ../include/SDL/SDL_opengl.h:6432 GL_ATI_separate_stencil : constant := 1; -- ../include/SDL/SDL_opengl.h:6442 GL_ATI_vertex_attrib_array_object : constant := 1; -- ../include/SDL/SDL_opengl.h:6452 GL_OES_read_format : constant := 1; -- ../include/SDL/SDL_opengl.h:6464 GL_EXT_depth_bounds_test : constant := 1; -- ../include/SDL/SDL_opengl.h:6468 GL_EXT_texture_mirror_clamp : constant := 1; -- ../include/SDL/SDL_opengl.h:6476 GL_EXT_blend_equation_separate : constant := 1; -- ../include/SDL/SDL_opengl.h:6480 GL_MESA_pack_invert : constant := 1; -- ../include/SDL/SDL_opengl.h:6488 GL_MESA_ycbcr_texture : constant := 1; -- ../include/SDL/SDL_opengl.h:6492 GL_EXT_pixel_buffer_object : constant := 1; -- ../include/SDL/SDL_opengl.h:6496 GL_NV_fragment_program_option : constant := 1; -- ../include/SDL/SDL_opengl.h:6500 GL_NV_fragment_program2 : constant := 1; -- ../include/SDL/SDL_opengl.h:6504 GL_NV_vertex_program2_option : constant := 1; -- ../include/SDL/SDL_opengl.h:6508 GL_NV_vertex_program3 : constant := 1; -- ../include/SDL/SDL_opengl.h:6512 GL_EXT_framebuffer_object : constant := 1; -- ../include/SDL/SDL_opengl.h:6516 GL_GREMEDY_string_marker : constant := 1; -- ../include/SDL/SDL_opengl.h:6556 subtype GLchar is char; -- ../include/SDL/SDL_opengl.h:3106 subtype GLintptr is umingw_h.ptrdiff_t; -- ../include/SDL/SDL_opengl.h:3115 subtype GLsizeiptr is umingw_h.ptrdiff_t; -- ../include/SDL/SDL_opengl.h:3116 subtype GLintptrARB is umingw_h.ptrdiff_t; -- ../include/SDL/SDL_opengl.h:3126 subtype GLsizeiptrARB is umingw_h.ptrdiff_t; -- ../include/SDL/SDL_opengl.h:3127 subtype GLcharARB is char; -- ../include/SDL/SDL_opengl.h:3133 subtype GLhandleARB is unsigned; -- ../include/SDL/SDL_opengl.h:3137 subtype GLhalfARB is unsigned_short; -- ../include/SDL/SDL_opengl.h:3143 subtype GLhalfNV is unsigned_short; -- ../include/SDL/SDL_opengl.h:3147 type PFNGLBLENDCOLORPROC is access procedure (arg1 : GL_gl_h.GLclampf; arg2 : GL_gl_h.GLclampf; arg3 : GL_gl_h.GLclampf; arg4 : GL_gl_h.GLclampf); pragma Convention (C, PFNGLBLENDCOLORPROC); -- ../include/SDL/SDL_opengl.h:3192 type PFNGLBLENDEQUATIONPROC is access procedure (arg1 : GL_gl_h.GLenum); pragma Convention (C, PFNGLBLENDEQUATIONPROC); -- ../include/SDL/SDL_opengl.h:3193 type PFNGLDRAWRANGEELEMENTSPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLuint; arg4 : GL_gl_h.GLsizei; arg5 : GL_gl_h.GLenum; arg6 : System.Address); pragma Convention (C, PFNGLDRAWRANGEELEMENTSPROC); -- ../include/SDL/SDL_opengl.h:3194 type PFNGLCOLORTABLEPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLsizei; arg4 : GL_gl_h.GLenum; arg5 : GL_gl_h.GLenum; arg6 : System.Address); pragma Convention (C, PFNGLCOLORTABLEPROC); -- ../include/SDL/SDL_opengl.h:3195 type PFNGLCOLORTABLEPARAMETERFVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLCOLORTABLEPARAMETERFVPROC); -- ../include/SDL/SDL_opengl.h:3196 type PFNGLCOLORTABLEPARAMETERIVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLCOLORTABLEPARAMETERIVPROC); -- ../include/SDL/SDL_opengl.h:3197 type PFNGLCOPYCOLORTABLEPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLsizei); pragma Convention (C, PFNGLCOPYCOLORTABLEPROC); -- ../include/SDL/SDL_opengl.h:3198 type PFNGLGETCOLORTABLEPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLenum; arg4 : System.Address); pragma Convention (C, PFNGLGETCOLORTABLEPROC); -- ../include/SDL/SDL_opengl.h:3199 type PFNGLGETCOLORTABLEPARAMETERFVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETCOLORTABLEPARAMETERFVPROC); -- ../include/SDL/SDL_opengl.h:3200 type PFNGLGETCOLORTABLEPARAMETERIVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETCOLORTABLEPARAMETERIVPROC); -- ../include/SDL/SDL_opengl.h:3201 type PFNGLCOLORSUBTABLEPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLsizei; arg3 : GL_gl_h.GLsizei; arg4 : GL_gl_h.GLenum; arg5 : GL_gl_h.GLenum; arg6 : System.Address); pragma Convention (C, PFNGLCOLORSUBTABLEPROC); -- ../include/SDL/SDL_opengl.h:3202 type PFNGLCOPYCOLORSUBTABLEPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLsizei; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLsizei); pragma Convention (C, PFNGLCOPYCOLORSUBTABLEPROC); -- ../include/SDL/SDL_opengl.h:3203 type PFNGLCONVOLUTIONFILTER1DPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLsizei; arg4 : GL_gl_h.GLenum; arg5 : GL_gl_h.GLenum; arg6 : System.Address); pragma Convention (C, PFNGLCONVOLUTIONFILTER1DPROC); -- ../include/SDL/SDL_opengl.h:3204 type PFNGLCONVOLUTIONFILTER2DPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLsizei; arg4 : GL_gl_h.GLsizei; arg5 : GL_gl_h.GLenum; arg6 : GL_gl_h.GLenum; arg7 : System.Address); pragma Convention (C, PFNGLCONVOLUTIONFILTER2DPROC); -- ../include/SDL/SDL_opengl.h:3205 type PFNGLCONVOLUTIONPARAMETERFPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLCONVOLUTIONPARAMETERFPROC); -- ../include/SDL/SDL_opengl.h:3206 type PFNGLCONVOLUTIONPARAMETERFVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLCONVOLUTIONPARAMETERFVPROC); -- ../include/SDL/SDL_opengl.h:3207 type PFNGLCONVOLUTIONPARAMETERIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLint); pragma Convention (C, PFNGLCONVOLUTIONPARAMETERIPROC); -- ../include/SDL/SDL_opengl.h:3208 type PFNGLCONVOLUTIONPARAMETERIVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLCONVOLUTIONPARAMETERIVPROC); -- ../include/SDL/SDL_opengl.h:3209 type PFNGLCOPYCONVOLUTIONFILTER1DPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLsizei); pragma Convention (C, PFNGLCOPYCONVOLUTIONFILTER1DPROC); -- ../include/SDL/SDL_opengl.h:3210 type PFNGLCOPYCONVOLUTIONFILTER2DPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLsizei; arg6 : GL_gl_h.GLsizei); pragma Convention (C, PFNGLCOPYCONVOLUTIONFILTER2DPROC); -- ../include/SDL/SDL_opengl.h:3211 type PFNGLGETCONVOLUTIONFILTERPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLenum; arg4 : System.Address); pragma Convention (C, PFNGLGETCONVOLUTIONFILTERPROC); -- ../include/SDL/SDL_opengl.h:3212 type PFNGLGETCONVOLUTIONPARAMETERFVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETCONVOLUTIONPARAMETERFVPROC); -- ../include/SDL/SDL_opengl.h:3213 type PFNGLGETCONVOLUTIONPARAMETERIVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETCONVOLUTIONPARAMETERIVPROC); -- ../include/SDL/SDL_opengl.h:3214 type PFNGLGETSEPARABLEFILTERPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLenum; arg4 : System.Address; arg5 : System.Address; arg6 : System.Address); pragma Convention (C, PFNGLGETSEPARABLEFILTERPROC); -- ../include/SDL/SDL_opengl.h:3215 type PFNGLSEPARABLEFILTER2DPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLsizei; arg4 : GL_gl_h.GLsizei; arg5 : GL_gl_h.GLenum; arg6 : GL_gl_h.GLenum; arg7 : System.Address; arg8 : System.Address); pragma Convention (C, PFNGLSEPARABLEFILTER2DPROC); -- ../include/SDL/SDL_opengl.h:3216 type PFNGLGETHISTOGRAMPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLboolean; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLenum; arg5 : System.Address); pragma Convention (C, PFNGLGETHISTOGRAMPROC); -- ../include/SDL/SDL_opengl.h:3217 type PFNGLGETHISTOGRAMPARAMETERFVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETHISTOGRAMPARAMETERFVPROC); -- ../include/SDL/SDL_opengl.h:3218 type PFNGLGETHISTOGRAMPARAMETERIVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETHISTOGRAMPARAMETERIVPROC); -- ../include/SDL/SDL_opengl.h:3219 type PFNGLGETMINMAXPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLboolean; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLenum; arg5 : System.Address); pragma Convention (C, PFNGLGETMINMAXPROC); -- ../include/SDL/SDL_opengl.h:3220 type PFNGLGETMINMAXPARAMETERFVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETMINMAXPARAMETERFVPROC); -- ../include/SDL/SDL_opengl.h:3221 type PFNGLGETMINMAXPARAMETERIVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETMINMAXPARAMETERIVPROC); -- ../include/SDL/SDL_opengl.h:3222 type PFNGLHISTOGRAMPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLsizei; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLboolean); pragma Convention (C, PFNGLHISTOGRAMPROC); -- ../include/SDL/SDL_opengl.h:3223 type PFNGLMINMAXPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLboolean); pragma Convention (C, PFNGLMINMAXPROC); -- ../include/SDL/SDL_opengl.h:3224 type PFNGLRESETHISTOGRAMPROC is access procedure (arg1 : GL_gl_h.GLenum); pragma Convention (C, PFNGLRESETHISTOGRAMPROC); -- ../include/SDL/SDL_opengl.h:3225 type PFNGLRESETMINMAXPROC is access procedure (arg1 : GL_gl_h.GLenum); pragma Convention (C, PFNGLRESETMINMAXPROC); -- ../include/SDL/SDL_opengl.h:3226 type PFNGLTEXIMAGE3DPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLsizei; arg5 : GL_gl_h.GLsizei; arg6 : GL_gl_h.GLsizei; arg7 : GL_gl_h.GLint; arg8 : GL_gl_h.GLenum; arg9 : GL_gl_h.GLenum; arg10 : System.Address); pragma Convention (C, PFNGLTEXIMAGE3DPROC); -- ../include/SDL/SDL_opengl.h:3227 type PFNGLTEXSUBIMAGE3DPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLint; arg6 : GL_gl_h.GLsizei; arg7 : GL_gl_h.GLsizei; arg8 : GL_gl_h.GLsizei; arg9 : GL_gl_h.GLenum; arg10 : GL_gl_h.GLenum; arg11 : System.Address); pragma Convention (C, PFNGLTEXSUBIMAGE3DPROC); -- ../include/SDL/SDL_opengl.h:3228 type PFNGLCOPYTEXSUBIMAGE3DPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLint; arg6 : GL_gl_h.GLint; arg7 : GL_gl_h.GLint; arg8 : GL_gl_h.GLsizei; arg9 : GL_gl_h.GLsizei); pragma Convention (C, PFNGLCOPYTEXSUBIMAGE3DPROC); -- ../include/SDL/SDL_opengl.h:3229 type PFNGLACTIVETEXTUREPROC is access procedure (arg1 : GL_gl_h.GLenum); pragma Convention (C, PFNGLACTIVETEXTUREPROC); -- ../include/SDL/SDL_opengl.h:3282 type PFNGLCLIENTACTIVETEXTUREPROC is access procedure (arg1 : GL_gl_h.GLenum); pragma Convention (C, PFNGLCLIENTACTIVETEXTUREPROC); -- ../include/SDL/SDL_opengl.h:3283 type PFNGLMULTITEXCOORD1DPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLMULTITEXCOORD1DPROC); -- ../include/SDL/SDL_opengl.h:3284 type PFNGLMULTITEXCOORD1DVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLMULTITEXCOORD1DVPROC); -- ../include/SDL/SDL_opengl.h:3285 type PFNGLMULTITEXCOORD1FPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLMULTITEXCOORD1FPROC); -- ../include/SDL/SDL_opengl.h:3286 type PFNGLMULTITEXCOORD1FVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLMULTITEXCOORD1FVPROC); -- ../include/SDL/SDL_opengl.h:3287 type PFNGLMULTITEXCOORD1IPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint); pragma Convention (C, PFNGLMULTITEXCOORD1IPROC); -- ../include/SDL/SDL_opengl.h:3288 type PFNGLMULTITEXCOORD1IVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLint); pragma Convention (C, PFNGLMULTITEXCOORD1IVPROC); -- ../include/SDL/SDL_opengl.h:3289 type PFNGLMULTITEXCOORD1SPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLshort); pragma Convention (C, PFNGLMULTITEXCOORD1SPROC); -- ../include/SDL/SDL_opengl.h:3290 type PFNGLMULTITEXCOORD1SVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLMULTITEXCOORD1SVPROC); -- ../include/SDL/SDL_opengl.h:3291 type PFNGLMULTITEXCOORD2DPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLdouble; arg3 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLMULTITEXCOORD2DPROC); -- ../include/SDL/SDL_opengl.h:3292 type PFNGLMULTITEXCOORD2DVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLMULTITEXCOORD2DVPROC); -- ../include/SDL/SDL_opengl.h:3293 type PFNGLMULTITEXCOORD2FPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLMULTITEXCOORD2FPROC); -- ../include/SDL/SDL_opengl.h:3294 type PFNGLMULTITEXCOORD2FVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLMULTITEXCOORD2FVPROC); -- ../include/SDL/SDL_opengl.h:3295 type PFNGLMULTITEXCOORD2IPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint); pragma Convention (C, PFNGLMULTITEXCOORD2IPROC); -- ../include/SDL/SDL_opengl.h:3296 type PFNGLMULTITEXCOORD2IVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLint); pragma Convention (C, PFNGLMULTITEXCOORD2IVPROC); -- ../include/SDL/SDL_opengl.h:3297 type PFNGLMULTITEXCOORD2SPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLshort; arg3 : GL_gl_h.GLshort); pragma Convention (C, PFNGLMULTITEXCOORD2SPROC); -- ../include/SDL/SDL_opengl.h:3298 type PFNGLMULTITEXCOORD2SVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLMULTITEXCOORD2SVPROC); -- ../include/SDL/SDL_opengl.h:3299 type PFNGLMULTITEXCOORD3DPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLdouble; arg3 : GL_gl_h.GLdouble; arg4 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLMULTITEXCOORD3DPROC); -- ../include/SDL/SDL_opengl.h:3300 type PFNGLMULTITEXCOORD3DVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLMULTITEXCOORD3DVPROC); -- ../include/SDL/SDL_opengl.h:3301 type PFNGLMULTITEXCOORD3FPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLMULTITEXCOORD3FPROC); -- ../include/SDL/SDL_opengl.h:3302 type PFNGLMULTITEXCOORD3FVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLMULTITEXCOORD3FVPROC); -- ../include/SDL/SDL_opengl.h:3303 type PFNGLMULTITEXCOORD3IPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint); pragma Convention (C, PFNGLMULTITEXCOORD3IPROC); -- ../include/SDL/SDL_opengl.h:3304 type PFNGLMULTITEXCOORD3IVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLint); pragma Convention (C, PFNGLMULTITEXCOORD3IVPROC); -- ../include/SDL/SDL_opengl.h:3305 type PFNGLMULTITEXCOORD3SPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLshort; arg3 : GL_gl_h.GLshort; arg4 : GL_gl_h.GLshort); pragma Convention (C, PFNGLMULTITEXCOORD3SPROC); -- ../include/SDL/SDL_opengl.h:3306 type PFNGLMULTITEXCOORD3SVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLMULTITEXCOORD3SVPROC); -- ../include/SDL/SDL_opengl.h:3307 type PFNGLMULTITEXCOORD4DPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLdouble; arg3 : GL_gl_h.GLdouble; arg4 : GL_gl_h.GLdouble; arg5 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLMULTITEXCOORD4DPROC); -- ../include/SDL/SDL_opengl.h:3308 type PFNGLMULTITEXCOORD4DVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLMULTITEXCOORD4DVPROC); -- ../include/SDL/SDL_opengl.h:3309 type PFNGLMULTITEXCOORD4FPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat; arg5 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLMULTITEXCOORD4FPROC); -- ../include/SDL/SDL_opengl.h:3310 type PFNGLMULTITEXCOORD4FVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLMULTITEXCOORD4FVPROC); -- ../include/SDL/SDL_opengl.h:3311 type PFNGLMULTITEXCOORD4IPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLint); pragma Convention (C, PFNGLMULTITEXCOORD4IPROC); -- ../include/SDL/SDL_opengl.h:3312 type PFNGLMULTITEXCOORD4IVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLint); pragma Convention (C, PFNGLMULTITEXCOORD4IVPROC); -- ../include/SDL/SDL_opengl.h:3313 type PFNGLMULTITEXCOORD4SPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLshort; arg3 : GL_gl_h.GLshort; arg4 : GL_gl_h.GLshort; arg5 : GL_gl_h.GLshort); pragma Convention (C, PFNGLMULTITEXCOORD4SPROC); -- ../include/SDL/SDL_opengl.h:3314 type PFNGLMULTITEXCOORD4SVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLMULTITEXCOORD4SVPROC); -- ../include/SDL/SDL_opengl.h:3315 type PFNGLLOADTRANSPOSEMATRIXFPROC is access procedure (arg1 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLLOADTRANSPOSEMATRIXFPROC); -- ../include/SDL/SDL_opengl.h:3316 type PFNGLLOADTRANSPOSEMATRIXDPROC is access procedure (arg1 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLLOADTRANSPOSEMATRIXDPROC); -- ../include/SDL/SDL_opengl.h:3317 type PFNGLMULTTRANSPOSEMATRIXFPROC is access procedure (arg1 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLMULTTRANSPOSEMATRIXFPROC); -- ../include/SDL/SDL_opengl.h:3318 type PFNGLMULTTRANSPOSEMATRIXDPROC is access procedure (arg1 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLMULTTRANSPOSEMATRIXDPROC); -- ../include/SDL/SDL_opengl.h:3319 type PFNGLSAMPLECOVERAGEPROC is access procedure (arg1 : GL_gl_h.GLclampf; arg2 : GL_gl_h.GLboolean); pragma Convention (C, PFNGLSAMPLECOVERAGEPROC); -- ../include/SDL/SDL_opengl.h:3320 type PFNGLCOMPRESSEDTEXIMAGE3DPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLsizei; arg5 : GL_gl_h.GLsizei; arg6 : GL_gl_h.GLsizei; arg7 : GL_gl_h.GLint; arg8 : GL_gl_h.GLsizei; arg9 : System.Address); pragma Convention (C, PFNGLCOMPRESSEDTEXIMAGE3DPROC); -- ../include/SDL/SDL_opengl.h:3321 type PFNGLCOMPRESSEDTEXIMAGE2DPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLsizei; arg5 : GL_gl_h.GLsizei; arg6 : GL_gl_h.GLint; arg7 : GL_gl_h.GLsizei; arg8 : System.Address); pragma Convention (C, PFNGLCOMPRESSEDTEXIMAGE2DPROC); -- ../include/SDL/SDL_opengl.h:3322 type PFNGLCOMPRESSEDTEXIMAGE1DPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLsizei; arg5 : GL_gl_h.GLint; arg6 : GL_gl_h.GLsizei; arg7 : System.Address); pragma Convention (C, PFNGLCOMPRESSEDTEXIMAGE1DPROC); -- ../include/SDL/SDL_opengl.h:3323 type PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLint; arg6 : GL_gl_h.GLsizei; arg7 : GL_gl_h.GLsizei; arg8 : GL_gl_h.GLsizei; arg9 : GL_gl_h.GLenum; arg10 : GL_gl_h.GLsizei; arg11 : System.Address); pragma Convention (C, PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC); -- ../include/SDL/SDL_opengl.h:3324 type PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLsizei; arg6 : GL_gl_h.GLsizei; arg7 : GL_gl_h.GLenum; arg8 : GL_gl_h.GLsizei; arg9 : System.Address); pragma Convention (C, PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC); -- ../include/SDL/SDL_opengl.h:3325 type PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLsizei; arg5 : GL_gl_h.GLenum; arg6 : GL_gl_h.GLsizei; arg7 : System.Address); pragma Convention (C, PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC); -- ../include/SDL/SDL_opengl.h:3326 type PFNGLGETCOMPRESSEDTEXIMAGEPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : System.Address); pragma Convention (C, PFNGLGETCOMPRESSEDTEXIMAGEPROC); -- ../include/SDL/SDL_opengl.h:3327 type PFNGLBLENDFUNCSEPARATEPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLenum); pragma Convention (C, PFNGLBLENDFUNCSEPARATEPROC); -- ../include/SDL/SDL_opengl.h:3379 type PFNGLFOGCOORDFPROC is access procedure (arg1 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLFOGCOORDFPROC); -- ../include/SDL/SDL_opengl.h:3380 type PFNGLFOGCOORDFVPROC is access procedure (arg1 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLFOGCOORDFVPROC); -- ../include/SDL/SDL_opengl.h:3381 type PFNGLFOGCOORDDPROC is access procedure (arg1 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLFOGCOORDDPROC); -- ../include/SDL/SDL_opengl.h:3382 type PFNGLFOGCOORDDVPROC is access procedure (arg1 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLFOGCOORDDVPROC); -- ../include/SDL/SDL_opengl.h:3383 type PFNGLFOGCOORDPOINTERPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLsizei; arg3 : System.Address); pragma Convention (C, PFNGLFOGCOORDPOINTERPROC); -- ../include/SDL/SDL_opengl.h:3384 type PFNGLMULTIDRAWARRAYSPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLint; arg3 : access GL_gl_h.GLsizei; arg4 : GL_gl_h.GLsizei); pragma Convention (C, PFNGLMULTIDRAWARRAYSPROC); -- ../include/SDL/SDL_opengl.h:3385 type PFNGLMULTIDRAWELEMENTSPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLsizei; arg3 : GL_gl_h.GLenum; arg4 : System.Address; arg5 : GL_gl_h.GLsizei); pragma Convention (C, PFNGLMULTIDRAWELEMENTSPROC); -- ../include/SDL/SDL_opengl.h:3386 type PFNGLPOINTPARAMETERFPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLPOINTPARAMETERFPROC); -- ../include/SDL/SDL_opengl.h:3387 type PFNGLPOINTPARAMETERFVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLPOINTPARAMETERFVPROC); -- ../include/SDL/SDL_opengl.h:3388 type PFNGLPOINTPARAMETERIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint); pragma Convention (C, PFNGLPOINTPARAMETERIPROC); -- ../include/SDL/SDL_opengl.h:3389 type PFNGLPOINTPARAMETERIVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLint); pragma Convention (C, PFNGLPOINTPARAMETERIVPROC); -- ../include/SDL/SDL_opengl.h:3390 type PFNGLSECONDARYCOLOR3BPROC is access procedure (arg1 : GL_gl_h.GLbyte; arg2 : GL_gl_h.GLbyte; arg3 : GL_gl_h.GLbyte); pragma Convention (C, PFNGLSECONDARYCOLOR3BPROC); -- ../include/SDL/SDL_opengl.h:3391 type PFNGLSECONDARYCOLOR3BVPROC is access procedure (arg1 : access GL_gl_h.GLbyte); pragma Convention (C, PFNGLSECONDARYCOLOR3BVPROC); -- ../include/SDL/SDL_opengl.h:3392 type PFNGLSECONDARYCOLOR3DPROC is access procedure (arg1 : GL_gl_h.GLdouble; arg2 : GL_gl_h.GLdouble; arg3 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLSECONDARYCOLOR3DPROC); -- ../include/SDL/SDL_opengl.h:3393 type PFNGLSECONDARYCOLOR3DVPROC is access procedure (arg1 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLSECONDARYCOLOR3DVPROC); -- ../include/SDL/SDL_opengl.h:3394 type PFNGLSECONDARYCOLOR3FPROC is access procedure (arg1 : GL_gl_h.GLfloat; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLSECONDARYCOLOR3FPROC); -- ../include/SDL/SDL_opengl.h:3395 type PFNGLSECONDARYCOLOR3FVPROC is access procedure (arg1 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLSECONDARYCOLOR3FVPROC); -- ../include/SDL/SDL_opengl.h:3396 type PFNGLSECONDARYCOLOR3IPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint); pragma Convention (C, PFNGLSECONDARYCOLOR3IPROC); -- ../include/SDL/SDL_opengl.h:3397 type PFNGLSECONDARYCOLOR3IVPROC is access procedure (arg1 : access GL_gl_h.GLint); pragma Convention (C, PFNGLSECONDARYCOLOR3IVPROC); -- ../include/SDL/SDL_opengl.h:3398 type PFNGLSECONDARYCOLOR3SPROC is access procedure (arg1 : GL_gl_h.GLshort; arg2 : GL_gl_h.GLshort; arg3 : GL_gl_h.GLshort); pragma Convention (C, PFNGLSECONDARYCOLOR3SPROC); -- ../include/SDL/SDL_opengl.h:3399 type PFNGLSECONDARYCOLOR3SVPROC is access procedure (arg1 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLSECONDARYCOLOR3SVPROC); -- ../include/SDL/SDL_opengl.h:3400 type PFNGLSECONDARYCOLOR3UBPROC is access procedure (arg1 : GL_gl_h.GLubyte; arg2 : GL_gl_h.GLubyte; arg3 : GL_gl_h.GLubyte); pragma Convention (C, PFNGLSECONDARYCOLOR3UBPROC); -- ../include/SDL/SDL_opengl.h:3401 type PFNGLSECONDARYCOLOR3UBVPROC is access procedure (arg1 : access GL_gl_h.GLubyte); pragma Convention (C, PFNGLSECONDARYCOLOR3UBVPROC); -- ../include/SDL/SDL_opengl.h:3402 type PFNGLSECONDARYCOLOR3UIPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLuint); pragma Convention (C, PFNGLSECONDARYCOLOR3UIPROC); -- ../include/SDL/SDL_opengl.h:3403 type PFNGLSECONDARYCOLOR3UIVPROC is access procedure (arg1 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLSECONDARYCOLOR3UIVPROC); -- ../include/SDL/SDL_opengl.h:3404 type PFNGLSECONDARYCOLOR3USPROC is access procedure (arg1 : GL_gl_h.GLushort; arg2 : GL_gl_h.GLushort; arg3 : GL_gl_h.GLushort); pragma Convention (C, PFNGLSECONDARYCOLOR3USPROC); -- ../include/SDL/SDL_opengl.h:3405 type PFNGLSECONDARYCOLOR3USVPROC is access procedure (arg1 : access GL_gl_h.GLushort); pragma Convention (C, PFNGLSECONDARYCOLOR3USVPROC); -- ../include/SDL/SDL_opengl.h:3406 type PFNGLSECONDARYCOLORPOINTERPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLsizei; arg4 : System.Address); pragma Convention (C, PFNGLSECONDARYCOLORPOINTERPROC); -- ../include/SDL/SDL_opengl.h:3407 type PFNGLWINDOWPOS2DPROC is access procedure (arg1 : GL_gl_h.GLdouble; arg2 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLWINDOWPOS2DPROC); -- ../include/SDL/SDL_opengl.h:3408 type PFNGLWINDOWPOS2DVPROC is access procedure (arg1 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLWINDOWPOS2DVPROC); -- ../include/SDL/SDL_opengl.h:3409 type PFNGLWINDOWPOS2FPROC is access procedure (arg1 : GL_gl_h.GLfloat; arg2 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLWINDOWPOS2FPROC); -- ../include/SDL/SDL_opengl.h:3410 type PFNGLWINDOWPOS2FVPROC is access procedure (arg1 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLWINDOWPOS2FVPROC); -- ../include/SDL/SDL_opengl.h:3411 type PFNGLWINDOWPOS2IPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLint); pragma Convention (C, PFNGLWINDOWPOS2IPROC); -- ../include/SDL/SDL_opengl.h:3412 type PFNGLWINDOWPOS2IVPROC is access procedure (arg1 : access GL_gl_h.GLint); pragma Convention (C, PFNGLWINDOWPOS2IVPROC); -- ../include/SDL/SDL_opengl.h:3413 type PFNGLWINDOWPOS2SPROC is access procedure (arg1 : GL_gl_h.GLshort; arg2 : GL_gl_h.GLshort); pragma Convention (C, PFNGLWINDOWPOS2SPROC); -- ../include/SDL/SDL_opengl.h:3414 type PFNGLWINDOWPOS2SVPROC is access procedure (arg1 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLWINDOWPOS2SVPROC); -- ../include/SDL/SDL_opengl.h:3415 type PFNGLWINDOWPOS3DPROC is access procedure (arg1 : GL_gl_h.GLdouble; arg2 : GL_gl_h.GLdouble; arg3 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLWINDOWPOS3DPROC); -- ../include/SDL/SDL_opengl.h:3416 type PFNGLWINDOWPOS3DVPROC is access procedure (arg1 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLWINDOWPOS3DVPROC); -- ../include/SDL/SDL_opengl.h:3417 type PFNGLWINDOWPOS3FPROC is access procedure (arg1 : GL_gl_h.GLfloat; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLWINDOWPOS3FPROC); -- ../include/SDL/SDL_opengl.h:3418 type PFNGLWINDOWPOS3FVPROC is access procedure (arg1 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLWINDOWPOS3FVPROC); -- ../include/SDL/SDL_opengl.h:3419 type PFNGLWINDOWPOS3IPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint); pragma Convention (C, PFNGLWINDOWPOS3IPROC); -- ../include/SDL/SDL_opengl.h:3420 type PFNGLWINDOWPOS3IVPROC is access procedure (arg1 : access GL_gl_h.GLint); pragma Convention (C, PFNGLWINDOWPOS3IVPROC); -- ../include/SDL/SDL_opengl.h:3421 type PFNGLWINDOWPOS3SPROC is access procedure (arg1 : GL_gl_h.GLshort; arg2 : GL_gl_h.GLshort; arg3 : GL_gl_h.GLshort); pragma Convention (C, PFNGLWINDOWPOS3SPROC); -- ../include/SDL/SDL_opengl.h:3422 type PFNGLWINDOWPOS3SVPROC is access procedure (arg1 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLWINDOWPOS3SVPROC); -- ../include/SDL/SDL_opengl.h:3423 type PFNGLGENQUERIESPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLGENQUERIESPROC); -- ../include/SDL/SDL_opengl.h:3449 type PFNGLDELETEQUERIESPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLDELETEQUERIESPROC); -- ../include/SDL/SDL_opengl.h:3450 type PFNGLISQUERYPROC is access function (arg1 : GL_gl_h.GLuint) return GL_gl_h.GLboolean; pragma Convention (C, PFNGLISQUERYPROC); -- ../include/SDL/SDL_opengl.h:3451 type PFNGLBEGINQUERYPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint); pragma Convention (C, PFNGLBEGINQUERYPROC); -- ../include/SDL/SDL_opengl.h:3452 type PFNGLENDQUERYPROC is access procedure (arg1 : GL_gl_h.GLenum); pragma Convention (C, PFNGLENDQUERYPROC); -- ../include/SDL/SDL_opengl.h:3453 type PFNGLGETQUERYIVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETQUERYIVPROC); -- ../include/SDL/SDL_opengl.h:3454 type PFNGLGETQUERYOBJECTIVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETQUERYOBJECTIVPROC); -- ../include/SDL/SDL_opengl.h:3455 type PFNGLGETQUERYOBJECTUIVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLGETQUERYOBJECTUIVPROC); -- ../include/SDL/SDL_opengl.h:3456 type PFNGLBINDBUFFERPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint); pragma Convention (C, PFNGLBINDBUFFERPROC); -- ../include/SDL/SDL_opengl.h:3457 type PFNGLDELETEBUFFERSPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLDELETEBUFFERSPROC); -- ../include/SDL/SDL_opengl.h:3458 type PFNGLGENBUFFERSPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLGENBUFFERSPROC); -- ../include/SDL/SDL_opengl.h:3459 type PFNGLISBUFFERPROC is access function (arg1 : GL_gl_h.GLuint) return GL_gl_h.GLboolean; pragma Convention (C, PFNGLISBUFFERPROC); -- ../include/SDL/SDL_opengl.h:3460 type PFNGLBUFFERDATAPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GLsizeiptr; arg3 : System.Address; arg4 : GL_gl_h.GLenum); pragma Convention (C, PFNGLBUFFERDATAPROC); -- ../include/SDL/SDL_opengl.h:3461 type PFNGLBUFFERSUBDATAPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GLintptr; arg3 : GLsizeiptr; arg4 : System.Address); pragma Convention (C, PFNGLBUFFERSUBDATAPROC); -- ../include/SDL/SDL_opengl.h:3462 type PFNGLGETBUFFERSUBDATAPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GLintptr; arg3 : GLsizeiptr; arg4 : System.Address); pragma Convention (C, PFNGLGETBUFFERSUBDATAPROC); -- ../include/SDL/SDL_opengl.h:3463 type PFNGLMAPBUFFERPROC is access function (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum) return System.Address; pragma Convention (C, PFNGLMAPBUFFERPROC); -- ../include/SDL/SDL_opengl.h:3464 type PFNGLUNMAPBUFFERPROC is access function (arg1 : GL_gl_h.GLenum) return GL_gl_h.GLboolean; pragma Convention (C, PFNGLUNMAPBUFFERPROC); -- ../include/SDL/SDL_opengl.h:3465 type PFNGLGETBUFFERPARAMETERIVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETBUFFERPARAMETERIVPROC); -- ../include/SDL/SDL_opengl.h:3466 type PFNGLGETBUFFERPOINTERVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : System.Address); pragma Convention (C, PFNGLGETBUFFERPOINTERVPROC); -- ../include/SDL/SDL_opengl.h:3467 type PFNGLBLENDEQUATIONSEPARATEPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum); pragma Convention (C, PFNGLBLENDEQUATIONSEPARATEPROC); -- ../include/SDL/SDL_opengl.h:3567 type PFNGLDRAWBUFFERSPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLenum); pragma Convention (C, PFNGLDRAWBUFFERSPROC); -- ../include/SDL/SDL_opengl.h:3568 type PFNGLSTENCILOPSEPARATEPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLenum); pragma Convention (C, PFNGLSTENCILOPSEPARATEPROC); -- ../include/SDL/SDL_opengl.h:3569 type PFNGLSTENCILFUNCSEPARATEPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLuint); pragma Convention (C, PFNGLSTENCILFUNCSEPARATEPROC); -- ../include/SDL/SDL_opengl.h:3570 type PFNGLSTENCILMASKSEPARATEPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint); pragma Convention (C, PFNGLSTENCILMASKSEPARATEPROC); -- ../include/SDL/SDL_opengl.h:3571 type PFNGLATTACHSHADERPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLuint); pragma Convention (C, PFNGLATTACHSHADERPROC); -- ../include/SDL/SDL_opengl.h:3572 type PFNGLBINDATTRIBLOCATIONPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLuint; arg3 : access GLchar); pragma Convention (C, PFNGLBINDATTRIBLOCATIONPROC); -- ../include/SDL/SDL_opengl.h:3573 type PFNGLCOMPILESHADERPROC is access procedure (arg1 : GL_gl_h.GLuint); pragma Convention (C, PFNGLCOMPILESHADERPROC); -- ../include/SDL/SDL_opengl.h:3574 type PFNGLCREATEPROGRAMPROC is access function return GL_gl_h.GLuint; pragma Convention (C, PFNGLCREATEPROGRAMPROC); -- ../include/SDL/SDL_opengl.h:3575 type PFNGLCREATESHADERPROC is access function (arg1 : GL_gl_h.GLenum) return GL_gl_h.GLuint; pragma Convention (C, PFNGLCREATESHADERPROC); -- ../include/SDL/SDL_opengl.h:3576 type PFNGLDELETEPROGRAMPROC is access procedure (arg1 : GL_gl_h.GLuint); pragma Convention (C, PFNGLDELETEPROGRAMPROC); -- ../include/SDL/SDL_opengl.h:3577 type PFNGLDELETESHADERPROC is access procedure (arg1 : GL_gl_h.GLuint); pragma Convention (C, PFNGLDELETESHADERPROC); -- ../include/SDL/SDL_opengl.h:3578 type PFNGLDETACHSHADERPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLuint); pragma Convention (C, PFNGLDETACHSHADERPROC); -- ../include/SDL/SDL_opengl.h:3579 type PFNGLDISABLEVERTEXATTRIBARRAYPROC is access procedure (arg1 : GL_gl_h.GLuint); pragma Convention (C, PFNGLDISABLEVERTEXATTRIBARRAYPROC); -- ../include/SDL/SDL_opengl.h:3580 type PFNGLENABLEVERTEXATTRIBARRAYPROC is access procedure (arg1 : GL_gl_h.GLuint); pragma Convention (C, PFNGLENABLEVERTEXATTRIBARRAYPROC); -- ../include/SDL/SDL_opengl.h:3581 type PFNGLGETACTIVEATTRIBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLsizei; arg4 : access GL_gl_h.GLsizei; arg5 : access GL_gl_h.GLint; arg6 : access GL_gl_h.GLenum; arg7 : access GLchar); pragma Convention (C, PFNGLGETACTIVEATTRIBPROC); -- ../include/SDL/SDL_opengl.h:3582 type PFNGLGETACTIVEUNIFORMPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLsizei; arg4 : access GL_gl_h.GLsizei; arg5 : access GL_gl_h.GLint; arg6 : access GL_gl_h.GLenum; arg7 : access GLchar); pragma Convention (C, PFNGLGETACTIVEUNIFORMPROC); -- ../include/SDL/SDL_opengl.h:3583 type PFNGLGETATTACHEDSHADERSPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLsizei; arg4 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLGETATTACHEDSHADERSPROC); -- ../include/SDL/SDL_opengl.h:3584 type PFNGLGETATTRIBLOCATIONPROC is access function (arg1 : GL_gl_h.GLuint; arg2 : access GLchar) return GL_gl_h.GLint; pragma Convention (C, PFNGLGETATTRIBLOCATIONPROC); -- ../include/SDL/SDL_opengl.h:3585 type PFNGLGETPROGRAMIVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETPROGRAMIVPROC); -- ../include/SDL/SDL_opengl.h:3586 type PFNGLGETPROGRAMINFOLOGPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLsizei; arg4 : access GLchar); pragma Convention (C, PFNGLGETPROGRAMINFOLOGPROC); -- ../include/SDL/SDL_opengl.h:3587 type PFNGLGETSHADERIVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETSHADERIVPROC); -- ../include/SDL/SDL_opengl.h:3588 type PFNGLGETSHADERINFOLOGPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLsizei; arg4 : access GLchar); pragma Convention (C, PFNGLGETSHADERINFOLOGPROC); -- ../include/SDL/SDL_opengl.h:3589 type PFNGLGETSHADERSOURCEPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLsizei; arg4 : access GLchar); pragma Convention (C, PFNGLGETSHADERSOURCEPROC); -- ../include/SDL/SDL_opengl.h:3590 type PFNGLGETUNIFORMLOCATIONPROC is access function (arg1 : GL_gl_h.GLuint; arg2 : access GLchar) return GL_gl_h.GLint; pragma Convention (C, PFNGLGETUNIFORMLOCATIONPROC); -- ../include/SDL/SDL_opengl.h:3591 type PFNGLGETUNIFORMFVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLint; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETUNIFORMFVPROC); -- ../include/SDL/SDL_opengl.h:3592 type PFNGLGETUNIFORMIVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLint; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETUNIFORMIVPROC); -- ../include/SDL/SDL_opengl.h:3593 type PFNGLGETVERTEXATTRIBDVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLGETVERTEXATTRIBDVPROC); -- ../include/SDL/SDL_opengl.h:3594 type PFNGLGETVERTEXATTRIBFVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETVERTEXATTRIBFVPROC); -- ../include/SDL/SDL_opengl.h:3595 type PFNGLGETVERTEXATTRIBIVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETVERTEXATTRIBIVPROC); -- ../include/SDL/SDL_opengl.h:3596 type PFNGLGETVERTEXATTRIBPOINTERVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : System.Address); pragma Convention (C, PFNGLGETVERTEXATTRIBPOINTERVPROC); -- ../include/SDL/SDL_opengl.h:3597 type PFNGLISPROGRAMPROC is access function (arg1 : GL_gl_h.GLuint) return GL_gl_h.GLboolean; pragma Convention (C, PFNGLISPROGRAMPROC); -- ../include/SDL/SDL_opengl.h:3598 type PFNGLISSHADERPROC is access function (arg1 : GL_gl_h.GLuint) return GL_gl_h.GLboolean; pragma Convention (C, PFNGLISSHADERPROC); -- ../include/SDL/SDL_opengl.h:3599 type PFNGLLINKPROGRAMPROC is access procedure (arg1 : GL_gl_h.GLuint); pragma Convention (C, PFNGLLINKPROGRAMPROC); -- ../include/SDL/SDL_opengl.h:3600 type PFNGLSHADERSOURCEPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLsizei; arg3 : System.Address; arg4 : access GL_gl_h.GLint); pragma Convention (C, PFNGLSHADERSOURCEPROC); -- ../include/SDL/SDL_opengl.h:3601 type PFNGLUSEPROGRAMPROC is access procedure (arg1 : GL_gl_h.GLuint); pragma Convention (C, PFNGLUSEPROGRAMPROC); -- ../include/SDL/SDL_opengl.h:3602 type PFNGLUNIFORM1FPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLUNIFORM1FPROC); -- ../include/SDL/SDL_opengl.h:3603 type PFNGLUNIFORM2FPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLUNIFORM2FPROC); -- ../include/SDL/SDL_opengl.h:3604 type PFNGLUNIFORM3FPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLUNIFORM3FPROC); -- ../include/SDL/SDL_opengl.h:3605 type PFNGLUNIFORM4FPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat; arg5 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLUNIFORM4FPROC); -- ../include/SDL/SDL_opengl.h:3606 type PFNGLUNIFORM1IPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLint); pragma Convention (C, PFNGLUNIFORM1IPROC); -- ../include/SDL/SDL_opengl.h:3607 type PFNGLUNIFORM2IPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint); pragma Convention (C, PFNGLUNIFORM2IPROC); -- ../include/SDL/SDL_opengl.h:3608 type PFNGLUNIFORM3IPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint); pragma Convention (C, PFNGLUNIFORM3IPROC); -- ../include/SDL/SDL_opengl.h:3609 type PFNGLUNIFORM4IPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLint); pragma Convention (C, PFNGLUNIFORM4IPROC); -- ../include/SDL/SDL_opengl.h:3610 type PFNGLUNIFORM1FVPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLUNIFORM1FVPROC); -- ../include/SDL/SDL_opengl.h:3611 type PFNGLUNIFORM2FVPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLUNIFORM2FVPROC); -- ../include/SDL/SDL_opengl.h:3612 type PFNGLUNIFORM3FVPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLUNIFORM3FVPROC); -- ../include/SDL/SDL_opengl.h:3613 type PFNGLUNIFORM4FVPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLUNIFORM4FVPROC); -- ../include/SDL/SDL_opengl.h:3614 type PFNGLUNIFORM1IVPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLUNIFORM1IVPROC); -- ../include/SDL/SDL_opengl.h:3615 type PFNGLUNIFORM2IVPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLUNIFORM2IVPROC); -- ../include/SDL/SDL_opengl.h:3616 type PFNGLUNIFORM3IVPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLUNIFORM3IVPROC); -- ../include/SDL/SDL_opengl.h:3617 type PFNGLUNIFORM4IVPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLUNIFORM4IVPROC); -- ../include/SDL/SDL_opengl.h:3618 type PFNGLUNIFORMMATRIX2FVPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLsizei; arg3 : GL_gl_h.GLboolean; arg4 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLUNIFORMMATRIX2FVPROC); -- ../include/SDL/SDL_opengl.h:3619 type PFNGLUNIFORMMATRIX3FVPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLsizei; arg3 : GL_gl_h.GLboolean; arg4 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLUNIFORMMATRIX3FVPROC); -- ../include/SDL/SDL_opengl.h:3620 type PFNGLUNIFORMMATRIX4FVPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLsizei; arg3 : GL_gl_h.GLboolean; arg4 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLUNIFORMMATRIX4FVPROC); -- ../include/SDL/SDL_opengl.h:3621 type PFNGLVALIDATEPROGRAMPROC is access procedure (arg1 : GL_gl_h.GLuint); pragma Convention (C, PFNGLVALIDATEPROGRAMPROC); -- ../include/SDL/SDL_opengl.h:3622 type PFNGLVERTEXATTRIB1DPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXATTRIB1DPROC); -- ../include/SDL/SDL_opengl.h:3623 type PFNGLVERTEXATTRIB1DVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXATTRIB1DVPROC); -- ../include/SDL/SDL_opengl.h:3624 type PFNGLVERTEXATTRIB1FPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXATTRIB1FPROC); -- ../include/SDL/SDL_opengl.h:3625 type PFNGLVERTEXATTRIB1FVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXATTRIB1FVPROC); -- ../include/SDL/SDL_opengl.h:3626 type PFNGLVERTEXATTRIB1SPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIB1SPROC); -- ../include/SDL/SDL_opengl.h:3627 type PFNGLVERTEXATTRIB1SVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIB1SVPROC); -- ../include/SDL/SDL_opengl.h:3628 type PFNGLVERTEXATTRIB2DPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLdouble; arg3 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXATTRIB2DPROC); -- ../include/SDL/SDL_opengl.h:3629 type PFNGLVERTEXATTRIB2DVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXATTRIB2DVPROC); -- ../include/SDL/SDL_opengl.h:3630 type PFNGLVERTEXATTRIB2FPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXATTRIB2FPROC); -- ../include/SDL/SDL_opengl.h:3631 type PFNGLVERTEXATTRIB2FVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXATTRIB2FVPROC); -- ../include/SDL/SDL_opengl.h:3632 type PFNGLVERTEXATTRIB2SPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLshort; arg3 : GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIB2SPROC); -- ../include/SDL/SDL_opengl.h:3633 type PFNGLVERTEXATTRIB2SVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIB2SVPROC); -- ../include/SDL/SDL_opengl.h:3634 type PFNGLVERTEXATTRIB3DPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLdouble; arg3 : GL_gl_h.GLdouble; arg4 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXATTRIB3DPROC); -- ../include/SDL/SDL_opengl.h:3635 type PFNGLVERTEXATTRIB3DVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXATTRIB3DVPROC); -- ../include/SDL/SDL_opengl.h:3636 type PFNGLVERTEXATTRIB3FPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXATTRIB3FPROC); -- ../include/SDL/SDL_opengl.h:3637 type PFNGLVERTEXATTRIB3FVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXATTRIB3FVPROC); -- ../include/SDL/SDL_opengl.h:3638 type PFNGLVERTEXATTRIB3SPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLshort; arg3 : GL_gl_h.GLshort; arg4 : GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIB3SPROC); -- ../include/SDL/SDL_opengl.h:3639 type PFNGLVERTEXATTRIB3SVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIB3SVPROC); -- ../include/SDL/SDL_opengl.h:3640 type PFNGLVERTEXATTRIB4NBVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLbyte); pragma Convention (C, PFNGLVERTEXATTRIB4NBVPROC); -- ../include/SDL/SDL_opengl.h:3641 type PFNGLVERTEXATTRIB4NIVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLint); pragma Convention (C, PFNGLVERTEXATTRIB4NIVPROC); -- ../include/SDL/SDL_opengl.h:3642 type PFNGLVERTEXATTRIB4NSVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIB4NSVPROC); -- ../include/SDL/SDL_opengl.h:3643 type PFNGLVERTEXATTRIB4NUBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLubyte; arg3 : GL_gl_h.GLubyte; arg4 : GL_gl_h.GLubyte; arg5 : GL_gl_h.GLubyte); pragma Convention (C, PFNGLVERTEXATTRIB4NUBPROC); -- ../include/SDL/SDL_opengl.h:3644 type PFNGLVERTEXATTRIB4NUBVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLubyte); pragma Convention (C, PFNGLVERTEXATTRIB4NUBVPROC); -- ../include/SDL/SDL_opengl.h:3645 type PFNGLVERTEXATTRIB4NUIVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLVERTEXATTRIB4NUIVPROC); -- ../include/SDL/SDL_opengl.h:3646 type PFNGLVERTEXATTRIB4NUSVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLushort); pragma Convention (C, PFNGLVERTEXATTRIB4NUSVPROC); -- ../include/SDL/SDL_opengl.h:3647 type PFNGLVERTEXATTRIB4BVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLbyte); pragma Convention (C, PFNGLVERTEXATTRIB4BVPROC); -- ../include/SDL/SDL_opengl.h:3648 type PFNGLVERTEXATTRIB4DPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLdouble; arg3 : GL_gl_h.GLdouble; arg4 : GL_gl_h.GLdouble; arg5 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXATTRIB4DPROC); -- ../include/SDL/SDL_opengl.h:3649 type PFNGLVERTEXATTRIB4DVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXATTRIB4DVPROC); -- ../include/SDL/SDL_opengl.h:3650 type PFNGLVERTEXATTRIB4FPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat; arg5 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXATTRIB4FPROC); -- ../include/SDL/SDL_opengl.h:3651 type PFNGLVERTEXATTRIB4FVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXATTRIB4FVPROC); -- ../include/SDL/SDL_opengl.h:3652 type PFNGLVERTEXATTRIB4IVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLint); pragma Convention (C, PFNGLVERTEXATTRIB4IVPROC); -- ../include/SDL/SDL_opengl.h:3653 type PFNGLVERTEXATTRIB4SPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLshort; arg3 : GL_gl_h.GLshort; arg4 : GL_gl_h.GLshort; arg5 : GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIB4SPROC); -- ../include/SDL/SDL_opengl.h:3654 type PFNGLVERTEXATTRIB4SVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIB4SVPROC); -- ../include/SDL/SDL_opengl.h:3655 type PFNGLVERTEXATTRIB4UBVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLubyte); pragma Convention (C, PFNGLVERTEXATTRIB4UBVPROC); -- ../include/SDL/SDL_opengl.h:3656 type PFNGLVERTEXATTRIB4UIVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLVERTEXATTRIB4UIVPROC); -- ../include/SDL/SDL_opengl.h:3657 type PFNGLVERTEXATTRIB4USVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLushort); pragma Convention (C, PFNGLVERTEXATTRIB4USVPROC); -- ../include/SDL/SDL_opengl.h:3658 type PFNGLVERTEXATTRIBPOINTERPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLboolean; arg5 : GL_gl_h.GLsizei; arg6 : System.Address); pragma Convention (C, PFNGLVERTEXATTRIBPOINTERPROC); -- ../include/SDL/SDL_opengl.h:3659 type PFNGLACTIVETEXTUREARBPROC is access procedure (arg1 : GL_gl_h.GLenum); pragma Convention (C, PFNGLACTIVETEXTUREARBPROC); -- ../include/SDL/SDL_opengl.h:3700 type PFNGLCLIENTACTIVETEXTUREARBPROC is access procedure (arg1 : GL_gl_h.GLenum); pragma Convention (C, PFNGLCLIENTACTIVETEXTUREARBPROC); -- ../include/SDL/SDL_opengl.h:3701 type PFNGLMULTITEXCOORD1DARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLMULTITEXCOORD1DARBPROC); -- ../include/SDL/SDL_opengl.h:3702 type PFNGLMULTITEXCOORD1DVARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLMULTITEXCOORD1DVARBPROC); -- ../include/SDL/SDL_opengl.h:3703 type PFNGLMULTITEXCOORD1FARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLMULTITEXCOORD1FARBPROC); -- ../include/SDL/SDL_opengl.h:3704 type PFNGLMULTITEXCOORD1FVARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLMULTITEXCOORD1FVARBPROC); -- ../include/SDL/SDL_opengl.h:3705 type PFNGLMULTITEXCOORD1IARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint); pragma Convention (C, PFNGLMULTITEXCOORD1IARBPROC); -- ../include/SDL/SDL_opengl.h:3706 type PFNGLMULTITEXCOORD1IVARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLint); pragma Convention (C, PFNGLMULTITEXCOORD1IVARBPROC); -- ../include/SDL/SDL_opengl.h:3707 type PFNGLMULTITEXCOORD1SARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLshort); pragma Convention (C, PFNGLMULTITEXCOORD1SARBPROC); -- ../include/SDL/SDL_opengl.h:3708 type PFNGLMULTITEXCOORD1SVARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLMULTITEXCOORD1SVARBPROC); -- ../include/SDL/SDL_opengl.h:3709 type PFNGLMULTITEXCOORD2DARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLdouble; arg3 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLMULTITEXCOORD2DARBPROC); -- ../include/SDL/SDL_opengl.h:3710 type PFNGLMULTITEXCOORD2DVARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLMULTITEXCOORD2DVARBPROC); -- ../include/SDL/SDL_opengl.h:3711 type PFNGLMULTITEXCOORD2FARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLMULTITEXCOORD2FARBPROC); -- ../include/SDL/SDL_opengl.h:3712 type PFNGLMULTITEXCOORD2FVARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLMULTITEXCOORD2FVARBPROC); -- ../include/SDL/SDL_opengl.h:3713 type PFNGLMULTITEXCOORD2IARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint); pragma Convention (C, PFNGLMULTITEXCOORD2IARBPROC); -- ../include/SDL/SDL_opengl.h:3714 type PFNGLMULTITEXCOORD2IVARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLint); pragma Convention (C, PFNGLMULTITEXCOORD2IVARBPROC); -- ../include/SDL/SDL_opengl.h:3715 type PFNGLMULTITEXCOORD2SARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLshort; arg3 : GL_gl_h.GLshort); pragma Convention (C, PFNGLMULTITEXCOORD2SARBPROC); -- ../include/SDL/SDL_opengl.h:3716 type PFNGLMULTITEXCOORD2SVARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLMULTITEXCOORD2SVARBPROC); -- ../include/SDL/SDL_opengl.h:3717 type PFNGLMULTITEXCOORD3DARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLdouble; arg3 : GL_gl_h.GLdouble; arg4 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLMULTITEXCOORD3DARBPROC); -- ../include/SDL/SDL_opengl.h:3718 type PFNGLMULTITEXCOORD3DVARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLMULTITEXCOORD3DVARBPROC); -- ../include/SDL/SDL_opengl.h:3719 type PFNGLMULTITEXCOORD3FARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLMULTITEXCOORD3FARBPROC); -- ../include/SDL/SDL_opengl.h:3720 type PFNGLMULTITEXCOORD3FVARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLMULTITEXCOORD3FVARBPROC); -- ../include/SDL/SDL_opengl.h:3721 type PFNGLMULTITEXCOORD3IARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint); pragma Convention (C, PFNGLMULTITEXCOORD3IARBPROC); -- ../include/SDL/SDL_opengl.h:3722 type PFNGLMULTITEXCOORD3IVARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLint); pragma Convention (C, PFNGLMULTITEXCOORD3IVARBPROC); -- ../include/SDL/SDL_opengl.h:3723 type PFNGLMULTITEXCOORD3SARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLshort; arg3 : GL_gl_h.GLshort; arg4 : GL_gl_h.GLshort); pragma Convention (C, PFNGLMULTITEXCOORD3SARBPROC); -- ../include/SDL/SDL_opengl.h:3724 type PFNGLMULTITEXCOORD3SVARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLMULTITEXCOORD3SVARBPROC); -- ../include/SDL/SDL_opengl.h:3725 type PFNGLMULTITEXCOORD4DARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLdouble; arg3 : GL_gl_h.GLdouble; arg4 : GL_gl_h.GLdouble; arg5 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLMULTITEXCOORD4DARBPROC); -- ../include/SDL/SDL_opengl.h:3726 type PFNGLMULTITEXCOORD4DVARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLMULTITEXCOORD4DVARBPROC); -- ../include/SDL/SDL_opengl.h:3727 type PFNGLMULTITEXCOORD4FARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat; arg5 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLMULTITEXCOORD4FARBPROC); -- ../include/SDL/SDL_opengl.h:3728 type PFNGLMULTITEXCOORD4FVARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLMULTITEXCOORD4FVARBPROC); -- ../include/SDL/SDL_opengl.h:3729 type PFNGLMULTITEXCOORD4IARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLint); pragma Convention (C, PFNGLMULTITEXCOORD4IARBPROC); -- ../include/SDL/SDL_opengl.h:3730 type PFNGLMULTITEXCOORD4IVARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLint); pragma Convention (C, PFNGLMULTITEXCOORD4IVARBPROC); -- ../include/SDL/SDL_opengl.h:3731 type PFNGLMULTITEXCOORD4SARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLshort; arg3 : GL_gl_h.GLshort; arg4 : GL_gl_h.GLshort; arg5 : GL_gl_h.GLshort); pragma Convention (C, PFNGLMULTITEXCOORD4SARBPROC); -- ../include/SDL/SDL_opengl.h:3732 type PFNGLMULTITEXCOORD4SVARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLMULTITEXCOORD4SVARBPROC); -- ../include/SDL/SDL_opengl.h:3733 type PFNGLLOADTRANSPOSEMATRIXFARBPROC is access procedure (arg1 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLLOADTRANSPOSEMATRIXFARBPROC); -- ../include/SDL/SDL_opengl.h:3744 type PFNGLLOADTRANSPOSEMATRIXDARBPROC is access procedure (arg1 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLLOADTRANSPOSEMATRIXDARBPROC); -- ../include/SDL/SDL_opengl.h:3745 type PFNGLMULTTRANSPOSEMATRIXFARBPROC is access procedure (arg1 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLMULTTRANSPOSEMATRIXFARBPROC); -- ../include/SDL/SDL_opengl.h:3746 type PFNGLMULTTRANSPOSEMATRIXDARBPROC is access procedure (arg1 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLMULTTRANSPOSEMATRIXDARBPROC); -- ../include/SDL/SDL_opengl.h:3747 type PFNGLSAMPLECOVERAGEARBPROC is access procedure (arg1 : GL_gl_h.GLclampf; arg2 : GL_gl_h.GLboolean); pragma Convention (C, PFNGLSAMPLECOVERAGEARBPROC); -- ../include/SDL/SDL_opengl.h:3755 type PFNGLCOMPRESSEDTEXIMAGE3DARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLsizei; arg5 : GL_gl_h.GLsizei; arg6 : GL_gl_h.GLsizei; arg7 : GL_gl_h.GLint; arg8 : GL_gl_h.GLsizei; arg9 : System.Address); pragma Convention (C, PFNGLCOMPRESSEDTEXIMAGE3DARBPROC); -- ../include/SDL/SDL_opengl.h:3777 type PFNGLCOMPRESSEDTEXIMAGE2DARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLsizei; arg5 : GL_gl_h.GLsizei; arg6 : GL_gl_h.GLint; arg7 : GL_gl_h.GLsizei; arg8 : System.Address); pragma Convention (C, PFNGLCOMPRESSEDTEXIMAGE2DARBPROC); -- ../include/SDL/SDL_opengl.h:3778 type PFNGLCOMPRESSEDTEXIMAGE1DARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLsizei; arg5 : GL_gl_h.GLint; arg6 : GL_gl_h.GLsizei; arg7 : System.Address); pragma Convention (C, PFNGLCOMPRESSEDTEXIMAGE1DARBPROC); -- ../include/SDL/SDL_opengl.h:3779 type PFNGLCOMPRESSEDTEXSUBIMAGE3DARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLint; arg6 : GL_gl_h.GLsizei; arg7 : GL_gl_h.GLsizei; arg8 : GL_gl_h.GLsizei; arg9 : GL_gl_h.GLenum; arg10 : GL_gl_h.GLsizei; arg11 : System.Address); pragma Convention (C, PFNGLCOMPRESSEDTEXSUBIMAGE3DARBPROC); -- ../include/SDL/SDL_opengl.h:3780 type PFNGLCOMPRESSEDTEXSUBIMAGE2DARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLsizei; arg6 : GL_gl_h.GLsizei; arg7 : GL_gl_h.GLenum; arg8 : GL_gl_h.GLsizei; arg9 : System.Address); pragma Convention (C, PFNGLCOMPRESSEDTEXSUBIMAGE2DARBPROC); -- ../include/SDL/SDL_opengl.h:3781 type PFNGLCOMPRESSEDTEXSUBIMAGE1DARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLsizei; arg5 : GL_gl_h.GLenum; arg6 : GL_gl_h.GLsizei; arg7 : System.Address); pragma Convention (C, PFNGLCOMPRESSEDTEXSUBIMAGE1DARBPROC); -- ../include/SDL/SDL_opengl.h:3782 type PFNGLGETCOMPRESSEDTEXIMAGEARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : System.Address); pragma Convention (C, PFNGLGETCOMPRESSEDTEXIMAGEARBPROC); -- ../include/SDL/SDL_opengl.h:3783 type PFNGLPOINTPARAMETERFARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLPOINTPARAMETERFARBPROC); -- ../include/SDL/SDL_opengl.h:3796 type PFNGLPOINTPARAMETERFVARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLPOINTPARAMETERFVARBPROC); -- ../include/SDL/SDL_opengl.h:3797 type PFNGLWEIGHTBVARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : access GL_gl_h.GLbyte); pragma Convention (C, PFNGLWEIGHTBVARBPROC); -- ../include/SDL/SDL_opengl.h:3814 type PFNGLWEIGHTSVARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLWEIGHTSVARBPROC); -- ../include/SDL/SDL_opengl.h:3815 type PFNGLWEIGHTIVARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : access GL_gl_h.GLint); pragma Convention (C, PFNGLWEIGHTIVARBPROC); -- ../include/SDL/SDL_opengl.h:3816 type PFNGLWEIGHTFVARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLWEIGHTFVARBPROC); -- ../include/SDL/SDL_opengl.h:3817 type PFNGLWEIGHTDVARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLWEIGHTDVARBPROC); -- ../include/SDL/SDL_opengl.h:3818 type PFNGLWEIGHTUBVARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : access GL_gl_h.GLubyte); pragma Convention (C, PFNGLWEIGHTUBVARBPROC); -- ../include/SDL/SDL_opengl.h:3819 type PFNGLWEIGHTUSVARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : access GL_gl_h.GLushort); pragma Convention (C, PFNGLWEIGHTUSVARBPROC); -- ../include/SDL/SDL_opengl.h:3820 type PFNGLWEIGHTUIVARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLWEIGHTUIVARBPROC); -- ../include/SDL/SDL_opengl.h:3821 type PFNGLWEIGHTPOINTERARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLsizei; arg4 : System.Address); pragma Convention (C, PFNGLWEIGHTPOINTERARBPROC); -- ../include/SDL/SDL_opengl.h:3822 type PFNGLVERTEXBLENDARBPROC is access procedure (arg1 : GL_gl_h.GLint); pragma Convention (C, PFNGLVERTEXBLENDARBPROC); -- ../include/SDL/SDL_opengl.h:3823 type PFNGLCURRENTPALETTEMATRIXARBPROC is access procedure (arg1 : GL_gl_h.GLint); pragma Convention (C, PFNGLCURRENTPALETTEMATRIXARBPROC); -- ../include/SDL/SDL_opengl.h:3835 type PFNGLMATRIXINDEXUBVARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : access GL_gl_h.GLubyte); pragma Convention (C, PFNGLMATRIXINDEXUBVARBPROC); -- ../include/SDL/SDL_opengl.h:3836 type PFNGLMATRIXINDEXUSVARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : access GL_gl_h.GLushort); pragma Convention (C, PFNGLMATRIXINDEXUSVARBPROC); -- ../include/SDL/SDL_opengl.h:3837 type PFNGLMATRIXINDEXUIVARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLMATRIXINDEXUIVARBPROC); -- ../include/SDL/SDL_opengl.h:3838 type PFNGLMATRIXINDEXPOINTERARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLsizei; arg4 : System.Address); pragma Convention (C, PFNGLMATRIXINDEXPOINTERARBPROC); -- ../include/SDL/SDL_opengl.h:3839 type PFNGLWINDOWPOS2DARBPROC is access procedure (arg1 : GL_gl_h.GLdouble; arg2 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLWINDOWPOS2DARBPROC); -- ../include/SDL/SDL_opengl.h:3890 type PFNGLWINDOWPOS2DVARBPROC is access procedure (arg1 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLWINDOWPOS2DVARBPROC); -- ../include/SDL/SDL_opengl.h:3891 type PFNGLWINDOWPOS2FARBPROC is access procedure (arg1 : GL_gl_h.GLfloat; arg2 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLWINDOWPOS2FARBPROC); -- ../include/SDL/SDL_opengl.h:3892 type PFNGLWINDOWPOS2FVARBPROC is access procedure (arg1 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLWINDOWPOS2FVARBPROC); -- ../include/SDL/SDL_opengl.h:3893 type PFNGLWINDOWPOS2IARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLint); pragma Convention (C, PFNGLWINDOWPOS2IARBPROC); -- ../include/SDL/SDL_opengl.h:3894 type PFNGLWINDOWPOS2IVARBPROC is access procedure (arg1 : access GL_gl_h.GLint); pragma Convention (C, PFNGLWINDOWPOS2IVARBPROC); -- ../include/SDL/SDL_opengl.h:3895 type PFNGLWINDOWPOS2SARBPROC is access procedure (arg1 : GL_gl_h.GLshort; arg2 : GL_gl_h.GLshort); pragma Convention (C, PFNGLWINDOWPOS2SARBPROC); -- ../include/SDL/SDL_opengl.h:3896 type PFNGLWINDOWPOS2SVARBPROC is access procedure (arg1 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLWINDOWPOS2SVARBPROC); -- ../include/SDL/SDL_opengl.h:3897 type PFNGLWINDOWPOS3DARBPROC is access procedure (arg1 : GL_gl_h.GLdouble; arg2 : GL_gl_h.GLdouble; arg3 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLWINDOWPOS3DARBPROC); -- ../include/SDL/SDL_opengl.h:3898 type PFNGLWINDOWPOS3DVARBPROC is access procedure (arg1 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLWINDOWPOS3DVARBPROC); -- ../include/SDL/SDL_opengl.h:3899 type PFNGLWINDOWPOS3FARBPROC is access procedure (arg1 : GL_gl_h.GLfloat; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLWINDOWPOS3FARBPROC); -- ../include/SDL/SDL_opengl.h:3900 type PFNGLWINDOWPOS3FVARBPROC is access procedure (arg1 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLWINDOWPOS3FVARBPROC); -- ../include/SDL/SDL_opengl.h:3901 type PFNGLWINDOWPOS3IARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint); pragma Convention (C, PFNGLWINDOWPOS3IARBPROC); -- ../include/SDL/SDL_opengl.h:3902 type PFNGLWINDOWPOS3IVARBPROC is access procedure (arg1 : access GL_gl_h.GLint); pragma Convention (C, PFNGLWINDOWPOS3IVARBPROC); -- ../include/SDL/SDL_opengl.h:3903 type PFNGLWINDOWPOS3SARBPROC is access procedure (arg1 : GL_gl_h.GLshort; arg2 : GL_gl_h.GLshort; arg3 : GL_gl_h.GLshort); pragma Convention (C, PFNGLWINDOWPOS3SARBPROC); -- ../include/SDL/SDL_opengl.h:3904 type PFNGLWINDOWPOS3SVARBPROC is access procedure (arg1 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLWINDOWPOS3SVARBPROC); -- ../include/SDL/SDL_opengl.h:3905 type PFNGLVERTEXATTRIB1DARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXATTRIB1DARBPROC); -- ../include/SDL/SDL_opengl.h:3974 type PFNGLVERTEXATTRIB1DVARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXATTRIB1DVARBPROC); -- ../include/SDL/SDL_opengl.h:3975 type PFNGLVERTEXATTRIB1FARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXATTRIB1FARBPROC); -- ../include/SDL/SDL_opengl.h:3976 type PFNGLVERTEXATTRIB1FVARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXATTRIB1FVARBPROC); -- ../include/SDL/SDL_opengl.h:3977 type PFNGLVERTEXATTRIB1SARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIB1SARBPROC); -- ../include/SDL/SDL_opengl.h:3978 type PFNGLVERTEXATTRIB1SVARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIB1SVARBPROC); -- ../include/SDL/SDL_opengl.h:3979 type PFNGLVERTEXATTRIB2DARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLdouble; arg3 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXATTRIB2DARBPROC); -- ../include/SDL/SDL_opengl.h:3980 type PFNGLVERTEXATTRIB2DVARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXATTRIB2DVARBPROC); -- ../include/SDL/SDL_opengl.h:3981 type PFNGLVERTEXATTRIB2FARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXATTRIB2FARBPROC); -- ../include/SDL/SDL_opengl.h:3982 type PFNGLVERTEXATTRIB2FVARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXATTRIB2FVARBPROC); -- ../include/SDL/SDL_opengl.h:3983 type PFNGLVERTEXATTRIB2SARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLshort; arg3 : GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIB2SARBPROC); -- ../include/SDL/SDL_opengl.h:3984 type PFNGLVERTEXATTRIB2SVARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIB2SVARBPROC); -- ../include/SDL/SDL_opengl.h:3985 type PFNGLVERTEXATTRIB3DARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLdouble; arg3 : GL_gl_h.GLdouble; arg4 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXATTRIB3DARBPROC); -- ../include/SDL/SDL_opengl.h:3986 type PFNGLVERTEXATTRIB3DVARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXATTRIB3DVARBPROC); -- ../include/SDL/SDL_opengl.h:3987 type PFNGLVERTEXATTRIB3FARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXATTRIB3FARBPROC); -- ../include/SDL/SDL_opengl.h:3988 type PFNGLVERTEXATTRIB3FVARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXATTRIB3FVARBPROC); -- ../include/SDL/SDL_opengl.h:3989 type PFNGLVERTEXATTRIB3SARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLshort; arg3 : GL_gl_h.GLshort; arg4 : GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIB3SARBPROC); -- ../include/SDL/SDL_opengl.h:3990 type PFNGLVERTEXATTRIB3SVARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIB3SVARBPROC); -- ../include/SDL/SDL_opengl.h:3991 type PFNGLVERTEXATTRIB4NBVARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLbyte); pragma Convention (C, PFNGLVERTEXATTRIB4NBVARBPROC); -- ../include/SDL/SDL_opengl.h:3992 type PFNGLVERTEXATTRIB4NIVARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLint); pragma Convention (C, PFNGLVERTEXATTRIB4NIVARBPROC); -- ../include/SDL/SDL_opengl.h:3993 type PFNGLVERTEXATTRIB4NSVARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIB4NSVARBPROC); -- ../include/SDL/SDL_opengl.h:3994 type PFNGLVERTEXATTRIB4NUBARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLubyte; arg3 : GL_gl_h.GLubyte; arg4 : GL_gl_h.GLubyte; arg5 : GL_gl_h.GLubyte); pragma Convention (C, PFNGLVERTEXATTRIB4NUBARBPROC); -- ../include/SDL/SDL_opengl.h:3995 type PFNGLVERTEXATTRIB4NUBVARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLubyte); pragma Convention (C, PFNGLVERTEXATTRIB4NUBVARBPROC); -- ../include/SDL/SDL_opengl.h:3996 type PFNGLVERTEXATTRIB4NUIVARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLVERTEXATTRIB4NUIVARBPROC); -- ../include/SDL/SDL_opengl.h:3997 type PFNGLVERTEXATTRIB4NUSVARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLushort); pragma Convention (C, PFNGLVERTEXATTRIB4NUSVARBPROC); -- ../include/SDL/SDL_opengl.h:3998 type PFNGLVERTEXATTRIB4BVARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLbyte); pragma Convention (C, PFNGLVERTEXATTRIB4BVARBPROC); -- ../include/SDL/SDL_opengl.h:3999 type PFNGLVERTEXATTRIB4DARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLdouble; arg3 : GL_gl_h.GLdouble; arg4 : GL_gl_h.GLdouble; arg5 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXATTRIB4DARBPROC); -- ../include/SDL/SDL_opengl.h:4000 type PFNGLVERTEXATTRIB4DVARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXATTRIB4DVARBPROC); -- ../include/SDL/SDL_opengl.h:4001 type PFNGLVERTEXATTRIB4FARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat; arg5 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXATTRIB4FARBPROC); -- ../include/SDL/SDL_opengl.h:4002 type PFNGLVERTEXATTRIB4FVARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXATTRIB4FVARBPROC); -- ../include/SDL/SDL_opengl.h:4003 type PFNGLVERTEXATTRIB4IVARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLint); pragma Convention (C, PFNGLVERTEXATTRIB4IVARBPROC); -- ../include/SDL/SDL_opengl.h:4004 type PFNGLVERTEXATTRIB4SARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLshort; arg3 : GL_gl_h.GLshort; arg4 : GL_gl_h.GLshort; arg5 : GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIB4SARBPROC); -- ../include/SDL/SDL_opengl.h:4005 type PFNGLVERTEXATTRIB4SVARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIB4SVARBPROC); -- ../include/SDL/SDL_opengl.h:4006 type PFNGLVERTEXATTRIB4UBVARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLubyte); pragma Convention (C, PFNGLVERTEXATTRIB4UBVARBPROC); -- ../include/SDL/SDL_opengl.h:4007 type PFNGLVERTEXATTRIB4UIVARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLVERTEXATTRIB4UIVARBPROC); -- ../include/SDL/SDL_opengl.h:4008 type PFNGLVERTEXATTRIB4USVARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLushort); pragma Convention (C, PFNGLVERTEXATTRIB4USVARBPROC); -- ../include/SDL/SDL_opengl.h:4009 type PFNGLVERTEXATTRIBPOINTERARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLboolean; arg5 : GL_gl_h.GLsizei; arg6 : System.Address); pragma Convention (C, PFNGLVERTEXATTRIBPOINTERARBPROC); -- ../include/SDL/SDL_opengl.h:4010 type PFNGLENABLEVERTEXATTRIBARRAYARBPROC is access procedure (arg1 : GL_gl_h.GLuint); pragma Convention (C, PFNGLENABLEVERTEXATTRIBARRAYARBPROC); -- ../include/SDL/SDL_opengl.h:4011 type PFNGLDISABLEVERTEXATTRIBARRAYARBPROC is access procedure (arg1 : GL_gl_h.GLuint); pragma Convention (C, PFNGLDISABLEVERTEXATTRIBARRAYARBPROC); -- ../include/SDL/SDL_opengl.h:4012 type PFNGLPROGRAMSTRINGARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLsizei; arg4 : System.Address); pragma Convention (C, PFNGLPROGRAMSTRINGARBPROC); -- ../include/SDL/SDL_opengl.h:4013 type PFNGLBINDPROGRAMARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint); pragma Convention (C, PFNGLBINDPROGRAMARBPROC); -- ../include/SDL/SDL_opengl.h:4014 type PFNGLDELETEPROGRAMSARBPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLDELETEPROGRAMSARBPROC); -- ../include/SDL/SDL_opengl.h:4015 type PFNGLGENPROGRAMSARBPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLGENPROGRAMSARBPROC); -- ../include/SDL/SDL_opengl.h:4016 type PFNGLPROGRAMENVPARAMETER4DARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLdouble; arg4 : GL_gl_h.GLdouble; arg5 : GL_gl_h.GLdouble; arg6 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLPROGRAMENVPARAMETER4DARBPROC); -- ../include/SDL/SDL_opengl.h:4017 type PFNGLPROGRAMENVPARAMETER4DVARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLPROGRAMENVPARAMETER4DVARBPROC); -- ../include/SDL/SDL_opengl.h:4018 type PFNGLPROGRAMENVPARAMETER4FARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat; arg5 : GL_gl_h.GLfloat; arg6 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLPROGRAMENVPARAMETER4FARBPROC); -- ../include/SDL/SDL_opengl.h:4019 type PFNGLPROGRAMENVPARAMETER4FVARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLPROGRAMENVPARAMETER4FVARBPROC); -- ../include/SDL/SDL_opengl.h:4020 type PFNGLPROGRAMLOCALPARAMETER4DARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLdouble; arg4 : GL_gl_h.GLdouble; arg5 : GL_gl_h.GLdouble; arg6 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLPROGRAMLOCALPARAMETER4DARBPROC); -- ../include/SDL/SDL_opengl.h:4021 type PFNGLPROGRAMLOCALPARAMETER4DVARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLPROGRAMLOCALPARAMETER4DVARBPROC); -- ../include/SDL/SDL_opengl.h:4022 type PFNGLPROGRAMLOCALPARAMETER4FARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat; arg5 : GL_gl_h.GLfloat; arg6 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLPROGRAMLOCALPARAMETER4FARBPROC); -- ../include/SDL/SDL_opengl.h:4023 type PFNGLPROGRAMLOCALPARAMETER4FVARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLPROGRAMLOCALPARAMETER4FVARBPROC); -- ../include/SDL/SDL_opengl.h:4024 type PFNGLGETPROGRAMENVPARAMETERDVARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLGETPROGRAMENVPARAMETERDVARBPROC); -- ../include/SDL/SDL_opengl.h:4025 type PFNGLGETPROGRAMENVPARAMETERFVARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETPROGRAMENVPARAMETERFVARBPROC); -- ../include/SDL/SDL_opengl.h:4026 type PFNGLGETPROGRAMLOCALPARAMETERDVARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLGETPROGRAMLOCALPARAMETERDVARBPROC); -- ../include/SDL/SDL_opengl.h:4027 type PFNGLGETPROGRAMLOCALPARAMETERFVARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETPROGRAMLOCALPARAMETERFVARBPROC); -- ../include/SDL/SDL_opengl.h:4028 type PFNGLGETPROGRAMIVARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETPROGRAMIVARBPROC); -- ../include/SDL/SDL_opengl.h:4029 type PFNGLGETPROGRAMSTRINGARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : System.Address); pragma Convention (C, PFNGLGETPROGRAMSTRINGARBPROC); -- ../include/SDL/SDL_opengl.h:4030 type PFNGLGETVERTEXATTRIBDVARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLGETVERTEXATTRIBDVARBPROC); -- ../include/SDL/SDL_opengl.h:4031 type PFNGLGETVERTEXATTRIBFVARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETVERTEXATTRIBFVARBPROC); -- ../include/SDL/SDL_opengl.h:4032 type PFNGLGETVERTEXATTRIBIVARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETVERTEXATTRIBIVARBPROC); -- ../include/SDL/SDL_opengl.h:4033 type PFNGLGETVERTEXATTRIBPOINTERVARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : System.Address); pragma Convention (C, PFNGLGETVERTEXATTRIBPOINTERVARBPROC); -- ../include/SDL/SDL_opengl.h:4034 type PFNGLISPROGRAMARBPROC is access function (arg1 : GL_gl_h.GLuint) return GL_gl_h.GLboolean; pragma Convention (C, PFNGLISPROGRAMARBPROC); -- ../include/SDL/SDL_opengl.h:4035 type PFNGLBINDBUFFERARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint); pragma Convention (C, PFNGLBINDBUFFERARBPROC); -- ../include/SDL/SDL_opengl.h:4058 type PFNGLDELETEBUFFERSARBPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLDELETEBUFFERSARBPROC); -- ../include/SDL/SDL_opengl.h:4059 type PFNGLGENBUFFERSARBPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLGENBUFFERSARBPROC); -- ../include/SDL/SDL_opengl.h:4060 type PFNGLISBUFFERARBPROC is access function (arg1 : GL_gl_h.GLuint) return GL_gl_h.GLboolean; pragma Convention (C, PFNGLISBUFFERARBPROC); -- ../include/SDL/SDL_opengl.h:4061 type PFNGLBUFFERDATAARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GLsizeiptrARB; arg3 : System.Address; arg4 : GL_gl_h.GLenum); pragma Convention (C, PFNGLBUFFERDATAARBPROC); -- ../include/SDL/SDL_opengl.h:4062 type PFNGLBUFFERSUBDATAARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GLintptrARB; arg3 : GLsizeiptrARB; arg4 : System.Address); pragma Convention (C, PFNGLBUFFERSUBDATAARBPROC); -- ../include/SDL/SDL_opengl.h:4063 type PFNGLGETBUFFERSUBDATAARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GLintptrARB; arg3 : GLsizeiptrARB; arg4 : System.Address); pragma Convention (C, PFNGLGETBUFFERSUBDATAARBPROC); -- ../include/SDL/SDL_opengl.h:4064 type PFNGLMAPBUFFERARBPROC is access function (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum) return System.Address; pragma Convention (C, PFNGLMAPBUFFERARBPROC); -- ../include/SDL/SDL_opengl.h:4065 type PFNGLUNMAPBUFFERARBPROC is access function (arg1 : GL_gl_h.GLenum) return GL_gl_h.GLboolean; pragma Convention (C, PFNGLUNMAPBUFFERARBPROC); -- ../include/SDL/SDL_opengl.h:4066 type PFNGLGETBUFFERPARAMETERIVARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETBUFFERPARAMETERIVARBPROC); -- ../include/SDL/SDL_opengl.h:4067 type PFNGLGETBUFFERPOINTERVARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : System.Address); pragma Convention (C, PFNGLGETBUFFERPOINTERVARBPROC); -- ../include/SDL/SDL_opengl.h:4068 type PFNGLGENQUERIESARBPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLGENQUERIESARBPROC); -- ../include/SDL/SDL_opengl.h:4083 type PFNGLDELETEQUERIESARBPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLDELETEQUERIESARBPROC); -- ../include/SDL/SDL_opengl.h:4084 type PFNGLISQUERYARBPROC is access function (arg1 : GL_gl_h.GLuint) return GL_gl_h.GLboolean; pragma Convention (C, PFNGLISQUERYARBPROC); -- ../include/SDL/SDL_opengl.h:4085 type PFNGLBEGINQUERYARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint); pragma Convention (C, PFNGLBEGINQUERYARBPROC); -- ../include/SDL/SDL_opengl.h:4086 type PFNGLENDQUERYARBPROC is access procedure (arg1 : GL_gl_h.GLenum); pragma Convention (C, PFNGLENDQUERYARBPROC); -- ../include/SDL/SDL_opengl.h:4087 type PFNGLGETQUERYIVARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETQUERYIVARBPROC); -- ../include/SDL/SDL_opengl.h:4088 type PFNGLGETQUERYOBJECTIVARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETQUERYOBJECTIVARBPROC); -- ../include/SDL/SDL_opengl.h:4089 type PFNGLGETQUERYOBJECTUIVARBPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLGETQUERYOBJECTUIVARBPROC); -- ../include/SDL/SDL_opengl.h:4090 type PFNGLDELETEOBJECTARBPROC is access procedure (arg1 : GLhandleARB); pragma Convention (C, PFNGLDELETEOBJECTARBPROC); -- ../include/SDL/SDL_opengl.h:4136 type PFNGLGETHANDLEARBPROC is access function (arg1 : GL_gl_h.GLenum) return GLhandleARB; pragma Convention (C, PFNGLGETHANDLEARBPROC); -- ../include/SDL/SDL_opengl.h:4137 type PFNGLDETACHOBJECTARBPROC is access procedure (arg1 : GLhandleARB; arg2 : GLhandleARB); pragma Convention (C, PFNGLDETACHOBJECTARBPROC); -- ../include/SDL/SDL_opengl.h:4138 type PFNGLCREATESHADEROBJECTARBPROC is access function (arg1 : GL_gl_h.GLenum) return GLhandleARB; pragma Convention (C, PFNGLCREATESHADEROBJECTARBPROC); -- ../include/SDL/SDL_opengl.h:4139 type PFNGLSHADERSOURCEARBPROC is access procedure (arg1 : GLhandleARB; arg2 : GL_gl_h.GLsizei; arg3 : System.Address; arg4 : access GL_gl_h.GLint); pragma Convention (C, PFNGLSHADERSOURCEARBPROC); -- ../include/SDL/SDL_opengl.h:4140 type PFNGLCOMPILESHADERARBPROC is access procedure (arg1 : GLhandleARB); pragma Convention (C, PFNGLCOMPILESHADERARBPROC); -- ../include/SDL/SDL_opengl.h:4141 type PFNGLCREATEPROGRAMOBJECTARBPROC is access function return GLhandleARB; pragma Convention (C, PFNGLCREATEPROGRAMOBJECTARBPROC); -- ../include/SDL/SDL_opengl.h:4142 type PFNGLATTACHOBJECTARBPROC is access procedure (arg1 : GLhandleARB; arg2 : GLhandleARB); pragma Convention (C, PFNGLATTACHOBJECTARBPROC); -- ../include/SDL/SDL_opengl.h:4143 type PFNGLLINKPROGRAMARBPROC is access procedure (arg1 : GLhandleARB); pragma Convention (C, PFNGLLINKPROGRAMARBPROC); -- ../include/SDL/SDL_opengl.h:4144 type PFNGLUSEPROGRAMOBJECTARBPROC is access procedure (arg1 : GLhandleARB); pragma Convention (C, PFNGLUSEPROGRAMOBJECTARBPROC); -- ../include/SDL/SDL_opengl.h:4145 type PFNGLVALIDATEPROGRAMARBPROC is access procedure (arg1 : GLhandleARB); pragma Convention (C, PFNGLVALIDATEPROGRAMARBPROC); -- ../include/SDL/SDL_opengl.h:4146 type PFNGLUNIFORM1FARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLUNIFORM1FARBPROC); -- ../include/SDL/SDL_opengl.h:4147 type PFNGLUNIFORM2FARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLUNIFORM2FARBPROC); -- ../include/SDL/SDL_opengl.h:4148 type PFNGLUNIFORM3FARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLUNIFORM3FARBPROC); -- ../include/SDL/SDL_opengl.h:4149 type PFNGLUNIFORM4FARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat; arg5 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLUNIFORM4FARBPROC); -- ../include/SDL/SDL_opengl.h:4150 type PFNGLUNIFORM1IARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLint); pragma Convention (C, PFNGLUNIFORM1IARBPROC); -- ../include/SDL/SDL_opengl.h:4151 type PFNGLUNIFORM2IARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint); pragma Convention (C, PFNGLUNIFORM2IARBPROC); -- ../include/SDL/SDL_opengl.h:4152 type PFNGLUNIFORM3IARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint); pragma Convention (C, PFNGLUNIFORM3IARBPROC); -- ../include/SDL/SDL_opengl.h:4153 type PFNGLUNIFORM4IARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLint); pragma Convention (C, PFNGLUNIFORM4IARBPROC); -- ../include/SDL/SDL_opengl.h:4154 type PFNGLUNIFORM1FVARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLUNIFORM1FVARBPROC); -- ../include/SDL/SDL_opengl.h:4155 type PFNGLUNIFORM2FVARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLUNIFORM2FVARBPROC); -- ../include/SDL/SDL_opengl.h:4156 type PFNGLUNIFORM3FVARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLUNIFORM3FVARBPROC); -- ../include/SDL/SDL_opengl.h:4157 type PFNGLUNIFORM4FVARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLUNIFORM4FVARBPROC); -- ../include/SDL/SDL_opengl.h:4158 type PFNGLUNIFORM1IVARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLUNIFORM1IVARBPROC); -- ../include/SDL/SDL_opengl.h:4159 type PFNGLUNIFORM2IVARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLUNIFORM2IVARBPROC); -- ../include/SDL/SDL_opengl.h:4160 type PFNGLUNIFORM3IVARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLUNIFORM3IVARBPROC); -- ../include/SDL/SDL_opengl.h:4161 type PFNGLUNIFORM4IVARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLUNIFORM4IVARBPROC); -- ../include/SDL/SDL_opengl.h:4162 type PFNGLUNIFORMMATRIX2FVARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLsizei; arg3 : GL_gl_h.GLboolean; arg4 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLUNIFORMMATRIX2FVARBPROC); -- ../include/SDL/SDL_opengl.h:4163 type PFNGLUNIFORMMATRIX3FVARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLsizei; arg3 : GL_gl_h.GLboolean; arg4 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLUNIFORMMATRIX3FVARBPROC); -- ../include/SDL/SDL_opengl.h:4164 type PFNGLUNIFORMMATRIX4FVARBPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLsizei; arg3 : GL_gl_h.GLboolean; arg4 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLUNIFORMMATRIX4FVARBPROC); -- ../include/SDL/SDL_opengl.h:4165 type PFNGLGETOBJECTPARAMETERFVARBPROC is access procedure (arg1 : GLhandleARB; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETOBJECTPARAMETERFVARBPROC); -- ../include/SDL/SDL_opengl.h:4166 type PFNGLGETOBJECTPARAMETERIVARBPROC is access procedure (arg1 : GLhandleARB; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETOBJECTPARAMETERIVARBPROC); -- ../include/SDL/SDL_opengl.h:4167 type PFNGLGETINFOLOGARBPROC is access procedure (arg1 : GLhandleARB; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLsizei; arg4 : access GLcharARB); pragma Convention (C, PFNGLGETINFOLOGARBPROC); -- ../include/SDL/SDL_opengl.h:4168 type PFNGLGETATTACHEDOBJECTSARBPROC is access procedure (arg1 : GLhandleARB; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLsizei; arg4 : access GLhandleARB); pragma Convention (C, PFNGLGETATTACHEDOBJECTSARBPROC); -- ../include/SDL/SDL_opengl.h:4169 type PFNGLGETUNIFORMLOCATIONARBPROC is access function (arg1 : GLhandleARB; arg2 : access GLcharARB) return GL_gl_h.GLint; pragma Convention (C, PFNGLGETUNIFORMLOCATIONARBPROC); -- ../include/SDL/SDL_opengl.h:4170 type PFNGLGETACTIVEUNIFORMARBPROC is access procedure (arg1 : GLhandleARB; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLsizei; arg4 : access GL_gl_h.GLsizei; arg5 : access GL_gl_h.GLint; arg6 : access GL_gl_h.GLenum; arg7 : access GLcharARB); pragma Convention (C, PFNGLGETACTIVEUNIFORMARBPROC); -- ../include/SDL/SDL_opengl.h:4171 type PFNGLGETUNIFORMFVARBPROC is access procedure (arg1 : GLhandleARB; arg2 : GL_gl_h.GLint; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETUNIFORMFVARBPROC); -- ../include/SDL/SDL_opengl.h:4172 type PFNGLGETUNIFORMIVARBPROC is access procedure (arg1 : GLhandleARB; arg2 : GL_gl_h.GLint; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETUNIFORMIVARBPROC); -- ../include/SDL/SDL_opengl.h:4173 type PFNGLGETSHADERSOURCEARBPROC is access procedure (arg1 : GLhandleARB; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLsizei; arg4 : access GLcharARB); pragma Convention (C, PFNGLGETSHADERSOURCEARBPROC); -- ../include/SDL/SDL_opengl.h:4174 type PFNGLBINDATTRIBLOCATIONARBPROC is access procedure (arg1 : GLhandleARB; arg2 : GL_gl_h.GLuint; arg3 : access GLcharARB); pragma Convention (C, PFNGLBINDATTRIBLOCATIONARBPROC); -- ../include/SDL/SDL_opengl.h:4184 type PFNGLGETACTIVEATTRIBARBPROC is access procedure (arg1 : GLhandleARB; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLsizei; arg4 : access GL_gl_h.GLsizei; arg5 : access GL_gl_h.GLint; arg6 : access GL_gl_h.GLenum; arg7 : access GLcharARB); pragma Convention (C, PFNGLGETACTIVEATTRIBARBPROC); -- ../include/SDL/SDL_opengl.h:4185 type PFNGLGETATTRIBLOCATIONARBPROC is access function (arg1 : GLhandleARB; arg2 : access GLcharARB) return GL_gl_h.GLint; pragma Convention (C, PFNGLGETATTRIBLOCATIONARBPROC); -- ../include/SDL/SDL_opengl.h:4186 type PFNGLDRAWBUFFERSARBPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLenum); pragma Convention (C, PFNGLDRAWBUFFERSARBPROC); -- ../include/SDL/SDL_opengl.h:4214 type PFNGLCLAMPCOLORARBPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum); pragma Convention (C, PFNGLCLAMPCOLORARBPROC); -- ../include/SDL/SDL_opengl.h:4226 type PFNGLBLENDCOLOREXTPROC is access procedure (arg1 : GL_gl_h.GLclampf; arg2 : GL_gl_h.GLclampf; arg3 : GL_gl_h.GLclampf; arg4 : GL_gl_h.GLclampf); pragma Convention (C, PFNGLBLENDCOLOREXTPROC); -- ../include/SDL/SDL_opengl.h:4250 type PFNGLPOLYGONOFFSETEXTPROC is access procedure (arg1 : GL_gl_h.GLfloat; arg2 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLPOLYGONOFFSETEXTPROC); -- ../include/SDL/SDL_opengl.h:4258 type PFNGLTEXIMAGE3DEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLsizei; arg5 : GL_gl_h.GLsizei; arg6 : GL_gl_h.GLsizei; arg7 : GL_gl_h.GLint; arg8 : GL_gl_h.GLenum; arg9 : GL_gl_h.GLenum; arg10 : System.Address); pragma Convention (C, PFNGLTEXIMAGE3DEXTPROC); -- ../include/SDL/SDL_opengl.h:4271 type PFNGLTEXSUBIMAGE3DEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLint; arg6 : GL_gl_h.GLsizei; arg7 : GL_gl_h.GLsizei; arg8 : GL_gl_h.GLsizei; arg9 : GL_gl_h.GLenum; arg10 : GL_gl_h.GLenum; arg11 : System.Address); pragma Convention (C, PFNGLTEXSUBIMAGE3DEXTPROC); -- ../include/SDL/SDL_opengl.h:4272 type PFNGLGETTEXFILTERFUNCSGISPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETTEXFILTERFUNCSGISPROC); -- ../include/SDL/SDL_opengl.h:4281 type PFNGLTEXFILTERFUNCSGISPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLsizei; arg4 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLTEXFILTERFUNCSGISPROC); -- ../include/SDL/SDL_opengl.h:4282 type PFNGLTEXSUBIMAGE1DEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLsizei; arg5 : GL_gl_h.GLenum; arg6 : GL_gl_h.GLenum; arg7 : System.Address); pragma Convention (C, PFNGLTEXSUBIMAGE1DEXTPROC); -- ../include/SDL/SDL_opengl.h:4291 type PFNGLTEXSUBIMAGE2DEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLsizei; arg6 : GL_gl_h.GLsizei; arg7 : GL_gl_h.GLenum; arg8 : GL_gl_h.GLenum; arg9 : System.Address); pragma Convention (C, PFNGLTEXSUBIMAGE2DEXTPROC); -- ../include/SDL/SDL_opengl.h:4292 type PFNGLCOPYTEXIMAGE1DEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLint; arg6 : GL_gl_h.GLsizei; arg7 : GL_gl_h.GLint); pragma Convention (C, PFNGLCOPYTEXIMAGE1DEXTPROC); -- ../include/SDL/SDL_opengl.h:4304 type PFNGLCOPYTEXIMAGE2DEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLint; arg6 : GL_gl_h.GLsizei; arg7 : GL_gl_h.GLsizei; arg8 : GL_gl_h.GLint); pragma Convention (C, PFNGLCOPYTEXIMAGE2DEXTPROC); -- ../include/SDL/SDL_opengl.h:4305 type PFNGLCOPYTEXSUBIMAGE1DEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLint; arg6 : GL_gl_h.GLsizei); pragma Convention (C, PFNGLCOPYTEXSUBIMAGE1DEXTPROC); -- ../include/SDL/SDL_opengl.h:4306 type PFNGLCOPYTEXSUBIMAGE2DEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLint; arg6 : GL_gl_h.GLint; arg7 : GL_gl_h.GLsizei; arg8 : GL_gl_h.GLsizei); pragma Convention (C, PFNGLCOPYTEXSUBIMAGE2DEXTPROC); -- ../include/SDL/SDL_opengl.h:4307 type PFNGLCOPYTEXSUBIMAGE3DEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLint; arg6 : GL_gl_h.GLint; arg7 : GL_gl_h.GLint; arg8 : GL_gl_h.GLsizei; arg9 : GL_gl_h.GLsizei); pragma Convention (C, PFNGLCOPYTEXSUBIMAGE3DEXTPROC); -- ../include/SDL/SDL_opengl.h:4308 type PFNGLGETHISTOGRAMEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLboolean; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLenum; arg5 : System.Address); pragma Convention (C, PFNGLGETHISTOGRAMEXTPROC); -- ../include/SDL/SDL_opengl.h:4325 type PFNGLGETHISTOGRAMPARAMETERFVEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETHISTOGRAMPARAMETERFVEXTPROC); -- ../include/SDL/SDL_opengl.h:4326 type PFNGLGETHISTOGRAMPARAMETERIVEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETHISTOGRAMPARAMETERIVEXTPROC); -- ../include/SDL/SDL_opengl.h:4327 type PFNGLGETMINMAXEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLboolean; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLenum; arg5 : System.Address); pragma Convention (C, PFNGLGETMINMAXEXTPROC); -- ../include/SDL/SDL_opengl.h:4328 type PFNGLGETMINMAXPARAMETERFVEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETMINMAXPARAMETERFVEXTPROC); -- ../include/SDL/SDL_opengl.h:4329 type PFNGLGETMINMAXPARAMETERIVEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETMINMAXPARAMETERIVEXTPROC); -- ../include/SDL/SDL_opengl.h:4330 type PFNGLHISTOGRAMEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLsizei; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLboolean); pragma Convention (C, PFNGLHISTOGRAMEXTPROC); -- ../include/SDL/SDL_opengl.h:4331 type PFNGLMINMAXEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLboolean); pragma Convention (C, PFNGLMINMAXEXTPROC); -- ../include/SDL/SDL_opengl.h:4332 type PFNGLRESETHISTOGRAMEXTPROC is access procedure (arg1 : GL_gl_h.GLenum); pragma Convention (C, PFNGLRESETHISTOGRAMEXTPROC); -- ../include/SDL/SDL_opengl.h:4333 type PFNGLRESETMINMAXEXTPROC is access procedure (arg1 : GL_gl_h.GLenum); pragma Convention (C, PFNGLRESETMINMAXEXTPROC); -- ../include/SDL/SDL_opengl.h:4334 type PFNGLCONVOLUTIONFILTER1DEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLsizei; arg4 : GL_gl_h.GLenum; arg5 : GL_gl_h.GLenum; arg6 : System.Address); pragma Convention (C, PFNGLCONVOLUTIONFILTER1DEXTPROC); -- ../include/SDL/SDL_opengl.h:4354 type PFNGLCONVOLUTIONFILTER2DEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLsizei; arg4 : GL_gl_h.GLsizei; arg5 : GL_gl_h.GLenum; arg6 : GL_gl_h.GLenum; arg7 : System.Address); pragma Convention (C, PFNGLCONVOLUTIONFILTER2DEXTPROC); -- ../include/SDL/SDL_opengl.h:4355 type PFNGLCONVOLUTIONPARAMETERFEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLCONVOLUTIONPARAMETERFEXTPROC); -- ../include/SDL/SDL_opengl.h:4356 type PFNGLCONVOLUTIONPARAMETERFVEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLCONVOLUTIONPARAMETERFVEXTPROC); -- ../include/SDL/SDL_opengl.h:4357 type PFNGLCONVOLUTIONPARAMETERIEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLint); pragma Convention (C, PFNGLCONVOLUTIONPARAMETERIEXTPROC); -- ../include/SDL/SDL_opengl.h:4358 type PFNGLCONVOLUTIONPARAMETERIVEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLCONVOLUTIONPARAMETERIVEXTPROC); -- ../include/SDL/SDL_opengl.h:4359 type PFNGLCOPYCONVOLUTIONFILTER1DEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLsizei); pragma Convention (C, PFNGLCOPYCONVOLUTIONFILTER1DEXTPROC); -- ../include/SDL/SDL_opengl.h:4360 type PFNGLCOPYCONVOLUTIONFILTER2DEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLsizei; arg6 : GL_gl_h.GLsizei); pragma Convention (C, PFNGLCOPYCONVOLUTIONFILTER2DEXTPROC); -- ../include/SDL/SDL_opengl.h:4361 type PFNGLGETCONVOLUTIONFILTEREXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLenum; arg4 : System.Address); pragma Convention (C, PFNGLGETCONVOLUTIONFILTEREXTPROC); -- ../include/SDL/SDL_opengl.h:4362 type PFNGLGETCONVOLUTIONPARAMETERFVEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETCONVOLUTIONPARAMETERFVEXTPROC); -- ../include/SDL/SDL_opengl.h:4363 type PFNGLGETCONVOLUTIONPARAMETERIVEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETCONVOLUTIONPARAMETERIVEXTPROC); -- ../include/SDL/SDL_opengl.h:4364 type PFNGLGETSEPARABLEFILTEREXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLenum; arg4 : System.Address; arg5 : System.Address; arg6 : System.Address); pragma Convention (C, PFNGLGETSEPARABLEFILTEREXTPROC); -- ../include/SDL/SDL_opengl.h:4365 type PFNGLSEPARABLEFILTER2DEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLsizei; arg4 : GL_gl_h.GLsizei; arg5 : GL_gl_h.GLenum; arg6 : GL_gl_h.GLenum; arg7 : System.Address; arg8 : System.Address); pragma Convention (C, PFNGLSEPARABLEFILTER2DEXTPROC); -- ../include/SDL/SDL_opengl.h:4366 type PFNGLCOLORTABLESGIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLsizei; arg4 : GL_gl_h.GLenum; arg5 : GL_gl_h.GLenum; arg6 : System.Address); pragma Convention (C, PFNGLCOLORTABLESGIPROC); -- ../include/SDL/SDL_opengl.h:4384 type PFNGLCOLORTABLEPARAMETERFVSGIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLCOLORTABLEPARAMETERFVSGIPROC); -- ../include/SDL/SDL_opengl.h:4385 type PFNGLCOLORTABLEPARAMETERIVSGIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLCOLORTABLEPARAMETERIVSGIPROC); -- ../include/SDL/SDL_opengl.h:4386 type PFNGLCOPYCOLORTABLESGIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLsizei); pragma Convention (C, PFNGLCOPYCOLORTABLESGIPROC); -- ../include/SDL/SDL_opengl.h:4387 type PFNGLGETCOLORTABLESGIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLenum; arg4 : System.Address); pragma Convention (C, PFNGLGETCOLORTABLESGIPROC); -- ../include/SDL/SDL_opengl.h:4388 type PFNGLGETCOLORTABLEPARAMETERFVSGIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETCOLORTABLEPARAMETERFVSGIPROC); -- ../include/SDL/SDL_opengl.h:4389 type PFNGLGETCOLORTABLEPARAMETERIVSGIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETCOLORTABLEPARAMETERIVSGIPROC); -- ../include/SDL/SDL_opengl.h:4390 type PFNGLPIXELTEXGENSGIXPROC is access procedure (arg1 : GL_gl_h.GLenum); pragma Convention (C, PFNGLPIXELTEXGENSGIXPROC); -- ../include/SDL/SDL_opengl.h:4398 type PFNGLPIXELTEXGENPARAMETERISGISPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint); pragma Convention (C, PFNGLPIXELTEXGENPARAMETERISGISPROC); -- ../include/SDL/SDL_opengl.h:4411 type PFNGLPIXELTEXGENPARAMETERIVSGISPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLint); pragma Convention (C, PFNGLPIXELTEXGENPARAMETERIVSGISPROC); -- ../include/SDL/SDL_opengl.h:4412 type PFNGLPIXELTEXGENPARAMETERFSGISPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLPIXELTEXGENPARAMETERFSGISPROC); -- ../include/SDL/SDL_opengl.h:4413 type PFNGLPIXELTEXGENPARAMETERFVSGISPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLPIXELTEXGENPARAMETERFVSGISPROC); -- ../include/SDL/SDL_opengl.h:4414 type PFNGLGETPIXELTEXGENPARAMETERIVSGISPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETPIXELTEXGENPARAMETERIVSGISPROC); -- ../include/SDL/SDL_opengl.h:4415 type PFNGLGETPIXELTEXGENPARAMETERFVSGISPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETPIXELTEXGENPARAMETERFVSGISPROC); -- ../include/SDL/SDL_opengl.h:4416 type PFNGLTEXIMAGE4DSGISPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLsizei; arg5 : GL_gl_h.GLsizei; arg6 : GL_gl_h.GLsizei; arg7 : GL_gl_h.GLsizei; arg8 : GL_gl_h.GLint; arg9 : GL_gl_h.GLenum; arg10 : GL_gl_h.GLenum; arg11 : System.Address); pragma Convention (C, PFNGLTEXIMAGE4DSGISPROC); -- ../include/SDL/SDL_opengl.h:4425 type PFNGLTEXSUBIMAGE4DSGISPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLint; arg6 : GL_gl_h.GLint; arg7 : GL_gl_h.GLsizei; arg8 : GL_gl_h.GLsizei; arg9 : GL_gl_h.GLsizei; arg10 : GL_gl_h.GLsizei; arg11 : GL_gl_h.GLenum; arg12 : GL_gl_h.GLenum; arg13 : System.Address); pragma Convention (C, PFNGLTEXSUBIMAGE4DSGISPROC); -- ../include/SDL/SDL_opengl.h:4426 type PFNGLARETEXTURESRESIDENTEXTPROC is access function (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint; arg3 : access GL_gl_h.GLboolean) return GL_gl_h.GLboolean; pragma Convention (C, PFNGLARETEXTURESRESIDENTEXTPROC); -- ../include/SDL/SDL_opengl.h:4447 type PFNGLBINDTEXTUREEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint); pragma Convention (C, PFNGLBINDTEXTUREEXTPROC); -- ../include/SDL/SDL_opengl.h:4448 type PFNGLDELETETEXTURESEXTPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLDELETETEXTURESEXTPROC); -- ../include/SDL/SDL_opengl.h:4449 type PFNGLGENTEXTURESEXTPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLGENTEXTURESEXTPROC); -- ../include/SDL/SDL_opengl.h:4450 type PFNGLISTEXTUREEXTPROC is access function (arg1 : GL_gl_h.GLuint) return GL_gl_h.GLboolean; pragma Convention (C, PFNGLISTEXTUREEXTPROC); -- ../include/SDL/SDL_opengl.h:4451 type PFNGLPRIORITIZETEXTURESEXTPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint; arg3 : access GL_gl_h.GLclampf); pragma Convention (C, PFNGLPRIORITIZETEXTURESEXTPROC); -- ../include/SDL/SDL_opengl.h:4452 type PFNGLDETAILTEXFUNCSGISPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLDETAILTEXFUNCSGISPROC); -- ../include/SDL/SDL_opengl.h:4461 type PFNGLGETDETAILTEXFUNCSGISPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETDETAILTEXFUNCSGISPROC); -- ../include/SDL/SDL_opengl.h:4462 type PFNGLSHARPENTEXFUNCSGISPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLSHARPENTEXFUNCSGISPROC); -- ../include/SDL/SDL_opengl.h:4471 type PFNGLGETSHARPENTEXFUNCSGISPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETSHARPENTEXFUNCSGISPROC); -- ../include/SDL/SDL_opengl.h:4472 type PFNGLSAMPLEMASKSGISPROC is access procedure (arg1 : GL_gl_h.GLclampf; arg2 : GL_gl_h.GLboolean); pragma Convention (C, PFNGLSAMPLEMASKSGISPROC); -- ../include/SDL/SDL_opengl.h:4489 type PFNGLSAMPLEPATTERNSGISPROC is access procedure (arg1 : GL_gl_h.GLenum); pragma Convention (C, PFNGLSAMPLEPATTERNSGISPROC); -- ../include/SDL/SDL_opengl.h:4490 type PFNGLBLENDEQUATIONEXTPROC is access procedure (arg1 : GL_gl_h.GLenum); pragma Convention (C, PFNGLBLENDEQUATIONEXTPROC); -- ../include/SDL/SDL_opengl.h:4550 type PFNGLSPRITEPARAMETERFSGIXPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLSPRITEPARAMETERFSGIXPROC); -- ../include/SDL/SDL_opengl.h:4581 type PFNGLSPRITEPARAMETERFVSGIXPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLSPRITEPARAMETERFVSGIXPROC); -- ../include/SDL/SDL_opengl.h:4582 type PFNGLSPRITEPARAMETERISGIXPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint); pragma Convention (C, PFNGLSPRITEPARAMETERISGIXPROC); -- ../include/SDL/SDL_opengl.h:4583 type PFNGLSPRITEPARAMETERIVSGIXPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLint); pragma Convention (C, PFNGLSPRITEPARAMETERIVSGIXPROC); -- ../include/SDL/SDL_opengl.h:4584 type PFNGLPOINTPARAMETERFEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLPOINTPARAMETERFEXTPROC); -- ../include/SDL/SDL_opengl.h:4597 type PFNGLPOINTPARAMETERFVEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLPOINTPARAMETERFVEXTPROC); -- ../include/SDL/SDL_opengl.h:4598 type PFNGLPOINTPARAMETERFSGISPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLPOINTPARAMETERFSGISPROC); -- ../include/SDL/SDL_opengl.h:4607 type PFNGLPOINTPARAMETERFVSGISPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLPOINTPARAMETERFVSGISPROC); -- ../include/SDL/SDL_opengl.h:4608 type PFNGLGETINSTRUMENTSSGIXPROC is access function return GL_gl_h.GLint; pragma Convention (C, PFNGLGETINSTRUMENTSSGIXPROC); -- ../include/SDL/SDL_opengl.h:4621 type PFNGLINSTRUMENTSBUFFERSGIXPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLint); pragma Convention (C, PFNGLINSTRUMENTSBUFFERSGIXPROC); -- ../include/SDL/SDL_opengl.h:4622 type PFNGLPOLLINSTRUMENTSSGIXPROC is access function (arg1 : access GL_gl_h.GLint) return GL_gl_h.GLint; pragma Convention (C, PFNGLPOLLINSTRUMENTSSGIXPROC); -- ../include/SDL/SDL_opengl.h:4623 type PFNGLREADINSTRUMENTSSGIXPROC is access procedure (arg1 : GL_gl_h.GLint); pragma Convention (C, PFNGLREADINSTRUMENTSSGIXPROC); -- ../include/SDL/SDL_opengl.h:4624 type PFNGLSTARTINSTRUMENTSSGIXPROC is access procedure; pragma Convention (C, PFNGLSTARTINSTRUMENTSSGIXPROC); -- ../include/SDL/SDL_opengl.h:4625 type PFNGLSTOPINSTRUMENTSSGIXPROC is access procedure (arg1 : GL_gl_h.GLint); pragma Convention (C, PFNGLSTOPINSTRUMENTSSGIXPROC); -- ../include/SDL/SDL_opengl.h:4626 type PFNGLFRAMEZOOMSGIXPROC is access procedure (arg1 : GL_gl_h.GLint); pragma Convention (C, PFNGLFRAMEZOOMSGIXPROC); -- ../include/SDL/SDL_opengl.h:4638 type PFNGLTAGSAMPLEBUFFERSGIXPROC is access procedure; pragma Convention (C, PFNGLTAGSAMPLEBUFFERSGIXPROC); -- ../include/SDL/SDL_opengl.h:4646 type PFNGLDEFORMATIONMAP3DSGIXPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLdouble; arg3 : GL_gl_h.GLdouble; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLint; arg6 : GL_gl_h.GLdouble; arg7 : GL_gl_h.GLdouble; arg8 : GL_gl_h.GLint; arg9 : GL_gl_h.GLint; arg10 : GL_gl_h.GLdouble; arg11 : GL_gl_h.GLdouble; arg12 : GL_gl_h.GLint; arg13 : GL_gl_h.GLint; arg14 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLDEFORMATIONMAP3DSGIXPROC); -- ../include/SDL/SDL_opengl.h:4657 type PFNGLDEFORMATIONMAP3FSGIXPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLint; arg6 : GL_gl_h.GLfloat; arg7 : GL_gl_h.GLfloat; arg8 : GL_gl_h.GLint; arg9 : GL_gl_h.GLint; arg10 : GL_gl_h.GLfloat; arg11 : GL_gl_h.GLfloat; arg12 : GL_gl_h.GLint; arg13 : GL_gl_h.GLint; arg14 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLDEFORMATIONMAP3FSGIXPROC); -- ../include/SDL/SDL_opengl.h:4658 type PFNGLDEFORMSGIXPROC is access procedure (arg1 : GL_gl_h.GLbitfield); pragma Convention (C, PFNGLDEFORMSGIXPROC); -- ../include/SDL/SDL_opengl.h:4659 type PFNGLLOADIDENTITYDEFORMATIONMAPSGIXPROC is access procedure (arg1 : GL_gl_h.GLbitfield); pragma Convention (C, PFNGLLOADIDENTITYDEFORMATIONMAPSGIXPROC); -- ../include/SDL/SDL_opengl.h:4660 type PFNGLREFERENCEPLANESGIXPROC is access procedure (arg1 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLREFERENCEPLANESGIXPROC); -- ../include/SDL/SDL_opengl.h:4668 type PFNGLFLUSHRASTERSGIXPROC is access procedure; pragma Convention (C, PFNGLFLUSHRASTERSGIXPROC); -- ../include/SDL/SDL_opengl.h:4676 type PFNGLFOGFUNCSGISPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLFOGFUNCSGISPROC); -- ../include/SDL/SDL_opengl.h:4689 type PFNGLGETFOGFUNCSGISPROC is access procedure (arg1 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETFOGFUNCSGISPROC); -- ../include/SDL/SDL_opengl.h:4690 type PFNGLIMAGETRANSFORMPARAMETERIHPPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLint); pragma Convention (C, PFNGLIMAGETRANSFORMPARAMETERIHPPROC); -- ../include/SDL/SDL_opengl.h:4707 type PFNGLIMAGETRANSFORMPARAMETERFHPPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLIMAGETRANSFORMPARAMETERFHPPROC); -- ../include/SDL/SDL_opengl.h:4708 type PFNGLIMAGETRANSFORMPARAMETERIVHPPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLIMAGETRANSFORMPARAMETERIVHPPROC); -- ../include/SDL/SDL_opengl.h:4709 type PFNGLIMAGETRANSFORMPARAMETERFVHPPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLIMAGETRANSFORMPARAMETERFVHPPROC); -- ../include/SDL/SDL_opengl.h:4710 type PFNGLGETIMAGETRANSFORMPARAMETERIVHPPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETIMAGETRANSFORMPARAMETERIVHPPROC); -- ../include/SDL/SDL_opengl.h:4711 type PFNGLGETIMAGETRANSFORMPARAMETERFVHPPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETIMAGETRANSFORMPARAMETERFVHPPROC); -- ../include/SDL/SDL_opengl.h:4712 type PFNGLCOLORSUBTABLEEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLsizei; arg3 : GL_gl_h.GLsizei; arg4 : GL_gl_h.GLenum; arg5 : GL_gl_h.GLenum; arg6 : System.Address); pragma Convention (C, PFNGLCOLORSUBTABLEEXTPROC); -- ../include/SDL/SDL_opengl.h:4729 type PFNGLCOPYCOLORSUBTABLEEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLsizei; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLsizei); pragma Convention (C, PFNGLCOPYCOLORSUBTABLEEXTPROC); -- ../include/SDL/SDL_opengl.h:4730 type PFNGLHINTPGIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint); pragma Convention (C, PFNGLHINTPGIPROC); -- ../include/SDL/SDL_opengl.h:4742 type PFNGLGETLISTPARAMETERFVSGIXPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETLISTPARAMETERFVSGIXPROC); -- ../include/SDL/SDL_opengl.h:4773 type PFNGLGETLISTPARAMETERIVSGIXPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETLISTPARAMETERIVSGIXPROC); -- ../include/SDL/SDL_opengl.h:4774 type PFNGLLISTPARAMETERFSGIXPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLLISTPARAMETERFSGIXPROC); -- ../include/SDL/SDL_opengl.h:4775 type PFNGLLISTPARAMETERFVSGIXPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLLISTPARAMETERFVSGIXPROC); -- ../include/SDL/SDL_opengl.h:4776 type PFNGLLISTPARAMETERISGIXPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLint); pragma Convention (C, PFNGLLISTPARAMETERISGIXPROC); -- ../include/SDL/SDL_opengl.h:4777 type PFNGLLISTPARAMETERIVSGIXPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLLISTPARAMETERIVSGIXPROC); -- ../include/SDL/SDL_opengl.h:4778 type PFNGLINDEXMATERIALEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum); pragma Convention (C, PFNGLINDEXMATERIALEXTPROC); -- ../include/SDL/SDL_opengl.h:4806 type PFNGLINDEXFUNCEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLclampf); pragma Convention (C, PFNGLINDEXFUNCEXTPROC); -- ../include/SDL/SDL_opengl.h:4814 type PFNGLLOCKARRAYSEXTPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLsizei); pragma Convention (C, PFNGLLOCKARRAYSEXTPROC); -- ../include/SDL/SDL_opengl.h:4827 type PFNGLUNLOCKARRAYSEXTPROC is access procedure; pragma Convention (C, PFNGLUNLOCKARRAYSEXTPROC); -- ../include/SDL/SDL_opengl.h:4828 type PFNGLCULLPARAMETERDVEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLCULLPARAMETERDVEXTPROC); -- ../include/SDL/SDL_opengl.h:4837 type PFNGLCULLPARAMETERFVEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLCULLPARAMETERFVEXTPROC); -- ../include/SDL/SDL_opengl.h:4838 type PFNGLFRAGMENTCOLORMATERIALSGIXPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum); pragma Convention (C, PFNGLFRAGMENTCOLORMATERIALSGIXPROC); -- ../include/SDL/SDL_opengl.h:4867 type PFNGLFRAGMENTLIGHTFSGIXPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLFRAGMENTLIGHTFSGIXPROC); -- ../include/SDL/SDL_opengl.h:4868 type PFNGLFRAGMENTLIGHTFVSGIXPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLFRAGMENTLIGHTFVSGIXPROC); -- ../include/SDL/SDL_opengl.h:4869 type PFNGLFRAGMENTLIGHTISGIXPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLint); pragma Convention (C, PFNGLFRAGMENTLIGHTISGIXPROC); -- ../include/SDL/SDL_opengl.h:4870 type PFNGLFRAGMENTLIGHTIVSGIXPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLFRAGMENTLIGHTIVSGIXPROC); -- ../include/SDL/SDL_opengl.h:4871 type PFNGLFRAGMENTLIGHTMODELFSGIXPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLFRAGMENTLIGHTMODELFSGIXPROC); -- ../include/SDL/SDL_opengl.h:4872 type PFNGLFRAGMENTLIGHTMODELFVSGIXPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLFRAGMENTLIGHTMODELFVSGIXPROC); -- ../include/SDL/SDL_opengl.h:4873 type PFNGLFRAGMENTLIGHTMODELISGIXPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint); pragma Convention (C, PFNGLFRAGMENTLIGHTMODELISGIXPROC); -- ../include/SDL/SDL_opengl.h:4874 type PFNGLFRAGMENTLIGHTMODELIVSGIXPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLint); pragma Convention (C, PFNGLFRAGMENTLIGHTMODELIVSGIXPROC); -- ../include/SDL/SDL_opengl.h:4875 type PFNGLFRAGMENTMATERIALFSGIXPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLFRAGMENTMATERIALFSGIXPROC); -- ../include/SDL/SDL_opengl.h:4876 type PFNGLFRAGMENTMATERIALFVSGIXPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLFRAGMENTMATERIALFVSGIXPROC); -- ../include/SDL/SDL_opengl.h:4877 type PFNGLFRAGMENTMATERIALISGIXPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLint); pragma Convention (C, PFNGLFRAGMENTMATERIALISGIXPROC); -- ../include/SDL/SDL_opengl.h:4878 type PFNGLFRAGMENTMATERIALIVSGIXPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLFRAGMENTMATERIALIVSGIXPROC); -- ../include/SDL/SDL_opengl.h:4879 type PFNGLGETFRAGMENTLIGHTFVSGIXPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETFRAGMENTLIGHTFVSGIXPROC); -- ../include/SDL/SDL_opengl.h:4880 type PFNGLGETFRAGMENTLIGHTIVSGIXPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETFRAGMENTLIGHTIVSGIXPROC); -- ../include/SDL/SDL_opengl.h:4881 type PFNGLGETFRAGMENTMATERIALFVSGIXPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETFRAGMENTMATERIALFVSGIXPROC); -- ../include/SDL/SDL_opengl.h:4882 type PFNGLGETFRAGMENTMATERIALIVSGIXPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETFRAGMENTMATERIALIVSGIXPROC); -- ../include/SDL/SDL_opengl.h:4883 type PFNGLLIGHTENVISGIXPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint); pragma Convention (C, PFNGLLIGHTENVISGIXPROC); -- ../include/SDL/SDL_opengl.h:4884 type PFNGLDRAWRANGEELEMENTSEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLuint; arg4 : GL_gl_h.GLsizei; arg5 : GL_gl_h.GLenum; arg6 : System.Address); pragma Convention (C, PFNGLDRAWRANGEELEMENTSEXTPROC); -- ../include/SDL/SDL_opengl.h:4900 type PFNGLAPPLYTEXTUREEXTPROC is access procedure (arg1 : GL_gl_h.GLenum); pragma Convention (C, PFNGLAPPLYTEXTUREEXTPROC); -- ../include/SDL/SDL_opengl.h:4918 type PFNGLTEXTURELIGHTEXTPROC is access procedure (arg1 : GL_gl_h.GLenum); pragma Convention (C, PFNGLTEXTURELIGHTEXTPROC); -- ../include/SDL/SDL_opengl.h:4919 type PFNGLTEXTUREMATERIALEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum); pragma Convention (C, PFNGLTEXTUREMATERIALEXTPROC); -- ../include/SDL/SDL_opengl.h:4920 type PFNGLASYNCMARKERSGIXPROC is access procedure (arg1 : GL_gl_h.GLuint); pragma Convention (C, PFNGLASYNCMARKERSGIXPROC); -- ../include/SDL/SDL_opengl.h:4941 type PFNGLFINISHASYNCSGIXPROC is access function (arg1 : access GL_gl_h.GLuint) return GL_gl_h.GLint; pragma Convention (C, PFNGLFINISHASYNCSGIXPROC); -- ../include/SDL/SDL_opengl.h:4942 type PFNGLPOLLASYNCSGIXPROC is access function (arg1 : access GL_gl_h.GLuint) return GL_gl_h.GLint; pragma Convention (C, PFNGLPOLLASYNCSGIXPROC); -- ../include/SDL/SDL_opengl.h:4943 type PFNGLGENASYNCMARKERSSGIXPROC is access function (arg1 : GL_gl_h.GLsizei) return GL_gl_h.GLuint; pragma Convention (C, PFNGLGENASYNCMARKERSSGIXPROC); -- ../include/SDL/SDL_opengl.h:4944 type PFNGLDELETEASYNCMARKERSSGIXPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLsizei); pragma Convention (C, PFNGLDELETEASYNCMARKERSSGIXPROC); -- ../include/SDL/SDL_opengl.h:4945 type PFNGLISASYNCMARKERSGIXPROC is access function (arg1 : GL_gl_h.GLuint) return GL_gl_h.GLboolean; pragma Convention (C, PFNGLISASYNCMARKERSGIXPROC); -- ../include/SDL/SDL_opengl.h:4946 type PFNGLVERTEXPOINTERVINTELPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLenum; arg3 : System.Address); pragma Convention (C, PFNGLVERTEXPOINTERVINTELPROC); -- ../include/SDL/SDL_opengl.h:4965 type PFNGLNORMALPOINTERVINTELPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : System.Address); pragma Convention (C, PFNGLNORMALPOINTERVINTELPROC); -- ../include/SDL/SDL_opengl.h:4966 type PFNGLCOLORPOINTERVINTELPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLenum; arg3 : System.Address); pragma Convention (C, PFNGLCOLORPOINTERVINTELPROC); -- ../include/SDL/SDL_opengl.h:4967 type PFNGLTEXCOORDPOINTERVINTELPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLenum; arg3 : System.Address); pragma Convention (C, PFNGLTEXCOORDPOINTERVINTELPROC); -- ../include/SDL/SDL_opengl.h:4968 type PFNGLPIXELTRANSFORMPARAMETERIEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLint); pragma Convention (C, PFNGLPIXELTRANSFORMPARAMETERIEXTPROC); -- ../include/SDL/SDL_opengl.h:4983 type PFNGLPIXELTRANSFORMPARAMETERFEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLPIXELTRANSFORMPARAMETERFEXTPROC); -- ../include/SDL/SDL_opengl.h:4984 type PFNGLPIXELTRANSFORMPARAMETERIVEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLPIXELTRANSFORMPARAMETERIVEXTPROC); -- ../include/SDL/SDL_opengl.h:4985 type PFNGLPIXELTRANSFORMPARAMETERFVEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLPIXELTRANSFORMPARAMETERFVEXTPROC); -- ../include/SDL/SDL_opengl.h:4986 type PFNGLSECONDARYCOLOR3BEXTPROC is access procedure (arg1 : GL_gl_h.GLbyte; arg2 : GL_gl_h.GLbyte; arg3 : GL_gl_h.GLbyte); pragma Convention (C, PFNGLSECONDARYCOLOR3BEXTPROC); -- ../include/SDL/SDL_opengl.h:5022 type PFNGLSECONDARYCOLOR3BVEXTPROC is access procedure (arg1 : access GL_gl_h.GLbyte); pragma Convention (C, PFNGLSECONDARYCOLOR3BVEXTPROC); -- ../include/SDL/SDL_opengl.h:5023 type PFNGLSECONDARYCOLOR3DEXTPROC is access procedure (arg1 : GL_gl_h.GLdouble; arg2 : GL_gl_h.GLdouble; arg3 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLSECONDARYCOLOR3DEXTPROC); -- ../include/SDL/SDL_opengl.h:5024 type PFNGLSECONDARYCOLOR3DVEXTPROC is access procedure (arg1 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLSECONDARYCOLOR3DVEXTPROC); -- ../include/SDL/SDL_opengl.h:5025 type PFNGLSECONDARYCOLOR3FEXTPROC is access procedure (arg1 : GL_gl_h.GLfloat; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLSECONDARYCOLOR3FEXTPROC); -- ../include/SDL/SDL_opengl.h:5026 type PFNGLSECONDARYCOLOR3FVEXTPROC is access procedure (arg1 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLSECONDARYCOLOR3FVEXTPROC); -- ../include/SDL/SDL_opengl.h:5027 type PFNGLSECONDARYCOLOR3IEXTPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint); pragma Convention (C, PFNGLSECONDARYCOLOR3IEXTPROC); -- ../include/SDL/SDL_opengl.h:5028 type PFNGLSECONDARYCOLOR3IVEXTPROC is access procedure (arg1 : access GL_gl_h.GLint); pragma Convention (C, PFNGLSECONDARYCOLOR3IVEXTPROC); -- ../include/SDL/SDL_opengl.h:5029 type PFNGLSECONDARYCOLOR3SEXTPROC is access procedure (arg1 : GL_gl_h.GLshort; arg2 : GL_gl_h.GLshort; arg3 : GL_gl_h.GLshort); pragma Convention (C, PFNGLSECONDARYCOLOR3SEXTPROC); -- ../include/SDL/SDL_opengl.h:5030 type PFNGLSECONDARYCOLOR3SVEXTPROC is access procedure (arg1 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLSECONDARYCOLOR3SVEXTPROC); -- ../include/SDL/SDL_opengl.h:5031 type PFNGLSECONDARYCOLOR3UBEXTPROC is access procedure (arg1 : GL_gl_h.GLubyte; arg2 : GL_gl_h.GLubyte; arg3 : GL_gl_h.GLubyte); pragma Convention (C, PFNGLSECONDARYCOLOR3UBEXTPROC); -- ../include/SDL/SDL_opengl.h:5032 type PFNGLSECONDARYCOLOR3UBVEXTPROC is access procedure (arg1 : access GL_gl_h.GLubyte); pragma Convention (C, PFNGLSECONDARYCOLOR3UBVEXTPROC); -- ../include/SDL/SDL_opengl.h:5033 type PFNGLSECONDARYCOLOR3UIEXTPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLuint); pragma Convention (C, PFNGLSECONDARYCOLOR3UIEXTPROC); -- ../include/SDL/SDL_opengl.h:5034 type PFNGLSECONDARYCOLOR3UIVEXTPROC is access procedure (arg1 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLSECONDARYCOLOR3UIVEXTPROC); -- ../include/SDL/SDL_opengl.h:5035 type PFNGLSECONDARYCOLOR3USEXTPROC is access procedure (arg1 : GL_gl_h.GLushort; arg2 : GL_gl_h.GLushort; arg3 : GL_gl_h.GLushort); pragma Convention (C, PFNGLSECONDARYCOLOR3USEXTPROC); -- ../include/SDL/SDL_opengl.h:5036 type PFNGLSECONDARYCOLOR3USVEXTPROC is access procedure (arg1 : access GL_gl_h.GLushort); pragma Convention (C, PFNGLSECONDARYCOLOR3USVEXTPROC); -- ../include/SDL/SDL_opengl.h:5037 type PFNGLSECONDARYCOLORPOINTEREXTPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLsizei; arg4 : System.Address); pragma Convention (C, PFNGLSECONDARYCOLORPOINTEREXTPROC); -- ../include/SDL/SDL_opengl.h:5038 type PFNGLTEXTURENORMALEXTPROC is access procedure (arg1 : GL_gl_h.GLenum); pragma Convention (C, PFNGLTEXTURENORMALEXTPROC); -- ../include/SDL/SDL_opengl.h:5046 type PFNGLMULTIDRAWARRAYSEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLint; arg3 : access GL_gl_h.GLsizei; arg4 : GL_gl_h.GLsizei); pragma Convention (C, PFNGLMULTIDRAWARRAYSEXTPROC); -- ../include/SDL/SDL_opengl.h:5055 type PFNGLMULTIDRAWELEMENTSEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLsizei; arg3 : GL_gl_h.GLenum; arg4 : System.Address; arg5 : GL_gl_h.GLsizei); pragma Convention (C, PFNGLMULTIDRAWELEMENTSEXTPROC); -- ../include/SDL/SDL_opengl.h:5056 type PFNGLFOGCOORDFEXTPROC is access procedure (arg1 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLFOGCOORDFEXTPROC); -- ../include/SDL/SDL_opengl.h:5068 type PFNGLFOGCOORDFVEXTPROC is access procedure (arg1 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLFOGCOORDFVEXTPROC); -- ../include/SDL/SDL_opengl.h:5069 type PFNGLFOGCOORDDEXTPROC is access procedure (arg1 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLFOGCOORDDEXTPROC); -- ../include/SDL/SDL_opengl.h:5070 type PFNGLFOGCOORDDVEXTPROC is access procedure (arg1 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLFOGCOORDDVEXTPROC); -- ../include/SDL/SDL_opengl.h:5071 type PFNGLFOGCOORDPOINTEREXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLsizei; arg3 : System.Address); pragma Convention (C, PFNGLFOGCOORDPOINTEREXTPROC); -- ../include/SDL/SDL_opengl.h:5072 type PFNGLTANGENT3BEXTPROC is access procedure (arg1 : GL_gl_h.GLbyte; arg2 : GL_gl_h.GLbyte; arg3 : GL_gl_h.GLbyte); pragma Convention (C, PFNGLTANGENT3BEXTPROC); -- ../include/SDL/SDL_opengl.h:5105 type PFNGLTANGENT3BVEXTPROC is access procedure (arg1 : access GL_gl_h.GLbyte); pragma Convention (C, PFNGLTANGENT3BVEXTPROC); -- ../include/SDL/SDL_opengl.h:5106 type PFNGLTANGENT3DEXTPROC is access procedure (arg1 : GL_gl_h.GLdouble; arg2 : GL_gl_h.GLdouble; arg3 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLTANGENT3DEXTPROC); -- ../include/SDL/SDL_opengl.h:5107 type PFNGLTANGENT3DVEXTPROC is access procedure (arg1 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLTANGENT3DVEXTPROC); -- ../include/SDL/SDL_opengl.h:5108 type PFNGLTANGENT3FEXTPROC is access procedure (arg1 : GL_gl_h.GLfloat; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLTANGENT3FEXTPROC); -- ../include/SDL/SDL_opengl.h:5109 type PFNGLTANGENT3FVEXTPROC is access procedure (arg1 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLTANGENT3FVEXTPROC); -- ../include/SDL/SDL_opengl.h:5110 type PFNGLTANGENT3IEXTPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint); pragma Convention (C, PFNGLTANGENT3IEXTPROC); -- ../include/SDL/SDL_opengl.h:5111 type PFNGLTANGENT3IVEXTPROC is access procedure (arg1 : access GL_gl_h.GLint); pragma Convention (C, PFNGLTANGENT3IVEXTPROC); -- ../include/SDL/SDL_opengl.h:5112 type PFNGLTANGENT3SEXTPROC is access procedure (arg1 : GL_gl_h.GLshort; arg2 : GL_gl_h.GLshort; arg3 : GL_gl_h.GLshort); pragma Convention (C, PFNGLTANGENT3SEXTPROC); -- ../include/SDL/SDL_opengl.h:5113 type PFNGLTANGENT3SVEXTPROC is access procedure (arg1 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLTANGENT3SVEXTPROC); -- ../include/SDL/SDL_opengl.h:5114 type PFNGLBINORMAL3BEXTPROC is access procedure (arg1 : GL_gl_h.GLbyte; arg2 : GL_gl_h.GLbyte; arg3 : GL_gl_h.GLbyte); pragma Convention (C, PFNGLBINORMAL3BEXTPROC); -- ../include/SDL/SDL_opengl.h:5115 type PFNGLBINORMAL3BVEXTPROC is access procedure (arg1 : access GL_gl_h.GLbyte); pragma Convention (C, PFNGLBINORMAL3BVEXTPROC); -- ../include/SDL/SDL_opengl.h:5116 type PFNGLBINORMAL3DEXTPROC is access procedure (arg1 : GL_gl_h.GLdouble; arg2 : GL_gl_h.GLdouble; arg3 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLBINORMAL3DEXTPROC); -- ../include/SDL/SDL_opengl.h:5117 type PFNGLBINORMAL3DVEXTPROC is access procedure (arg1 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLBINORMAL3DVEXTPROC); -- ../include/SDL/SDL_opengl.h:5118 type PFNGLBINORMAL3FEXTPROC is access procedure (arg1 : GL_gl_h.GLfloat; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLBINORMAL3FEXTPROC); -- ../include/SDL/SDL_opengl.h:5119 type PFNGLBINORMAL3FVEXTPROC is access procedure (arg1 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLBINORMAL3FVEXTPROC); -- ../include/SDL/SDL_opengl.h:5120 type PFNGLBINORMAL3IEXTPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint); pragma Convention (C, PFNGLBINORMAL3IEXTPROC); -- ../include/SDL/SDL_opengl.h:5121 type PFNGLBINORMAL3IVEXTPROC is access procedure (arg1 : access GL_gl_h.GLint); pragma Convention (C, PFNGLBINORMAL3IVEXTPROC); -- ../include/SDL/SDL_opengl.h:5122 type PFNGLBINORMAL3SEXTPROC is access procedure (arg1 : GL_gl_h.GLshort; arg2 : GL_gl_h.GLshort; arg3 : GL_gl_h.GLshort); pragma Convention (C, PFNGLBINORMAL3SEXTPROC); -- ../include/SDL/SDL_opengl.h:5123 type PFNGLBINORMAL3SVEXTPROC is access procedure (arg1 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLBINORMAL3SVEXTPROC); -- ../include/SDL/SDL_opengl.h:5124 type PFNGLTANGENTPOINTEREXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLsizei; arg3 : System.Address); pragma Convention (C, PFNGLTANGENTPOINTEREXTPROC); -- ../include/SDL/SDL_opengl.h:5125 type PFNGLBINORMALPOINTEREXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLsizei; arg3 : System.Address); pragma Convention (C, PFNGLBINORMALPOINTEREXTPROC); -- ../include/SDL/SDL_opengl.h:5126 type PFNGLFINISHTEXTURESUNXPROC is access procedure; pragma Convention (C, PFNGLFINISHTEXTURESUNXPROC); -- ../include/SDL/SDL_opengl.h:5150 type PFNGLGLOBALALPHAFACTORBSUNPROC is access procedure (arg1 : GL_gl_h.GLbyte); pragma Convention (C, PFNGLGLOBALALPHAFACTORBSUNPROC); -- ../include/SDL/SDL_opengl.h:5165 type PFNGLGLOBALALPHAFACTORSSUNPROC is access procedure (arg1 : GL_gl_h.GLshort); pragma Convention (C, PFNGLGLOBALALPHAFACTORSSUNPROC); -- ../include/SDL/SDL_opengl.h:5166 type PFNGLGLOBALALPHAFACTORISUNPROC is access procedure (arg1 : GL_gl_h.GLint); pragma Convention (C, PFNGLGLOBALALPHAFACTORISUNPROC); -- ../include/SDL/SDL_opengl.h:5167 type PFNGLGLOBALALPHAFACTORFSUNPROC is access procedure (arg1 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLGLOBALALPHAFACTORFSUNPROC); -- ../include/SDL/SDL_opengl.h:5168 type PFNGLGLOBALALPHAFACTORDSUNPROC is access procedure (arg1 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLGLOBALALPHAFACTORDSUNPROC); -- ../include/SDL/SDL_opengl.h:5169 type PFNGLGLOBALALPHAFACTORUBSUNPROC is access procedure (arg1 : GL_gl_h.GLubyte); pragma Convention (C, PFNGLGLOBALALPHAFACTORUBSUNPROC); -- ../include/SDL/SDL_opengl.h:5170 type PFNGLGLOBALALPHAFACTORUSSUNPROC is access procedure (arg1 : GL_gl_h.GLushort); pragma Convention (C, PFNGLGLOBALALPHAFACTORUSSUNPROC); -- ../include/SDL/SDL_opengl.h:5171 type PFNGLGLOBALALPHAFACTORUISUNPROC is access procedure (arg1 : GL_gl_h.GLuint); pragma Convention (C, PFNGLGLOBALALPHAFACTORUISUNPROC); -- ../include/SDL/SDL_opengl.h:5172 type PFNGLREPLACEMENTCODEUISUNPROC is access procedure (arg1 : GL_gl_h.GLuint); pragma Convention (C, PFNGLREPLACEMENTCODEUISUNPROC); -- ../include/SDL/SDL_opengl.h:5186 type PFNGLREPLACEMENTCODEUSSUNPROC is access procedure (arg1 : GL_gl_h.GLushort); pragma Convention (C, PFNGLREPLACEMENTCODEUSSUNPROC); -- ../include/SDL/SDL_opengl.h:5187 type PFNGLREPLACEMENTCODEUBSUNPROC is access procedure (arg1 : GL_gl_h.GLubyte); pragma Convention (C, PFNGLREPLACEMENTCODEUBSUNPROC); -- ../include/SDL/SDL_opengl.h:5188 type PFNGLREPLACEMENTCODEUIVSUNPROC is access procedure (arg1 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLREPLACEMENTCODEUIVSUNPROC); -- ../include/SDL/SDL_opengl.h:5189 type PFNGLREPLACEMENTCODEUSVSUNPROC is access procedure (arg1 : access GL_gl_h.GLushort); pragma Convention (C, PFNGLREPLACEMENTCODEUSVSUNPROC); -- ../include/SDL/SDL_opengl.h:5190 type PFNGLREPLACEMENTCODEUBVSUNPROC is access procedure (arg1 : access GL_gl_h.GLubyte); pragma Convention (C, PFNGLREPLACEMENTCODEUBVSUNPROC); -- ../include/SDL/SDL_opengl.h:5191 type PFNGLREPLACEMENTCODEPOINTERSUNPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLsizei; arg3 : System.Address); pragma Convention (C, PFNGLREPLACEMENTCODEPOINTERSUNPROC); -- ../include/SDL/SDL_opengl.h:5192 type PFNGLCOLOR4UBVERTEX2FSUNPROC is access procedure (arg1 : GL_gl_h.GLubyte; arg2 : GL_gl_h.GLubyte; arg3 : GL_gl_h.GLubyte; arg4 : GL_gl_h.GLubyte; arg5 : GL_gl_h.GLfloat; arg6 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLCOLOR4UBVERTEX2FSUNPROC); -- ../include/SDL/SDL_opengl.h:5239 type PFNGLCOLOR4UBVERTEX2FVSUNPROC is access procedure (arg1 : access GL_gl_h.GLubyte; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLCOLOR4UBVERTEX2FVSUNPROC); -- ../include/SDL/SDL_opengl.h:5240 type PFNGLCOLOR4UBVERTEX3FSUNPROC is access procedure (arg1 : GL_gl_h.GLubyte; arg2 : GL_gl_h.GLubyte; arg3 : GL_gl_h.GLubyte; arg4 : GL_gl_h.GLubyte; arg5 : GL_gl_h.GLfloat; arg6 : GL_gl_h.GLfloat; arg7 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLCOLOR4UBVERTEX3FSUNPROC); -- ../include/SDL/SDL_opengl.h:5241 type PFNGLCOLOR4UBVERTEX3FVSUNPROC is access procedure (arg1 : access GL_gl_h.GLubyte; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLCOLOR4UBVERTEX3FVSUNPROC); -- ../include/SDL/SDL_opengl.h:5242 type PFNGLCOLOR3FVERTEX3FSUNPROC is access procedure (arg1 : GL_gl_h.GLfloat; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat; arg5 : GL_gl_h.GLfloat; arg6 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLCOLOR3FVERTEX3FSUNPROC); -- ../include/SDL/SDL_opengl.h:5243 type PFNGLCOLOR3FVERTEX3FVSUNPROC is access procedure (arg1 : access GL_gl_h.GLfloat; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLCOLOR3FVERTEX3FVSUNPROC); -- ../include/SDL/SDL_opengl.h:5244 type PFNGLNORMAL3FVERTEX3FSUNPROC is access procedure (arg1 : GL_gl_h.GLfloat; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat; arg5 : GL_gl_h.GLfloat; arg6 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLNORMAL3FVERTEX3FSUNPROC); -- ../include/SDL/SDL_opengl.h:5245 type PFNGLNORMAL3FVERTEX3FVSUNPROC is access procedure (arg1 : access GL_gl_h.GLfloat; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLNORMAL3FVERTEX3FVSUNPROC); -- ../include/SDL/SDL_opengl.h:5246 type PFNGLCOLOR4FNORMAL3FVERTEX3FSUNPROC is access procedure (arg1 : GL_gl_h.GLfloat; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat; arg5 : GL_gl_h.GLfloat; arg6 : GL_gl_h.GLfloat; arg7 : GL_gl_h.GLfloat; arg8 : GL_gl_h.GLfloat; arg9 : GL_gl_h.GLfloat; arg10 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLCOLOR4FNORMAL3FVERTEX3FSUNPROC); -- ../include/SDL/SDL_opengl.h:5247 type PFNGLCOLOR4FNORMAL3FVERTEX3FVSUNPROC is access procedure (arg1 : access GL_gl_h.GLfloat; arg2 : access GL_gl_h.GLfloat; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLCOLOR4FNORMAL3FVERTEX3FVSUNPROC); -- ../include/SDL/SDL_opengl.h:5248 type PFNGLTEXCOORD2FVERTEX3FSUNPROC is access procedure (arg1 : GL_gl_h.GLfloat; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat; arg5 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLTEXCOORD2FVERTEX3FSUNPROC); -- ../include/SDL/SDL_opengl.h:5249 type PFNGLTEXCOORD2FVERTEX3FVSUNPROC is access procedure (arg1 : access GL_gl_h.GLfloat; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLTEXCOORD2FVERTEX3FVSUNPROC); -- ../include/SDL/SDL_opengl.h:5250 type PFNGLTEXCOORD4FVERTEX4FSUNPROC is access procedure (arg1 : GL_gl_h.GLfloat; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat; arg5 : GL_gl_h.GLfloat; arg6 : GL_gl_h.GLfloat; arg7 : GL_gl_h.GLfloat; arg8 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLTEXCOORD4FVERTEX4FSUNPROC); -- ../include/SDL/SDL_opengl.h:5251 type PFNGLTEXCOORD4FVERTEX4FVSUNPROC is access procedure (arg1 : access GL_gl_h.GLfloat; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLTEXCOORD4FVERTEX4FVSUNPROC); -- ../include/SDL/SDL_opengl.h:5252 type PFNGLTEXCOORD2FCOLOR4UBVERTEX3FSUNPROC is access procedure (arg1 : GL_gl_h.GLfloat; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLubyte; arg4 : GL_gl_h.GLubyte; arg5 : GL_gl_h.GLubyte; arg6 : GL_gl_h.GLubyte; arg7 : GL_gl_h.GLfloat; arg8 : GL_gl_h.GLfloat; arg9 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLTEXCOORD2FCOLOR4UBVERTEX3FSUNPROC); -- ../include/SDL/SDL_opengl.h:5253 type PFNGLTEXCOORD2FCOLOR4UBVERTEX3FVSUNPROC is access procedure (arg1 : access GL_gl_h.GLfloat; arg2 : access GL_gl_h.GLubyte; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLTEXCOORD2FCOLOR4UBVERTEX3FVSUNPROC); -- ../include/SDL/SDL_opengl.h:5254 type PFNGLTEXCOORD2FCOLOR3FVERTEX3FSUNPROC is access procedure (arg1 : GL_gl_h.GLfloat; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat; arg5 : GL_gl_h.GLfloat; arg6 : GL_gl_h.GLfloat; arg7 : GL_gl_h.GLfloat; arg8 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLTEXCOORD2FCOLOR3FVERTEX3FSUNPROC); -- ../include/SDL/SDL_opengl.h:5255 type PFNGLTEXCOORD2FCOLOR3FVERTEX3FVSUNPROC is access procedure (arg1 : access GL_gl_h.GLfloat; arg2 : access GL_gl_h.GLfloat; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLTEXCOORD2FCOLOR3FVERTEX3FVSUNPROC); -- ../include/SDL/SDL_opengl.h:5256 type PFNGLTEXCOORD2FNORMAL3FVERTEX3FSUNPROC is access procedure (arg1 : GL_gl_h.GLfloat; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat; arg5 : GL_gl_h.GLfloat; arg6 : GL_gl_h.GLfloat; arg7 : GL_gl_h.GLfloat; arg8 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLTEXCOORD2FNORMAL3FVERTEX3FSUNPROC); -- ../include/SDL/SDL_opengl.h:5257 type PFNGLTEXCOORD2FNORMAL3FVERTEX3FVSUNPROC is access procedure (arg1 : access GL_gl_h.GLfloat; arg2 : access GL_gl_h.GLfloat; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLTEXCOORD2FNORMAL3FVERTEX3FVSUNPROC); -- ../include/SDL/SDL_opengl.h:5258 type PFNGLTEXCOORD2FCOLOR4FNORMAL3FVERTEX3FSUNPROC is access procedure (arg1 : GL_gl_h.GLfloat; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat; arg5 : GL_gl_h.GLfloat; arg6 : GL_gl_h.GLfloat; arg7 : GL_gl_h.GLfloat; arg8 : GL_gl_h.GLfloat; arg9 : GL_gl_h.GLfloat; arg10 : GL_gl_h.GLfloat; arg11 : GL_gl_h.GLfloat; arg12 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLTEXCOORD2FCOLOR4FNORMAL3FVERTEX3FSUNPROC); -- ../include/SDL/SDL_opengl.h:5259 type PFNGLTEXCOORD2FCOLOR4FNORMAL3FVERTEX3FVSUNPROC is access procedure (arg1 : access GL_gl_h.GLfloat; arg2 : access GL_gl_h.GLfloat; arg3 : access GL_gl_h.GLfloat; arg4 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLTEXCOORD2FCOLOR4FNORMAL3FVERTEX3FVSUNPROC); -- ../include/SDL/SDL_opengl.h:5260 type PFNGLTEXCOORD4FCOLOR4FNORMAL3FVERTEX4FSUNPROC is access procedure (arg1 : GL_gl_h.GLfloat; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat; arg5 : GL_gl_h.GLfloat; arg6 : GL_gl_h.GLfloat; arg7 : GL_gl_h.GLfloat; arg8 : GL_gl_h.GLfloat; arg9 : GL_gl_h.GLfloat; arg10 : GL_gl_h.GLfloat; arg11 : GL_gl_h.GLfloat; arg12 : GL_gl_h.GLfloat; arg13 : GL_gl_h.GLfloat; arg14 : GL_gl_h.GLfloat; arg15 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLTEXCOORD4FCOLOR4FNORMAL3FVERTEX4FSUNPROC); -- ../include/SDL/SDL_opengl.h:5261 type PFNGLTEXCOORD4FCOLOR4FNORMAL3FVERTEX4FVSUNPROC is access procedure (arg1 : access GL_gl_h.GLfloat; arg2 : access GL_gl_h.GLfloat; arg3 : access GL_gl_h.GLfloat; arg4 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLTEXCOORD4FCOLOR4FNORMAL3FVERTEX4FVSUNPROC); -- ../include/SDL/SDL_opengl.h:5262 type PFNGLREPLACEMENTCODEUIVERTEX3FSUNPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLREPLACEMENTCODEUIVERTEX3FSUNPROC); -- ../include/SDL/SDL_opengl.h:5263 type PFNGLREPLACEMENTCODEUIVERTEX3FVSUNPROC is access procedure (arg1 : access GL_gl_h.GLuint; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLREPLACEMENTCODEUIVERTEX3FVSUNPROC); -- ../include/SDL/SDL_opengl.h:5264 type PFNGLREPLACEMENTCODEUICOLOR4UBVERTEX3FSUNPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLubyte; arg3 : GL_gl_h.GLubyte; arg4 : GL_gl_h.GLubyte; arg5 : GL_gl_h.GLubyte; arg6 : GL_gl_h.GLfloat; arg7 : GL_gl_h.GLfloat; arg8 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLREPLACEMENTCODEUICOLOR4UBVERTEX3FSUNPROC); -- ../include/SDL/SDL_opengl.h:5265 type PFNGLREPLACEMENTCODEUICOLOR4UBVERTEX3FVSUNPROC is access procedure (arg1 : access GL_gl_h.GLuint; arg2 : access GL_gl_h.GLubyte; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLREPLACEMENTCODEUICOLOR4UBVERTEX3FVSUNPROC); -- ../include/SDL/SDL_opengl.h:5266 type PFNGLREPLACEMENTCODEUICOLOR3FVERTEX3FSUNPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat; arg5 : GL_gl_h.GLfloat; arg6 : GL_gl_h.GLfloat; arg7 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLREPLACEMENTCODEUICOLOR3FVERTEX3FSUNPROC); -- ../include/SDL/SDL_opengl.h:5267 type PFNGLREPLACEMENTCODEUICOLOR3FVERTEX3FVSUNPROC is access procedure (arg1 : access GL_gl_h.GLuint; arg2 : access GL_gl_h.GLfloat; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLREPLACEMENTCODEUICOLOR3FVERTEX3FVSUNPROC); -- ../include/SDL/SDL_opengl.h:5268 type PFNGLREPLACEMENTCODEUINORMAL3FVERTEX3FSUNPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat; arg5 : GL_gl_h.GLfloat; arg6 : GL_gl_h.GLfloat; arg7 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLREPLACEMENTCODEUINORMAL3FVERTEX3FSUNPROC); -- ../include/SDL/SDL_opengl.h:5269 type PFNGLREPLACEMENTCODEUINORMAL3FVERTEX3FVSUNPROC is access procedure (arg1 : access GL_gl_h.GLuint; arg2 : access GL_gl_h.GLfloat; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLREPLACEMENTCODEUINORMAL3FVERTEX3FVSUNPROC); -- ../include/SDL/SDL_opengl.h:5270 type PFNGLREPLACEMENTCODEUICOLOR4FNORMAL3FVERTEX3FSUNPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat; arg5 : GL_gl_h.GLfloat; arg6 : GL_gl_h.GLfloat; arg7 : GL_gl_h.GLfloat; arg8 : GL_gl_h.GLfloat; arg9 : GL_gl_h.GLfloat; arg10 : GL_gl_h.GLfloat; arg11 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLREPLACEMENTCODEUICOLOR4FNORMAL3FVERTEX3FSUNPROC); -- ../include/SDL/SDL_opengl.h:5271 type PFNGLREPLACEMENTCODEUICOLOR4FNORMAL3FVERTEX3FVSUNPROC is access procedure (arg1 : access GL_gl_h.GLuint; arg2 : access GL_gl_h.GLfloat; arg3 : access GL_gl_h.GLfloat; arg4 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLREPLACEMENTCODEUICOLOR4FNORMAL3FVERTEX3FVSUNPROC); -- ../include/SDL/SDL_opengl.h:5272 type PFNGLREPLACEMENTCODEUITEXCOORD2FVERTEX3FSUNPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat; arg5 : GL_gl_h.GLfloat; arg6 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLREPLACEMENTCODEUITEXCOORD2FVERTEX3FSUNPROC); -- ../include/SDL/SDL_opengl.h:5273 type PFNGLREPLACEMENTCODEUITEXCOORD2FVERTEX3FVSUNPROC is access procedure (arg1 : access GL_gl_h.GLuint; arg2 : access GL_gl_h.GLfloat; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLREPLACEMENTCODEUITEXCOORD2FVERTEX3FVSUNPROC); -- ../include/SDL/SDL_opengl.h:5274 type PFNGLREPLACEMENTCODEUITEXCOORD2FNORMAL3FVERTEX3FSUNPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat; arg5 : GL_gl_h.GLfloat; arg6 : GL_gl_h.GLfloat; arg7 : GL_gl_h.GLfloat; arg8 : GL_gl_h.GLfloat; arg9 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLREPLACEMENTCODEUITEXCOORD2FNORMAL3FVERTEX3FSUNPROC); -- ../include/SDL/SDL_opengl.h:5275 type PFNGLREPLACEMENTCODEUITEXCOORD2FNORMAL3FVERTEX3FVSUNPROC is access procedure (arg1 : access GL_gl_h.GLuint; arg2 : access GL_gl_h.GLfloat; arg3 : access GL_gl_h.GLfloat; arg4 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLREPLACEMENTCODEUITEXCOORD2FNORMAL3FVERTEX3FVSUNPROC); -- ../include/SDL/SDL_opengl.h:5276 type PFNGLREPLACEMENTCODEUITEXCOORD2FCOLOR4FNORMAL3FVERTEX3FSUNPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat; arg5 : GL_gl_h.GLfloat; arg6 : GL_gl_h.GLfloat; arg7 : GL_gl_h.GLfloat; arg8 : GL_gl_h.GLfloat; arg9 : GL_gl_h.GLfloat; arg10 : GL_gl_h.GLfloat; arg11 : GL_gl_h.GLfloat; arg12 : GL_gl_h.GLfloat; arg13 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLREPLACEMENTCODEUITEXCOORD2FCOLOR4FNORMAL3FVERTEX3FSUNPROC); -- ../include/SDL/SDL_opengl.h:5277 type PFNGLREPLACEMENTCODEUITEXCOORD2FCOLOR4FNORMAL3FVERTEX3FVSUNPROC is access procedure (arg1 : access GL_gl_h.GLuint; arg2 : access GL_gl_h.GLfloat; arg3 : access GL_gl_h.GLfloat; arg4 : access GL_gl_h.GLfloat; arg5 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLREPLACEMENTCODEUITEXCOORD2FCOLOR4FNORMAL3FVERTEX3FVSUNPROC); -- ../include/SDL/SDL_opengl.h:5278 type PFNGLBLENDFUNCSEPARATEEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLenum); pragma Convention (C, PFNGLBLENDFUNCSEPARATEEXTPROC); -- ../include/SDL/SDL_opengl.h:5286 type PFNGLBLENDFUNCSEPARATEINGRPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLenum); pragma Convention (C, PFNGLBLENDFUNCSEPARATEINGRPROC); -- ../include/SDL/SDL_opengl.h:5294 type PFNGLVERTEXWEIGHTFEXTPROC is access procedure (arg1 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXWEIGHTFEXTPROC); -- ../include/SDL/SDL_opengl.h:5340 type PFNGLVERTEXWEIGHTFVEXTPROC is access procedure (arg1 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXWEIGHTFVEXTPROC); -- ../include/SDL/SDL_opengl.h:5341 type PFNGLVERTEXWEIGHTPOINTEREXTPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLsizei; arg4 : System.Address); pragma Convention (C, PFNGLVERTEXWEIGHTPOINTEREXTPROC); -- ../include/SDL/SDL_opengl.h:5342 type PFNGLFLUSHVERTEXARRAYRANGENVPROC is access procedure; pragma Convention (C, PFNGLFLUSHVERTEXARRAYRANGENVPROC); -- ../include/SDL/SDL_opengl.h:5355 type PFNGLVERTEXARRAYRANGENVPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : System.Address); pragma Convention (C, PFNGLVERTEXARRAYRANGENVPROC); -- ../include/SDL/SDL_opengl.h:5356 type PFNGLCOMBINERPARAMETERFVNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLCOMBINERPARAMETERFVNVPROC); -- ../include/SDL/SDL_opengl.h:5376 type PFNGLCOMBINERPARAMETERFNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLCOMBINERPARAMETERFNVPROC); -- ../include/SDL/SDL_opengl.h:5377 type PFNGLCOMBINERPARAMETERIVNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLint); pragma Convention (C, PFNGLCOMBINERPARAMETERIVNVPROC); -- ../include/SDL/SDL_opengl.h:5378 type PFNGLCOMBINERPARAMETERINVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint); pragma Convention (C, PFNGLCOMBINERPARAMETERINVPROC); -- ../include/SDL/SDL_opengl.h:5379 type PFNGLCOMBINERINPUTNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLenum; arg5 : GL_gl_h.GLenum; arg6 : GL_gl_h.GLenum); pragma Convention (C, PFNGLCOMBINERINPUTNVPROC); -- ../include/SDL/SDL_opengl.h:5380 type PFNGLCOMBINEROUTPUTNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLenum; arg5 : GL_gl_h.GLenum; arg6 : GL_gl_h.GLenum; arg7 : GL_gl_h.GLenum; arg8 : GL_gl_h.GLboolean; arg9 : GL_gl_h.GLboolean; arg10 : GL_gl_h.GLboolean); pragma Convention (C, PFNGLCOMBINEROUTPUTNVPROC); -- ../include/SDL/SDL_opengl.h:5381 type PFNGLFINALCOMBINERINPUTNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLenum); pragma Convention (C, PFNGLFINALCOMBINERINPUTNVPROC); -- ../include/SDL/SDL_opengl.h:5382 type PFNGLGETCOMBINERINPUTPARAMETERFVNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLenum; arg5 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETCOMBINERINPUTPARAMETERFVNVPROC); -- ../include/SDL/SDL_opengl.h:5383 type PFNGLGETCOMBINERINPUTPARAMETERIVNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLenum; arg5 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETCOMBINERINPUTPARAMETERIVNVPROC); -- ../include/SDL/SDL_opengl.h:5384 type PFNGLGETCOMBINEROUTPUTPARAMETERFVNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLenum; arg4 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETCOMBINEROUTPUTPARAMETERFVNVPROC); -- ../include/SDL/SDL_opengl.h:5385 type PFNGLGETCOMBINEROUTPUTPARAMETERIVNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLenum; arg4 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETCOMBINEROUTPUTPARAMETERIVNVPROC); -- ../include/SDL/SDL_opengl.h:5386 type PFNGLGETFINALCOMBINERINPUTPARAMETERFVNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETFINALCOMBINERINPUTPARAMETERFVNVPROC); -- ../include/SDL/SDL_opengl.h:5387 type PFNGLGETFINALCOMBINERINPUTPARAMETERIVNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETFINALCOMBINERINPUTPARAMETERIVNVPROC); -- ../include/SDL/SDL_opengl.h:5388 type PFNGLRESIZEBUFFERSMESAPROC is access procedure; pragma Convention (C, PFNGLRESIZEBUFFERSMESAPROC); -- ../include/SDL/SDL_opengl.h:5412 type PFNGLWINDOWPOS2DMESAPROC is access procedure (arg1 : GL_gl_h.GLdouble; arg2 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLWINDOWPOS2DMESAPROC); -- ../include/SDL/SDL_opengl.h:5443 type PFNGLWINDOWPOS2DVMESAPROC is access procedure (arg1 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLWINDOWPOS2DVMESAPROC); -- ../include/SDL/SDL_opengl.h:5444 type PFNGLWINDOWPOS2FMESAPROC is access procedure (arg1 : GL_gl_h.GLfloat; arg2 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLWINDOWPOS2FMESAPROC); -- ../include/SDL/SDL_opengl.h:5445 type PFNGLWINDOWPOS2FVMESAPROC is access procedure (arg1 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLWINDOWPOS2FVMESAPROC); -- ../include/SDL/SDL_opengl.h:5446 type PFNGLWINDOWPOS2IMESAPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLint); pragma Convention (C, PFNGLWINDOWPOS2IMESAPROC); -- ../include/SDL/SDL_opengl.h:5447 type PFNGLWINDOWPOS2IVMESAPROC is access procedure (arg1 : access GL_gl_h.GLint); pragma Convention (C, PFNGLWINDOWPOS2IVMESAPROC); -- ../include/SDL/SDL_opengl.h:5448 type PFNGLWINDOWPOS2SMESAPROC is access procedure (arg1 : GL_gl_h.GLshort; arg2 : GL_gl_h.GLshort); pragma Convention (C, PFNGLWINDOWPOS2SMESAPROC); -- ../include/SDL/SDL_opengl.h:5449 type PFNGLWINDOWPOS2SVMESAPROC is access procedure (arg1 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLWINDOWPOS2SVMESAPROC); -- ../include/SDL/SDL_opengl.h:5450 type PFNGLWINDOWPOS3DMESAPROC is access procedure (arg1 : GL_gl_h.GLdouble; arg2 : GL_gl_h.GLdouble; arg3 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLWINDOWPOS3DMESAPROC); -- ../include/SDL/SDL_opengl.h:5451 type PFNGLWINDOWPOS3DVMESAPROC is access procedure (arg1 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLWINDOWPOS3DVMESAPROC); -- ../include/SDL/SDL_opengl.h:5452 type PFNGLWINDOWPOS3FMESAPROC is access procedure (arg1 : GL_gl_h.GLfloat; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLWINDOWPOS3FMESAPROC); -- ../include/SDL/SDL_opengl.h:5453 type PFNGLWINDOWPOS3FVMESAPROC is access procedure (arg1 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLWINDOWPOS3FVMESAPROC); -- ../include/SDL/SDL_opengl.h:5454 type PFNGLWINDOWPOS3IMESAPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint); pragma Convention (C, PFNGLWINDOWPOS3IMESAPROC); -- ../include/SDL/SDL_opengl.h:5455 type PFNGLWINDOWPOS3IVMESAPROC is access procedure (arg1 : access GL_gl_h.GLint); pragma Convention (C, PFNGLWINDOWPOS3IVMESAPROC); -- ../include/SDL/SDL_opengl.h:5456 type PFNGLWINDOWPOS3SMESAPROC is access procedure (arg1 : GL_gl_h.GLshort; arg2 : GL_gl_h.GLshort; arg3 : GL_gl_h.GLshort); pragma Convention (C, PFNGLWINDOWPOS3SMESAPROC); -- ../include/SDL/SDL_opengl.h:5457 type PFNGLWINDOWPOS3SVMESAPROC is access procedure (arg1 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLWINDOWPOS3SVMESAPROC); -- ../include/SDL/SDL_opengl.h:5458 type PFNGLWINDOWPOS4DMESAPROC is access procedure (arg1 : GL_gl_h.GLdouble; arg2 : GL_gl_h.GLdouble; arg3 : GL_gl_h.GLdouble; arg4 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLWINDOWPOS4DMESAPROC); -- ../include/SDL/SDL_opengl.h:5459 type PFNGLWINDOWPOS4DVMESAPROC is access procedure (arg1 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLWINDOWPOS4DVMESAPROC); -- ../include/SDL/SDL_opengl.h:5460 type PFNGLWINDOWPOS4FMESAPROC is access procedure (arg1 : GL_gl_h.GLfloat; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLWINDOWPOS4FMESAPROC); -- ../include/SDL/SDL_opengl.h:5461 type PFNGLWINDOWPOS4FVMESAPROC is access procedure (arg1 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLWINDOWPOS4FVMESAPROC); -- ../include/SDL/SDL_opengl.h:5462 type PFNGLWINDOWPOS4IMESAPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint); pragma Convention (C, PFNGLWINDOWPOS4IMESAPROC); -- ../include/SDL/SDL_opengl.h:5463 type PFNGLWINDOWPOS4IVMESAPROC is access procedure (arg1 : access GL_gl_h.GLint); pragma Convention (C, PFNGLWINDOWPOS4IVMESAPROC); -- ../include/SDL/SDL_opengl.h:5464 type PFNGLWINDOWPOS4SMESAPROC is access procedure (arg1 : GL_gl_h.GLshort; arg2 : GL_gl_h.GLshort; arg3 : GL_gl_h.GLshort; arg4 : GL_gl_h.GLshort); pragma Convention (C, PFNGLWINDOWPOS4SMESAPROC); -- ../include/SDL/SDL_opengl.h:5465 type PFNGLWINDOWPOS4SVMESAPROC is access procedure (arg1 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLWINDOWPOS4SVMESAPROC); -- ../include/SDL/SDL_opengl.h:5466 type PFNGLMULTIMODEDRAWARRAYSIBMPROC is access procedure (arg1 : access GL_gl_h.GLenum; arg2 : access GL_gl_h.GLint; arg3 : access GL_gl_h.GLsizei; arg4 : GL_gl_h.GLsizei; arg5 : GL_gl_h.GLint); pragma Convention (C, PFNGLMULTIMODEDRAWARRAYSIBMPROC); -- ../include/SDL/SDL_opengl.h:5479 type PFNGLMULTIMODEDRAWELEMENTSIBMPROC is access procedure (arg1 : access GL_gl_h.GLenum; arg2 : access GL_gl_h.GLsizei; arg3 : GL_gl_h.GLenum; arg4 : System.Address; arg5 : GL_gl_h.GLsizei; arg6 : GL_gl_h.GLint); pragma Convention (C, PFNGLMULTIMODEDRAWELEMENTSIBMPROC); -- ../include/SDL/SDL_opengl.h:5480 type PFNGLCOLORPOINTERLISTIBMPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLint; arg4 : System.Address; arg5 : GL_gl_h.GLint); pragma Convention (C, PFNGLCOLORPOINTERLISTIBMPROC); -- ../include/SDL/SDL_opengl.h:5495 type PFNGLSECONDARYCOLORPOINTERLISTIBMPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLint; arg4 : System.Address; arg5 : GL_gl_h.GLint); pragma Convention (C, PFNGLSECONDARYCOLORPOINTERLISTIBMPROC); -- ../include/SDL/SDL_opengl.h:5496 type PFNGLEDGEFLAGPOINTERLISTIBMPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : System.Address; arg3 : GL_gl_h.GLint); pragma Convention (C, PFNGLEDGEFLAGPOINTERLISTIBMPROC); -- ../include/SDL/SDL_opengl.h:5497 type PFNGLFOGCOORDPOINTERLISTIBMPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : System.Address; arg4 : GL_gl_h.GLint); pragma Convention (C, PFNGLFOGCOORDPOINTERLISTIBMPROC); -- ../include/SDL/SDL_opengl.h:5498 type PFNGLINDEXPOINTERLISTIBMPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : System.Address; arg4 : GL_gl_h.GLint); pragma Convention (C, PFNGLINDEXPOINTERLISTIBMPROC); -- ../include/SDL/SDL_opengl.h:5499 type PFNGLNORMALPOINTERLISTIBMPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : System.Address; arg4 : GL_gl_h.GLint); pragma Convention (C, PFNGLNORMALPOINTERLISTIBMPROC); -- ../include/SDL/SDL_opengl.h:5500 type PFNGLTEXCOORDPOINTERLISTIBMPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLint; arg4 : System.Address; arg5 : GL_gl_h.GLint); pragma Convention (C, PFNGLTEXCOORDPOINTERLISTIBMPROC); -- ../include/SDL/SDL_opengl.h:5501 type PFNGLVERTEXPOINTERLISTIBMPROC is access procedure (arg1 : GL_gl_h.GLint; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLint; arg4 : System.Address; arg5 : GL_gl_h.GLint); pragma Convention (C, PFNGLVERTEXPOINTERLISTIBMPROC); -- ../include/SDL/SDL_opengl.h:5502 type PFNGLTBUFFERMASK3DFXPROC is access procedure (arg1 : GL_gl_h.GLuint); pragma Convention (C, PFNGLTBUFFERMASK3DFXPROC); -- ../include/SDL/SDL_opengl.h:5534 type PFNGLSAMPLEMASKEXTPROC is access procedure (arg1 : GL_gl_h.GLclampf; arg2 : GL_gl_h.GLboolean); pragma Convention (C, PFNGLSAMPLEMASKEXTPROC); -- ../include/SDL/SDL_opengl.h:5543 type PFNGLSAMPLEPATTERNEXTPROC is access procedure (arg1 : GL_gl_h.GLenum); pragma Convention (C, PFNGLSAMPLEPATTERNEXTPROC); -- ../include/SDL/SDL_opengl.h:5544 type PFNGLTEXTURECOLORMASKSGISPROC is access procedure (arg1 : GL_gl_h.GLboolean; arg2 : GL_gl_h.GLboolean; arg3 : GL_gl_h.GLboolean; arg4 : GL_gl_h.GLboolean); pragma Convention (C, PFNGLTEXTURECOLORMASKSGISPROC); -- ../include/SDL/SDL_opengl.h:5568 type PFNGLIGLOOINTERFACESGIXPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : System.Address); pragma Convention (C, PFNGLIGLOOINTERFACESGIXPROC); -- ../include/SDL/SDL_opengl.h:5576 type PFNGLDELETEFENCESNVPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLDELETEFENCESNVPROC); -- ../include/SDL/SDL_opengl.h:5598 type PFNGLGENFENCESNVPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLGENFENCESNVPROC); -- ../include/SDL/SDL_opengl.h:5599 type PFNGLISFENCENVPROC is access function (arg1 : GL_gl_h.GLuint) return GL_gl_h.GLboolean; pragma Convention (C, PFNGLISFENCENVPROC); -- ../include/SDL/SDL_opengl.h:5600 type PFNGLTESTFENCENVPROC is access function (arg1 : GL_gl_h.GLuint) return GL_gl_h.GLboolean; pragma Convention (C, PFNGLTESTFENCENVPROC); -- ../include/SDL/SDL_opengl.h:5601 type PFNGLGETFENCEIVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETFENCEIVNVPROC); -- ../include/SDL/SDL_opengl.h:5602 type PFNGLFINISHFENCENVPROC is access procedure (arg1 : GL_gl_h.GLuint); pragma Convention (C, PFNGLFINISHFENCENVPROC); -- ../include/SDL/SDL_opengl.h:5603 type PFNGLSETFENCENVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum); pragma Convention (C, PFNGLSETFENCENVPROC); -- ../include/SDL/SDL_opengl.h:5604 type PFNGLMAPCONTROLPOINTSNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLsizei; arg5 : GL_gl_h.GLsizei; arg6 : GL_gl_h.GLint; arg7 : GL_gl_h.GLint; arg8 : GL_gl_h.GLboolean; arg9 : System.Address); pragma Convention (C, PFNGLMAPCONTROLPOINTSNVPROC); -- ../include/SDL/SDL_opengl.h:5620 type PFNGLMAPPARAMETERIVNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLMAPPARAMETERIVNVPROC); -- ../include/SDL/SDL_opengl.h:5621 type PFNGLMAPPARAMETERFVNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLMAPPARAMETERFVNVPROC); -- ../include/SDL/SDL_opengl.h:5622 type PFNGLGETMAPCONTROLPOINTSNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLsizei; arg5 : GL_gl_h.GLsizei; arg6 : GL_gl_h.GLboolean; arg7 : System.Address); pragma Convention (C, PFNGLGETMAPCONTROLPOINTSNVPROC); -- ../include/SDL/SDL_opengl.h:5623 type PFNGLGETMAPPARAMETERIVNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETMAPPARAMETERIVNVPROC); -- ../include/SDL/SDL_opengl.h:5624 type PFNGLGETMAPPARAMETERFVNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETMAPPARAMETERFVNVPROC); -- ../include/SDL/SDL_opengl.h:5625 type PFNGLGETMAPATTRIBPARAMETERIVNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLenum; arg4 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETMAPATTRIBPARAMETERIVNVPROC); -- ../include/SDL/SDL_opengl.h:5626 type PFNGLGETMAPATTRIBPARAMETERFVNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLenum; arg4 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETMAPATTRIBPARAMETERFVNVPROC); -- ../include/SDL/SDL_opengl.h:5627 type PFNGLEVALMAPSNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum); pragma Convention (C, PFNGLEVALMAPSNVPROC); -- ../include/SDL/SDL_opengl.h:5628 type PFNGLCOMBINERSTAGEPARAMETERFVNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLCOMBINERSTAGEPARAMETERFVNVPROC); -- ../include/SDL/SDL_opengl.h:5641 type PFNGLGETCOMBINERSTAGEPARAMETERFVNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETCOMBINERSTAGEPARAMETERFVNVPROC); -- ../include/SDL/SDL_opengl.h:5642 type PFNGLAREPROGRAMSRESIDENTNVPROC is access function (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint; arg3 : access GL_gl_h.GLboolean) return GL_gl_h.GLboolean; pragma Convention (C, PFNGLAREPROGRAMSRESIDENTNVPROC); -- ../include/SDL/SDL_opengl.h:5733 type PFNGLBINDPROGRAMNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint); pragma Convention (C, PFNGLBINDPROGRAMNVPROC); -- ../include/SDL/SDL_opengl.h:5734 type PFNGLDELETEPROGRAMSNVPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLDELETEPROGRAMSNVPROC); -- ../include/SDL/SDL_opengl.h:5735 type PFNGLEXECUTEPROGRAMNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLEXECUTEPROGRAMNVPROC); -- ../include/SDL/SDL_opengl.h:5736 type PFNGLGENPROGRAMSNVPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLGENPROGRAMSNVPROC); -- ../include/SDL/SDL_opengl.h:5737 type PFNGLGETPROGRAMPARAMETERDVNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLenum; arg4 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLGETPROGRAMPARAMETERDVNVPROC); -- ../include/SDL/SDL_opengl.h:5738 type PFNGLGETPROGRAMPARAMETERFVNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLenum; arg4 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETPROGRAMPARAMETERFVNVPROC); -- ../include/SDL/SDL_opengl.h:5739 type PFNGLGETPROGRAMIVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETPROGRAMIVNVPROC); -- ../include/SDL/SDL_opengl.h:5740 type PFNGLGETPROGRAMSTRINGNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLubyte); pragma Convention (C, PFNGLGETPROGRAMSTRINGNVPROC); -- ../include/SDL/SDL_opengl.h:5741 type PFNGLGETTRACKMATRIXIVNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLenum; arg4 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETTRACKMATRIXIVNVPROC); -- ../include/SDL/SDL_opengl.h:5742 type PFNGLGETVERTEXATTRIBDVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLGETVERTEXATTRIBDVNVPROC); -- ../include/SDL/SDL_opengl.h:5743 type PFNGLGETVERTEXATTRIBFVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETVERTEXATTRIBFVNVPROC); -- ../include/SDL/SDL_opengl.h:5744 type PFNGLGETVERTEXATTRIBIVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETVERTEXATTRIBIVNVPROC); -- ../include/SDL/SDL_opengl.h:5745 type PFNGLGETVERTEXATTRIBPOINTERVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : System.Address); pragma Convention (C, PFNGLGETVERTEXATTRIBPOINTERVNVPROC); -- ../include/SDL/SDL_opengl.h:5746 type PFNGLISPROGRAMNVPROC is access function (arg1 : GL_gl_h.GLuint) return GL_gl_h.GLboolean; pragma Convention (C, PFNGLISPROGRAMNVPROC); -- ../include/SDL/SDL_opengl.h:5747 type PFNGLLOADPROGRAMNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLsizei; arg4 : access GL_gl_h.GLubyte); pragma Convention (C, PFNGLLOADPROGRAMNVPROC); -- ../include/SDL/SDL_opengl.h:5748 type PFNGLPROGRAMPARAMETER4DNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLdouble; arg4 : GL_gl_h.GLdouble; arg5 : GL_gl_h.GLdouble; arg6 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLPROGRAMPARAMETER4DNVPROC); -- ../include/SDL/SDL_opengl.h:5749 type PFNGLPROGRAMPARAMETER4DVNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLPROGRAMPARAMETER4DVNVPROC); -- ../include/SDL/SDL_opengl.h:5750 type PFNGLPROGRAMPARAMETER4FNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat; arg5 : GL_gl_h.GLfloat; arg6 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLPROGRAMPARAMETER4FNVPROC); -- ../include/SDL/SDL_opengl.h:5751 type PFNGLPROGRAMPARAMETER4FVNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLPROGRAMPARAMETER4FVNVPROC); -- ../include/SDL/SDL_opengl.h:5752 type PFNGLPROGRAMPARAMETERS4DVNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLuint; arg4 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLPROGRAMPARAMETERS4DVNVPROC); -- ../include/SDL/SDL_opengl.h:5753 type PFNGLPROGRAMPARAMETERS4FVNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLuint; arg4 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLPROGRAMPARAMETERS4FVNVPROC); -- ../include/SDL/SDL_opengl.h:5754 type PFNGLREQUESTRESIDENTPROGRAMSNVPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLREQUESTRESIDENTPROGRAMSNVPROC); -- ../include/SDL/SDL_opengl.h:5755 type PFNGLTRACKMATRIXNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLenum); pragma Convention (C, PFNGLTRACKMATRIXNVPROC); -- ../include/SDL/SDL_opengl.h:5756 type PFNGLVERTEXATTRIBPOINTERNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLsizei; arg5 : System.Address); pragma Convention (C, PFNGLVERTEXATTRIBPOINTERNVPROC); -- ../include/SDL/SDL_opengl.h:5757 type PFNGLVERTEXATTRIB1DNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXATTRIB1DNVPROC); -- ../include/SDL/SDL_opengl.h:5758 type PFNGLVERTEXATTRIB1DVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXATTRIB1DVNVPROC); -- ../include/SDL/SDL_opengl.h:5759 type PFNGLVERTEXATTRIB1FNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXATTRIB1FNVPROC); -- ../include/SDL/SDL_opengl.h:5760 type PFNGLVERTEXATTRIB1FVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXATTRIB1FVNVPROC); -- ../include/SDL/SDL_opengl.h:5761 type PFNGLVERTEXATTRIB1SNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIB1SNVPROC); -- ../include/SDL/SDL_opengl.h:5762 type PFNGLVERTEXATTRIB1SVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIB1SVNVPROC); -- ../include/SDL/SDL_opengl.h:5763 type PFNGLVERTEXATTRIB2DNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLdouble; arg3 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXATTRIB2DNVPROC); -- ../include/SDL/SDL_opengl.h:5764 type PFNGLVERTEXATTRIB2DVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXATTRIB2DVNVPROC); -- ../include/SDL/SDL_opengl.h:5765 type PFNGLVERTEXATTRIB2FNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXATTRIB2FNVPROC); -- ../include/SDL/SDL_opengl.h:5766 type PFNGLVERTEXATTRIB2FVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXATTRIB2FVNVPROC); -- ../include/SDL/SDL_opengl.h:5767 type PFNGLVERTEXATTRIB2SNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLshort; arg3 : GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIB2SNVPROC); -- ../include/SDL/SDL_opengl.h:5768 type PFNGLVERTEXATTRIB2SVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIB2SVNVPROC); -- ../include/SDL/SDL_opengl.h:5769 type PFNGLVERTEXATTRIB3DNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLdouble; arg3 : GL_gl_h.GLdouble; arg4 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXATTRIB3DNVPROC); -- ../include/SDL/SDL_opengl.h:5770 type PFNGLVERTEXATTRIB3DVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXATTRIB3DVNVPROC); -- ../include/SDL/SDL_opengl.h:5771 type PFNGLVERTEXATTRIB3FNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXATTRIB3FNVPROC); -- ../include/SDL/SDL_opengl.h:5772 type PFNGLVERTEXATTRIB3FVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXATTRIB3FVNVPROC); -- ../include/SDL/SDL_opengl.h:5773 type PFNGLVERTEXATTRIB3SNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLshort; arg3 : GL_gl_h.GLshort; arg4 : GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIB3SNVPROC); -- ../include/SDL/SDL_opengl.h:5774 type PFNGLVERTEXATTRIB3SVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIB3SVNVPROC); -- ../include/SDL/SDL_opengl.h:5775 type PFNGLVERTEXATTRIB4DNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLdouble; arg3 : GL_gl_h.GLdouble; arg4 : GL_gl_h.GLdouble; arg5 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXATTRIB4DNVPROC); -- ../include/SDL/SDL_opengl.h:5776 type PFNGLVERTEXATTRIB4DVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXATTRIB4DVNVPROC); -- ../include/SDL/SDL_opengl.h:5777 type PFNGLVERTEXATTRIB4FNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat; arg5 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXATTRIB4FNVPROC); -- ../include/SDL/SDL_opengl.h:5778 type PFNGLVERTEXATTRIB4FVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXATTRIB4FVNVPROC); -- ../include/SDL/SDL_opengl.h:5779 type PFNGLVERTEXATTRIB4SNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLshort; arg3 : GL_gl_h.GLshort; arg4 : GL_gl_h.GLshort; arg5 : GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIB4SNVPROC); -- ../include/SDL/SDL_opengl.h:5780 type PFNGLVERTEXATTRIB4SVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIB4SVNVPROC); -- ../include/SDL/SDL_opengl.h:5781 type PFNGLVERTEXATTRIB4UBNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLubyte; arg3 : GL_gl_h.GLubyte; arg4 : GL_gl_h.GLubyte; arg5 : GL_gl_h.GLubyte); pragma Convention (C, PFNGLVERTEXATTRIB4UBNVPROC); -- ../include/SDL/SDL_opengl.h:5782 type PFNGLVERTEXATTRIB4UBVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLubyte); pragma Convention (C, PFNGLVERTEXATTRIB4UBVNVPROC); -- ../include/SDL/SDL_opengl.h:5783 type PFNGLVERTEXATTRIBS1DVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXATTRIBS1DVNVPROC); -- ../include/SDL/SDL_opengl.h:5784 type PFNGLVERTEXATTRIBS1FVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXATTRIBS1FVNVPROC); -- ../include/SDL/SDL_opengl.h:5785 type PFNGLVERTEXATTRIBS1SVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIBS1SVNVPROC); -- ../include/SDL/SDL_opengl.h:5786 type PFNGLVERTEXATTRIBS2DVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXATTRIBS2DVNVPROC); -- ../include/SDL/SDL_opengl.h:5787 type PFNGLVERTEXATTRIBS2FVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXATTRIBS2FVNVPROC); -- ../include/SDL/SDL_opengl.h:5788 type PFNGLVERTEXATTRIBS2SVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIBS2SVNVPROC); -- ../include/SDL/SDL_opengl.h:5789 type PFNGLVERTEXATTRIBS3DVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXATTRIBS3DVNVPROC); -- ../include/SDL/SDL_opengl.h:5790 type PFNGLVERTEXATTRIBS3FVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXATTRIBS3FVNVPROC); -- ../include/SDL/SDL_opengl.h:5791 type PFNGLVERTEXATTRIBS3SVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIBS3SVNVPROC); -- ../include/SDL/SDL_opengl.h:5792 type PFNGLVERTEXATTRIBS4DVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXATTRIBS4DVNVPROC); -- ../include/SDL/SDL_opengl.h:5793 type PFNGLVERTEXATTRIBS4FVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXATTRIBS4FVNVPROC); -- ../include/SDL/SDL_opengl.h:5794 type PFNGLVERTEXATTRIBS4SVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXATTRIBS4SVNVPROC); -- ../include/SDL/SDL_opengl.h:5795 type PFNGLVERTEXATTRIBS4UBVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLubyte); pragma Convention (C, PFNGLVERTEXATTRIBS4UBVNVPROC); -- ../include/SDL/SDL_opengl.h:5796 type PFNGLTEXBUMPPARAMETERIVATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLint); pragma Convention (C, PFNGLTEXBUMPPARAMETERIVATIPROC); -- ../include/SDL/SDL_opengl.h:5831 type PFNGLTEXBUMPPARAMETERFVATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLTEXBUMPPARAMETERFVATIPROC); -- ../include/SDL/SDL_opengl.h:5832 type PFNGLGETTEXBUMPPARAMETERIVATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETTEXBUMPPARAMETERIVATIPROC); -- ../include/SDL/SDL_opengl.h:5833 type PFNGLGETTEXBUMPPARAMETERFVATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETTEXBUMPPARAMETERFVATIPROC); -- ../include/SDL/SDL_opengl.h:5834 type PFNGLGENFRAGMENTSHADERSATIPROC is access function (arg1 : GL_gl_h.GLuint) return GL_gl_h.GLuint; pragma Convention (C, PFNGLGENFRAGMENTSHADERSATIPROC); -- ../include/SDL/SDL_opengl.h:5855 type PFNGLBINDFRAGMENTSHADERATIPROC is access procedure (arg1 : GL_gl_h.GLuint); pragma Convention (C, PFNGLBINDFRAGMENTSHADERATIPROC); -- ../include/SDL/SDL_opengl.h:5856 type PFNGLDELETEFRAGMENTSHADERATIPROC is access procedure (arg1 : GL_gl_h.GLuint); pragma Convention (C, PFNGLDELETEFRAGMENTSHADERATIPROC); -- ../include/SDL/SDL_opengl.h:5857 type PFNGLBEGINFRAGMENTSHADERATIPROC is access procedure; pragma Convention (C, PFNGLBEGINFRAGMENTSHADERATIPROC); -- ../include/SDL/SDL_opengl.h:5858 type PFNGLENDFRAGMENTSHADERATIPROC is access procedure; pragma Convention (C, PFNGLENDFRAGMENTSHADERATIPROC); -- ../include/SDL/SDL_opengl.h:5859 type PFNGLPASSTEXCOORDATIPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLenum); pragma Convention (C, PFNGLPASSTEXCOORDATIPROC); -- ../include/SDL/SDL_opengl.h:5860 type PFNGLSAMPLEMAPATIPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLenum); pragma Convention (C, PFNGLSAMPLEMAPATIPROC); -- ../include/SDL/SDL_opengl.h:5861 type PFNGLCOLORFRAGMENTOP1ATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLuint; arg4 : GL_gl_h.GLuint; arg5 : GL_gl_h.GLuint; arg6 : GL_gl_h.GLuint; arg7 : GL_gl_h.GLuint); pragma Convention (C, PFNGLCOLORFRAGMENTOP1ATIPROC); -- ../include/SDL/SDL_opengl.h:5862 type PFNGLCOLORFRAGMENTOP2ATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLuint; arg4 : GL_gl_h.GLuint; arg5 : GL_gl_h.GLuint; arg6 : GL_gl_h.GLuint; arg7 : GL_gl_h.GLuint; arg8 : GL_gl_h.GLuint; arg9 : GL_gl_h.GLuint; arg10 : GL_gl_h.GLuint); pragma Convention (C, PFNGLCOLORFRAGMENTOP2ATIPROC); -- ../include/SDL/SDL_opengl.h:5863 type PFNGLCOLORFRAGMENTOP3ATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLuint; arg4 : GL_gl_h.GLuint; arg5 : GL_gl_h.GLuint; arg6 : GL_gl_h.GLuint; arg7 : GL_gl_h.GLuint; arg8 : GL_gl_h.GLuint; arg9 : GL_gl_h.GLuint; arg10 : GL_gl_h.GLuint; arg11 : GL_gl_h.GLuint; arg12 : GL_gl_h.GLuint; arg13 : GL_gl_h.GLuint); pragma Convention (C, PFNGLCOLORFRAGMENTOP3ATIPROC); -- ../include/SDL/SDL_opengl.h:5864 type PFNGLALPHAFRAGMENTOP1ATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLuint; arg4 : GL_gl_h.GLuint; arg5 : GL_gl_h.GLuint; arg6 : GL_gl_h.GLuint); pragma Convention (C, PFNGLALPHAFRAGMENTOP1ATIPROC); -- ../include/SDL/SDL_opengl.h:5865 type PFNGLALPHAFRAGMENTOP2ATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLuint; arg4 : GL_gl_h.GLuint; arg5 : GL_gl_h.GLuint; arg6 : GL_gl_h.GLuint; arg7 : GL_gl_h.GLuint; arg8 : GL_gl_h.GLuint; arg9 : GL_gl_h.GLuint); pragma Convention (C, PFNGLALPHAFRAGMENTOP2ATIPROC); -- ../include/SDL/SDL_opengl.h:5866 type PFNGLALPHAFRAGMENTOP3ATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLuint; arg4 : GL_gl_h.GLuint; arg5 : GL_gl_h.GLuint; arg6 : GL_gl_h.GLuint; arg7 : GL_gl_h.GLuint; arg8 : GL_gl_h.GLuint; arg9 : GL_gl_h.GLuint; arg10 : GL_gl_h.GLuint; arg11 : GL_gl_h.GLuint; arg12 : GL_gl_h.GLuint); pragma Convention (C, PFNGLALPHAFRAGMENTOP3ATIPROC); -- ../include/SDL/SDL_opengl.h:5867 type PFNGLSETFRAGMENTSHADERCONSTANTATIPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLSETFRAGMENTSHADERCONSTANTATIPROC); -- ../include/SDL/SDL_opengl.h:5868 type PFNGLPNTRIANGLESIATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint); pragma Convention (C, PFNGLPNTRIANGLESIATIPROC); -- ../include/SDL/SDL_opengl.h:5877 type PFNGLPNTRIANGLESFATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLPNTRIANGLESFATIPROC); -- ../include/SDL/SDL_opengl.h:5878 type PFNGLNEWOBJECTBUFFERATIPROC is access function (arg1 : GL_gl_h.GLsizei; arg2 : System.Address; arg3 : GL_gl_h.GLenum) return GL_gl_h.GLuint; pragma Convention (C, PFNGLNEWOBJECTBUFFERATIPROC); -- ../include/SDL/SDL_opengl.h:5897 type PFNGLISOBJECTBUFFERATIPROC is access function (arg1 : GL_gl_h.GLuint) return GL_gl_h.GLboolean; pragma Convention (C, PFNGLISOBJECTBUFFERATIPROC); -- ../include/SDL/SDL_opengl.h:5898 type PFNGLUPDATEOBJECTBUFFERATIPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLsizei; arg4 : System.Address; arg5 : GL_gl_h.GLenum); pragma Convention (C, PFNGLUPDATEOBJECTBUFFERATIPROC); -- ../include/SDL/SDL_opengl.h:5899 type PFNGLGETOBJECTBUFFERFVATIPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETOBJECTBUFFERFVATIPROC); -- ../include/SDL/SDL_opengl.h:5900 type PFNGLGETOBJECTBUFFERIVATIPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETOBJECTBUFFERIVATIPROC); -- ../include/SDL/SDL_opengl.h:5901 type PFNGLFREEOBJECTBUFFERATIPROC is access procedure (arg1 : GL_gl_h.GLuint); pragma Convention (C, PFNGLFREEOBJECTBUFFERATIPROC); -- ../include/SDL/SDL_opengl.h:5902 type PFNGLARRAYOBJECTATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLsizei; arg5 : GL_gl_h.GLuint; arg6 : GL_gl_h.GLuint); pragma Convention (C, PFNGLARRAYOBJECTATIPROC); -- ../include/SDL/SDL_opengl.h:5903 type PFNGLGETARRAYOBJECTFVATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETARRAYOBJECTFVATIPROC); -- ../include/SDL/SDL_opengl.h:5904 type PFNGLGETARRAYOBJECTIVATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETARRAYOBJECTIVATIPROC); -- ../include/SDL/SDL_opengl.h:5905 type PFNGLVARIANTARRAYOBJECTATIPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLsizei; arg4 : GL_gl_h.GLuint; arg5 : GL_gl_h.GLuint); pragma Convention (C, PFNGLVARIANTARRAYOBJECTATIPROC); -- ../include/SDL/SDL_opengl.h:5906 type PFNGLGETVARIANTARRAYOBJECTFVATIPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETVARIANTARRAYOBJECTFVATIPROC); -- ../include/SDL/SDL_opengl.h:5907 type PFNGLGETVARIANTARRAYOBJECTIVATIPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETVARIANTARRAYOBJECTIVATIPROC); -- ../include/SDL/SDL_opengl.h:5908 type PFNGLBEGINVERTEXSHADEREXTPROC is access procedure; pragma Convention (C, PFNGLBEGINVERTEXSHADEREXTPROC); -- ../include/SDL/SDL_opengl.h:5957 type PFNGLENDVERTEXSHADEREXTPROC is access procedure; pragma Convention (C, PFNGLENDVERTEXSHADEREXTPROC); -- ../include/SDL/SDL_opengl.h:5958 type PFNGLBINDVERTEXSHADEREXTPROC is access procedure (arg1 : GL_gl_h.GLuint); pragma Convention (C, PFNGLBINDVERTEXSHADEREXTPROC); -- ../include/SDL/SDL_opengl.h:5959 type PFNGLGENVERTEXSHADERSEXTPROC is access function (arg1 : GL_gl_h.GLuint) return GL_gl_h.GLuint; pragma Convention (C, PFNGLGENVERTEXSHADERSEXTPROC); -- ../include/SDL/SDL_opengl.h:5960 type PFNGLDELETEVERTEXSHADEREXTPROC is access procedure (arg1 : GL_gl_h.GLuint); pragma Convention (C, PFNGLDELETEVERTEXSHADEREXTPROC); -- ../include/SDL/SDL_opengl.h:5961 type PFNGLSHADEROP1EXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLuint); pragma Convention (C, PFNGLSHADEROP1EXTPROC); -- ../include/SDL/SDL_opengl.h:5962 type PFNGLSHADEROP2EXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLuint; arg4 : GL_gl_h.GLuint); pragma Convention (C, PFNGLSHADEROP2EXTPROC); -- ../include/SDL/SDL_opengl.h:5963 type PFNGLSHADEROP3EXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLuint; arg4 : GL_gl_h.GLuint; arg5 : GL_gl_h.GLuint); pragma Convention (C, PFNGLSHADEROP3EXTPROC); -- ../include/SDL/SDL_opengl.h:5964 type PFNGLSWIZZLEEXTPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLenum; arg5 : GL_gl_h.GLenum; arg6 : GL_gl_h.GLenum); pragma Convention (C, PFNGLSWIZZLEEXTPROC); -- ../include/SDL/SDL_opengl.h:5965 type PFNGLWRITEMASKEXTPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLenum; arg5 : GL_gl_h.GLenum; arg6 : GL_gl_h.GLenum); pragma Convention (C, PFNGLWRITEMASKEXTPROC); -- ../include/SDL/SDL_opengl.h:5966 type PFNGLINSERTCOMPONENTEXTPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLuint); pragma Convention (C, PFNGLINSERTCOMPONENTEXTPROC); -- ../include/SDL/SDL_opengl.h:5967 type PFNGLEXTRACTCOMPONENTEXTPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLuint); pragma Convention (C, PFNGLEXTRACTCOMPONENTEXTPROC); -- ../include/SDL/SDL_opengl.h:5968 type PFNGLGENSYMBOLSEXTPROC is access function (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLuint) return GL_gl_h.GLuint; pragma Convention (C, PFNGLGENSYMBOLSEXTPROC); -- ../include/SDL/SDL_opengl.h:5969 type PFNGLSETINVARIANTEXTPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : System.Address); pragma Convention (C, PFNGLSETINVARIANTEXTPROC); -- ../include/SDL/SDL_opengl.h:5970 type PFNGLSETLOCALCONSTANTEXTPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : System.Address); pragma Convention (C, PFNGLSETLOCALCONSTANTEXTPROC); -- ../include/SDL/SDL_opengl.h:5971 type PFNGLVARIANTBVEXTPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLbyte); pragma Convention (C, PFNGLVARIANTBVEXTPROC); -- ../include/SDL/SDL_opengl.h:5972 type PFNGLVARIANTSVEXTPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLVARIANTSVEXTPROC); -- ../include/SDL/SDL_opengl.h:5973 type PFNGLVARIANTIVEXTPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLint); pragma Convention (C, PFNGLVARIANTIVEXTPROC); -- ../include/SDL/SDL_opengl.h:5974 type PFNGLVARIANTFVEXTPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLVARIANTFVEXTPROC); -- ../include/SDL/SDL_opengl.h:5975 type PFNGLVARIANTDVEXTPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLVARIANTDVEXTPROC); -- ../include/SDL/SDL_opengl.h:5976 type PFNGLVARIANTUBVEXTPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLubyte); pragma Convention (C, PFNGLVARIANTUBVEXTPROC); -- ../include/SDL/SDL_opengl.h:5977 type PFNGLVARIANTUSVEXTPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLushort); pragma Convention (C, PFNGLVARIANTUSVEXTPROC); -- ../include/SDL/SDL_opengl.h:5978 type PFNGLVARIANTUIVEXTPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLVARIANTUIVEXTPROC); -- ../include/SDL/SDL_opengl.h:5979 type PFNGLVARIANTPOINTEREXTPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLuint; arg4 : System.Address); pragma Convention (C, PFNGLVARIANTPOINTEREXTPROC); -- ../include/SDL/SDL_opengl.h:5980 type PFNGLENABLEVARIANTCLIENTSTATEEXTPROC is access procedure (arg1 : GL_gl_h.GLuint); pragma Convention (C, PFNGLENABLEVARIANTCLIENTSTATEEXTPROC); -- ../include/SDL/SDL_opengl.h:5981 type PFNGLDISABLEVARIANTCLIENTSTATEEXTPROC is access procedure (arg1 : GL_gl_h.GLuint); pragma Convention (C, PFNGLDISABLEVARIANTCLIENTSTATEEXTPROC); -- ../include/SDL/SDL_opengl.h:5982 type PFNGLBINDLIGHTPARAMETEREXTPROC is access function (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum) return GL_gl_h.GLuint; pragma Convention (C, PFNGLBINDLIGHTPARAMETEREXTPROC); -- ../include/SDL/SDL_opengl.h:5983 type PFNGLBINDMATERIALPARAMETEREXTPROC is access function (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum) return GL_gl_h.GLuint; pragma Convention (C, PFNGLBINDMATERIALPARAMETEREXTPROC); -- ../include/SDL/SDL_opengl.h:5984 type PFNGLBINDTEXGENPARAMETEREXTPROC is access function (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLenum) return GL_gl_h.GLuint; pragma Convention (C, PFNGLBINDTEXGENPARAMETEREXTPROC); -- ../include/SDL/SDL_opengl.h:5985 type PFNGLBINDTEXTUREUNITPARAMETEREXTPROC is access function (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum) return GL_gl_h.GLuint; pragma Convention (C, PFNGLBINDTEXTUREUNITPARAMETEREXTPROC); -- ../include/SDL/SDL_opengl.h:5986 type PFNGLBINDPARAMETEREXTPROC is access function (arg1 : GL_gl_h.GLenum) return GL_gl_h.GLuint; pragma Convention (C, PFNGLBINDPARAMETEREXTPROC); -- ../include/SDL/SDL_opengl.h:5987 type PFNGLISVARIANTENABLEDEXTPROC is access function (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum) return GL_gl_h.GLboolean; pragma Convention (C, PFNGLISVARIANTENABLEDEXTPROC); -- ../include/SDL/SDL_opengl.h:5988 type PFNGLGETVARIANTBOOLEANVEXTPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLboolean); pragma Convention (C, PFNGLGETVARIANTBOOLEANVEXTPROC); -- ../include/SDL/SDL_opengl.h:5989 type PFNGLGETVARIANTINTEGERVEXTPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETVARIANTINTEGERVEXTPROC); -- ../include/SDL/SDL_opengl.h:5990 type PFNGLGETVARIANTFLOATVEXTPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETVARIANTFLOATVEXTPROC); -- ../include/SDL/SDL_opengl.h:5991 type PFNGLGETVARIANTPOINTERVEXTPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : System.Address); pragma Convention (C, PFNGLGETVARIANTPOINTERVEXTPROC); -- ../include/SDL/SDL_opengl.h:5992 type PFNGLGETINVARIANTBOOLEANVEXTPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLboolean); pragma Convention (C, PFNGLGETINVARIANTBOOLEANVEXTPROC); -- ../include/SDL/SDL_opengl.h:5993 type PFNGLGETINVARIANTINTEGERVEXTPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETINVARIANTINTEGERVEXTPROC); -- ../include/SDL/SDL_opengl.h:5994 type PFNGLGETINVARIANTFLOATVEXTPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETINVARIANTFLOATVEXTPROC); -- ../include/SDL/SDL_opengl.h:5995 type PFNGLGETLOCALCONSTANTBOOLEANVEXTPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLboolean); pragma Convention (C, PFNGLGETLOCALCONSTANTBOOLEANVEXTPROC); -- ../include/SDL/SDL_opengl.h:5996 type PFNGLGETLOCALCONSTANTINTEGERVEXTPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETLOCALCONSTANTINTEGERVEXTPROC); -- ../include/SDL/SDL_opengl.h:5997 type PFNGLGETLOCALCONSTANTFLOATVEXTPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETLOCALCONSTANTFLOATVEXTPROC); -- ../include/SDL/SDL_opengl.h:5998 type PFNGLVERTEXSTREAM1SATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXSTREAM1SATIPROC); -- ../include/SDL/SDL_opengl.h:6050 type PFNGLVERTEXSTREAM1SVATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXSTREAM1SVATIPROC); -- ../include/SDL/SDL_opengl.h:6051 type PFNGLVERTEXSTREAM1IATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint); pragma Convention (C, PFNGLVERTEXSTREAM1IATIPROC); -- ../include/SDL/SDL_opengl.h:6052 type PFNGLVERTEXSTREAM1IVATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLint); pragma Convention (C, PFNGLVERTEXSTREAM1IVATIPROC); -- ../include/SDL/SDL_opengl.h:6053 type PFNGLVERTEXSTREAM1FATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXSTREAM1FATIPROC); -- ../include/SDL/SDL_opengl.h:6054 type PFNGLVERTEXSTREAM1FVATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXSTREAM1FVATIPROC); -- ../include/SDL/SDL_opengl.h:6055 type PFNGLVERTEXSTREAM1DATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXSTREAM1DATIPROC); -- ../include/SDL/SDL_opengl.h:6056 type PFNGLVERTEXSTREAM1DVATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXSTREAM1DVATIPROC); -- ../include/SDL/SDL_opengl.h:6057 type PFNGLVERTEXSTREAM2SATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLshort; arg3 : GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXSTREAM2SATIPROC); -- ../include/SDL/SDL_opengl.h:6058 type PFNGLVERTEXSTREAM2SVATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXSTREAM2SVATIPROC); -- ../include/SDL/SDL_opengl.h:6059 type PFNGLVERTEXSTREAM2IATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint); pragma Convention (C, PFNGLVERTEXSTREAM2IATIPROC); -- ../include/SDL/SDL_opengl.h:6060 type PFNGLVERTEXSTREAM2IVATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLint); pragma Convention (C, PFNGLVERTEXSTREAM2IVATIPROC); -- ../include/SDL/SDL_opengl.h:6061 type PFNGLVERTEXSTREAM2FATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXSTREAM2FATIPROC); -- ../include/SDL/SDL_opengl.h:6062 type PFNGLVERTEXSTREAM2FVATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXSTREAM2FVATIPROC); -- ../include/SDL/SDL_opengl.h:6063 type PFNGLVERTEXSTREAM2DATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLdouble; arg3 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXSTREAM2DATIPROC); -- ../include/SDL/SDL_opengl.h:6064 type PFNGLVERTEXSTREAM2DVATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXSTREAM2DVATIPROC); -- ../include/SDL/SDL_opengl.h:6065 type PFNGLVERTEXSTREAM3SATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLshort; arg3 : GL_gl_h.GLshort; arg4 : GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXSTREAM3SATIPROC); -- ../include/SDL/SDL_opengl.h:6066 type PFNGLVERTEXSTREAM3SVATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXSTREAM3SVATIPROC); -- ../include/SDL/SDL_opengl.h:6067 type PFNGLVERTEXSTREAM3IATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint); pragma Convention (C, PFNGLVERTEXSTREAM3IATIPROC); -- ../include/SDL/SDL_opengl.h:6068 type PFNGLVERTEXSTREAM3IVATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLint); pragma Convention (C, PFNGLVERTEXSTREAM3IVATIPROC); -- ../include/SDL/SDL_opengl.h:6069 type PFNGLVERTEXSTREAM3FATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXSTREAM3FATIPROC); -- ../include/SDL/SDL_opengl.h:6070 type PFNGLVERTEXSTREAM3FVATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXSTREAM3FVATIPROC); -- ../include/SDL/SDL_opengl.h:6071 type PFNGLVERTEXSTREAM3DATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLdouble; arg3 : GL_gl_h.GLdouble; arg4 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXSTREAM3DATIPROC); -- ../include/SDL/SDL_opengl.h:6072 type PFNGLVERTEXSTREAM3DVATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXSTREAM3DVATIPROC); -- ../include/SDL/SDL_opengl.h:6073 type PFNGLVERTEXSTREAM4SATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLshort; arg3 : GL_gl_h.GLshort; arg4 : GL_gl_h.GLshort; arg5 : GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXSTREAM4SATIPROC); -- ../include/SDL/SDL_opengl.h:6074 type PFNGLVERTEXSTREAM4SVATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLVERTEXSTREAM4SVATIPROC); -- ../include/SDL/SDL_opengl.h:6075 type PFNGLVERTEXSTREAM4IATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLint); pragma Convention (C, PFNGLVERTEXSTREAM4IATIPROC); -- ../include/SDL/SDL_opengl.h:6076 type PFNGLVERTEXSTREAM4IVATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLint); pragma Convention (C, PFNGLVERTEXSTREAM4IVATIPROC); -- ../include/SDL/SDL_opengl.h:6077 type PFNGLVERTEXSTREAM4FATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat; arg5 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXSTREAM4FATIPROC); -- ../include/SDL/SDL_opengl.h:6078 type PFNGLVERTEXSTREAM4FVATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXSTREAM4FVATIPROC); -- ../include/SDL/SDL_opengl.h:6079 type PFNGLVERTEXSTREAM4DATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLdouble; arg3 : GL_gl_h.GLdouble; arg4 : GL_gl_h.GLdouble; arg5 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXSTREAM4DATIPROC); -- ../include/SDL/SDL_opengl.h:6080 type PFNGLVERTEXSTREAM4DVATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLVERTEXSTREAM4DVATIPROC); -- ../include/SDL/SDL_opengl.h:6081 type PFNGLNORMALSTREAM3BATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLbyte; arg3 : GL_gl_h.GLbyte; arg4 : GL_gl_h.GLbyte); pragma Convention (C, PFNGLNORMALSTREAM3BATIPROC); -- ../include/SDL/SDL_opengl.h:6082 type PFNGLNORMALSTREAM3BVATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLbyte); pragma Convention (C, PFNGLNORMALSTREAM3BVATIPROC); -- ../include/SDL/SDL_opengl.h:6083 type PFNGLNORMALSTREAM3SATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLshort; arg3 : GL_gl_h.GLshort; arg4 : GL_gl_h.GLshort); pragma Convention (C, PFNGLNORMALSTREAM3SATIPROC); -- ../include/SDL/SDL_opengl.h:6084 type PFNGLNORMALSTREAM3SVATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLshort); pragma Convention (C, PFNGLNORMALSTREAM3SVATIPROC); -- ../include/SDL/SDL_opengl.h:6085 type PFNGLNORMALSTREAM3IATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLint); pragma Convention (C, PFNGLNORMALSTREAM3IATIPROC); -- ../include/SDL/SDL_opengl.h:6086 type PFNGLNORMALSTREAM3IVATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLint); pragma Convention (C, PFNGLNORMALSTREAM3IVATIPROC); -- ../include/SDL/SDL_opengl.h:6087 type PFNGLNORMALSTREAM3FATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLfloat; arg3 : GL_gl_h.GLfloat; arg4 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLNORMALSTREAM3FATIPROC); -- ../include/SDL/SDL_opengl.h:6088 type PFNGLNORMALSTREAM3FVATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLNORMALSTREAM3FVATIPROC); -- ../include/SDL/SDL_opengl.h:6089 type PFNGLNORMALSTREAM3DATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLdouble; arg3 : GL_gl_h.GLdouble; arg4 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLNORMALSTREAM3DATIPROC); -- ../include/SDL/SDL_opengl.h:6090 type PFNGLNORMALSTREAM3DVATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLNORMALSTREAM3DVATIPROC); -- ../include/SDL/SDL_opengl.h:6091 type PFNGLCLIENTACTIVEVERTEXSTREAMATIPROC is access procedure (arg1 : GL_gl_h.GLenum); pragma Convention (C, PFNGLCLIENTACTIVEVERTEXSTREAMATIPROC); -- ../include/SDL/SDL_opengl.h:6092 type PFNGLVERTEXBLENDENVIATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint); pragma Convention (C, PFNGLVERTEXBLENDENVIATIPROC); -- ../include/SDL/SDL_opengl.h:6093 type PFNGLVERTEXBLENDENVFATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLVERTEXBLENDENVFATIPROC); -- ../include/SDL/SDL_opengl.h:6094 type PFNGLELEMENTPOINTERATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : System.Address); pragma Convention (C, PFNGLELEMENTPOINTERATIPROC); -- ../include/SDL/SDL_opengl.h:6104 type PFNGLDRAWELEMENTARRAYATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLsizei); pragma Convention (C, PFNGLDRAWELEMENTARRAYATIPROC); -- ../include/SDL/SDL_opengl.h:6105 type PFNGLDRAWRANGEELEMENTARRAYATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLuint; arg4 : GL_gl_h.GLsizei); pragma Convention (C, PFNGLDRAWRANGEELEMENTARRAYATIPROC); -- ../include/SDL/SDL_opengl.h:6106 type PFNGLDRAWMESHARRAYSSUNPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLsizei; arg4 : GL_gl_h.GLsizei); pragma Convention (C, PFNGLDRAWMESHARRAYSSUNPROC); -- ../include/SDL/SDL_opengl.h:6114 type PFNGLGENOCCLUSIONQUERIESNVPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLGENOCCLUSIONQUERIESNVPROC); -- ../include/SDL/SDL_opengl.h:6140 type PFNGLDELETEOCCLUSIONQUERIESNVPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLDELETEOCCLUSIONQUERIESNVPROC); -- ../include/SDL/SDL_opengl.h:6141 type PFNGLISOCCLUSIONQUERYNVPROC is access function (arg1 : GL_gl_h.GLuint) return GL_gl_h.GLboolean; pragma Convention (C, PFNGLISOCCLUSIONQUERYNVPROC); -- ../include/SDL/SDL_opengl.h:6142 type PFNGLBEGINOCCLUSIONQUERYNVPROC is access procedure (arg1 : GL_gl_h.GLuint); pragma Convention (C, PFNGLBEGINOCCLUSIONQUERYNVPROC); -- ../include/SDL/SDL_opengl.h:6143 type PFNGLENDOCCLUSIONQUERYNVPROC is access procedure; pragma Convention (C, PFNGLENDOCCLUSIONQUERYNVPROC); -- ../include/SDL/SDL_opengl.h:6144 type PFNGLGETOCCLUSIONQUERYIVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETOCCLUSIONQUERYIVNVPROC); -- ../include/SDL/SDL_opengl.h:6145 type PFNGLGETOCCLUSIONQUERYUIVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLGETOCCLUSIONQUERYUIVNVPROC); -- ../include/SDL/SDL_opengl.h:6146 type PFNGLPOINTPARAMETERINVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint); pragma Convention (C, PFNGLPOINTPARAMETERINVPROC); -- ../include/SDL/SDL_opengl.h:6155 type PFNGLPOINTPARAMETERIVNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLint); pragma Convention (C, PFNGLPOINTPARAMETERIVNVPROC); -- ../include/SDL/SDL_opengl.h:6156 type PFNGLACTIVESTENCILFACEEXTPROC is access procedure (arg1 : GL_gl_h.GLenum); pragma Convention (C, PFNGLACTIVESTENCILFACEEXTPROC); -- ../include/SDL/SDL_opengl.h:6176 type PFNGLELEMENTPOINTERAPPLEPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : System.Address); pragma Convention (C, PFNGLELEMENTPOINTERAPPLEPROC); -- ../include/SDL/SDL_opengl.h:6196 type PFNGLDRAWELEMENTARRAYAPPLEPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLsizei); pragma Convention (C, PFNGLDRAWELEMENTARRAYAPPLEPROC); -- ../include/SDL/SDL_opengl.h:6197 type PFNGLDRAWRANGEELEMENTARRAYAPPLEPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLuint; arg4 : GL_gl_h.GLint; arg5 : GL_gl_h.GLsizei); pragma Convention (C, PFNGLDRAWRANGEELEMENTARRAYAPPLEPROC); -- ../include/SDL/SDL_opengl.h:6198 type PFNGLMULTIDRAWELEMENTARRAYAPPLEPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GL_gl_h.GLint; arg3 : access GL_gl_h.GLsizei; arg4 : GL_gl_h.GLsizei); pragma Convention (C, PFNGLMULTIDRAWELEMENTARRAYAPPLEPROC); -- ../include/SDL/SDL_opengl.h:6199 type PFNGLMULTIDRAWRANGEELEMENTARRAYAPPLEPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint; arg3 : GL_gl_h.GLuint; arg4 : access GL_gl_h.GLint; arg5 : access GL_gl_h.GLsizei; arg6 : GL_gl_h.GLsizei); pragma Convention (C, PFNGLMULTIDRAWRANGEELEMENTARRAYAPPLEPROC); -- ../include/SDL/SDL_opengl.h:6200 type PFNGLGENFENCESAPPLEPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLGENFENCESAPPLEPROC); -- ../include/SDL/SDL_opengl.h:6215 type PFNGLDELETEFENCESAPPLEPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLDELETEFENCESAPPLEPROC); -- ../include/SDL/SDL_opengl.h:6216 type PFNGLSETFENCEAPPLEPROC is access procedure (arg1 : GL_gl_h.GLuint); pragma Convention (C, PFNGLSETFENCEAPPLEPROC); -- ../include/SDL/SDL_opengl.h:6217 type PFNGLISFENCEAPPLEPROC is access function (arg1 : GL_gl_h.GLuint) return GL_gl_h.GLboolean; pragma Convention (C, PFNGLISFENCEAPPLEPROC); -- ../include/SDL/SDL_opengl.h:6218 type PFNGLTESTFENCEAPPLEPROC is access function (arg1 : GL_gl_h.GLuint) return GL_gl_h.GLboolean; pragma Convention (C, PFNGLTESTFENCEAPPLEPROC); -- ../include/SDL/SDL_opengl.h:6219 type PFNGLFINISHFENCEAPPLEPROC is access procedure (arg1 : GL_gl_h.GLuint); pragma Convention (C, PFNGLFINISHFENCEAPPLEPROC); -- ../include/SDL/SDL_opengl.h:6220 type PFNGLTESTOBJECTAPPLEPROC is access function (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint) return GL_gl_h.GLboolean; pragma Convention (C, PFNGLTESTOBJECTAPPLEPROC); -- ../include/SDL/SDL_opengl.h:6221 type PFNGLFINISHOBJECTAPPLEPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint); pragma Convention (C, PFNGLFINISHOBJECTAPPLEPROC); -- ../include/SDL/SDL_opengl.h:6222 type PFNGLBINDVERTEXARRAYAPPLEPROC is access procedure (arg1 : GL_gl_h.GLuint); pragma Convention (C, PFNGLBINDVERTEXARRAYAPPLEPROC); -- ../include/SDL/SDL_opengl.h:6233 type PFNGLDELETEVERTEXARRAYSAPPLEPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLDELETEVERTEXARRAYSAPPLEPROC); -- ../include/SDL/SDL_opengl.h:6234 type PFNGLGENVERTEXARRAYSAPPLEPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLGENVERTEXARRAYSAPPLEPROC); -- ../include/SDL/SDL_opengl.h:6235 type PFNGLISVERTEXARRAYAPPLEPROC is access function (arg1 : GL_gl_h.GLuint) return GL_gl_h.GLboolean; pragma Convention (C, PFNGLISVERTEXARRAYAPPLEPROC); -- ../include/SDL/SDL_opengl.h:6236 type PFNGLVERTEXARRAYRANGEAPPLEPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : System.Address); pragma Convention (C, PFNGLVERTEXARRAYRANGEAPPLEPROC); -- ../include/SDL/SDL_opengl.h:6246 type PFNGLFLUSHVERTEXARRAYRANGEAPPLEPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : System.Address); pragma Convention (C, PFNGLFLUSHVERTEXARRAYRANGEAPPLEPROC); -- ../include/SDL/SDL_opengl.h:6247 type PFNGLVERTEXARRAYPARAMETERIAPPLEPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLint); pragma Convention (C, PFNGLVERTEXARRAYPARAMETERIAPPLEPROC); -- ../include/SDL/SDL_opengl.h:6248 type PFNGLDRAWBUFFERSATIPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLenum); pragma Convention (C, PFNGLDRAWBUFFERSATIPROC); -- ../include/SDL/SDL_opengl.h:6264 type PFNGLPROGRAMNAMEDPARAMETER4FNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLubyte; arg4 : GL_gl_h.GLfloat; arg5 : GL_gl_h.GLfloat; arg6 : GL_gl_h.GLfloat; arg7 : GL_gl_h.GLfloat); pragma Convention (C, PFNGLPROGRAMNAMEDPARAMETER4FNVPROC); -- ../include/SDL/SDL_opengl.h:6297 type PFNGLPROGRAMNAMEDPARAMETER4DNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLubyte; arg4 : GL_gl_h.GLdouble; arg5 : GL_gl_h.GLdouble; arg6 : GL_gl_h.GLdouble; arg7 : GL_gl_h.GLdouble); pragma Convention (C, PFNGLPROGRAMNAMEDPARAMETER4DNVPROC); -- ../include/SDL/SDL_opengl.h:6298 type PFNGLPROGRAMNAMEDPARAMETER4FVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLubyte; arg4 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLPROGRAMNAMEDPARAMETER4FVNVPROC); -- ../include/SDL/SDL_opengl.h:6299 type PFNGLPROGRAMNAMEDPARAMETER4DVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLubyte; arg4 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLPROGRAMNAMEDPARAMETER4DVNVPROC); -- ../include/SDL/SDL_opengl.h:6300 type PFNGLGETPROGRAMNAMEDPARAMETERFVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLubyte; arg4 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETPROGRAMNAMEDPARAMETERFVNVPROC); -- ../include/SDL/SDL_opengl.h:6301 type PFNGLGETPROGRAMNAMEDPARAMETERDVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLsizei; arg3 : access GL_gl_h.GLubyte; arg4 : access GL_gl_h.GLdouble); pragma Convention (C, PFNGLGETPROGRAMNAMEDPARAMETERDVNVPROC); -- ../include/SDL/SDL_opengl.h:6302 type PFNGLVERTEX2HNVPROC is access procedure (arg1 : GLhalfNV; arg2 : GLhalfNV); pragma Convention (C, PFNGLVERTEX2HNVPROC); -- ../include/SDL/SDL_opengl.h:6355 type PFNGLVERTEX2HVNVPROC is access procedure (arg1 : access GLhalfNV); pragma Convention (C, PFNGLVERTEX2HVNVPROC); -- ../include/SDL/SDL_opengl.h:6356 type PFNGLVERTEX3HNVPROC is access procedure (arg1 : GLhalfNV; arg2 : GLhalfNV; arg3 : GLhalfNV); pragma Convention (C, PFNGLVERTEX3HNVPROC); -- ../include/SDL/SDL_opengl.h:6357 type PFNGLVERTEX3HVNVPROC is access procedure (arg1 : access GLhalfNV); pragma Convention (C, PFNGLVERTEX3HVNVPROC); -- ../include/SDL/SDL_opengl.h:6358 type PFNGLVERTEX4HNVPROC is access procedure (arg1 : GLhalfNV; arg2 : GLhalfNV; arg3 : GLhalfNV; arg4 : GLhalfNV); pragma Convention (C, PFNGLVERTEX4HNVPROC); -- ../include/SDL/SDL_opengl.h:6359 type PFNGLVERTEX4HVNVPROC is access procedure (arg1 : access GLhalfNV); pragma Convention (C, PFNGLVERTEX4HVNVPROC); -- ../include/SDL/SDL_opengl.h:6360 type PFNGLNORMAL3HNVPROC is access procedure (arg1 : GLhalfNV; arg2 : GLhalfNV; arg3 : GLhalfNV); pragma Convention (C, PFNGLNORMAL3HNVPROC); -- ../include/SDL/SDL_opengl.h:6361 type PFNGLNORMAL3HVNVPROC is access procedure (arg1 : access GLhalfNV); pragma Convention (C, PFNGLNORMAL3HVNVPROC); -- ../include/SDL/SDL_opengl.h:6362 type PFNGLCOLOR3HNVPROC is access procedure (arg1 : GLhalfNV; arg2 : GLhalfNV; arg3 : GLhalfNV); pragma Convention (C, PFNGLCOLOR3HNVPROC); -- ../include/SDL/SDL_opengl.h:6363 type PFNGLCOLOR3HVNVPROC is access procedure (arg1 : access GLhalfNV); pragma Convention (C, PFNGLCOLOR3HVNVPROC); -- ../include/SDL/SDL_opengl.h:6364 type PFNGLCOLOR4HNVPROC is access procedure (arg1 : GLhalfNV; arg2 : GLhalfNV; arg3 : GLhalfNV; arg4 : GLhalfNV); pragma Convention (C, PFNGLCOLOR4HNVPROC); -- ../include/SDL/SDL_opengl.h:6365 type PFNGLCOLOR4HVNVPROC is access procedure (arg1 : access GLhalfNV); pragma Convention (C, PFNGLCOLOR4HVNVPROC); -- ../include/SDL/SDL_opengl.h:6366 type PFNGLTEXCOORD1HNVPROC is access procedure (arg1 : GLhalfNV); pragma Convention (C, PFNGLTEXCOORD1HNVPROC); -- ../include/SDL/SDL_opengl.h:6367 type PFNGLTEXCOORD1HVNVPROC is access procedure (arg1 : access GLhalfNV); pragma Convention (C, PFNGLTEXCOORD1HVNVPROC); -- ../include/SDL/SDL_opengl.h:6368 type PFNGLTEXCOORD2HNVPROC is access procedure (arg1 : GLhalfNV; arg2 : GLhalfNV); pragma Convention (C, PFNGLTEXCOORD2HNVPROC); -- ../include/SDL/SDL_opengl.h:6369 type PFNGLTEXCOORD2HVNVPROC is access procedure (arg1 : access GLhalfNV); pragma Convention (C, PFNGLTEXCOORD2HVNVPROC); -- ../include/SDL/SDL_opengl.h:6370 type PFNGLTEXCOORD3HNVPROC is access procedure (arg1 : GLhalfNV; arg2 : GLhalfNV; arg3 : GLhalfNV); pragma Convention (C, PFNGLTEXCOORD3HNVPROC); -- ../include/SDL/SDL_opengl.h:6371 type PFNGLTEXCOORD3HVNVPROC is access procedure (arg1 : access GLhalfNV); pragma Convention (C, PFNGLTEXCOORD3HVNVPROC); -- ../include/SDL/SDL_opengl.h:6372 type PFNGLTEXCOORD4HNVPROC is access procedure (arg1 : GLhalfNV; arg2 : GLhalfNV; arg3 : GLhalfNV; arg4 : GLhalfNV); pragma Convention (C, PFNGLTEXCOORD4HNVPROC); -- ../include/SDL/SDL_opengl.h:6373 type PFNGLTEXCOORD4HVNVPROC is access procedure (arg1 : access GLhalfNV); pragma Convention (C, PFNGLTEXCOORD4HVNVPROC); -- ../include/SDL/SDL_opengl.h:6374 type PFNGLMULTITEXCOORD1HNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GLhalfNV); pragma Convention (C, PFNGLMULTITEXCOORD1HNVPROC); -- ../include/SDL/SDL_opengl.h:6375 type PFNGLMULTITEXCOORD1HVNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GLhalfNV); pragma Convention (C, PFNGLMULTITEXCOORD1HVNVPROC); -- ../include/SDL/SDL_opengl.h:6376 type PFNGLMULTITEXCOORD2HNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GLhalfNV; arg3 : GLhalfNV); pragma Convention (C, PFNGLMULTITEXCOORD2HNVPROC); -- ../include/SDL/SDL_opengl.h:6377 type PFNGLMULTITEXCOORD2HVNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GLhalfNV); pragma Convention (C, PFNGLMULTITEXCOORD2HVNVPROC); -- ../include/SDL/SDL_opengl.h:6378 type PFNGLMULTITEXCOORD3HNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GLhalfNV; arg3 : GLhalfNV; arg4 : GLhalfNV); pragma Convention (C, PFNGLMULTITEXCOORD3HNVPROC); -- ../include/SDL/SDL_opengl.h:6379 type PFNGLMULTITEXCOORD3HVNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GLhalfNV); pragma Convention (C, PFNGLMULTITEXCOORD3HVNVPROC); -- ../include/SDL/SDL_opengl.h:6380 type PFNGLMULTITEXCOORD4HNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GLhalfNV; arg3 : GLhalfNV; arg4 : GLhalfNV; arg5 : GLhalfNV); pragma Convention (C, PFNGLMULTITEXCOORD4HNVPROC); -- ../include/SDL/SDL_opengl.h:6381 type PFNGLMULTITEXCOORD4HVNVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : access GLhalfNV); pragma Convention (C, PFNGLMULTITEXCOORD4HVNVPROC); -- ../include/SDL/SDL_opengl.h:6382 type PFNGLFOGCOORDHNVPROC is access procedure (arg1 : GLhalfNV); pragma Convention (C, PFNGLFOGCOORDHNVPROC); -- ../include/SDL/SDL_opengl.h:6383 type PFNGLFOGCOORDHVNVPROC is access procedure (arg1 : access GLhalfNV); pragma Convention (C, PFNGLFOGCOORDHVNVPROC); -- ../include/SDL/SDL_opengl.h:6384 type PFNGLSECONDARYCOLOR3HNVPROC is access procedure (arg1 : GLhalfNV; arg2 : GLhalfNV; arg3 : GLhalfNV); pragma Convention (C, PFNGLSECONDARYCOLOR3HNVPROC); -- ../include/SDL/SDL_opengl.h:6385 type PFNGLSECONDARYCOLOR3HVNVPROC is access procedure (arg1 : access GLhalfNV); pragma Convention (C, PFNGLSECONDARYCOLOR3HVNVPROC); -- ../include/SDL/SDL_opengl.h:6386 type PFNGLVERTEXWEIGHTHNVPROC is access procedure (arg1 : GLhalfNV); pragma Convention (C, PFNGLVERTEXWEIGHTHNVPROC); -- ../include/SDL/SDL_opengl.h:6387 type PFNGLVERTEXWEIGHTHVNVPROC is access procedure (arg1 : access GLhalfNV); pragma Convention (C, PFNGLVERTEXWEIGHTHVNVPROC); -- ../include/SDL/SDL_opengl.h:6388 type PFNGLVERTEXATTRIB1HNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GLhalfNV); pragma Convention (C, PFNGLVERTEXATTRIB1HNVPROC); -- ../include/SDL/SDL_opengl.h:6389 type PFNGLVERTEXATTRIB1HVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GLhalfNV); pragma Convention (C, PFNGLVERTEXATTRIB1HVNVPROC); -- ../include/SDL/SDL_opengl.h:6390 type PFNGLVERTEXATTRIB2HNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GLhalfNV; arg3 : GLhalfNV); pragma Convention (C, PFNGLVERTEXATTRIB2HNVPROC); -- ../include/SDL/SDL_opengl.h:6391 type PFNGLVERTEXATTRIB2HVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GLhalfNV); pragma Convention (C, PFNGLVERTEXATTRIB2HVNVPROC); -- ../include/SDL/SDL_opengl.h:6392 type PFNGLVERTEXATTRIB3HNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GLhalfNV; arg3 : GLhalfNV; arg4 : GLhalfNV); pragma Convention (C, PFNGLVERTEXATTRIB3HNVPROC); -- ../include/SDL/SDL_opengl.h:6393 type PFNGLVERTEXATTRIB3HVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GLhalfNV); pragma Convention (C, PFNGLVERTEXATTRIB3HVNVPROC); -- ../include/SDL/SDL_opengl.h:6394 type PFNGLVERTEXATTRIB4HNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GLhalfNV; arg3 : GLhalfNV; arg4 : GLhalfNV; arg5 : GLhalfNV); pragma Convention (C, PFNGLVERTEXATTRIB4HNVPROC); -- ../include/SDL/SDL_opengl.h:6395 type PFNGLVERTEXATTRIB4HVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : access GLhalfNV); pragma Convention (C, PFNGLVERTEXATTRIB4HVNVPROC); -- ../include/SDL/SDL_opengl.h:6396 type PFNGLVERTEXATTRIBS1HVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLsizei; arg3 : access GLhalfNV); pragma Convention (C, PFNGLVERTEXATTRIBS1HVNVPROC); -- ../include/SDL/SDL_opengl.h:6397 type PFNGLVERTEXATTRIBS2HVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLsizei; arg3 : access GLhalfNV); pragma Convention (C, PFNGLVERTEXATTRIBS2HVNVPROC); -- ../include/SDL/SDL_opengl.h:6398 type PFNGLVERTEXATTRIBS3HVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLsizei; arg3 : access GLhalfNV); pragma Convention (C, PFNGLVERTEXATTRIBS3HVNVPROC); -- ../include/SDL/SDL_opengl.h:6399 type PFNGLVERTEXATTRIBS4HVNVPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLsizei; arg3 : access GLhalfNV); pragma Convention (C, PFNGLVERTEXATTRIBS4HVNVPROC); -- ../include/SDL/SDL_opengl.h:6400 type PFNGLPIXELDATARANGENVPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLsizei; arg3 : System.Address); pragma Convention (C, PFNGLPIXELDATARANGENVPROC); -- ../include/SDL/SDL_opengl.h:6409 type PFNGLFLUSHPIXELDATARANGENVPROC is access procedure (arg1 : GL_gl_h.GLenum); pragma Convention (C, PFNGLFLUSHPIXELDATARANGENVPROC); -- ../include/SDL/SDL_opengl.h:6410 type PFNGLPRIMITIVERESTARTNVPROC is access procedure; pragma Convention (C, PFNGLPRIMITIVERESTARTNVPROC); -- ../include/SDL/SDL_opengl.h:6419 type PFNGLPRIMITIVERESTARTINDEXNVPROC is access procedure (arg1 : GL_gl_h.GLuint); pragma Convention (C, PFNGLPRIMITIVERESTARTINDEXNVPROC); -- ../include/SDL/SDL_opengl.h:6420 type PFNGLMAPOBJECTBUFFERATIPROC is access function (arg1 : GL_gl_h.GLuint) return System.Address; pragma Convention (C, PFNGLMAPOBJECTBUFFERATIPROC); -- ../include/SDL/SDL_opengl.h:6437 type PFNGLUNMAPOBJECTBUFFERATIPROC is access procedure (arg1 : GL_gl_h.GLuint); pragma Convention (C, PFNGLUNMAPOBJECTBUFFERATIPROC); -- ../include/SDL/SDL_opengl.h:6438 type PFNGLSTENCILOPSEPARATEATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLenum); pragma Convention (C, PFNGLSTENCILOPSEPARATEATIPROC); -- ../include/SDL/SDL_opengl.h:6447 type PFNGLSTENCILFUNCSEPARATEATIPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLint; arg4 : GL_gl_h.GLuint); pragma Convention (C, PFNGLSTENCILFUNCSEPARATEATIPROC); -- ../include/SDL/SDL_opengl.h:6448 type PFNGLVERTEXATTRIBARRAYOBJECTATIPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLint; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLboolean; arg5 : GL_gl_h.GLsizei; arg6 : GL_gl_h.GLuint; arg7 : GL_gl_h.GLuint); pragma Convention (C, PFNGLVERTEXATTRIBARRAYOBJECTATIPROC); -- ../include/SDL/SDL_opengl.h:6458 type PFNGLGETVERTEXATTRIBARRAYOBJECTFVATIPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLfloat); pragma Convention (C, PFNGLGETVERTEXATTRIBARRAYOBJECTFVATIPROC); -- ../include/SDL/SDL_opengl.h:6459 type PFNGLGETVERTEXATTRIBARRAYOBJECTIVATIPROC is access procedure (arg1 : GL_gl_h.GLuint; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETVERTEXATTRIBARRAYOBJECTIVATIPROC); -- ../include/SDL/SDL_opengl.h:6460 type PFNGLDEPTHBOUNDSEXTPROC is access procedure (arg1 : GL_gl_h.GLclampd; arg2 : GL_gl_h.GLclampd); pragma Convention (C, PFNGLDEPTHBOUNDSEXTPROC); -- ../include/SDL/SDL_opengl.h:6472 type PFNGLBLENDEQUATIONSEPARATEEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum); pragma Convention (C, PFNGLBLENDEQUATIONSEPARATEEXTPROC); -- ../include/SDL/SDL_opengl.h:6484 type PFNGLISRENDERBUFFEREXTPROC is access function (arg1 : GL_gl_h.GLuint) return GL_gl_h.GLboolean; pragma Convention (C, PFNGLISRENDERBUFFEREXTPROC); -- ../include/SDL/SDL_opengl.h:6536 type PFNGLBINDRENDERBUFFEREXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint); pragma Convention (C, PFNGLBINDRENDERBUFFEREXTPROC); -- ../include/SDL/SDL_opengl.h:6537 type PFNGLDELETERENDERBUFFERSEXTPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLDELETERENDERBUFFERSEXTPROC); -- ../include/SDL/SDL_opengl.h:6538 type PFNGLGENRENDERBUFFERSEXTPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLGENRENDERBUFFERSEXTPROC); -- ../include/SDL/SDL_opengl.h:6539 type PFNGLRENDERBUFFERSTORAGEEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLsizei; arg4 : GL_gl_h.GLsizei); pragma Convention (C, PFNGLRENDERBUFFERSTORAGEEXTPROC); -- ../include/SDL/SDL_opengl.h:6540 type PFNGLGETRENDERBUFFERPARAMETERIVEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETRENDERBUFFERPARAMETERIVEXTPROC); -- ../include/SDL/SDL_opengl.h:6541 type PFNGLISFRAMEBUFFEREXTPROC is access function (arg1 : GL_gl_h.GLuint) return GL_gl_h.GLboolean; pragma Convention (C, PFNGLISFRAMEBUFFEREXTPROC); -- ../include/SDL/SDL_opengl.h:6542 type PFNGLBINDFRAMEBUFFEREXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLuint); pragma Convention (C, PFNGLBINDFRAMEBUFFEREXTPROC); -- ../include/SDL/SDL_opengl.h:6543 type PFNGLDELETEFRAMEBUFFERSEXTPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLDELETEFRAMEBUFFERSEXTPROC); -- ../include/SDL/SDL_opengl.h:6544 type PFNGLGENFRAMEBUFFERSEXTPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : access GL_gl_h.GLuint); pragma Convention (C, PFNGLGENFRAMEBUFFERSEXTPROC); -- ../include/SDL/SDL_opengl.h:6545 type PFNGLCHECKFRAMEBUFFERSTATUSEXTPROC is access function (arg1 : GL_gl_h.GLenum) return GL_gl_h.GLenum; pragma Convention (C, PFNGLCHECKFRAMEBUFFERSTATUSEXTPROC); -- ../include/SDL/SDL_opengl.h:6546 type PFNGLFRAMEBUFFERTEXTURE1DEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLuint; arg5 : GL_gl_h.GLint); pragma Convention (C, PFNGLFRAMEBUFFERTEXTURE1DEXTPROC); -- ../include/SDL/SDL_opengl.h:6547 type PFNGLFRAMEBUFFERTEXTURE2DEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLuint; arg5 : GL_gl_h.GLint); pragma Convention (C, PFNGLFRAMEBUFFERTEXTURE2DEXTPROC); -- ../include/SDL/SDL_opengl.h:6548 type PFNGLFRAMEBUFFERTEXTURE3DEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLuint; arg5 : GL_gl_h.GLint; arg6 : GL_gl_h.GLint); pragma Convention (C, PFNGLFRAMEBUFFERTEXTURE3DEXTPROC); -- ../include/SDL/SDL_opengl.h:6549 type PFNGLFRAMEBUFFERRENDERBUFFEREXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLenum; arg4 : GL_gl_h.GLuint); pragma Convention (C, PFNGLFRAMEBUFFERRENDERBUFFEREXTPROC); -- ../include/SDL/SDL_opengl.h:6550 type PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVEXTPROC is access procedure (arg1 : GL_gl_h.GLenum; arg2 : GL_gl_h.GLenum; arg3 : GL_gl_h.GLenum; arg4 : access GL_gl_h.GLint); pragma Convention (C, PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVEXTPROC); -- ../include/SDL/SDL_opengl.h:6551 type PFNGLGENERATEMIPMAPEXTPROC is access procedure (arg1 : GL_gl_h.GLenum); pragma Convention (C, PFNGLGENERATEMIPMAPEXTPROC); -- ../include/SDL/SDL_opengl.h:6552 type PFNGLSTRINGMARKERGREMEDYPROC is access procedure (arg1 : GL_gl_h.GLsizei; arg2 : System.Address); pragma Convention (C, PFNGLSTRINGMARKERGREMEDYPROC); -- ../include/SDL/SDL_opengl.h:6560 end SDL_SDL_opengl_h;
persan/advent-of-code-2020
Ada
57
ads
package Adventofcode.Day_18 is end Adventofcode.Day_18;
reznikmm/matreshka
Ada
4,085
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with ODF.DOM.Db_Append_Table_Alias_Name_Attributes; package Matreshka.ODF_Db.Append_Table_Alias_Name_Attributes is type Db_Append_Table_Alias_Name_Attribute_Node is new Matreshka.ODF_Db.Abstract_Db_Attribute_Node and ODF.DOM.Db_Append_Table_Alias_Name_Attributes.ODF_Db_Append_Table_Alias_Name_Attribute with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Db_Append_Table_Alias_Name_Attribute_Node; overriding function Get_Local_Name (Self : not null access constant Db_Append_Table_Alias_Name_Attribute_Node) return League.Strings.Universal_String; end Matreshka.ODF_Db.Append_Table_Alias_Name_Attributes;
onox/orka
Ada
2,081
ads
-- SPDX-License-Identifier: Apache-2.0 -- -- Copyright (c) 2020 onox <[email protected]> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. package EGL.Errors is pragma Preelaborate; -- Not Pure because Error_Flag can change with each call type Error_Code is (Success, Not_Initialized, Bad_Access, Bad_Alloc, Bad_Attribute, Bad_Config, Bad_Context, Bad_Current_Surface, Bad_Display, Bad_Match, Bad_Native_Pixmap, Bad_Native_Window, Bad_Parameter, Bad_Surface, Context_Lost, Bad_Device); Context_Lost_Error : exception; Not_Initialized_Error : exception; Invalid_Operation_Error : exception; Invalid_Value_Error : exception; Internal_Error : exception; procedure Raise_Exception_On_EGL_Error with Inline; private for Error_Code use (Success => 16#3000#, Not_Initialized => 16#3001#, Bad_Access => 16#3002#, Bad_Alloc => 16#3003#, Bad_Attribute => 16#3004#, Bad_Config => 16#3005#, Bad_Context => 16#3006#, Bad_Current_Surface => 16#3007#, Bad_Display => 16#3008#, Bad_Match => 16#3009#, Bad_Native_Pixmap => 16#300A#, Bad_Native_Window => 16#300B#, Bad_Parameter => 16#300C#, Bad_Surface => 16#300D#, Context_Lost => 16#300E#, Bad_Device => 16#322B#); for Error_Code'Size use Enum'Size; end EGL.Errors;
reznikmm/matreshka
Ada
4,573
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.DOM_Documents; with Matreshka.ODF_String_Constants; with ODF.DOM.Iterators; with ODF.DOM.Visitors; package body Matreshka.ODF_Db.Encoding_Attributes is ------------ -- Create -- ------------ overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Db_Encoding_Attribute_Node is begin return Self : Db_Encoding_Attribute_Node do Matreshka.ODF_Db.Constructors.Initialize (Self'Unchecked_Access, Parameters.Document, Matreshka.ODF_String_Constants.Db_Prefix); end return; end Create; -------------------- -- Get_Local_Name -- -------------------- overriding function Get_Local_Name (Self : not null access constant Db_Encoding_Attribute_Node) return League.Strings.Universal_String is pragma Unreferenced (Self); begin return Matreshka.ODF_String_Constants.Encoding_Attribute; end Get_Local_Name; begin Matreshka.DOM_Documents.Register_Attribute (Matreshka.ODF_String_Constants.Db_URI, Matreshka.ODF_String_Constants.Encoding_Attribute, Db_Encoding_Attribute_Node'Tag); end Matreshka.ODF_Db.Encoding_Attributes;
stcarrez/dynamo
Ada
3,105
adb
----------------------------------------------------------------------- -- gen-model-beans -- Ada Bean declarations -- Copyright (C) 2012, 2013, 2018, 2021, 2022 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Gen.Model.Mappings; package body Gen.Model.Beans is -- ------------------------------ -- Get the value identified by the name. -- If the name cannot be found, the method should return the Null object. -- ------------------------------ overriding function Get_Value (From : in Bean_Definition; Name : in String) return UBO.Object is begin if Name = "members" or else Name = "columns" then return From.Members_Bean; elsif Name = "type" then return UBO.To_Object (From.Type_Name); elsif Name = "isBean" then return UBO.To_Object (True); else return Tables.Table_Definition (From).Get_Value (Name); end if; end Get_Value; -- ------------------------------ -- Create an attribute with the given name and add it to the bean. -- ------------------------------ procedure Add_Attribute (Bean : in out Bean_Definition; Name : in UString; Column : out Gen.Model.Tables.Column_Definition_Access) is begin Column := new Gen.Model.Tables.Column_Definition; Column.Set_Name (Name); Column.Sql_Name := Name; Column.Number := Bean.Members.Get_Count; Column.Table := Bean'Unchecked_Access; Bean.Members.Append (Column); end Add_Attribute; -- ------------------------------ -- Create a table with the given name. -- ------------------------------ function Create_Bean (Name : in UString) return Bean_Definition_Access is use Ada.Strings.Unbounded; Bean : constant Bean_Definition_Access := new Bean_Definition; begin Bean.Kind := Mappings.T_BEAN; Bean.Set_Name (Name); declare Pos : constant Natural := Index (Bean.Name, ".", Ada.Strings.Backward); begin if Pos > 0 then Bean.Pkg_Name := Unbounded_Slice (Bean.Name, 1, Pos - 1); Bean.Type_Name := Unbounded_Slice (Bean.Name, Pos + 1, Length (Bean.Name)); else Bean.Pkg_Name := To_UString ("ADO"); Bean.Type_Name := Bean.Name; end if; end; return Bean; end Create_Bean; end Gen.Model.Beans;
reznikmm/matreshka
Ada
4,717
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Visitors; with ODF.DOM.Text_Sender_Fax_Elements; package Matreshka.ODF_Text.Sender_Fax_Elements is type Text_Sender_Fax_Element_Node is new Matreshka.ODF_Text.Abstract_Text_Element_Node and ODF.DOM.Text_Sender_Fax_Elements.ODF_Text_Sender_Fax with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Elements.Element_L2_Parameters) return Text_Sender_Fax_Element_Node; overriding function Get_Local_Name (Self : not null access constant Text_Sender_Fax_Element_Node) return League.Strings.Universal_String; overriding procedure Enter_Node (Self : not null access Text_Sender_Fax_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Leave_Node (Self : not null access Text_Sender_Fax_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Visit_Node (Self : not null access Text_Sender_Fax_Element_Node; Iterator : in out XML.DOM.Visitors.Abstract_Iterator'Class; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); end Matreshka.ODF_Text.Sender_Fax_Elements;
zhmu/ananas
Ada
548
ads
pragma No_Component_Reordering; package Pack27_Pkg is type Enum is (One, Two, Three); type Rec1 (D : Enum := One) is record case D is when One => null; when Two => null; when Three => C : Character; end case; end record; pragma Pack (Rec1); type Rec2 is record R : Rec1; end record; pragma Pack (Rec2); type Rec3 is record B : boolean; R : Rec2; end record; pragma Pack (Rec3); type Rec4 is record B : Boolean; R : Rec3; end record; pragma Pack (Rec4); end Pack27_Pkg;
zhmu/ananas
Ada
8,390
ads
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . A R I T H _ D O U B L E -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2022, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package provides software routines for doing arithmetic on "double" -- signed integer values in cases where either overflow checking is required, -- or intermediate results are longer than the result type. with Ada.Numerics.Big_Numbers.Big_Integers_Ghost; use Ada.Numerics.Big_Numbers.Big_Integers_Ghost; generic type Double_Int is range <>; type Double_Uns is mod <>; type Single_Uns is mod <>; with function Shift_Left (A : Double_Uns; B : Natural) return Double_Uns is <>; with function Shift_Right (A : Double_Uns; B : Natural) return Double_Uns is <>; with function Shift_Left (A : Single_Uns; B : Natural) return Single_Uns is <>; package System.Arith_Double with Pure, SPARK_Mode is -- Preconditions in this unit are meant for analysis only, not for run-time -- checking, so that the expected exceptions are raised. This is enforced -- by setting the corresponding assertion policy to Ignore. Postconditions -- and contract cases should not be executed at runtime as well, in order -- not to slow down the execution of these functions. pragma Assertion_Policy (Pre => Ignore, Post => Ignore, Contract_Cases => Ignore, Ghost => Ignore); package Signed_Conversion is new Signed_Conversions (Int => Double_Int); function Big (Arg : Double_Int) return Big_Integer is (Signed_Conversion.To_Big_Integer (Arg)) with Ghost; package Unsigned_Conversion is new Unsigned_Conversions (Int => Double_Uns); function Big (Arg : Double_Uns) return Big_Integer is (Unsigned_Conversion.To_Big_Integer (Arg)) with Ghost; function In_Double_Int_Range (Arg : Big_Integer) return Boolean is (In_Range (Arg, Big (Double_Int'First), Big (Double_Int'Last))) with Ghost; function Add_With_Ovflo_Check (X, Y : Double_Int) return Double_Int with Pre => In_Double_Int_Range (Big (X) + Big (Y)), Post => Add_With_Ovflo_Check'Result = X + Y; -- Raises Constraint_Error if sum of operands overflows Double_Int, -- otherwise returns the signed integer sum. function Subtract_With_Ovflo_Check (X, Y : Double_Int) return Double_Int with Pre => In_Double_Int_Range (Big (X) - Big (Y)), Post => Subtract_With_Ovflo_Check'Result = X - Y; -- Raises Constraint_Error if difference of operands overflows Double_Int, -- otherwise returns the signed integer difference. function Multiply_With_Ovflo_Check (X, Y : Double_Int) return Double_Int with Pre => In_Double_Int_Range (Big (X) * Big (Y)), Post => Multiply_With_Ovflo_Check'Result = X * Y; pragma Convention (C, Multiply_With_Ovflo_Check); -- Raises Constraint_Error if product of operands overflows Double_Int, -- otherwise returns the signed integer product. Gigi may also call this -- routine directly. function Same_Sign (X, Y : Big_Integer) return Boolean is (X = Big (Double_Int'(0)) or else Y = Big (Double_Int'(0)) or else (X < Big (Double_Int'(0))) = (Y < Big (Double_Int'(0)))) with Ghost; function Round_Quotient (X, Y, Q, R : Big_Integer) return Big_Integer is (if abs R > (abs Y - Big (Double_Int'(1))) / Big (Double_Int'(2)) then (if Same_Sign (X, Y) then Q + Big (Double_Int'(1)) else Q - Big (Double_Int'(1))) else Q) with Ghost, Pre => Y /= 0 and then Q = X / Y and then R = X rem Y; procedure Scaled_Divide (X, Y, Z : Double_Int; Q, R : out Double_Int; Round : Boolean) with Pre => Z /= 0 and then In_Double_Int_Range (if Round then Round_Quotient (Big (X) * Big (Y), Big (Z), Big (X) * Big (Y) / Big (Z), Big (X) * Big (Y) rem Big (Z)) else Big (X) * Big (Y) / Big (Z)), Post => Big (R) = Big (X) * Big (Y) rem Big (Z) and then (if Round then Big (Q) = Round_Quotient (Big (X) * Big (Y), Big (Z), Big (X) * Big (Y) / Big (Z), Big (R)) else Big (Q) = Big (X) * Big (Y) / Big (Z)); -- Performs the division of (X * Y) / Z, storing the quotient in Q -- and the remainder in R. Constraint_Error is raised if Z is zero, -- or if the quotient does not fit in Double_Int. Round indicates if -- the result should be rounded. If Round is False, then Q, R are -- the normal quotient and remainder from a truncating division. -- If Round is True, then Q is the rounded quotient. The remainder -- R is not affected by the setting of the Round flag. procedure Double_Divide (X, Y, Z : Double_Int; Q, R : out Double_Int; Round : Boolean) with Pre => Y /= 0 and then Z /= 0 and then In_Double_Int_Range (if Round then Round_Quotient (Big (X), Big (Y) * Big (Z), Big (X) / (Big (Y) * Big (Z)), Big (X) rem (Big (Y) * Big (Z))) else Big (X) / (Big (Y) * Big (Z))), Post => Big (R) = Big (X) rem (Big (Y) * Big (Z)) and then (if Round then Big (Q) = Round_Quotient (Big (X), Big (Y) * Big (Z), Big (X) / (Big (Y) * Big (Z)), Big (R)) else Big (Q) = Big (X) / (Big (Y) * Big (Z))); -- Performs the division X / (Y * Z), storing the quotient in Q and -- the remainder in R. Constraint_Error is raised if Y or Z is zero, -- or if the quotient does not fit in Double_Int. Round indicates if the -- result should be rounded. If Round is False, then Q, R are the normal -- quotient and remainder from a truncating division. If Round is True, -- then Q is the rounded quotient. The remainder R is not affected by the -- setting of the Round flag. end System.Arith_Double;
rguilloteau/pok
Ada
4,744
ads
-- POK header -- -- The following file is a part of the POK project. Any modification should -- be made according to the POK licence. You CANNOT use this file or a part -- of a file for your own project. -- -- For more information on the POK licence, please see our LICENCE FILE -- -- Please follow the coding guidelines described in doc/CODING_GUIDELINES -- -- Copyright (c) 2007-2020 POK team -- --------------------------------------------------------------------------- -- -- -- PROCESS constant and type definitions and management services -- -- -- -- --------------------------------------------------------------------------- package APEX.Processes is Max_Number_Of_Processes : constant := System_Limit_Number_Of_Processes; Min_Priority_Value : constant := 0; Max_Priority_Value : constant := 249; Max_Lock_Level : constant := 32; subtype Process_Name_Type is Name_Type; type Process_Id_Type is private; Null_Process_Id : constant Process_Id_Type; subtype Lock_Level_Type is APEX_Integer range 0 .. Max_Lock_Level; subtype Stack_Size_Type is APEX_Unsigned; subtype Waiting_Range_Type is APEX_Integer range 0 .. Max_Number_Of_Processes; subtype Priority_Type is APEX_Integer range Min_Priority_Value .. Max_Priority_Value; type Process_State_Type is (Dormant, Ready, Running, Waiting); type Deadline_Type is (Soft, Hard); type Process_Attribute_Type is record Period : System_Time_Type; Time_Capacity : System_Time_Type; Entry_Point : System_Address_Type; Stack_Size : Stack_Size_Type; Base_Priority : Priority_Type; Deadline : Deadline_Type; Name : Process_Name_Type; end record; type Process_Status_Type is record Deadline_Time : System_Time_Type; Current_Priority : Priority_Type; Process_State : Process_State_Type; Attributes : Process_Attribute_Type; end record; procedure Create_Process (Attributes : in Process_Attribute_Type; Process_Id : out Process_Id_Type; Return_Code : out Return_Code_Type); procedure Set_Priority (Process_Id : in Process_Id_Type; Priority : in Priority_Type; Return_Code : out Return_Code_Type); procedure Suspend_Self (Time_Out : in System_Time_Type; Return_Code : out Return_Code_Type); procedure Suspend (Process_Id : in Process_Id_Type; Return_Code : out Return_Code_Type); procedure Resume (Process_Id : in Process_Id_Type; Return_Code : out Return_Code_Type); procedure Stop_Self; procedure Stop (Process_Id : in Process_Id_Type; Return_Code : out Return_Code_Type); procedure Start (Process_Id : in Process_Id_Type; Return_Code : out Return_Code_Type); procedure Delayed_Start (Process_Id : in Process_Id_Type; Delay_Time : in System_Time_Type; Return_Code : out Return_Code_Type); procedure Lock_Preemption (Lock_Level : out Lock_Level_Type; Return_Code : out Return_Code_Type); procedure Unlock_Preemption (Lock_Level : out Lock_Level_Type; Return_Code : out Return_Code_Type); procedure Get_My_Id (Process_Id : out Process_Id_Type; Return_Code : out Return_Code_Type); procedure Get_Process_Id (Process_Name : in Process_Name_Type; Process_Id : out Process_Id_Type; Return_Code : out Return_Code_Type); procedure Get_Process_Status (Process_Id : in Process_Id_Type; Process_Status : out Process_Status_Type; Return_Code : out Return_Code_Type); private type Process_ID_Type is new APEX_Integer; Null_Process_Id : constant Process_Id_Type := 0; pragma Convention (C, Process_State_Type); pragma Convention (C, Deadline_Type); pragma Convention (C, Process_Attribute_Type); pragma Convention (C, Process_Status_Type); -- POK BINDINGS pragma Import (C, Create_Process, "CREATE_PROCESS"); pragma Import (C, Set_Priority, "SET_PRIORITY"); pragma Import (C, Suspend_Self, "SUSPEND_SELF"); pragma Import (C, Suspend, "SUSPEND"); pragma Import (C, Resume, "SUSPEND"); pragma Import (C, Stop_Self, "STOP_SELF"); pragma Import (C, Stop, "STOP"); pragma Import (C, Start, "START"); pragma Import (C, Delayed_Start, "DELAYED_START"); pragma Import (C, Lock_Preemption, "LOCK_PREEMPTION"); pragma Import (C, Unlock_Preemption, "UNLOCK_PREEMPTION"); pragma Import (C, Get_My_Id, "GET_MY_ID"); pragma Import (C, Get_Process_Id, "GET_PROCESS_ID"); pragma Import (C, Get_Process_Status, "GET_PROCESS_STATUS"); -- END OF POK BINDINGS end APEX.Processes;
Jellix/elan520
Ada
1,227
adb
------------------------------------------------------------------------ -- Copyright (C) 2005-2020 by <[email protected]> -- -- -- -- This work is free. You can redistribute it and/or modify it under -- -- the terms of the Do What The Fuck You Want To Public License, -- -- Version 2, as published by Sam Hocevar. See the LICENSE file for -- -- more details. -- ------------------------------------------------------------------------ pragma License (Unrestricted); ------------------------------------------------------------------------ -- AMD Élan(tm) SC 520 embedded microprocessor -- -- MMCR -> Software Timer Registers implementation -- ------------------------------------------------------------------------ package body Elan520.Software_Timer_Registers is function To_Microseconds (Timer_Read : in Timer) return Full_Microseconds is begin return USEC_IN_MSEC * Timer_Read.Ms_Cnt + Timer_Read.Us_Cnt; end To_Microseconds; pragma Pure_Function (To_Microseconds); end Elan520.Software_Timer_Registers;
reznikmm/matreshka
Ada
6,920
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.DOM_Documents; with Matreshka.ODF_String_Constants; with ODF.DOM.Iterators; with ODF.DOM.Visitors; package body Matreshka.ODF_Text.Database_Next_Elements is ------------ -- Create -- ------------ overriding function Create (Parameters : not null access Matreshka.DOM_Elements.Element_L2_Parameters) return Text_Database_Next_Element_Node is begin return Self : Text_Database_Next_Element_Node do Matreshka.ODF_Text.Constructors.Initialize (Self'Unchecked_Access, Parameters.Document, Matreshka.ODF_String_Constants.Text_Prefix); end return; end Create; ---------------- -- Enter_Node -- ---------------- overriding procedure Enter_Node (Self : not null access Text_Database_Next_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control) is begin if Visitor in ODF.DOM.Visitors.Abstract_ODF_Visitor'Class then ODF.DOM.Visitors.Abstract_ODF_Visitor'Class (Visitor).Enter_Text_Database_Next (ODF.DOM.Text_Database_Next_Elements.ODF_Text_Database_Next_Access (Self), Control); else Matreshka.DOM_Elements.Abstract_Element_Node (Self.all).Enter_Node (Visitor, Control); end if; end Enter_Node; -------------------- -- Get_Local_Name -- -------------------- overriding function Get_Local_Name (Self : not null access constant Text_Database_Next_Element_Node) return League.Strings.Universal_String is pragma Unreferenced (Self); begin return Matreshka.ODF_String_Constants.Database_Next_Element; end Get_Local_Name; ---------------- -- Leave_Node -- ---------------- overriding procedure Leave_Node (Self : not null access Text_Database_Next_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control) is begin if Visitor in ODF.DOM.Visitors.Abstract_ODF_Visitor'Class then ODF.DOM.Visitors.Abstract_ODF_Visitor'Class (Visitor).Leave_Text_Database_Next (ODF.DOM.Text_Database_Next_Elements.ODF_Text_Database_Next_Access (Self), Control); else Matreshka.DOM_Elements.Abstract_Element_Node (Self.all).Leave_Node (Visitor, Control); end if; end Leave_Node; ---------------- -- Visit_Node -- ---------------- overriding procedure Visit_Node (Self : not null access Text_Database_Next_Element_Node; Iterator : in out XML.DOM.Visitors.Abstract_Iterator'Class; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control) is begin if Iterator in ODF.DOM.Iterators.Abstract_ODF_Iterator'Class then ODF.DOM.Iterators.Abstract_ODF_Iterator'Class (Iterator).Visit_Text_Database_Next (Visitor, ODF.DOM.Text_Database_Next_Elements.ODF_Text_Database_Next_Access (Self), Control); else Matreshka.DOM_Elements.Abstract_Element_Node (Self.all).Visit_Node (Iterator, Visitor, Control); end if; end Visit_Node; begin Matreshka.DOM_Documents.Register_Element (Matreshka.ODF_String_Constants.Text_URI, Matreshka.ODF_String_Constants.Database_Next_Element, Text_Database_Next_Element_Node'Tag); end Matreshka.ODF_Text.Database_Next_Elements;
stcarrez/ada-css
Ada
2,296
adb
----------------------------------------------------------------------- -- css-core-compare -- Comparision on CSS rule references -- Copyright (C) 2017, 2020, 2023 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- package body CSS.Core.Compare is function "=" (Left, Right : in CSS.Core.Refs.Ref) return Boolean is begin if Left.Is_Null then return Right.Is_Null; elsif Right.Is_Null then return False; else declare Left_Rule : constant CSS.Core.Refs.Element_Accessor := Left.Value; Right_Rule : constant CSS.Core.Refs.Element_Accessor := Right.Value; begin return Left_Rule.Element = Right_Rule.Element; end; end if; end "="; -- ------------------------------ -- Compare the two rules to order them. Rules are compared on their -- source location. The comparison is intended to be used by the -- <tt>CSS.Core.Sets</tt> package to allow the creation of sets that -- contain unique rules. -- ------------------------------ function "<" (Left, Right : in CSS.Core.Refs.Ref) return Boolean is use type Util.Log.Locations.Line_Info; begin if Left.Is_Null then return False; elsif Right.Is_Null then return True; else declare Left_Rule : constant CSS.Core.Refs.Element_Accessor := Left.Value; Right_Rule : constant CSS.Core.Refs.Element_Accessor := Right.Value; begin return Left_Rule.Get_Location < Right_Rule.Get_Location; end; end if; end "<"; end CSS.Core.Compare;
reznikmm/matreshka
Ada
4,384
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with AMF.Elements; with AMF.Holders.Elements; package body AMF.Internals.Holders.UMLDI_Holders is --------------- -- To_Holder -- --------------- function To_Holder (Item : AMF.UMLDI.UML_Diagram_Elements.UMLDI_UML_Diagram_Element_Access) return League.Holders.Holder is begin return AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item)); end To_Holder; --------------- -- To_Holder -- --------------- function To_Holder (Item : AMF.UMLDI.UML_Labels.UMLDI_UML_Label_Access) return League.Holders.Holder is begin return AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item)); end To_Holder; --------------- -- To_Holder -- --------------- function To_Holder (Item : AMF.UMLDI.UML_Styles.UMLDI_UML_Style_Access) return League.Holders.Holder is begin return AMF.Holders.Elements.To_Holder (AMF.Elements.Element_Access (Item)); end To_Holder; end AMF.Internals.Holders.UMLDI_Holders;
RREE/ada-util
Ada
6,926
ads
----------------------------------------------------------------------- -- util-events-timers -- Timer list management -- Copyright (C) 2017 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Real_Time; with Ada.Exceptions; private with Ada.Finalization; private with Util.Concurrent.Counters; -- == Timer Management == -- The <tt>Util.Events.Timers</tt> package provides a timer list that allows to have -- operations called on regular basis when a deadline has expired. It is very close to -- the <tt>Ada.Real_Time.Timing_Events</tt> package but it provides more flexibility -- by allowing to have several timer lists that run independently. Unlike the GNAT -- implementation, this timer list management does not use tasks at all. The timer list -- can therefore be used in a mono-task environment by the main process task. Furthermore -- you can control your own task priority by having your own task that uses the timer list. -- -- The timer list is created by an instance of <tt>Timer_List</tt>: -- -- Manager : Util.Events.Timers.Timer_List; -- -- The timer list is protected against concurrent accesses so that timing events can be -- setup by a task but the timer handler is executed by another task. -- -- === Timer Creation === -- A timer handler is defined by implementing the <tt>Timer</tt> interface with the -- <tt>Time_Handler</tt> procedure. A typical timer handler could be declared as follows: -- -- type Timeout is new Timer with null record; -- overriding procedure Time_Handler (T : in out Timeout); -- -- My_Timeout : aliased Timeout; -- -- The timer instance is represented by the <tt>Timer_Ref</tt> type that describes the handler -- to be called as well as the deadline time. The timer instance is initialized as follows: -- -- T : Util.Events.Timers.Timer_Ref; -- Manager.Set_Timer (T, My_Timeout'Access, Ada.Real_Time.Seconds (1)); -- -- === Timer Main Loop === -- Because the implementation does not impose any execution model, the timer management must -- be called regularly by some application's main loop. The <tt>Process</tt> procedure -- executes the timer handler that have ellapsed and it returns the deadline to wait for the -- next timer to execute. -- -- Deadline : Ada.Real_Time.Time; -- loop -- ... -- Manager.Process (Deadline); -- delay until Deadline; -- end loop; -- package Util.Events.Timers is type Timer_Ref is tagged private; -- The timer interface that must be implemented by applications. type Timer is limited interface; type Timer_Access is access all Timer'Class; -- The timer handler executed when the timer deadline has passed. procedure Time_Handler (T : in out Timer; Event : in out Timer_Ref'Class) is abstract; -- Repeat the timer. procedure Repeat (Event : in out Timer_Ref; In_Time : in Ada.Real_Time.Time_Span); -- Cancel the timer. procedure Cancel (Event : in out Timer_Ref); -- Check if the timer is ready to be executed. function Is_Scheduled (Event : in Timer_Ref) return Boolean; -- Returns the deadline time for the timer execution. -- Returns Time'Last if the timer is not scheduled. function Time_Of_Event (Event : in Timer_Ref) return Ada.Real_Time.Time; type Timer_List is tagged limited private; -- Set a timer to be called at the given time. procedure Set_Timer (List : in out Timer_List; Handler : in Timer_Access; Event : in out Timer_Ref'Class; At_Time : in Ada.Real_Time.Time); -- Set a timer to be called after the given time span. procedure Set_Timer (List : in out Timer_List; Handler : in Timer_Access; Event : in out Timer_Ref'Class; In_Time : in Ada.Real_Time.Time_Span); -- Process the timer handlers that have passed the deadline and return the next -- deadline. The <tt>Max_Count</tt> parameter allows to limit the number of timer handlers -- that are called by operation. The default is not limited. procedure Process (List : in out Timer_List; Timeout : out Ada.Real_Time.Time; Max_Count : in Natural := Natural'Last); -- Procedure called when a timer handler raises an exception. -- The default operation reports an error in the logs. This procedure can be -- overriden to implement specific error handling. procedure Error (List : in out Timer_List; Handler : in Timer_Access; E : in Ada.Exceptions.Exception_Occurrence); private type Timer_Manager; type Timer_Manager_Access is access all Timer_Manager; type Timer_Node; type Timer_Node_Access is access all Timer_Node; type Timer_Ref is new Ada.Finalization.Controlled with record Value : Timer_Node_Access; end record; overriding procedure Adjust (Object : in out Timer_Ref); overriding procedure Finalize (Object : in out Timer_Ref); type Timer_Node is limited record Next : Timer_Node_Access; Prev : Timer_Node_Access; List : Timer_Manager_Access; Counter : Util.Concurrent.Counters.Counter := Util.Concurrent.Counters.ONE; Handler : Timer_Access; Deadline : Ada.Real_Time.Time; end record; protected type Timer_Manager is -- Add a timer. procedure Add (Timer : in Timer_Node_Access; Deadline : in Ada.Real_Time.Time); -- Cancel a timer. procedure Cancel (Timer : in out Timer_Node_Access); -- Find the next timer to be executed before the given time or return the next deadline. procedure Find_Next (Before : in Ada.Real_Time.Time; Deadline : out Ada.Real_Time.Time; Timer : in out Timer_Ref); private List : Timer_Node_Access; end Timer_Manager; type Timer_List is new Ada.Finalization.Limited_Controlled with record Manager : aliased Timer_Manager; end record; overriding procedure Finalize (Object : in out Timer_List); end Util.Events.Timers;
faelys/natools
Ada
978
adb
with Interfaces; use Interfaces; package body Natools.S_Expressions.Printers.Pretty.Config.Quoted_Cmd is P : constant array (0 .. 2) of Natural := (1, 4, 10); T1 : constant array (0 .. 2) of Unsigned_8 := (11, 3, 3); T2 : constant array (0 .. 2) of Unsigned_8 := (14, 19, 16); G : constant array (0 .. 22) of Unsigned_8 := (2, 0, 0, 10, 0, 0, 0, 1, 0, 0, 5, 9, 0, 0, 1, 10, 0, 3, 0, 7, 0, 6, 0); function Hash (S : String) return Natural is F : constant Natural := S'First - 1; L : constant Natural := S'Length; F1, F2 : Natural := 0; J : Natural; begin for K in P'Range loop exit when L < P (K); J := Character'Pos (S (P (K) + F)); F1 := (F1 + Natural (T1 (K)) * J) mod 23; F2 := (F2 + Natural (T2 (K)) * J) mod 23; end loop; return (Natural (G (F1)) + Natural (G (F2))) mod 11; end Hash; end Natools.S_Expressions.Printers.Pretty.Config.Quoted_Cmd;
skill-lang/adaCommon
Ada
468
ads
-- ___ _ ___ _ _ -- -- / __| |/ (_) | | Common SKilL implementation -- -- \__ \ ' <| | | |__ top level package -- -- |___/_|\_\_|_|____| by: Timm Felden, Dennis Przytarski -- -- -- pragma Ada_2012; package Skill is pragma Pure; end Skill;
LaplaceKorea/curve25519-spark2014
Ada
2,158
ads
package Big_Integers with Ghost, SPARK_Mode is pragma Annotate (GNATprove, External_Axiomatization); type Big_Integer is private; Zero : constant Big_Integer; function "=" (L, R : Big_Integer) return Boolean with Import; function "<" (L, R : Big_Integer) return Boolean with Import; function "<=" (L, R : Big_Integer) return Boolean with Import; function ">" (L, R : Big_Integer) return Boolean with Import; function ">=" (L, R : Big_Integer) return Boolean with Import; function To_Big_Integer (Arg : Integer) return Big_Integer with Import; function To_Big_Integer (Arg : Long_Long_Integer) return Big_Integer with Import; function "+" (Arg : Long_Long_Integer) return Big_Integer renames To_Big_Integer; function In_Range (Arg, Low, High : Big_Integer) return Boolean is ((Low <= Arg) and (Arg <= High)) with Import; function To_Integer (Arg : Big_Integer) return Integer with Import, Pre => In_Range (Arg, Low => To_Big_Integer (Integer'First), High => To_Big_Integer (Integer'Last)); function "-" (L : Big_Integer) return Big_Integer with Import; function "abs" (L : Big_Integer) return Big_Integer with Import; function "+" (L, R : Big_Integer) return Big_Integer with Import; function "-" (L, R : Big_Integer) return Big_Integer with Import; function "*" (L, R : Big_Integer) return Big_Integer with Import; function "/" (L, R : Big_Integer) return Big_Integer with Import, Pre => R /= Zero; function "mod" (L, R : Big_Integer) return Big_Integer with Import, Pre => R /= Zero; function "rem" (L, R : Big_Integer) return Big_Integer with Import, Pre => R /= Zero; function "**" (L : Big_Integer; R : Natural) return Big_Integer with Import; function Min (L, R : Big_Integer) return Big_Integer with Import; function Max (L, R : Big_Integer) return Big_Integer with Import; private pragma SPARK_Mode (Off); type Big_Integer is null record; Zero : constant Big_Integer := (null record); end Big_Integers;
reznikmm/matreshka
Ada
4,009
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with ODF.DOM.Text_Date_Adjust_Attributes; package Matreshka.ODF_Text.Date_Adjust_Attributes is type Text_Date_Adjust_Attribute_Node is new Matreshka.ODF_Text.Abstract_Text_Attribute_Node and ODF.DOM.Text_Date_Adjust_Attributes.ODF_Text_Date_Adjust_Attribute with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Text_Date_Adjust_Attribute_Node; overriding function Get_Local_Name (Self : not null access constant Text_Date_Adjust_Attribute_Node) return League.Strings.Universal_String; end Matreshka.ODF_Text.Date_Adjust_Attributes;
sungyeon/drake
Ada
523
ads
pragma License (Unrestricted); -- BSD 3-Clause -- translated unit from SFMT (SFMT-common.h) private generic package Ada.Numerics.SFMT.Generating is -- no SIMD version pragma Preelaborate; procedure gen_rand_all ( sfmt : in out w128_t_Array_N); pragma Inline (gen_rand_all); procedure gen_rand_array ( sfmt : in out w128_t_Array_N; Item : in out w128_t_Array_1; -- w128_t_Array (0 .. size - 1) size : Integer); pragma Inline (gen_rand_array); end Ada.Numerics.SFMT.Generating;
sungyeon/drake
Ada
679
ads
pragma License (Unrestricted); -- Ada 2012 generic type Element_Type is private; package Ada.Containers.Synchronized_Queue_Interfaces is pragma Pure; type Queue is synchronized interface; procedure Enqueue ( Container : in out Queue; New_Item : Element_Type) is abstract with Synchronization => By_Entry; procedure Dequeue ( Container : in out Queue; Element : out Element_Type) is abstract with Synchronization => By_Entry; function Current_Use (Container : Queue) return Count_Type is abstract; function Peak_Use (Container : Queue) return Count_Type is abstract; end Ada.Containers.Synchronized_Queue_Interfaces;
Tim-Tom/project-euler
Ada
1,706
ads
package Problem_59 is -- Each character on a computer is assigned a unique code and the preferred -- standard is ASCII (American Standard Code for Information -- Interchange). For example, uppercase A = 65, asterisk (*) = 42, and -- lowercase k = 107. -- -- A modern encryption method is to take a text file, convert the bytes to -- ASCII, then XOR each byte with a given value, taken from a secret -- key. The advantage with the XOR function is that using the same -- encryption key on the cipher text, restores the plain text; for example, -- 65 XOR 42 = 107, then 107 XOR 42 = 65. -- -- For unbreakable encryption, the key is the same length as the plain text -- message, and the key is made up of random bytes. The user would keep the -- encrypted message and the encryption key in different locations, and -- without both "halves", it is impossible to decrypt the message. -- -- Unfortunately, this method is impractical for most users, so the modified -- method is to use a password as a key. If the password is shorter than the -- message, which is likely, the key is repeated cyclically throughout the -- message. The balance for this method is using a sufficiently long -- password key for security, but short enough to be memorable. -- -- Your task has been made easy, as the encryption key consists of three -- lower case characters. Using cipher1.txt, a file containing the encrypted -- ASCII codes, and the knowledge that the plain text must contain common -- English words, decrypt the message and find the sum of the ASCII values -- in the original text. procedure Solve; end Problem_59;
RREE/ada-util
Ada
2,460
ads
-- Generated by utildgen.c from system includes with Interfaces.C; package Util.Systems.Types is subtype dev_t is Long_Long_Integer; subtype ino_t is Long_Long_Integer; subtype off_t is Long_Long_Integer; subtype blksize_t is Interfaces.C.int; subtype blkcnt_t is Long_Long_Integer; subtype uid_t is Interfaces.C.unsigned; subtype gid_t is Interfaces.C.unsigned; subtype nlink_t is Long_Long_Integer; subtype mode_t is Interfaces.C.unsigned_short; S_IFMT : constant mode_t := 8#00170000#; S_IFDIR : constant mode_t := 8#00040000#; S_IFCHR : constant mode_t := 8#00020000#; S_IFBLK : constant mode_t := 8#00060000#; S_IFREG : constant mode_t := 8#00100000#; S_IFIFO : constant mode_t := 8#00010000#; S_IFLNK : constant mode_t := 8#00120000#; S_IFSOCK : constant mode_t := 8#00140000#; S_ISUID : constant mode_t := 8#00004000#; S_ISGID : constant mode_t := 8#00002000#; S_IREAD : constant mode_t := 8#00000400#; S_IWRITE : constant mode_t := 8#00000200#; S_IEXEC : constant mode_t := 8#00000100#; type File_Type is new Interfaces.C.int; subtype Time_Type is Interfaces.C.unsigned; type Timespec is record tv_sec : Time_Type; tv_nsec : Interfaces.C.int; end record; pragma Convention (C_Pass_By_Copy, Timespec); type Seek_Mode is (SEEK_SET, SEEK_CUR, SEEK_END); for Seek_Mode use (SEEK_SET => 0, SEEK_CUR => 1, SEEK_END => 2); subtype fflags_t is Interfaces.C.unsigned; STAT_NAME : constant String := "stat"; FSTAT_NAME : constant String := "fstat"; type Stat_Type is record st_dev : dev_t; st_ino : ino_t; st_nlink : nlink_t; st_mode : mode_t; st_padding0 : Interfaces.C.unsigned_short; st_uid : uid_t; st_gid : gid_t; st_padding1 : Interfaces.C.unsigned; st_rdev : dev_t; st_atim_ext : Interfaces.C.unsigned; st_atim : Timespec; st_mtim_ext : Interfaces.C.unsigned; st_mtim : Timespec; st_ctim_ext : Interfaces.C.unsigned; st_ctim : Timespec; st_btim_ext : Interfaces.C.unsigned; st_birthtim : Timespec; st_size : off_t; st_blocks : blkcnt_t; st_blksize : blksize_t; st_flags : fflags_t; st_gen : Long_Long_Integer; end record; pragma Convention (C_Pass_By_Copy, Stat_Type); for Stat_Type'Size use 1664; end Util.Systems.Types;
vasil-sd/ada-tlsf
Ada
4,178
ads
with System.Storage_Elements; with TLSF.Config; with TLSF.Bitmaps; with TLSF.Mem_Block_Size; use TLSF.Config; use TLSF.Bitmaps; use TLSF.Mem_Block_Size; private package TLSF.Mem_Blocks is type Block_Status is (Free, Occupied, Absent) with Size => 2; -- Free: block is free -- Occupied: block in use -- Absent: block is absent (previous of the first -- block or next of the last) type Block_Header; type Block_Header_Access is access all Block_Header; type Free_Blocks_List is record Prev : access Block_Header; Next : access Block_Header; end record with Pack; type Block_Header (Status : Block_Status := Free) is record Prev_Block : access Block_Header; Prev_Block_Status : Block_Status; Next_Block_Status : Block_Status; Size : TLSF.Mem_Block_Size.Size; case Status is when Free => Free_List : Free_Blocks_List; when Occupied | Absent => null; end case; end record with Pack; type Free_Lists is array (First_Level_Index, Second_Level_Index) of access Block_Header; procedure Block_Make_Occupied (Block : not null access Block_Header); procedure Block_Make_Free (Block : not null access Block_Header); function Address_To_Block_Header_Ptr (Addr : System.Address) return not null access Block_Header; function Block_Header_Ptr_To_Address (Block : not null access constant Block_Header) return System.Address; procedure Notify_Neighbors_Of_Block_Status (Block : access Block_Header); function Split_Free_Block (Free_Block : not null access Block_Header; New_Block_Size : Size) return not null access Block_Header; function Insert_To_Free_Blocks_List (Block_To_Insert : not null access Block_Header; Block_In_List : access Block_Header) return not null access Block_Header; function Get_Next_Block ( Block : not null access Block_Header) return access Block_Header; function Get_Prev_Block ( Block : not null access Block_Header) return access Block_Header; function Init_First_Free_Block ( Addr : System.Address; Sz : SSE.Storage_Count) return not null access Block_Header; function Unlink_Block_From_Free_List (Block : not null access Block_Header) return access Block_Header with Pre => Block.Status = Free; procedure Merge_Two_Adjacent_Free_Blocks (Block : not null access Block_Header) with Pre => (Block.Status = Free and Block.Next_Block_Status = Free); function Is_Block_Free (Block : access Block_Header) return Boolean; function Is_Free_Block_Too_Large (Free_Block : not null access Block_Header; Block_Size : Size) return Boolean; function Adjust_And_Align_Size (S : SSE.Storage_Count) return Size; function Search_Suitable_Block (FL : First_Level_Index; SL : Second_Level_Index; Bmp : Levels_Bitmap; FB_List : Free_Lists) return not null access Block_Header; procedure Remove_Free_Block_From_Lists_And_Bitmap (Block : not null access Block_Header; FB_List : in out Free_Lists; Bmp : in out Levels_Bitmap); procedure Insert_Free_Block_To_Lists_And_Bitmap (Block : not null access Block_Header; FB_List : in out Free_Lists; Bmp : in out Levels_Bitmap); end TLSF.Mem_Blocks;
zhmu/ananas
Ada
3,140
ads
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- G N A T . I O _ A U X -- -- -- -- S p e c -- -- -- -- Copyright (C) 1995-2022, AdaCore -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Auxiliary functions or use with Text_IO -- This package provides some auxiliary functions for use with Text_IO, -- including a test for an existing file, and a Get_Line function which -- returns a string. with Ada.Text_IO; package GNAT.IO_Aux is function File_Exists (Name : String) return Boolean; -- Test for existence of a file named Name function Get_Line return String; -- Read Ada.Text_IO.Current_Input and return string that includes all -- characters from the current character up to the end of the line, -- with no limit on its length. Raises Ada.IO_Exceptions.End_Error if -- at end of file. function Get_Line (File : Ada.Text_IO.File_Type) return String; -- Same, but reads from specified file end GNAT.IO_Aux;
reznikmm/gela
Ada
5,256
adb
------------------------------------------------------------------------------ -- G E L A G R A M M A R S -- -- Library for dealing with tests for for Gela project, -- -- a portable Ada compiler -- -- http://gela.ada-ru.org/ -- -- - - - - - - - - - - - - - - - -- -- Read copyright and license in gela.ads file -- ------------------------------------------------------------------------------ with Gela.Test_Cases; with League.Calendars.ISO_8601; with XML.SAX.Attributes; with XML.SAX.Pretty_Writers; with XML.SAX.Output_Destinations.Strings; with Ada.Wide_Wide_Text_IO; package body Gela.Bitten_Report is function "+" (Item : Wide_Wide_String) return League.Strings.Universal_String renames League.Strings.To_Universal_String; function Time_Image (Value : League.Calendars.Time) return League.Strings.Universal_String; Duration : constant League.Strings.Universal_String := +"duration"; Name : constant League.Strings.Universal_String := +"name"; Fixture : constant League.Strings.Universal_String := +"fixture"; File : constant League.Strings.Universal_String := +"file"; Report : constant League.Strings.Universal_String := +"report"; Status : constant League.Strings.Universal_String := +"status"; Stdout : constant League.Strings.Universal_String := +"stdout"; Test : constant League.Strings.Universal_String := +"test"; Traceback : constant League.Strings.Universal_String := +"traceback"; Image : constant array (Test_Cases.Status_Kind) of League.Strings.Universal_String := (Test_Cases.Success => +"success", Test_Cases.Failure => +"failure", Test_Cases.Error => +"error", Test_Cases.Ignore => +"ignore"); -------------- -- Generate -- -------------- procedure Generate (Iterator : in out Test_Iterators.Iterator'Class; Result : out League.Strings.Universal_String) is Test : Gela.Test_Cases.Test_Case_Access; Writer : XML.SAX.Pretty_Writers.XML_Pretty_Writer; Output : aliased XML.SAX.Output_Destinations.Strings.String_Output_Destination; begin Iterator.Start; Writer.Set_Output_Destination (Output'Unchecked_Access); Writer.Start_Document; declare Attrs : XML.SAX.Attributes.SAX_Attributes; begin Attrs.Set_Value (+"category", +"test"); Writer.Start_Element (Qualified_Name => Report, Attributes => Attrs); end; while Iterator.Has_More_Tests loop declare use type Gela.Test_Cases.Status_Kind; Attrs : XML.SAX.Attributes.SAX_Attributes; begin Iterator.Next (Test); -- Skip successful tests to keep report smaller if Test.Status /= Gela.Test_Cases.Success then Attrs.Set_Value (Duration, Time_Image (Test.Duration)); Attrs.Set_Value (Status, Image (Test.Status)); Attrs.Set_Value (Name, Test.Name); -- Attrs.Set_Value (Fixture, Test.Name); Attrs.Set_Value (Fixture, Test.Fixture); Attrs.Set_Value (File, Test.File); Writer.Start_Element (Qualified_Name => Bitten_Report.Test, Attributes => Attrs); -- Bitten web interface shows only traceback, so write output -- and traceback here Writer.Start_Element (Qualified_Name => Traceback); Writer.Characters (Test.Traceback); Writer.Characters (Test.Output); Writer.End_Element (Qualified_Name => Traceback); if not Test.Output.Is_Empty then Writer.Start_Element (Qualified_Name => Stdout); Writer.Characters (Test.Output); Writer.End_Element (Qualified_Name => Stdout); end if; Writer.End_Element (Qualified_Name => Bitten_Report.Test); end if; end; end loop; Writer.End_Element (Qualified_Name => Report); Result := Output.Get_Text; end Generate; ---------------- -- Time_Image -- ---------------- function Time_Image (Value : League.Calendars.Time) return League.Strings.Universal_String is use League.Calendars.ISO_8601; package IO is new Ada.Wide_Wide_Text_IO.Integer_IO (Nanosecond_100_Number); S : constant Second_Number := Second (Value); N : constant Nanosecond_100_Number := Nanosecond_100 (Value); S_Image : constant Wide_Wide_String := Second_Number'Wide_Wide_Image (S); N_Image : Wide_Wide_String (1 .. 8); begin IO.Put (N_Image, N); for J in N_Image'Range loop if N_Image (J) = ' ' then N_Image (J) := '0'; end if; end loop; return +(S_Image (2 .. S_Image'Last) & "." & N_Image (2 .. N_Image'Last)); end Time_Image; end Gela.Bitten_Report;
reznikmm/matreshka
Ada
11,688
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014-2019, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ private with Ada.Streams; private with AWS.Resources.Streams.Memory; with AWS.Response; private with League.Calendars; private with League.Holders; private with League.IRIs; private with League.Strings; private with League.String_Vectors; private with League.Text_Codecs; with Matreshka.Servlet_HTTP_Responses; with Matreshka.Servlet_HTTP_Requests; private with Servlet.HTTP_Cookies; with Servlet.HTTP_Responses; with Servlet.Output_Streams; private with Servlet.Write_Listeners; package Matreshka.Servlet_AWS_Responses is type AWS_Servlet_Response is new Matreshka.Servlet_HTTP_Responses.Abstract_HTTP_Servlet_Response and Servlet.Output_Streams.Servlet_Output_Stream with private; procedure Initialize (Self : in out AWS_Servlet_Response'Class; Request : not null Matreshka.Servlet_HTTP_Requests.HTTP_Servlet_Request_Access); function Build (Self : in out AWS_Servlet_Response'Class) return AWS.Response.Data; -- Build AWS response data. private type Stream_Access is access all AWS.Resources.Streams.Memory.Stream_Type'Class; type Text_Codec_Access is access all League.Text_Codecs.Text_Codec'Class; type AWS_Servlet_Response is new Matreshka.Servlet_HTTP_Responses.Abstract_HTTP_Servlet_Response and Servlet.Output_Streams.Servlet_Output_Stream with record Data : AWS.Response.Data; Encoding : League.Strings.Universal_String; Content_Type : League.Strings.Universal_String; Stream : Stream_Access; Codec : Text_Codec_Access; Output : access Servlet.Output_Streams.Servlet_Output_Stream'Class; end record; overriding procedure Add_Cookie (Self : in out AWS_Servlet_Response; Cookie : Servlet.HTTP_Cookies.Cookie); -- Adds the specified cookie to the response. This method can be called -- multiple times to set more than one cookie. overriding procedure Add_Date_Header (Self : in out AWS_Servlet_Response; Name : League.Strings.Universal_String; Value : League.Calendars.Date_Time); -- Adds a response header with the given name and date-value. This method -- allows response headers to have multiple values. overriding procedure Add_Header (Self : in out AWS_Servlet_Response; Name : League.Strings.Universal_String; Value : League.Strings.Universal_String); -- Adds a response header with the given name and value. This method allows -- response headers to have multiple values. overriding procedure Add_Integer_Header (Self : in out AWS_Servlet_Response; Name : League.Strings.Universal_String; Value : League.Holders.Universal_Integer); -- Adds a response header with the given name and integer value. This -- method allows response headers to have multiple values. overriding function Contains_Header (Self : in out AWS_Servlet_Response; Name : League.Strings.Universal_String) return Boolean; -- Returns a boolean indicating whether the named response header has -- already been set. overriding function Get_Header_Names (Self : in out AWS_Servlet_Response) return League.String_Vectors.Universal_String_Vector; -- Return all the header names set for this response. overriding function Get_Headers (Self : in out AWS_Servlet_Response; Name : League.Strings.Universal_String) return League.String_Vectors.Universal_String_Vector; -- Return all the header values associated with the specified header name. overriding procedure Send_Redirect (Self : in out AWS_Servlet_Response; Location : League.IRIs.IRI); -- Sends a temporary redirect response to the client using the specified -- redirect location URL and clears the buffer. overriding procedure Send_Error (Self : in out AWS_Servlet_Response; Code : Servlet.HTTP_Responses.Status_Code; Message : League.Strings.Universal_String); -- Sends an error response to the client using the specified status and -- clears the buffer. The server defaults to creating the response to look -- like an HTML-formatted server error page containing the specified -- message, setting the content type to "text/html". The server will -- preserve cookies and may clear or update any headers needed to serve the -- error page as a valid response. If an error-page declaration has been -- made for the web application corresponding to the status code passed in, -- it will be served back in preference to the suggested msg parameter and -- the msg parameter will be ignored. overriding procedure Set_Character_Encoding (Self : in out AWS_Servlet_Response; Encoding : League.Strings.Universal_String); -- Sets the character encoding (MIME charset) of the response being sent to -- the client, for example, to UTF-8. If the character encoding has already -- been set by setContentType(java.lang.String) or -- setLocale(java.util.Locale), this method overrides it. Calling -- setContentType(java.lang.String) with the String of text/html and -- calling this method with the String of UTF-8 is equivalent with calling -- setContentType with the String of text/html; charset=UTF-8. overriding procedure Set_Content_Type (Self : in out AWS_Servlet_Response; To : League.Strings.Universal_String); -- Sets the content type of the response being sent to the client, if the -- response has not been committed yet. The given content type may include -- a character encoding specification, for example, -- text/html;charset=UTF-8. The response's character encoding is only set -- from the given content type if this method is called before getWriter is -- called. overriding procedure Set_Date_Header (Self : in out AWS_Servlet_Response; Name : League.Strings.Universal_String; Value : League.Calendars.Date_Time); -- Sets a response header with the given name and date-value. If the header -- had already been set, the new value overwrites the previous one. The -- Contains_Header method can be used to test for the presence of a header -- before setting its value. overriding procedure Set_Header (Self : in out AWS_Servlet_Response; Name : League.Strings.Universal_String; Value : League.Strings.Universal_String); -- Sets a response header with the given name and value. If the header had -- already been set, the new value overwrites the previous one. The -- Contains_Header method can be used to test for the presence of a header -- before setting its value. overriding procedure Set_Integer_Header (Self : in out AWS_Servlet_Response; Name : League.Strings.Universal_String; Value : League.Holders.Universal_Integer); -- Sets a response header with the given name and integer value. If the -- header had already been set, the new value overwrites the previous one. -- The Contains_Header method can be used to test for the presence of a -- header before setting its value. overriding procedure Set_Status (Self : in out AWS_Servlet_Response; Status : Servlet.HTTP_Responses.Status_Code); -- Sets the status code for this response. overriding function Get_Output_Stream (Self : AWS_Servlet_Response) return not null access Servlet.Output_Streams.Servlet_Output_Stream'Class; -- Returns a ServletOutputStream suitable for writing binary data in the -- response. The servlet container does not encode the binary data. overriding function Is_Ready (Self : AWS_Servlet_Response) return Boolean; -- This method can be used to determine if data can be written without -- blocking. overriding procedure Set_Write_Listener (Self : in out AWS_Servlet_Response; Listener : not null access Servlet.Write_Listeners.Write_Listener'Class); -- Instructs the ServletOutputStream to invoke the provided WriteListener -- when it is possible to write. overriding procedure Write (Self : in out AWS_Servlet_Response; Item : Ada.Streams.Stream_Element_Array); overriding procedure Write (Self : in out AWS_Servlet_Response; Item : League.Strings.Universal_String); end Matreshka.Servlet_AWS_Responses;
damaki/libkeccak
Ada
5,060
adb
------------------------------------------------------------------------------- -- Copyright (c) 2017, Daniel King -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- * Redistributions of source code must retain the above copyright -- notice, this list of conditions and the following disclaimer. -- * Redistributions in binary form must reproduce the above copyright -- notice, this list of conditions and the following disclaimer in the -- documentation and/or other materials provided with the distribution. -- * The name of the copyright holder may not be used to endorse or promote -- Products derived from this software without specific prior written -- permission. -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY -- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -- THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ------------------------------------------------------------------------------- with Keccak.Types; use Keccak.Types; with AUnit.Assertions; use AUnit.Assertions; package body Parallel_Sponge_Tests is Suffix : constant Byte := 2#101#; Suffix_Len : constant := 3; overriding procedure Set_Up (T : in out Test) is begin Parallel_Sponge.Init (T.Ctx); end Set_Up; ---------------------------------------------------------------------------- -- Test that the output of a parallel sponge with N parallel instances -- produces the same output as N serial sponges. -- -- Each parallel instance is fed different input data to detect problems -- where the wrong data is fed into the wrong instance. procedure Test_Same_Output_As_Serial (T : in out Test) is N : constant Positive := Parallel_Sponge.Num_Parallel_Instances; Input_Len : constant := 64 * 1024; Output_Len : constant := 2 * 1024; Input : Byte_Array (0 .. (Input_Len * N) - 1); Reference_Output : Byte_Array (0 .. (Output_Len * N) - 1) := (others => 0); Actual_Output : Byte_Array (0 .. (Output_Len * N) - 1) := (others => 0); Serial_Ctx : Serial_Sponge.Context; -- Repeat the test with some different lengths. Test_Lengths : constant array (Natural range <>) of Natural := (0, 1, 10, 1000, 1024, 2048, 4096, Input_Len / 2, Input_Len); begin -- Repeat the test in increasing lengths of input data, from 0 .. Input_Len bytes. for Test_Len of Test_Lengths loop -- Set up each instance to receive different data. -- Instance 0 has the repeating pattern 16#00# -- Instance 1 has the repeating pattern 16#11# -- Instance 2 has the repeating pattern 16#22# -- and so on... for I in 0 .. N - 1 loop Input ((I * Test_Len) .. (I * Test_Len) + Test_Len - 1) := (others => Byte ((16#11# * I) mod 256)); end loop; -- Use the serial algorithm to produce the reference output to compare -- against. for I in 0 .. N - 1 loop Serial_Sponge.Init (Serial_Ctx, Capacity); Serial_Sponge.Absorb_With_Suffix (Ctx => Serial_Ctx, Message => Input ((I * Test_Len) .. (I * Test_Len) + Test_Len - 1), Bit_Length => Test_Len * 8, Suffix => Suffix, Suffix_Len => Suffix_Len); Serial_Sponge.Squeeze (Ctx => Serial_Ctx, Digest => Reference_Output ((I * Output_Len) .. (I * Output_Len) + Output_Len - 1)); end loop; -- Run the parallel sponge Parallel_Sponge.Init (T.Ctx); Parallel_Sponge.Absorb_Bytes_Separate_With_Suffix (Ctx => T.Ctx, Data => Input (0 .. (Test_Len * N) - 1), Suffix => Suffix, Suffix_Len => Suffix_Len); Parallel_Sponge.Squeeze_Bytes_Separate (Ctx => T.Ctx, Data => Actual_Output); Assert (Actual_Output = Reference_Output, "Output of parallel sponge does not match serial sponge for Test_Len =" & Integer'Image (Test_Len)); end loop; end Test_Same_Output_As_Serial; end Parallel_Sponge_Tests;
reznikmm/matreshka
Ada
598
ads
with Types.Component_Lists; package Types.Discriminanteds.Records is pragma Preelaborate; type Record_Type is limited interface and Discriminanted_Type; type Record_Type_Access is access all Record_Type'Class with Storage_Size => 0; not overriding function Component_List (Self : Record_Type) return Types.Component_Lists.Component_List_Access is abstract; -- For tagged type result includes both extension and inherited components not overriding function Is_Abstract (Self : Record_Type) return Boolean is abstract; end Types.Discriminanteds.Records;
sungyeon/drake
Ada
2,298
ads
pragma License (Unrestricted); -- extended unit specialized for Windows private with C.wincon; package Ada.Text_IO.Terminal.Colors.Names is -- Constants for system-specific system colors. Black : constant Color; -- (R => 0.0, G => 0.0, B => 0.0) Dark_Blue : constant Color; -- (R => 0.0, G => 0.0, B => 0.5) Dark_Green : constant Color; -- (R => 0.0, G => 0.5, B => 0.0) Dark_Cyan : constant Color; -- (R => 0.0, G => 0.5, B => 0.5) Dark_Red : constant Color; -- (R => 0.5, G => 0.0, B => 0.0) Dark_Magenta : constant Color; -- (R => 0.5, G => 0.0, B => 0.5) Dark_Yellow : constant Color; -- (R => 0.5, G => 0.5, B => 0.0) Gray : constant Color; -- (R => 0.75, G => 0.75, B => 0.75) Dark_Gray : constant Color; -- (R => 0.5, G => 0.5, B => 0.5) Blue : constant Color; -- (R => 0.0, G => 0.0, B => 1.0) Green : constant Color; -- (R => 0.0, G => 1.0, B => 0.0) Cyan : constant Color; -- (R => 0.0, G => 1.0, B => 1.0) Red : constant Color; -- (R => 1.0, G => 0.0, B => 0.0) Magenta : constant Color; -- (R => 1.0, G => 0.0, B => 1.0) Yellow : constant Color; -- (R => 1.0, G => 1.0, B => 0.0) White : constant Color; -- (R => 1.0, G => 1.0, B => 1.0) private Black : constant Color := 0; Dark_Blue : constant Color := C.wincon.FOREGROUND_BLUE; -- 1 Dark_Green : constant Color := C.wincon.FOREGROUND_GREEN; -- 2 Dark_Cyan : constant Color := Dark_Blue or Dark_Green; Dark_Red : constant Color := C.wincon.FOREGROUND_RED; -- 4 Dark_Magenta : constant Color := Dark_Blue or Dark_Red; Dark_Yellow : constant Color := Dark_Green or Dark_Red; Gray : constant Color := Dark_Blue or Dark_Green or Dark_Red; Dark_Gray : constant Color := C.wincon.FOREGROUND_INTENSITY; -- 8 Blue : constant Color := Dark_Blue or C.wincon.FOREGROUND_INTENSITY; Green : constant Color := Dark_Green or C.wincon.FOREGROUND_INTENSITY; Cyan : constant Color := Dark_Cyan or C.wincon.FOREGROUND_INTENSITY; Red : constant Color := Dark_Red or C.wincon.FOREGROUND_INTENSITY; Magenta : constant Color := Dark_Magenta or C.wincon.FOREGROUND_INTENSITY; Yellow : constant Color := Dark_Yellow or C.wincon.FOREGROUND_INTENSITY; White : constant Color := Gray or C.wincon.FOREGROUND_INTENSITY; end Ada.Text_IO.Terminal.Colors.Names;
psyomn/afile
Ada
7,506
ads
-- Copyright 2017-2019 Simon Symeonidis (psyomn) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License.with Interfaces; use Interfaces; with Interfaces; use Interfaces; package Headers is type Byte is range 0 .. 16#ff#; type String_Access is access String; type File_Signature is record Magic_Number : Unsigned_64; Extension : String_Access; Offset : Unsigned_64; Bits : Natural; Description : String_Access; end record; Unknown_Header : exception; type Signatures is array (Positive range <>) of File_Signature; type Magic_Bytes is array (Positive range <>) of Byte; Zlib_No_Compression : constant Unsigned_64 := 16#78_01#; Zlib_Default_Compression : constant Unsigned_64 := 16#78_9C#; Zlib_Best_Compression : constant Unsigned_64 := 16#78_DA#; Dos_Executable : constant Unsigned_64 := 16#4D_5A#; -- Compressed with Lempel-Ziv-Welch algorithm Tar_Z_Lzw : constant Unsigned_64 := 16#1f_9d#; -- Compressed with LZH Tar_Z_Lzh : constant Unsigned_64 := 16#1f_0a#; Bz2 : constant Unsigned_64 := 16#42_5A_68#; Webm : constant Unsigned_64 := 16#1A_45_Df_A3#; Psd : constant Unsigned_64 := 16#38_42_50_53#; Flif : constant Unsigned_64 := 16#46_4c_49_46#; Ogg : constant Unsigned_64 := 16#4F_67_67_53#; Rpm : constant Unsigned_64 := 16#ed_ab_ee_db#; Kindle_Updater : constant Unsigned_64 := 16#53_50_30_31#; Palm_Calendar_Archive : constant Unsigned_64 := 16#be_ba_fe_ca#; -- cafe babe! nice :) Palm_To_Do_Archive : constant Unsigned_64 := 16#00_01_42_44#; Palm_Calendar_Archive_2 : constant Unsigned_64 := 16#00_01_44_54#; Palm_Data_File : constant Unsigned_64 := 16#00_01_00_00#; Ico : constant Unsigned_64 := 16#00_00_01_00#; Tiff_Little_Endian : constant Unsigned_64 := 16#49_49_2A_00#; Tiff_Little_Big_Endian : constant Unsigned_64 := 16#4D_4D_00_2A#; Gif_87a : constant Unsigned_64 := 16#47_49_46_38_37_61#; Gif_89a : constant Unsigned_64 := 16#47_49_46_38_39_61#; Rar_1_50 : constant Unsigned_64 := 16#52_61_72_21_1a_07_00#; Ms_Office : constant Unsigned_64 := 16#d0_cf_11_e0_a1_b1_1a_e1#; Rar_5 : constant Unsigned_64 := 16#52_61_72_21_1a_07_01_00#; Tar_Ustar_00 : constant Unsigned_64 := 16#75_73_74_61_72_00_30_30#; Tar_Ustar : constant Unsigned_64 := 16#75_73_74_61_72_20_20_00#; Png : constant Unsigned_64 := 16#89_50_4e_47_0d_0a_1a_0a#; -- TODO -- Cr2 49_49_2A_00_10_00_00_00_43_52 -- Backmike_Disk 42_41_43_4b_4d_49_4b_45_44_49_53_4b All_File_Signatures : constant Signatures := ( (Magic_Number => Dos_Executable, Extension => new String'("exe"), Bits => 16, Offset => 0, Description => new String'("MS Dos Executable")), (Magic_Number => Tar_Z_Lzw, Extension => new String'("tar"), Bits => 0, Offset => 0, Description => new String'("Tar LZW archive")), (Magic_Number => Tar_Z_Lzh, Extension => new String'("tar"), Bits => 0, Offset => 0, Description => new String'("Tar LZH archive")), (Magic_Number => Bz2, Extension => new String'("bz"), Bits => 24, Offset => 0, Description => new String'("bunzip archive")), (Magic_Number => Webm, Extension => new String'("webm"), Bits => 32, Offset => 0, Description => new String'("webm video file")), (Magic_Number => Psd, Extension => new String'("psd"), Bits => 32, Offset => 0, Description => new String'("adobe photoshop document")), (Magic_Number => Flif, Extension => new String'("flif"), Bits => 32, Offset => 0, Description => new String'("free lossless image format")), (Magic_Number => Ogg, Extension => new String'("ogg"), Bits => 32, Offset => 0, Description => new String'("Ogg audio")), (Magic_Number => Rpm, Extension => new String'("rpm"), Bits => 32, Offset => 0, Description => new String'("redhat package")), (Magic_Number => Kindle_Updater, Extension => new String'("bin"), Bits => 32, Offset => 0, Description => new String'("kindle updater")), (Magic_Number => Palm_Calendar_Archive, Extension => new String'("dba"), Bits => 32, Offset => 0, Description => new String'("palm calendar archive")), (Magic_Number => Palm_To_Do_Archive, Extension => new String'("dba"), Bits => 32, Offset => 0, Description => new String'("palm todo archive")), (Magic_Number => Palm_Calendar_Archive_2, Extension => new String'("tda"), Bits => 32, Offset => 0, Description => new String'("palm calendar archive")), (Magic_Number => Palm_Data_File, Extension => new String'(""), Bits => 32, Offset => 0, Description => new String'("palm desktop data file (ms access format)")), (Magic_Number => Gif_87a, Extension => new String'("gif"), Bits => 48, Offset => 0, Description => new String'("gif picture (87a)")), (Magic_Number => Gif_89a, Extension => new String'("gif"), Bits => 48, Offset => 0, Description => new String'("gif picture (89a)")), (Magic_Number => Png, Extension => new String'("png"), Bits => 0, Offset => 0, Description => new String'("PNG picture")), (Magic_Number => Zlib_No_Compression, Extension => new String'("zlib"), Bits => 16, Offset => 0, Description => new String'("zlib no compression")), (Magic_Number => Zlib_Default_Compression, Extension => new String'("zlib"), Bits => 16, Offset => 0, Description => new String'("zlib default compression")), (Magic_Number => Zlib_Best_Compression, Extension => new String'("zlib"), Bits => 16, Offset => 0, Description => new String'("zlib best compression")) ); procedure Print_File_Info (F : File_Signature); end Headers;
reznikmm/matreshka
Ada
3,870
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Tools Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2015, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Asis; with Engines.Contexts; with League.Strings; package Properties.Definitions.Simple_Expression_Range is function Lower (Engine : access Engines.Contexts.Context; Element : Asis.Expression; Name : Engines.Text_Property) return League.Strings.Universal_String; function Upper (Engine : access Engines.Contexts.Context; Element : Asis.Expression; Name : Engines.Text_Property) return League.Strings.Universal_String; end Properties.Definitions.Simple_Expression_Range;
stcarrez/ada-asf
Ada
18,165
adb
----------------------------------------------------------------------- -- components-core-views -- ASF View Components -- Copyright (C) 2009, 2010, 2011, 2012, 2019, 2022 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Unchecked_Deallocation; with ASF.Events.Phases; with ASF.Components.Base; with ASF.Events.Faces.Actions; with ASF.Applications.Main; package body ASF.Components.Core.Views is use type Base.UIComponent_Access; procedure Free is new Ada.Unchecked_Deallocation (Object => ASF.Events.Faces.Faces_Event'Class, Name => Faces_Event_Access); -- ------------------------------ -- Get the content type returned by the view. -- ------------------------------ function Get_Content_Type (UI : in UIView; Context : in Faces_Context'Class) return String is begin if Util.Beans.Objects.Is_Null (UI.Content_Type) then return UI.Get_Attribute (Name => "contentType", Context => Context); else return Util.Beans.Objects.To_String (UI.Content_Type); end if; end Get_Content_Type; -- ------------------------------ -- Set the content type returned by the view. -- ------------------------------ procedure Set_Content_Type (UI : in out UIView; Value : in String) is begin UI.Content_Type := Util.Beans.Objects.To_Object (Value); end Set_Content_Type; -- ------------------------------ -- Get the locale to be used when rendering messages in the view. -- If a locale was set explicitly, return it. -- If the view component defines a <b>locale</b> attribute, evaluate and return its value. -- If the locale is empty, calculate the locale by using the request context and the view -- handler. -- ------------------------------ function Get_Locale (UI : in UIView; Context : in Faces_Context'Class) return Util.Locales.Locale is use type Util.Locales.Locale; begin if UI.Locale /= Util.Locales.NULL_LOCALE then return UI.Locale; end if; declare Value : constant Util.Beans.Objects.Object := UI.Get_Attribute (Name => "locale", Context => Context); begin -- If the root view does not specify any locale, calculate it from the request. if Util.Beans.Objects.Is_Null (Value) then return Context.Get_Application.Get_View_Handler.Calculate_Locale (Context); end if; -- Resolve the locale. If it is not valid, calculate it from the request. declare Name : constant String := Util.Beans.Objects.To_String (Value); Locale : constant Util.Locales.Locale := Util.Locales.Get_Locale (Name); begin if Locale /= Util.Locales.NULL_LOCALE then return Locale; else return Context.Get_Application.Get_View_Handler.Calculate_Locale (Context); end if; end; end; end Get_Locale; -- ------------------------------ -- Set the locale to be used when rendering messages in the view. -- ------------------------------ procedure Set_Locale (UI : in out UIView; Locale : in Util.Locales.Locale) is begin UI.Locale := Locale; end Set_Locale; -- ------------------------------ -- Encode the beginning of the view. Set the response content type. -- ------------------------------ overriding procedure Encode_Begin (UI : in UIView; Context : in out Faces_Context'Class) is Content_Type : constant String := UI.Get_Content_Type (Context => Context); begin Context.Get_Response.Set_Content_Type (Content_Type); if UI.Left_Tree /= null then UI.Left_Tree.Encode_All (Context); end if; end Encode_Begin; -- ------------------------------ -- Encode the end of the view. -- ------------------------------ overriding procedure Encode_End (UI : in UIView; Context : in out Faces_Context'Class) is begin if UI.Right_Tree /= null then UI.Right_Tree.Encode_All (Context); end if; end Encode_End; -- ------------------------------ -- Decode any new state of the specified component from the request contained -- in the specified context and store that state on the component. -- -- During decoding, events may be enqueued for later processing -- (by event listeners that have registered an interest), by calling -- the <b>Queue_Event</b> on the associated component. -- ------------------------------ overriding procedure Process_Decodes (UI : in out UIView; Context : in out Faces_Context'Class) is begin Base.UIComponent (UI).Process_Decodes (Context); -- Dispatch events queued for this phase. UIView'Class (UI).Broadcast (ASF.Events.Phases.APPLY_REQUEST_VALUES, Context); -- Drop other events if the response is to be returned. if Context.Get_Render_Response or else Context.Get_Response_Completed then UIView'Class (UI).Clear_Events; end if; end Process_Decodes; -- ------------------------------ -- Perform the component tree processing required by the <b>Process Validations</b> -- phase of the request processing lifecycle for all facets of this component, -- all children of this component, and this component itself, as follows: -- <ul> -- <li>If this component <b>rendered</b> property is false, skip further processing. -- <li>Call the <b>Process_Validators</b> of all facets and children. -- <ul> -- ------------------------------ overriding procedure Process_Validators (UI : in out UIView; Context : in out Faces_Context'Class) is begin Base.UIComponent (UI).Process_Validators (Context); -- Dispatch events queued for this phase. UIView'Class (UI).Broadcast (ASF.Events.Phases.PROCESS_VALIDATION, Context); -- Drop other events if the response is to be returned. if Context.Get_Render_Response or else Context.Get_Response_Completed then UIView'Class (UI).Clear_Events; end if; end Process_Validators; -- ------------------------------ -- Perform the component tree processing required by the <b>Update Model Values</b> -- phase of the request processing lifecycle for all facets of this component, -- all children of this component, and this component itself, as follows. -- <ul> -- <li>If this component <b>rendered</b> property is false, skip further processing. -- <li>Call the <b>Process_Updates/b> of all facets and children. -- <ul> -- ------------------------------ overriding procedure Process_Updates (UI : in out UIView; Context : in out Faces_Context'Class) is begin Base.UIComponent (UI).Process_Updates (Context); -- Dispatch events queued for this phase. UIView'Class (UI).Broadcast (ASF.Events.Phases.UPDATE_MODEL_VALUES, Context); -- Drop other events if the response is to be returned. if Context.Get_Render_Response or else Context.Get_Response_Completed then UIView'Class (UI).Clear_Events; end if; end Process_Updates; -- ------------------------------ -- Broadcast any events that have been queued for the <b>Invoke Application</b> -- phase of the request processing lifecycle and to clear out any events -- for later phases if the event processing for this phase caused -- <b>renderResponse</b> or <b>responseComplete</b> to be called. -- ------------------------------ procedure Process_Application (UI : in out UIView; Context : in out Faces_Context'Class) is begin -- Dispatch events queued for this phase. UIView'Class (UI).Broadcast (ASF.Events.Phases.INVOKE_APPLICATION, Context); end Process_Application; -- ------------------------------ -- Queue an event for broadcast at the end of the current request -- processing lifecycle phase. The event object -- will be freed after being dispatched. -- ------------------------------ overriding procedure Queue_Event (UI : in out UIView; Event : not null access ASF.Events.Faces.Faces_Event'Class) is Parent : constant Base.UIComponent_Access := UI.Get_Parent; begin if Parent /= null then Parent.Queue_Event (Event); else UI.Phase_Events (Event.Get_Phase).Append (Event.all'Access); end if; end Queue_Event; -- ------------------------------ -- Broadcast the events after the specified lifecycle phase. -- Events that were queued will be freed. -- ------------------------------ procedure Broadcast (UI : in out UIView; Phase : in ASF.Lifecycles.Phase_Type; Context : in out Faces_Context'Class) is Pos : Natural := 0; -- Broadcast the event to the component's listeners -- and free that event. procedure Broadcast (Ev : in out Faces_Event_Access); procedure Broadcast (Ev : in out Faces_Event_Access) is begin if Ev /= null then declare C : constant Base.UIComponent_Access := Ev.Get_Component; begin C.Broadcast (Ev, Context); end; Free (Ev); end if; end Broadcast; Parent : constant Base.UIComponent_Access := UI.Get_Parent; begin if Parent /= null then UIView'Class (Parent.all).Broadcast (Phase, Context); else -- Dispatch events in the order in which they were queued. -- More events could be queued as a result of the dispatch. -- After dispatching an event, it is freed but not removed -- from the event queue (the access will be cleared). loop exit when Pos > UI.Phase_Events (Phase).Last_Index; UI.Phase_Events (Phase).Update_Element (Pos, Broadcast'Access); Pos := Pos + 1; end loop; -- Now, clear the queue. UI.Phase_Events (Phase).Clear; end if; end Broadcast; -- ------------------------------ -- Clear the events that were queued. -- ------------------------------ procedure Clear_Events (UI : in out UIView) is begin for Phase in UI.Phase_Events'Range loop for I in 0 .. UI.Phase_Events (Phase).Last_Index loop declare Ev : Faces_Event_Access := UI.Phase_Events (Phase).Element (I); begin Free (Ev); end; end loop; UI.Phase_Events (Phase).Clear; end loop; end Clear_Events; -- ------------------------------ -- Set the component tree that must be rendered before this view. -- This is an internal method used by Steal_Root_Component exclusively. -- ------------------------------ procedure Set_Before_View (UI : in out UIView'Class; Tree : in Base.UIComponent_Access) is begin if UI.Left_Tree /= null then UI.Log_Error ("Set_Before_View called while there is a tree"); end if; UI.Left_Tree := Tree; end Set_Before_View; -- ------------------------------ -- Set the component tree that must be rendered after this view. -- This is an internal method used by Steal_Root_Component exclusively. -- ------------------------------ procedure Set_After_View (UI : in out UIView'Class; Tree : in Base.UIComponent_Access) is begin if UI.Right_Tree /= null then UI.Log_Error ("Set_Before_View called while there is a tree"); end if; UI.Right_Tree := Tree; end Set_After_View; -- ------------------------------ -- Finalize the object. -- ------------------------------ overriding procedure Finalize (UI : in out UIView) is procedure Free is new Ada.Unchecked_Deallocation (Object => Base.UIComponent'Class, Name => Base.UIComponent_Access); begin Free (UI.Left_Tree); Free (UI.Right_Tree); Base.UIComponent (UI).Finalize; end Finalize; -- ------------------------------ -- Set the metadata facet on the UIView component. -- ------------------------------ procedure Set_Metadata (UI : in out UIView; Meta : in UIViewMetaData_Access; Tag : access ASF.Views.Nodes.Tag_Node'Class) is begin if UI.Meta /= null then UI.Log_Error ("A <f:metadata> component was already registered."); -- Delete (UI.Meta); end if; Meta.Root := UI'Unchecked_Access; UI.Meta := Meta; UI.Add_Facet (METADATA_FACET_NAME, Meta.all'Access, Tag); end Set_Metadata; -- ------------------------------ -- Get the input parameter from the submitted context. This operation is called by -- <tt>Process_Decodes</tt> to retrieve the request parameter associated with the component. -- ------------------------------ overriding function Get_Parameter (UI : in UIViewParameter; Context : in Faces_Context'Class) return String is Name : constant String := UI.Get_Attribute ("name", Context); begin if Name'Length > 0 then return Context.Get_Parameter (Name); else declare Value : constant Util.Beans.Objects.Object := UI.Get_Attribute (Context, "from"); begin if Util.Beans.Objects.Is_Null (Value) then return Html.Forms.UIInput (UI).Get_Parameter (Context); else return Util.Beans.Objects.To_String (Value); end if; end; end if; end Get_Parameter; -- ------------------------------ -- Decode the request and prepare for the execution for the view action. -- ------------------------------ overriding procedure Process_Decodes (UI : in out UIViewAction; Context : in out Faces_Context'Class) is begin if not UI.Is_Rendered (Context) then return; end if; begin ASF.Events.Faces.Actions.Post_Event (UI => UI, Method => UI.Get_Action_Expression (Context)); exception when EL.Expressions.Invalid_Expression => null; end; end Process_Decodes; -- ------------------------------ -- Get the root component. -- ------------------------------ function Get_Root (UI : in UIViewMetaData) return Base.UIComponent_Access is Result : Base.UIComponent_Access := UI.Get_Parent; Parent : Base.UIComponent_Access := Result.Get_Parent; begin while Parent /= null loop Result := Parent; Parent := Parent.Get_Parent; end loop; return Result; end Get_Root; -- ------------------------------ -- Start encoding the UIComponent. -- ------------------------------ overriding procedure Encode_Begin (UI : in UIViewMetaData; Context : in out Faces_Context'Class) is begin UI.Get_Root.Encode_Begin (Context); end Encode_Begin; -- ------------------------------ -- Encode the children of this component. -- ------------------------------ overriding procedure Encode_Children (UI : in UIViewMetaData; Context : in out Faces_Context'Class) is begin UI.Get_Root.Encode_Children (Context); end Encode_Children; -- ------------------------------ -- Finish encoding the component. -- ------------------------------ overriding procedure Encode_End (UI : in UIViewMetaData; Context : in out Faces_Context'Class) is begin UI.Get_Root.Encode_End (Context); end Encode_End; -- ------------------------------ -- Queue an event for broadcast at the end of the current request -- processing lifecycle phase. The event object -- will be freed after being dispatched. -- ------------------------------ overriding procedure Queue_Event (UI : in out UIViewMetaData; Event : not null access ASF.Events.Faces.Faces_Event'Class) is begin UI.Root.Queue_Event (Event); end Queue_Event; -- ------------------------------ -- Broadcast the events after the specified lifecycle phase. -- Events that were queued will be freed. -- ------------------------------ overriding procedure Broadcast (UI : in out UIViewMetaData; Phase : in ASF.Lifecycles.Phase_Type; Context : in out Faces_Context'Class) is begin UI.Root.Broadcast (Phase, Context); end Broadcast; -- ------------------------------ -- Clear the events that were queued. -- ------------------------------ overriding procedure Clear_Events (UI : in out UIViewMetaData) is begin UI.Root.Clear_Events; end Clear_Events; end ASF.Components.Core.Views;
AdaCore/training_material
Ada
770
ads
package Shapes is pragma Elaborate_Body; type Float_T is digits 6; type Vertex_T is record X : Float_T; Y : Float_T; end record; type Vertices_T is array (Positive range <>) of Vertex_T; -- Create abstract Shape_T with some information -- Create primitive subprograms to get/set object description, -- number of sides, and perimeter -- Create concrete Quadrilateral type which is a shape with 4 sides -- Implement primitive subprograms as needed -- Create concrete Square type which is a Quadrilateral with all 4 sides -- of the same length. -- Implement primitive subprograms as needed -- Create concrete Triangle type which is a shape with 3 sides -- Implement primitive subprograms as needed end Shapes;
zhmu/ananas
Ada
4,380
adb
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . T E X T _ I O . F L O A T _ A U X -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2022, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Ada.Text_IO.Generic_Aux; use Ada.Text_IO.Generic_Aux; with System.Img_Util; use System.Img_Util; package body Ada.Text_IO.Float_Aux is --------- -- Get -- --------- procedure Get (File : File_Type; Item : out Num; Width : Field) is Buf : String (1 .. Field'Last); Stop : Integer := 0; Ptr : aliased Integer; begin if Width /= 0 then Load_Width (File, Width, Buf, Stop); String_Skip (Buf, Ptr); else Load_Real (File, Buf, Stop); Ptr := 1; end if; Item := Scan (Buf, Ptr'Access, Stop); Check_End_Of_Field (Buf, Stop, Ptr, Width); end Get; ---------- -- Gets -- ---------- procedure Gets (From : String; Item : out Num; Last : out Positive) is Pos : aliased Integer; begin String_Skip (From, Pos); Item := Scan (From, Pos'Access, From'Last); Last := Pos - 1; exception when Constraint_Error => raise Data_Error; end Gets; --------- -- Put -- --------- procedure Put (File : File_Type; Item : Num; Fore : Field; Aft : Field; Exp : Field) is Buf : String (1 .. Max_Real_Image_Length); Ptr : Natural := 0; begin Set_Image (Item, Buf, Ptr, Fore, Aft, Exp); Put_Item (File, Buf (1 .. Ptr)); end Put; ---------- -- Puts -- ---------- procedure Puts (To : out String; Item : Num; Aft : Field; Exp : Field) is Buf : String (1 .. Max_Real_Image_Length); Ptr : Natural := 0; begin Set_Image (Item, Buf, Ptr, Fore => 1, Aft => Aft, Exp => Exp); if Ptr > To'Length then raise Layout_Error; else for J in 1 .. Ptr loop To (To'Last - Ptr + J) := Buf (J); end loop; for J in To'First .. To'Last - Ptr loop To (J) := ' '; end loop; end if; end Puts; end Ada.Text_IO.Float_Aux;
onox/orka
Ada
2,451
ads
-- SPDX-License-Identifier: Apache-2.0 -- -- Copyright (c) 2016 onox <[email protected]> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. with GL.Low_Level; with Orka.Containers.Bounded_Vectors; with Orka.Resources; package Orka.glTF.Buffers is pragma Preelaborate; use Orka.Resources; type Buffer_Kind is (Array_Buffer, Element_Array_Buffer); for Buffer_Kind use (Array_Buffer => 16#8892#, Element_Array_Buffer => 16#8893#); for Buffer_Kind'Size use GL.Low_Level.Enum'Size; Target_Kinds : constant array (Integer range <>) of Buffer_Kind := (34962 => Array_Buffer, 34963 => Element_Array_Buffer); subtype Buffer is Byte_Array_Pointers.Pointer; package Buffer_Vectors is new Orka.Containers.Bounded_Vectors (Natural, Buffer); function Get_Buffers (Buffers : Types.JSON_Value; Load_Path : not null access function (Path : String) return Byte_Array_Pointers.Pointer) return Buffer_Vectors.Vector; subtype Stride_Natural is Natural range 4 .. 252; type Buffer_View (Packed : Boolean := True) is record Buffer : Natural; Offset : Natural; -- Offset in bytes Length : Positive; -- Length in bytes Target : Buffer_Kind; case Packed is when False => Stride : Stride_Natural; when others => null; end case; end record; package Buffer_View_Vectors is new Orka.Containers.Bounded_Vectors (Natural, Buffer_View); generic type Element_Type is private; type Element_Array is array (Size range <>) of aliased Element_Type; procedure Extract_From_Buffer (Buffers : Buffer_Vectors.Vector; View : Buffer_View; Data : out Element_Array); function Get_Buffer_Views (Buffers : Buffer_Vectors.Vector; Views : Types.JSON_Value) return Buffer_View_Vectors.Vector; end Orka.glTF.Buffers;
Gabriel-Degret/adalib
Ada
6,724
ads
-- Standard Ada library specification -- Copyright (c) 2003-2018 Maxim Reznik <[email protected]> -- Copyright (c) 2004-2016 AXE Consultants -- Copyright (c) 2004, 2005, 2006 Ada-Europe -- Copyright (c) 2000 The MITRE Corporation, Inc. -- Copyright (c) 1992, 1993, 1994, 1995 Intermetrics, Inc. -- SPDX-License-Identifier: BSD-3-Clause and LicenseRef-AdaReferenceManual --------------------------------------------------------------------------- with Ada.Iterator_Interfaces; generic type Key_Type (<>) is private; type Element_Type (<>) is private; with function "<" (Left, Right : Key_Type) return Boolean is <>; with function "=" (Left, Right : Element_Type) return Boolean is <>; package Ada.Containers.Indefinite_Ordered_Maps is pragma Preelaborate(Indefinite_Ordered_Maps); pragma Remote_Types(Indefinite_Ordered_Maps); function Equivalent_Keys (Left, Right : Key_Type) return Boolean; type Map is tagged private with Constant_Indexing => Constant_Reference, Variable_Indexing => Reference, Default_Iterator => Iterate, Iterator_Element => Element_Type; pragma Preelaborable_Initialization(Map); type Cursor is private; pragma Preelaborable_Initialization(Cursor); Empty_Map : constant Map; No_Element : constant Cursor; function Has_Element (Position : Cursor) return Boolean; package Map_Iterator_Interfaces is new Ada.Iterator_Interfaces (Cursor, Has_Element); function "=" (Left, Right : Map) return Boolean; function Length (Container : Map) return Count_Type; function Is_Empty (Container : Map) return Boolean; procedure Clear (Container : in out Map); function Key (Position : Cursor) return Key_Type; function Element (Position : Cursor) return Element_Type; procedure Replace_Element (Container : in out Map; Position : in Cursor; New_Item : in Element_Type); procedure Query_Element (Position : in Cursor; Process : not null access procedure (Key : in Key_Type; Element : in Element_Type)); procedure Update_Element (Container : in out Map; Position : in Cursor; Process : not null access procedure (Key : in Key_Type; Element : in out Element_Type)); type Constant_Reference_Type (Element : not null access constant Element_Type) is private with Implicit_Dereference => Element; type Reference_Type (Element : not null access Element_Type) is private with Implicit_Dereference => Element; function Constant_Reference (Container : aliased in Map; Position : in Cursor) return Constant_Reference_Type; function Reference (Container : aliased in out Map; Position : in Cursor) return Reference_Type; function Constant_Reference (Container : aliased in Map; Key : in Key_Type) return Constant_Reference_Type; function Reference (Container : aliased in out Map; Key : in Key_Type) return Reference_Type; procedure Assign (Target : in out Map; Source : in Map); function Copy (Source : Map) return Map; procedure Move (Target : in out Map; Source : in out Map); procedure Insert (Container : in out Map; Key : in Key_Type; New_Item : in Element_Type; Position : out Cursor; Inserted : out Boolean); procedure Insert (Container : in out Map; Key : in Key_Type; New_Item : in Element_Type); procedure Include (Container : in out Map; Key : in Key_Type; New_Item : in Element_Type); procedure Replace (Container : in out Map; Key : in Key_Type; New_Item : in Element_Type); procedure Exclude (Container : in out Map; Key : in Key_Type); procedure Delete (Container : in out Map; Key : in Key_Type); procedure Delete (Container : in out Map; Position : in out Cursor); procedure Delete_First (Container : in out Map); procedure Delete_Last (Container : in out Map); function First (Container : Map) return Cursor; function First_Element (Container : Map) return Element_Type; function First_Key (Container : Map) return Key_Type; function Last (Container : Map) return Cursor; function Last_Element (Container : Map) return Element_Type; function Last_Key (Container : Map) return Key_Type; function Next (Position : Cursor) return Cursor; procedure Next (Position : in out Cursor); function Previous (Position : Cursor) return Cursor; procedure Previous (Position : in out Cursor); function Find (Container : Map; Key : Key_Type) return Cursor; function Element (Container : Map; Key : Key_Type) return Element_Type; function Floor (Container : Map; Key : Key_Type) return Cursor; function Ceiling (Container : Map; Key : Key_Type) return Cursor; function Contains (Container : Map; Key : Key_Type) return Boolean; function "<" (Left, Right : Cursor) return Boolean; function ">" (Left, Right : Cursor) return Boolean; function "<" (Left : Cursor; Right : Key_Type) return Boolean; function ">" (Left : Cursor; Right : Key_Type) return Boolean; function "<" (Left : Key_Type; Right : Cursor) return Boolean; function ">" (Left : Key_Type; Right : Cursor) return Boolean; procedure Iterate (Container : in Map; Process : not null access procedure (Position : in Cursor)); procedure Reverse_Iterate (Container : in Map; Process : not null access procedure (Position : in Cursor)); function Iterate (Container : in Map) return Map_Iterator_Interfaces.Reversible_Iterator'Class; function Iterate (Container : in Map; Start : in Cursor) return Map_Iterator_Interfaces.Reversible_Iterator'Class; private -- not specified by the language type Map is tagged null record; Empty_Map : constant Map := (null record); type Cursor is null record; No_Element : constant Cursor := (null record); end Ada.Containers.Indefinite_Ordered_Maps;
zhmu/ananas
Ada
339
adb
-- { dg-do run } with System.Storage_Elements; use System.Storage_Elements; with Oalign1, Oalign2; use Oalign1, Oalign2; procedure Test_Oalign is begin if Klunk1'Address mod Klunk1'Alignment /= 0 then raise Program_Error; end if; if Klunk2'Address mod Klunk2'Alignment /= 0 then raise Program_Error; end if; end;
JeremyGrosser/clock3
Ada
21,737
ads
pragma Style_Checks (Off); -- Copyright (c) 2018 Microchip Technology Inc. -- -- SPDX-License-Identifier: Apache-2.0 -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- This spec has been automatically generated from ATSAMD21G18A.svd pragma Restrictions (No_Elaboration_Code); with HAL; with System; package SAMD21_SVD.EVSYS is pragma Preelaborate; --------------- -- Registers -- --------------- -- Control type EVSYS_CTRL_Register is record -- Write-only. Software Reset SWRST : Boolean := False; -- unspecified Reserved_1_3 : HAL.UInt3 := 16#0#; -- Write-only. Generic Clock Requests GCLKREQ : Boolean := False; -- unspecified Reserved_5_7 : HAL.UInt3 := 16#0#; end record with Volatile_Full_Access, Object_Size => 8, Bit_Order => System.Low_Order_First; for EVSYS_CTRL_Register use record SWRST at 0 range 0 .. 0; Reserved_1_3 at 0 range 1 .. 3; GCLKREQ at 0 range 4 .. 4; Reserved_5_7 at 0 range 5 .. 7; end record; subtype EVSYS_CHANNEL_CHANNEL_Field is HAL.UInt4; subtype EVSYS_CHANNEL_EVGEN_Field is HAL.UInt7; -- Path Selection type CHANNEL_PATHSelect is (-- Synchronous path SYNCHRONOUS, -- Resynchronized path RESYNCHRONIZED, -- Asynchronous path ASYNCHRONOUS) with Size => 2; for CHANNEL_PATHSelect use (SYNCHRONOUS => 0, RESYNCHRONIZED => 1, ASYNCHRONOUS => 2); -- Edge Detection Selection type CHANNEL_EDGSELSelect is (-- No event output when using the resynchronized or synchronous path NO_EVT_OUTPUT, -- Event detection only on the rising edge of the signal from the event -- generator when using the resynchronized or synchronous path RISING_EDGE, -- Event detection only on the falling edge of the signal from the event -- generator when using the resynchronized or synchronous path FALLING_EDGE, -- Event detection on rising and falling edges of the signal from the event -- generator when using the resynchronized or synchronous path BOTH_EDGES) with Size => 2; for CHANNEL_EDGSELSelect use (NO_EVT_OUTPUT => 0, RISING_EDGE => 1, FALLING_EDGE => 2, BOTH_EDGES => 3); -- Channel type EVSYS_CHANNEL_Register is record -- Channel Selection CHANNEL : EVSYS_CHANNEL_CHANNEL_Field := 16#0#; -- unspecified Reserved_4_7 : HAL.UInt4 := 16#0#; -- Software Event SWEVT : Boolean := False; -- unspecified Reserved_9_15 : HAL.UInt7 := 16#0#; -- Event Generator Selection EVGEN : EVSYS_CHANNEL_EVGEN_Field := 16#0#; -- unspecified Reserved_23_23 : HAL.Bit := 16#0#; -- Path Selection PATH : CHANNEL_PATHSelect := SAMD21_SVD.EVSYS.SYNCHRONOUS; -- Edge Detection Selection EDGSEL : CHANNEL_EDGSELSelect := SAMD21_SVD.EVSYS.NO_EVT_OUTPUT; -- unspecified Reserved_28_31 : HAL.UInt4 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for EVSYS_CHANNEL_Register use record CHANNEL at 0 range 0 .. 3; Reserved_4_7 at 0 range 4 .. 7; SWEVT at 0 range 8 .. 8; Reserved_9_15 at 0 range 9 .. 15; EVGEN at 0 range 16 .. 22; Reserved_23_23 at 0 range 23 .. 23; PATH at 0 range 24 .. 25; EDGSEL at 0 range 26 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; subtype EVSYS_USER_USER_Field is HAL.UInt5; -- Channel Event Selection type USER_CHANNELSelect is (-- No Channel Output Selected Val_0) with Size => 5; for USER_CHANNELSelect use (Val_0 => 0); -- User Multiplexer type EVSYS_USER_Register is record -- User Multiplexer Selection USER : EVSYS_USER_USER_Field := 16#0#; -- unspecified Reserved_5_7 : HAL.UInt3 := 16#0#; -- Channel Event Selection CHANNEL : USER_CHANNELSelect := SAMD21_SVD.EVSYS.Val_0; -- unspecified Reserved_13_15 : HAL.UInt3 := 16#0#; end record with Volatile_Full_Access, Object_Size => 16, Bit_Order => System.Low_Order_First; for EVSYS_USER_Register use record USER at 0 range 0 .. 4; Reserved_5_7 at 0 range 5 .. 7; CHANNEL at 0 range 8 .. 12; Reserved_13_15 at 0 range 13 .. 15; end record; -- EVSYS_CHSTATUS_USRRDY array type EVSYS_CHSTATUS_USRRDY_Field_Array is array (0 .. 7) of Boolean with Component_Size => 1, Size => 8; -- Type definition for EVSYS_CHSTATUS_USRRDY type EVSYS_CHSTATUS_USRRDY_Field (As_Array : Boolean := False) is record case As_Array is when False => -- USRRDY as a value Val : HAL.UInt8; when True => -- USRRDY as an array Arr : EVSYS_CHSTATUS_USRRDY_Field_Array; end case; end record with Unchecked_Union, Size => 8; for EVSYS_CHSTATUS_USRRDY_Field use record Val at 0 range 0 .. 7; Arr at 0 range 0 .. 7; end record; -- EVSYS_CHSTATUS_CHBUSY array type EVSYS_CHSTATUS_CHBUSY_Field_Array is array (0 .. 7) of Boolean with Component_Size => 1, Size => 8; -- Type definition for EVSYS_CHSTATUS_CHBUSY type EVSYS_CHSTATUS_CHBUSY_Field (As_Array : Boolean := False) is record case As_Array is when False => -- CHBUSY as a value Val : HAL.UInt8; when True => -- CHBUSY as an array Arr : EVSYS_CHSTATUS_CHBUSY_Field_Array; end case; end record with Unchecked_Union, Size => 8; for EVSYS_CHSTATUS_CHBUSY_Field use record Val at 0 range 0 .. 7; Arr at 0 range 0 .. 7; end record; -- EVSYS_CHSTATUS_USRRDY array type EVSYS_CHSTATUS_USRRDY_Field_Array_1 is array (8 .. 11) of Boolean with Component_Size => 1, Size => 4; -- Type definition for EVSYS_CHSTATUS_USRRDY type EVSYS_CHSTATUS_USRRDY_Field_1 (As_Array : Boolean := False) is record case As_Array is when False => -- USRRDY as a value Val : HAL.UInt4; when True => -- USRRDY as an array Arr : EVSYS_CHSTATUS_USRRDY_Field_Array_1; end case; end record with Unchecked_Union, Size => 4; for EVSYS_CHSTATUS_USRRDY_Field_1 use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- EVSYS_CHSTATUS_CHBUSY array type EVSYS_CHSTATUS_CHBUSY_Field_Array_1 is array (8 .. 11) of Boolean with Component_Size => 1, Size => 4; -- Type definition for EVSYS_CHSTATUS_CHBUSY type EVSYS_CHSTATUS_CHBUSY_Field_1 (As_Array : Boolean := False) is record case As_Array is when False => -- CHBUSY as a value Val : HAL.UInt4; when True => -- CHBUSY as an array Arr : EVSYS_CHSTATUS_CHBUSY_Field_Array_1; end case; end record with Unchecked_Union, Size => 4; for EVSYS_CHSTATUS_CHBUSY_Field_1 use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- Channel Status type EVSYS_CHSTATUS_Register is record -- Read-only. Channel 0 User Ready USRRDY : EVSYS_CHSTATUS_USRRDY_Field; -- Read-only. Channel 0 Busy CHBUSY : EVSYS_CHSTATUS_CHBUSY_Field; -- Read-only. Channel 8 User Ready USRRDY_1 : EVSYS_CHSTATUS_USRRDY_Field_1; -- unspecified Reserved_20_23 : HAL.UInt4; -- Read-only. Channel 8 Busy CHBUSY_1 : EVSYS_CHSTATUS_CHBUSY_Field_1; -- unspecified Reserved_28_31 : HAL.UInt4; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for EVSYS_CHSTATUS_Register use record USRRDY at 0 range 0 .. 7; CHBUSY at 0 range 8 .. 15; USRRDY_1 at 0 range 16 .. 19; Reserved_20_23 at 0 range 20 .. 23; CHBUSY_1 at 0 range 24 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; -- EVSYS_INTENCLR_OVR array type EVSYS_INTENCLR_OVR_Field_Array is array (0 .. 7) of Boolean with Component_Size => 1, Size => 8; -- Type definition for EVSYS_INTENCLR_OVR type EVSYS_INTENCLR_OVR_Field (As_Array : Boolean := False) is record case As_Array is when False => -- OVR as a value Val : HAL.UInt8; when True => -- OVR as an array Arr : EVSYS_INTENCLR_OVR_Field_Array; end case; end record with Unchecked_Union, Size => 8; for EVSYS_INTENCLR_OVR_Field use record Val at 0 range 0 .. 7; Arr at 0 range 0 .. 7; end record; -- EVSYS_INTENCLR_EVD array type EVSYS_INTENCLR_EVD_Field_Array is array (0 .. 7) of Boolean with Component_Size => 1, Size => 8; -- Type definition for EVSYS_INTENCLR_EVD type EVSYS_INTENCLR_EVD_Field (As_Array : Boolean := False) is record case As_Array is when False => -- EVD as a value Val : HAL.UInt8; when True => -- EVD as an array Arr : EVSYS_INTENCLR_EVD_Field_Array; end case; end record with Unchecked_Union, Size => 8; for EVSYS_INTENCLR_EVD_Field use record Val at 0 range 0 .. 7; Arr at 0 range 0 .. 7; end record; -- EVSYS_INTENCLR_OVR array type EVSYS_INTENCLR_OVR_Field_Array_1 is array (8 .. 11) of Boolean with Component_Size => 1, Size => 4; -- Type definition for EVSYS_INTENCLR_OVR type EVSYS_INTENCLR_OVR_Field_1 (As_Array : Boolean := False) is record case As_Array is when False => -- OVR as a value Val : HAL.UInt4; when True => -- OVR as an array Arr : EVSYS_INTENCLR_OVR_Field_Array_1; end case; end record with Unchecked_Union, Size => 4; for EVSYS_INTENCLR_OVR_Field_1 use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- EVSYS_INTENCLR_EVD array type EVSYS_INTENCLR_EVD_Field_Array_1 is array (8 .. 11) of Boolean with Component_Size => 1, Size => 4; -- Type definition for EVSYS_INTENCLR_EVD type EVSYS_INTENCLR_EVD_Field_1 (As_Array : Boolean := False) is record case As_Array is when False => -- EVD as a value Val : HAL.UInt4; when True => -- EVD as an array Arr : EVSYS_INTENCLR_EVD_Field_Array_1; end case; end record with Unchecked_Union, Size => 4; for EVSYS_INTENCLR_EVD_Field_1 use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- Interrupt Enable Clear type EVSYS_INTENCLR_Register is record -- Channel 0 Overrun Interrupt Enable OVR : EVSYS_INTENCLR_OVR_Field := (As_Array => False, Val => 16#0#); -- Channel 0 Event Detection Interrupt Enable EVD : EVSYS_INTENCLR_EVD_Field := (As_Array => False, Val => 16#0#); -- Channel 8 Overrun Interrupt Enable OVR_1 : EVSYS_INTENCLR_OVR_Field_1 := (As_Array => False, Val => 16#0#); -- unspecified Reserved_20_23 : HAL.UInt4 := 16#0#; -- Channel 8 Event Detection Interrupt Enable EVD_1 : EVSYS_INTENCLR_EVD_Field_1 := (As_Array => False, Val => 16#0#); -- unspecified Reserved_28_31 : HAL.UInt4 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for EVSYS_INTENCLR_Register use record OVR at 0 range 0 .. 7; EVD at 0 range 8 .. 15; OVR_1 at 0 range 16 .. 19; Reserved_20_23 at 0 range 20 .. 23; EVD_1 at 0 range 24 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; -- EVSYS_INTENSET_OVR array type EVSYS_INTENSET_OVR_Field_Array is array (0 .. 7) of Boolean with Component_Size => 1, Size => 8; -- Type definition for EVSYS_INTENSET_OVR type EVSYS_INTENSET_OVR_Field (As_Array : Boolean := False) is record case As_Array is when False => -- OVR as a value Val : HAL.UInt8; when True => -- OVR as an array Arr : EVSYS_INTENSET_OVR_Field_Array; end case; end record with Unchecked_Union, Size => 8; for EVSYS_INTENSET_OVR_Field use record Val at 0 range 0 .. 7; Arr at 0 range 0 .. 7; end record; -- EVSYS_INTENSET_EVD array type EVSYS_INTENSET_EVD_Field_Array is array (0 .. 7) of Boolean with Component_Size => 1, Size => 8; -- Type definition for EVSYS_INTENSET_EVD type EVSYS_INTENSET_EVD_Field (As_Array : Boolean := False) is record case As_Array is when False => -- EVD as a value Val : HAL.UInt8; when True => -- EVD as an array Arr : EVSYS_INTENSET_EVD_Field_Array; end case; end record with Unchecked_Union, Size => 8; for EVSYS_INTENSET_EVD_Field use record Val at 0 range 0 .. 7; Arr at 0 range 0 .. 7; end record; -- EVSYS_INTENSET_OVR array type EVSYS_INTENSET_OVR_Field_Array_1 is array (8 .. 11) of Boolean with Component_Size => 1, Size => 4; -- Type definition for EVSYS_INTENSET_OVR type EVSYS_INTENSET_OVR_Field_1 (As_Array : Boolean := False) is record case As_Array is when False => -- OVR as a value Val : HAL.UInt4; when True => -- OVR as an array Arr : EVSYS_INTENSET_OVR_Field_Array_1; end case; end record with Unchecked_Union, Size => 4; for EVSYS_INTENSET_OVR_Field_1 use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- EVSYS_INTENSET_EVD array type EVSYS_INTENSET_EVD_Field_Array_1 is array (8 .. 11) of Boolean with Component_Size => 1, Size => 4; -- Type definition for EVSYS_INTENSET_EVD type EVSYS_INTENSET_EVD_Field_1 (As_Array : Boolean := False) is record case As_Array is when False => -- EVD as a value Val : HAL.UInt4; when True => -- EVD as an array Arr : EVSYS_INTENSET_EVD_Field_Array_1; end case; end record with Unchecked_Union, Size => 4; for EVSYS_INTENSET_EVD_Field_1 use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- Interrupt Enable Set type EVSYS_INTENSET_Register is record -- Channel 0 Overrun Interrupt Enable OVR : EVSYS_INTENSET_OVR_Field := (As_Array => False, Val => 16#0#); -- Channel 0 Event Detection Interrupt Enable EVD : EVSYS_INTENSET_EVD_Field := (As_Array => False, Val => 16#0#); -- Channel 8 Overrun Interrupt Enable OVR_1 : EVSYS_INTENSET_OVR_Field_1 := (As_Array => False, Val => 16#0#); -- unspecified Reserved_20_23 : HAL.UInt4 := 16#0#; -- Channel 8 Event Detection Interrupt Enable EVD_1 : EVSYS_INTENSET_EVD_Field_1 := (As_Array => False, Val => 16#0#); -- unspecified Reserved_28_31 : HAL.UInt4 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for EVSYS_INTENSET_Register use record OVR at 0 range 0 .. 7; EVD at 0 range 8 .. 15; OVR_1 at 0 range 16 .. 19; Reserved_20_23 at 0 range 20 .. 23; EVD_1 at 0 range 24 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; -- EVSYS_INTFLAG_OVR array type EVSYS_INTFLAG_OVR_Field_Array is array (0 .. 7) of Boolean with Component_Size => 1, Size => 8; -- Type definition for EVSYS_INTFLAG_OVR type EVSYS_INTFLAG_OVR_Field (As_Array : Boolean := False) is record case As_Array is when False => -- OVR as a value Val : HAL.UInt8; when True => -- OVR as an array Arr : EVSYS_INTFLAG_OVR_Field_Array; end case; end record with Unchecked_Union, Size => 8; for EVSYS_INTFLAG_OVR_Field use record Val at 0 range 0 .. 7; Arr at 0 range 0 .. 7; end record; -- EVSYS_INTFLAG_EVD array type EVSYS_INTFLAG_EVD_Field_Array is array (0 .. 7) of Boolean with Component_Size => 1, Size => 8; -- Type definition for EVSYS_INTFLAG_EVD type EVSYS_INTFLAG_EVD_Field (As_Array : Boolean := False) is record case As_Array is when False => -- EVD as a value Val : HAL.UInt8; when True => -- EVD as an array Arr : EVSYS_INTFLAG_EVD_Field_Array; end case; end record with Unchecked_Union, Size => 8; for EVSYS_INTFLAG_EVD_Field use record Val at 0 range 0 .. 7; Arr at 0 range 0 .. 7; end record; -- EVSYS_INTFLAG_OVR array type EVSYS_INTFLAG_OVR_Field_Array_1 is array (8 .. 11) of Boolean with Component_Size => 1, Size => 4; -- Type definition for EVSYS_INTFLAG_OVR type EVSYS_INTFLAG_OVR_Field_1 (As_Array : Boolean := False) is record case As_Array is when False => -- OVR as a value Val : HAL.UInt4; when True => -- OVR as an array Arr : EVSYS_INTFLAG_OVR_Field_Array_1; end case; end record with Unchecked_Union, Size => 4; for EVSYS_INTFLAG_OVR_Field_1 use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- EVSYS_INTFLAG_EVD array type EVSYS_INTFLAG_EVD_Field_Array_1 is array (8 .. 11) of Boolean with Component_Size => 1, Size => 4; -- Type definition for EVSYS_INTFLAG_EVD type EVSYS_INTFLAG_EVD_Field_1 (As_Array : Boolean := False) is record case As_Array is when False => -- EVD as a value Val : HAL.UInt4; when True => -- EVD as an array Arr : EVSYS_INTFLAG_EVD_Field_Array_1; end case; end record with Unchecked_Union, Size => 4; for EVSYS_INTFLAG_EVD_Field_1 use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- Interrupt Flag Status and Clear type EVSYS_INTFLAG_Register is record -- Channel 0 Overrun OVR : EVSYS_INTFLAG_OVR_Field := (As_Array => False, Val => 16#0#); -- Channel 0 Event Detection EVD : EVSYS_INTFLAG_EVD_Field := (As_Array => False, Val => 16#0#); -- Channel 8 Overrun OVR_1 : EVSYS_INTFLAG_OVR_Field_1 := (As_Array => False, Val => 16#0#); -- unspecified Reserved_20_23 : HAL.UInt4 := 16#0#; -- Channel 8 Event Detection EVD_1 : EVSYS_INTFLAG_EVD_Field_1 := (As_Array => False, Val => 16#0#); -- unspecified Reserved_28_31 : HAL.UInt4 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for EVSYS_INTFLAG_Register use record OVR at 0 range 0 .. 7; EVD at 0 range 8 .. 15; OVR_1 at 0 range 16 .. 19; Reserved_20_23 at 0 range 20 .. 23; EVD_1 at 0 range 24 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- Event System Interface type EVSYS_Peripheral is record -- Control CTRL : aliased EVSYS_CTRL_Register; -- Channel CHANNEL : aliased EVSYS_CHANNEL_Register; -- User Multiplexer USER : aliased EVSYS_USER_Register; -- Channel Status CHSTATUS : aliased EVSYS_CHSTATUS_Register; -- Interrupt Enable Clear INTENCLR : aliased EVSYS_INTENCLR_Register; -- Interrupt Enable Set INTENSET : aliased EVSYS_INTENSET_Register; -- Interrupt Flag Status and Clear INTFLAG : aliased EVSYS_INTFLAG_Register; end record with Volatile; for EVSYS_Peripheral use record CTRL at 16#0# range 0 .. 7; CHANNEL at 16#4# range 0 .. 31; USER at 16#8# range 0 .. 15; CHSTATUS at 16#C# range 0 .. 31; INTENCLR at 16#10# range 0 .. 31; INTENSET at 16#14# range 0 .. 31; INTFLAG at 16#18# range 0 .. 31; end record; -- Event System Interface EVSYS_Periph : aliased EVSYS_Peripheral with Import, Address => EVSYS_Base; end SAMD21_SVD.EVSYS;
zhmu/ananas
Ada
6,257
adb
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . P A C K _ 1 0 7 -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2022, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with System.Storage_Elements; with System.Unsigned_Types; package body System.Pack_107 is subtype Bit_Order is System.Bit_Order; Reverse_Bit_Order : constant Bit_Order := Bit_Order'Val (1 - Bit_Order'Pos (System.Default_Bit_Order)); subtype Ofs is System.Storage_Elements.Storage_Offset; subtype Uns is System.Unsigned_Types.Unsigned; subtype N07 is System.Unsigned_Types.Unsigned range 0 .. 7; use type System.Storage_Elements.Storage_Offset; use type System.Unsigned_Types.Unsigned; type Cluster is record E0, E1, E2, E3, E4, E5, E6, E7 : Bits_107; end record; for Cluster use record E0 at 0 range 0 * Bits .. 0 * Bits + Bits - 1; E1 at 0 range 1 * Bits .. 1 * Bits + Bits - 1; E2 at 0 range 2 * Bits .. 2 * Bits + Bits - 1; E3 at 0 range 3 * Bits .. 3 * Bits + Bits - 1; E4 at 0 range 4 * Bits .. 4 * Bits + Bits - 1; E5 at 0 range 5 * Bits .. 5 * Bits + Bits - 1; E6 at 0 range 6 * Bits .. 6 * Bits + Bits - 1; E7 at 0 range 7 * Bits .. 7 * Bits + Bits - 1; end record; for Cluster'Size use Bits * 8; for Cluster'Alignment use Integer'Min (Standard'Maximum_Alignment, 1 + 1 * Boolean'Pos (Bits mod 2 = 0) + 2 * Boolean'Pos (Bits mod 4 = 0)); -- Use maximum possible alignment, given the bit field size, since this -- will result in the most efficient code possible for the field. type Cluster_Ref is access Cluster; type Rev_Cluster is new Cluster with Bit_Order => Reverse_Bit_Order, Scalar_Storage_Order => Reverse_Bit_Order; type Rev_Cluster_Ref is access Rev_Cluster; ------------ -- Get_107 -- ------------ function Get_107 (Arr : System.Address; N : Natural; Rev_SSO : Boolean) return Bits_107 is A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8); C : Cluster_Ref with Address => A'Address, Import; RC : Rev_Cluster_Ref with Address => A'Address, Import; begin if Rev_SSO then case N07 (Uns (N) mod 8) is when 0 => return RC.E0; when 1 => return RC.E1; when 2 => return RC.E2; when 3 => return RC.E3; when 4 => return RC.E4; when 5 => return RC.E5; when 6 => return RC.E6; when 7 => return RC.E7; end case; else case N07 (Uns (N) mod 8) is when 0 => return C.E0; when 1 => return C.E1; when 2 => return C.E2; when 3 => return C.E3; when 4 => return C.E4; when 5 => return C.E5; when 6 => return C.E6; when 7 => return C.E7; end case; end if; end Get_107; ------------ -- Set_107 -- ------------ procedure Set_107 (Arr : System.Address; N : Natural; E : Bits_107; Rev_SSO : Boolean) is A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8); C : Cluster_Ref with Address => A'Address, Import; RC : Rev_Cluster_Ref with Address => A'Address, Import; begin if Rev_SSO then case N07 (Uns (N) mod 8) is when 0 => RC.E0 := E; when 1 => RC.E1 := E; when 2 => RC.E2 := E; when 3 => RC.E3 := E; when 4 => RC.E4 := E; when 5 => RC.E5 := E; when 6 => RC.E6 := E; when 7 => RC.E7 := E; end case; else case N07 (Uns (N) mod 8) is when 0 => C.E0 := E; when 1 => C.E1 := E; when 2 => C.E2 := E; when 3 => C.E3 := E; when 4 => C.E4 := E; when 5 => C.E5 := E; when 6 => C.E6 := E; when 7 => C.E7 := E; end case; end if; end Set_107; end System.Pack_107;
reznikmm/matreshka
Ada
6,432
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- XML Processor -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with League.Strings; with League.String_Vectors; with Matreshka.XML_Schema.AST.Types; with XML.Schema; package Matreshka.XML_Schema.AST.Wildcards is pragma Preelaborate; type Process_Content_Kind is (Skip, Strict, Lax); type Namespace_Constraint_Variety is (Any, Enumeration, A_Not); type Namespaces is record URIs : League.String_Vectors.Universal_String_Vector; Has_Absent : Boolean; end record; type Disallowed_Names is record Names : League.String_Vectors.Universal_String_Vector; Has_Defined : Boolean; Has_Sibling : Boolean; end record; type Namespace_Constraint is record Variety : Namespace_Constraint_Variety; -- {variety} -- One of {any, enumeration, not}. Required. Namespaces : Wildcards.Namespaces; -- {namespaces} -- A set each of whose members is either an xs:anyURI value or -- the distinguished value ·absent·. Required. Disallowed_Names : Wildcards.Disallowed_Names; -- {disallowed names} -- A set each of whose members is either an xs:QName value or -- the keyword defined or the keyword sibling. Required. end record; type Wildcard_Node is new AST.Types.Term_Node with record -- Properties: -- Annotations : Types.Annotation_Lists.List; -- {annotations} -- A sequence of Annotation components. Namespace_Constraint : Wildcards.Namespace_Constraint; -- {namespace constraint} -- A Namespace Constraint property record. Required. Process_Contents : Process_Content_Kind; -- {process contents} -- One of {skip, strict, lax}. Required. end record; overriding function Get_Type (Self : not null access Wildcard_Node) return XML.Schema.Component_Type; overriding function Get_Name (Self : not null access Wildcard_Node) return League.Strings.Universal_String; overriding function Get_Target_Namespace (Self : not null access Wildcard_Node) return League.Strings.Universal_String; overriding procedure Enter_Node (Self : not null access Wildcard_Node; Visitor : in out Matreshka.XML_Schema.Visitors.Abstract_Visitor'Class; Control : in out Matreshka.XML_Schema.Visitors.Traverse_Control); -- Dispatch call to corresponding subprogram of visitor interface. overriding procedure Leave_Node (Self : not null access Wildcard_Node; Visitor : in out Matreshka.XML_Schema.Visitors.Abstract_Visitor'Class; Control : in out Matreshka.XML_Schema.Visitors.Traverse_Control); -- Dispatch call to corresponding subprogram of visitor interface. overriding procedure Visit_Node (Self : not null access Wildcard_Node; Iterator : in out Matreshka.XML_Schema.Visitors.Abstract_Iterator'Class; Visitor : in out Matreshka.XML_Schema.Visitors.Abstract_Visitor'Class; Control : in out Matreshka.XML_Schema.Visitors.Traverse_Control); -- Dispatch call to corresponding subprogram of iterator interface. end Matreshka.XML_Schema.AST.Wildcards;
skill-lang/adaCommon
Ada
3,236
ads
-- ___ _ ___ _ _ -- -- / __| |/ (_) | | Common SKilL implementation -- -- \__ \ ' <| | | |__ generic subpools -- -- |___/_|\_\_|_|____| by: Timm Felden -- -- -- pragma Ada_2012; with Ada.Containers.Vectors; with Ada.Unchecked_Conversion; with Skill.Containers.Vectors; with Skill.Field_Types; with Skill.Field_Types.Builtin; with Skill.Field_Types.Builtin.String_Type_P; with Skill.Files; with Skill.Internal.File_Parsers; with Skill.Streams.Reader; with Skill.Streams.Writer; with Skill.Types.Pools; with Skill.Types; with Skill.Books; -- generic sub pool packages generic type T is new Skill_Object with private; type P is access all t; with function To_P (This : Annotation) return P; package Skill.Types.Pools.Sub is type Pool_T is new Sub_Pool_T with private; type Pool is access Pool_T; -- API methods function Get (This : access Pool_T; ID : Skill_ID_T) return P; overriding function Make_Boxed_Instance (This : access Pool_T) return Box; ---------------------- -- internal methods -- ---------------------- -- constructor invoked by new_pool function Make (Super : Skill.Types.Pools.Pool; Type_Id : Natural; Name : String_Access) return Pools.Pool; -- destructor invoked by close procedure Free (This : access Pool_T); overriding function Add_Field (This : access Pool_T; ID : Natural; T : Field_Types.Field_Type; Name : String_Access; Restrictions : Field_Restrictions.Vector) return Skill.Field_Declarations.Field_Declaration; overriding procedure Add_Known_Field (This : access Pool_T; Name : String_Access; String_Type : Field_Types.Builtin.String_Type_P.Field_Type; Annotation_Type : Field_Types.Builtin.Annotation_Type_P .Field_Type) is null; overriding procedure Resize_Pool (This : access Pool_T); overriding function Make_Sub_Pool (This : access Pool_T; ID : Natural; Name : String_Access) return Skill.Types.Pools.Pool is (Make (This.To_Pool, ID, Name)); -- RTTI implementation function Boxed is new Ada.Unchecked_Conversion (P, Types.Box); function Unboxed is new Ada.Unchecked_Conversion (Types.Box, P); overriding function Read_Box (This : access Pool_T; Input : Skill.Streams.Reader.Stream) return Types.Box is (Boxed (This.Get (Skill_ID_T (Input.V64)))); overriding function Offset_Box (This : access Pool_T; Target : Types.Box) return Types.v64; overriding procedure Write_Box (This : access Pool_T; Output : Streams.Writer.Sub_Stream; Target : Types.Box); overriding function Content_Tag (This : access Pool_T) return Ada.Tags.Tag is (This.To_Pool.Super.Dynamic.Content_Tag); private package Book_P is new Skill.Books(T, P); type Pool_T is new Sub_Pool_T with record Book : aliased Book_P.Book; end record; end Skill.Types.Pools.Sub;
reznikmm/matreshka
Ada
4,922
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with AMF.Internals.UML_Elements; with AMF.Standard_Profile_L2.Traces; with AMF.UML.Abstractions; with AMF.Visitors; package AMF.Internals.Standard_Profile_L2_Traces is type Standard_Profile_L2_Trace_Proxy is limited new AMF.Internals.UML_Elements.UML_Element_Base and AMF.Standard_Profile_L2.Traces.Standard_Profile_L2_Trace with null record; overriding function Get_Base_Abstraction (Self : not null access constant Standard_Profile_L2_Trace_Proxy) return AMF.UML.Abstractions.UML_Abstraction_Access; -- Getter of Trace::base_Abstraction. -- overriding procedure Set_Base_Abstraction (Self : not null access Standard_Profile_L2_Trace_Proxy; To : AMF.UML.Abstractions.UML_Abstraction_Access); -- Setter of Trace::base_Abstraction. -- overriding procedure Enter_Element (Self : not null access constant Standard_Profile_L2_Trace_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); overriding procedure Leave_Element (Self : not null access constant Standard_Profile_L2_Trace_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); overriding procedure Visit_Element (Self : not null access constant Standard_Profile_L2_Trace_Proxy; Iterator : in out AMF.Visitors.Abstract_Iterator'Class; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); end AMF.Internals.Standard_Profile_L2_Traces;
stcarrez/ada-awa
Ada
7,564
adb
----------------------------------------------------------------------- -- awa-questions-modules-tests -- Unit tests for storage service -- Copyright (C) 2013, 2014, 2018, 2022 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Strings.Unbounded; with Util.Test_Caller; with Util.Beans.Basic; with Util.Beans.Objects; with Security.Contexts; with ASF.Contexts.Faces; with ASF.Contexts.Faces.Mockup; with AWA.Permissions; with AWA.Services.Contexts; with AWA.Questions.Beans; with AWA.Votes.Beans; with AWA.Tests.Helpers.Users; package body AWA.Questions.Modules.Tests is use Util.Tests; package Caller is new Util.Test_Caller (Test, "Questions.Services"); procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite) is begin Caller.Add_Test (Suite, "Test AWA.Questions.Services.Save_Question", Test_Create_Question'Access); Caller.Add_Test (Suite, "Test AWA.Questions.Services.Delete_Question", Test_Delete_Question'Access); Caller.Add_Test (Suite, "Test AWA.Questions.Queries question-list", Test_List_Questions'Access); Caller.Add_Test (Suite, "Test AWA.Questions.Beans questionVote bean", Test_Question_Vote'Access); Caller.Add_Test (Suite, "Test AWA.Questions.Beans questionVote bean (anonymous user)", Test_Question_Vote'Access); end Add_Tests; -- ------------------------------ -- Test creation of a question. -- ------------------------------ procedure Test_Create_Question (T : in out Test) is Sec_Ctx : Security.Contexts.Security_Context; Context : AWA.Services.Contexts.Service_Context; Q : AWA.Questions.Models.Question_Ref; begin AWA.Tests.Helpers.Users.Login (Context, Sec_Ctx, "[email protected]"); T.Manager := AWA.Questions.Modules.Get_Question_Module; T.Assert (T.Manager /= null, "There is no question manager"); Q.Set_Title ("How can I append strings in Ada?"); Q.Set_Description ("I have two strings that I want to concatenate. + does not work."); T.Manager.Save_Question (Q); T.Assert (Q.Is_Inserted, "The new question was not inserted"); Q.Set_Description ("I have two strings that I want to concatenate. + does not work. " & "I also tried '.' without success. What should I do?"); T.Manager.Save_Question (Q); Q.Set_Description ("I have two strings that I want to concatenate. + does not work. " & "I also tried '.' without success. What should I do? " & "This is a stupid question for someone who reads this file. " & "But I need some long text for the unit test."); T.Manager.Save_Question (Q); end Test_Create_Question; -- ------------------------------ -- Test deletion of a question. -- ------------------------------ procedure Test_Delete_Question (T : in out Test) is Sec_Ctx : Security.Contexts.Security_Context; Context : AWA.Services.Contexts.Service_Context; Q : AWA.Questions.Models.Question_Ref; begin AWA.Tests.Helpers.Users.Login (Context, Sec_Ctx, "[email protected]"); T.Manager := AWA.Questions.Modules.Get_Question_Module; T.Assert (T.Manager /= null, "There is no question manager"); Q.Set_Title ("How can I search strings in Ada?"); Q.Set_Description ("I have two strings that I want to search. % does not work."); T.Manager.Save_Question (Q); T.Assert (Q.Is_Inserted, "The new question was not inserted"); T.Manager.Delete_Question (Q); end Test_Delete_Question; -- ------------------------------ -- Test list of questions. -- ------------------------------ procedure Test_List_Questions (T : in out Test) is use type Util.Beans.Basic.Readonly_Bean_Access; Sec_Ctx : Security.Contexts.Security_Context; Context : AWA.Services.Contexts.Service_Context; Module : AWA.Questions.Modules.Question_Module_Access; List : Util.Beans.Basic.Readonly_Bean_Access; Bean : Util.Beans.Objects.Object; Count : Natural; begin AWA.Tests.Helpers.Users.Anonymous (Context, Sec_Ctx); Module := AWA.Questions.Modules.Get_Question_Module; List := AWA.Questions.Beans.Create_Question_List_Bean (Module); T.Assert (List /= null, "The Create_Question_List_Bean returned null"); Bean := Util.Beans.Objects.To_Object (List); T.Assert (not Util.Beans.Objects.Is_Null (Bean), "The list bean should not be null"); T.Assert (List.all in Questions.Beans.Question_List_Bean'Class, "The Create_Question_List_Bean returns an invalid bean"); Count := Questions.Beans.Question_List_Bean'Class (List.all).Questions.Get_Count; T.Assert (Count > 0, "The list of question is empty"); end Test_List_Questions; -- ------------------------------ -- Do a vote on a question through the question vote bean. -- ------------------------------ procedure Do_Vote (T : in out Test) is use type Util.Beans.Basic.Readonly_Bean_Access; Context : ASF.Contexts.Faces.Mockup.Mockup_Faces_Context; Outcome : Ada.Strings.Unbounded.Unbounded_String; Bean : Util.Beans.Basic.Readonly_Bean_Access; Vote : AWA.Votes.Beans.Vote_Bean_Access; begin Context.Set_Parameter ("id", "1"); Bean := Context.Get_Bean ("questionVote"); T.Assert (Bean /= null, "The questionVote bean was not created"); T.Assert (Bean.all in AWA.Votes.Beans.Vote_Bean'Class, "The questionVote is not a Vote_Bean"); Vote := AWA.Votes.Beans.Vote_Bean (Bean.all)'Access; Vote.Rating := 1; Vote.Entity_Id := 1; Vote.Vote_Up (Outcome); end Do_Vote; -- ------------------------------ -- Test anonymous user voting for a question. -- ------------------------------ procedure Test_Question_Vote_Anonymous (T : in out Test) is Sec_Ctx : Security.Contexts.Security_Context; Context : AWA.Services.Contexts.Service_Context; begin AWA.Tests.Helpers.Users.Anonymous (Context, Sec_Ctx); Do_Vote (T); T.Fail ("Anonymous users should not be allowed to vote"); exception when AWA.Permissions.NO_PERMISSION => null; end Test_Question_Vote_Anonymous; -- ------------------------------ -- Test voting for a question. -- ------------------------------ procedure Test_Question_Vote (T : in out Test) is Sec_Ctx : Security.Contexts.Security_Context; Context : AWA.Services.Contexts.Service_Context; begin AWA.Tests.Helpers.Users.Login (Context, Sec_Ctx, "[email protected]"); Do_Vote (T); end Test_Question_Vote; end AWA.Questions.Modules.Tests;
kontena/ruby-packer
Ada
8,254
adb
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding Samples -- -- -- -- Sample.Keyboard_Handler -- -- -- -- B O D Y -- -- -- ------------------------------------------------------------------------------ -- Copyright (c) 1998-2006,2011 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, distribute with modifications, sublicense, and/or sell -- -- copies of the Software, and to permit persons to whom the Software is -- -- furnished to do so, subject to the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -- -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -- -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -- -- THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- -- -- -- Except as contained in this notice, the name(s) of the above copyright -- -- holders shall not be used in advertising or otherwise to promote the -- -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ -- Author: Juergen Pfeifer, 1996 -- Version Control -- $Revision: 1.16 $ -- $Date: 2011/03/23 00:34:24 $ -- Binding Version 01.00 ------------------------------------------------------------------------------ with Ada.Strings; use Ada.Strings; with Ada.Strings.Fixed; use Ada.Strings.Fixed; with Ada.Strings.Maps.Constants; use Ada.Strings.Maps.Constants; with Ada.Characters.Latin_1; use Ada.Characters.Latin_1; with Ada.Characters.Handling; use Ada.Characters.Handling; with Terminal_Interface.Curses.Panels; use Terminal_Interface.Curses.Panels; with Terminal_Interface.Curses.Forms; use Terminal_Interface.Curses.Forms; with Terminal_Interface.Curses.Forms.Field_Types.Enumeration; use Terminal_Interface.Curses.Forms.Field_Types.Enumeration; with Sample.Header_Handler; use Sample.Header_Handler; with Sample.Form_Demo.Aux; use Sample.Form_Demo.Aux; with Sample.Manifest; use Sample.Manifest; with Sample.Form_Demo.Handler; -- This package contains a centralized keyboard handler used throughout -- this example. The handler establishes a timeout mechanism that provides -- periodical updates of the common header lines used in this example. -- package body Sample.Keyboard_Handler is In_Command : Boolean := False; function Get_Key (Win : Window := Standard_Window) return Real_Key_Code is K : Real_Key_Code; function Command return Real_Key_Code; function Command return Real_Key_Code is function My_Driver (F : Form; C : Key_Code; P : Panel) return Boolean; package Fh is new Sample.Form_Demo.Handler (My_Driver); type Label_Array is array (Label_Number) of String (1 .. 8); Labels : Label_Array; FA : Field_Array_Access := new Field_Array' (Make (0, 0, "Command:"), Make (Top => 0, Left => 9, Width => Columns - 11), Null_Field); K : Real_Key_Code := Key_None; N : Natural := 0; function My_Driver (F : Form; C : Key_Code; P : Panel) return Boolean is Ch : Character; begin if P = Null_Panel then raise Panel_Exception; end if; if C in User_Key_Code'Range and then C = QUIT then if Driver (F, F_Validate_Field) = Form_Ok then K := Key_None; return True; end if; elsif C in Normal_Key_Code'Range then Ch := Character'Val (C); if Ch = LF or else Ch = CR then if Driver (F, F_Validate_Field) = Form_Ok then declare Buffer : String (1 .. Positive (Columns - 11)); Cmdc : String (1 .. 8); begin Get_Buffer (Fld => FA.all (2), Str => Buffer); Trim (Buffer, Left); if Buffer (1) /= ' ' then Cmdc := To_Upper (Buffer (Cmdc'Range)); for I in Labels'Range loop if Cmdc = Labels (I) then K := Function_Key_Code (Function_Key_Number (I)); exit; end if; end loop; end if; return True; end; end if; end if; end if; return False; end My_Driver; begin In_Command := True; for I in Label_Number'Range loop Get_Soft_Label_Key (I, Labels (I)); Trim (Labels (I), Left); Translate (Labels (I), Upper_Case_Map); if Labels (I) (1) /= ' ' then N := N + 1; end if; end loop; if N > 0 then -- some labels were really set declare Enum_Info : Enumeration_Info (N); Enum_Field : Enumeration_Field; J : Positive := Enum_Info.Names'First; Frm : Form := Create (FA); begin for I in Label_Number'Range loop if Labels (I) (1) /= ' ' then Enum_Info.Names (J) := new String'(Labels (I)); J := J + 1; end if; end loop; Enum_Field := Create (Enum_Info, True); Set_Field_Type (FA.all (2), Enum_Field); Set_Background (FA.all (2), Normal_Video); Fh.Drive_Me (Frm, Lines - 3, 0); Delete (Frm); Update_Panels; Update_Screen; end; end if; Free (FA, True); In_Command := False; return K; end Command; begin Set_Timeout_Mode (Win, Delayed, 30000); loop K := Get_Keystroke (Win); if K = Key_None then -- a timeout occurred Update_Header_Window; elsif K = 3 and then not In_Command then -- CTRL-C K := Command; exit when K /= Key_None; else exit; end if; end loop; return K; end Get_Key; procedure Init_Keyboard_Handler is begin null; end Init_Keyboard_Handler; end Sample.Keyboard_Handler;