Skip to content

Commit

Permalink
Fix missing symbols for vpDisplayWin32
Browse files Browse the repository at this point in the history
  • Loading branch information
SamFlt committed Feb 5, 2024
1 parent 31e0650 commit dc5e172
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion modules/gui/src/display/windows/vpDisplayWin32.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,24 @@ void vpCreateWindow(threadParam *param)
}

/*!
Constructor.
Constructors.
*/
vpDisplayWin32::vpDisplayWin32(vpWin32Renderer *rend) : iStatus(false), window(rend) { }

vpDisplayWin32::vpDisplayWin32(vpImage<vpRGBa> &I, int winx = -1, int winy = -1, const std::string &title = "")
: iStatus(false), window(nullptr)
{
init(I, winx, winy, title);
}

vpDisplayWin32::vpDisplayWin32(vpImage<unsigned char> &I, int winx = -1, int winy = -1, const std::string &title = "")
: iStatus(false), window(nullptr)
{
init(I, winx, winy, title);
}



/*!
Destructor.
*/
Expand Down

0 comments on commit dc5e172

Please sign in to comment.