From a9087d10bfca0ea7610a6bb89dcd5f7f53c8c251 Mon Sep 17 00:00:00 2001 From: Noel Berry Date: Thu, 27 Aug 2020 23:41:42 -0700 Subject: [PATCH] clarified framebuffer comments --- public/blah/graphics/framebuffer.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/blah/graphics/framebuffer.h b/public/blah/graphics/framebuffer.h index d5a3785..d6a3405 100644 --- a/public/blah/graphics/framebuffer.h +++ b/public/blah/graphics/framebuffer.h @@ -13,10 +13,10 @@ namespace Blah public: virtual ~FrameBuffer() = default; - // Gets an Attachment from the FrameBuffer + // Gets the list of Attachments from the FrameBuffer virtual Attachments& attachments() = 0; - // Gets an Attachment from the FrameBuffer + // Gets the list of Attachments from the FrameBuffer virtual const Attachments& attachments() const = 0; // Gets the width of the FrameBuffer @@ -33,4 +33,4 @@ namespace Blah }; typedef std::shared_ptr FrameBufferRef; -} \ No newline at end of file +}