mirror of
				https://github.com/hyperion-project/hyperion.ng.git
				synced 2025-03-01 10:33:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			380 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			380 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include <grabber/FramebufferWrapper.h>
 | 
						|
 | 
						|
FramebufferWrapper::FramebufferWrapper(const QString & device, const unsigned grabWidth, const unsigned grabHeight, const unsigned updateRate_Hz)
 | 
						|
	: GrabberWrapper("FrameBuffer", &_grabber, grabWidth, grabHeight, updateRate_Hz)
 | 
						|
	, _grabber(device, grabWidth, grabHeight)
 | 
						|
{}
 | 
						|
 | 
						|
void FramebufferWrapper::action()
 | 
						|
{
 | 
						|
	transferFrame(_grabber);
 | 
						|
}
 |