Ignore:
Timestamp:
Oct 5, 2001, 2:33:10 PM (24 years ago)
Author:
sandervl
Message:

updates for stretch blitting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/ddraw/rectangle.h

    r5344 r6950  
    1 /* $Id: rectangle.h,v 1.6 2001-03-20 23:18:56 mike Exp $ */
     1/* $Id: rectangle.h,v 1.7 2001-10-05 12:33:10 sandervl Exp $ */
    22
    33/*
     
    3939Coord
    4040  width() const,
    41   height() const,
    42   Top() const,
    43   Left() const,
    44   Bottom() const,
    45   Right() const;
     41  height() const;
     42
     43  Coord Top() const
     44  {
     45    return lTop;
     46  }
     47
     48  Coord Left() const
     49  {
     50    return lLeft;
     51  }
     52 
     53  Coord Bottom() const
     54  {
     55    return lBottom;
     56  }
     57 
     58  Coord Right() const
     59  {
     60    return lRight;
     61  }
    4662
    4763  void* GetMemPtr();
Note: See TracChangeset for help on using the changeset viewer.