opengl.variable: Add a 'null_Variable' constant.

This commit is contained in:
Rod Kay
2023-05-05 01:04:06 +10:00
parent 1f6d5924c9
commit 9655567e96

View File

@@ -20,9 +20,12 @@ is
private
null_Variable : constant gl.GLint := gl.GLint'Last;
type Item is abstract tagged
record
gl_Variable : gl.GLint;
gl_Variable : gl.GLint := null_Variable;
end record;
end openGL.Variable;