From a8f662081968ae484fb620ec480683106f42eecd Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sun, 30 Oct 2022 17:56:09 +0000 Subject: Add frame and render buffers to glArrays --- lib/glArrays.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lib/glArrays.h') diff --git a/lib/glArrays.h b/lib/glArrays.h index ed05eeb..42f1d0f 100644 --- a/lib/glArrays.h +++ b/lib/glArrays.h @@ -74,3 +74,7 @@ template using glBuffers = glArrays; template using glTextures = glArrays; using glTexture = glTextures<1>; +template using glFrameBuffers = glArrays; +using glFrameBuffer = glFrameBuffers<1>; +template using glRenderBuffers = glArrays; +using glRenderBuffer = glRenderBuffers<1>; -- cgit v1.2.3