From a2728d2ba5dabbbec051ed29ae97dff07495330b Mon Sep 17 00:00:00 2001 From: georges <> Date: Thu, 22 Feb 2001 02:07:54 +0000 Subject: [PATCH] change comment --- panda/src/gobj/pixelBuffer.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/panda/src/gobj/pixelBuffer.h b/panda/src/gobj/pixelBuffer.h index ec0923133a..13a24a2054 100644 --- a/panda/src/gobj/pixelBuffer.h +++ b/panda/src/gobj/pixelBuffer.h @@ -141,8 +141,11 @@ private: protected: int _xsize; int _ysize; - int _xorg; // origin is not a well defined concept for PixelBuffer. It's zero by default & - int _yorg; // not used by any internal code other than constructors, should probably be deleted from API + + // pixelbuffer "origin" represents upper left screen point at which + // pixelbuffer should be drawn using draw_pixel_buffer + int _xorg; + int _yorg; int _border; int _components; int _component_width;