Skip to content

Commit

Permalink
~NVI_ImageBordered() hides ~NVI_Image()
Browse files Browse the repository at this point in the history
  • Loading branch information
Xottab-DUTY committed Mar 30, 2017
1 parent 8211280 commit c81bbcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/xrDXT/NVI_Image.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class NVI_Image

public:
NVI_Image();
~NVI_Image();
virtual ~NVI_Image();
virtual HRESULT Initialize(int width, int height, NVI_PIXEL_FORMAT format);
virtual HRESULT Initialize(int width, int height, NVI_PIXEL_FORMAT format, u8* data);
virtual HRESULT Free();
Expand Down Expand Up @@ -135,7 +135,7 @@ class NVI_ImageBordered : public NVI_Image

public:
NVI_ImageBordered();
~NVI_ImageBordered();
~NVI_ImageBordered() override;
HRESULT Initialize(NVI_Image** hSrcImage, const RECT* border, bool wrap);
HRESULT Free();
// i,j relative to src image, so i,j = 0 fetches from
Expand Down

0 comments on commit c81bbcf

Please sign in to comment.