Browse Source

remove poorly thought-out bounds checking

David Rose 24 years ago
parent
commit
ed0ea06881
1 changed files with 4 additions and 4 deletions
  1. 4 4
      panda/src/gobj/pixelBuffer.I

+ 4 - 4
panda/src/gobj/pixelBuffer.I

@@ -158,7 +158,7 @@ INLINE PixelBuffer::
 ////////////////////////////////////////////////////////////////////
 ////////////////////////////////////////////////////////////////////
 INLINE void PixelBuffer::set_xsize(int size)
 INLINE void PixelBuffer::set_xsize(int size)
 {
 {
-  if (_xsize != size && size > 1) {
+  if (_xsize != size) {
     _xsize = size;
     _xsize = size;
     make_dirty();
     make_dirty();
   }
   }
@@ -171,7 +171,7 @@ INLINE void PixelBuffer::set_xsize(int size)
 ////////////////////////////////////////////////////////////////////
 ////////////////////////////////////////////////////////////////////
 INLINE void PixelBuffer::set_ysize(int size)
 INLINE void PixelBuffer::set_ysize(int size)
 {
 {
-  if (_ysize != size && size > 1) {
+  if (_ysize != size) {
     _ysize = size;
     _ysize = size;
     make_dirty();
     make_dirty();
   }
   }
@@ -184,7 +184,7 @@ INLINE void PixelBuffer::set_ysize(int size)
 ////////////////////////////////////////////////////////////////////
 ////////////////////////////////////////////////////////////////////
 INLINE void PixelBuffer::set_xorg(int org)
 INLINE void PixelBuffer::set_xorg(int org)
 {
 {
-  if (_xorg != org && org >= 0) {
+  if (_xorg != org) {
     _xorg = org;
     _xorg = org;
     make_dirty();
     make_dirty();
   }
   }
@@ -197,7 +197,7 @@ INLINE void PixelBuffer::set_xorg(int org)
 ////////////////////////////////////////////////////////////////////
 ////////////////////////////////////////////////////////////////////
 INLINE void PixelBuffer::set_yorg(int org)
 INLINE void PixelBuffer::set_yorg(int org)
 {
 {
-  if (_yorg != org && org >= 0) {
+  if (_yorg != org) {
     _yorg = org;
     _yorg = org;
     make_dirty();
     make_dirty();
   }
   }