Home
last modified time | relevance | path

Searched refs:Screenshot (Results 1 – 3 of 3) sorted by relevance

/NW4C-1.3.3/include/nw/dev/
Ddev_Screenshot.h66 class Screenshot
82 bool Equal(const Screenshot* source) const in Equal()
115 static Screenshot* Create(
142 ~Screenshot();
147 Screenshot( in Screenshot() function
202 typedef ut::MoveArray<Screenshot*> ScreenshotArray;
221 Screenshot* GetScreenshot(int index) in GetScreenshot()
227 const Screenshot* GetScreenshot(int index) const in GetScreenshot()
272 class Screenshot
281 …static Screenshot* Create(DisplayDescription, nw::os::IAllocator*, void*, void*, size_t) { return …
[all …]
/NW4C-1.3.3/sources/libraries/dev/
Ddev_Screenshot.cpp29 Screenshot*
30 Screenshot::Create( in Create()
43 void* memory = allocator->Alloc(sizeof(Screenshot)); in Create()
46 return new(memory) Screenshot( in Create()
54 Screenshot::~Screenshot() in ~Screenshot()
72 Screenshot::Set(const DisplayDescription& displayDescription, void* srcScreen, int length, int widt… in Set()
86 Screenshot::DumpHash() const in DumpHash()
122 void* memory = allocator->Alloc(sizeof(Screenshot)); in Create()
127 screenshots.push_back(Screenshot::Create(allocator, memorySize)); in Create()
191 Screenshot* screenshot = m_Screenshots[m_NextWrited]; in Take()
[all …]
/NW4C-1.3.3/sources/libraries/demo/
Ddemo_AutoTester.cpp285 nw::dev::Screenshot* shotDisplay = m_ScreenshotManager->GetScreenshot(screenshotIndex); in SendScreenshot()