mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
12 lines
354 B
C++
12 lines
354 B
C++
#include <grabber/OsxWrapper.h>
|
|
|
|
OsxWrapper::OsxWrapper(const unsigned display, const unsigned grabWidth, const unsigned grabHeight, const unsigned updateRate_Hz)
|
|
: GrabberWrapper("OSX FrameGrabber", &_grabber, grabWidth, grabHeight, updateRate_Hz)
|
|
, _grabber(display, grabWidth, grabHeight)
|
|
{}
|
|
|
|
void OsxWrapper::action()
|
|
{
|
|
transferFrame(_grabber);
|
|
}
|