Home
last modified time | relevance | path

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

/NW4C-2.0.3/include/nw/dev/
Ddev_Screenshot.h68 class Screenshot
84 bool Equal(const Screenshot* source) const in Equal()
117 static Screenshot* Create(
144 ~Screenshot();
149 Screenshot( in Screenshot() function
204 typedef ut::MoveArray<Screenshot*> ScreenshotArray;
223 Screenshot* GetScreenshot(int index) in GetScreenshot()
229 const Screenshot* GetScreenshot(int index) const in GetScreenshot()
274 class Screenshot
283 …static Screenshot* Create(DisplayDescription, nw::os::IAllocator*, void*, void*, size_t) { return …
[all …]
/NW4C-2.0.3/sources/libraries/dev/
Ddev_Screenshot.cpp31 Screenshot*
32 Screenshot::Create( in Create()
45 void* memory = allocator->Alloc(sizeof(Screenshot)); in Create()
48 return new(memory) Screenshot( in Create()
56 Screenshot::~Screenshot() in ~Screenshot()
74 Screenshot::Set(const DisplayDescription& displayDescription, void* srcScreen, int length, int widt… in Set()
88 Screenshot::DumpHash() const in DumpHash()
124 void* memory = allocator->Alloc(sizeof(Screenshot)); in Create()
129 screenshots.push_back(Screenshot::Create(allocator, memorySize)); in Create()
193 Screenshot* screenshot = m_Screenshots[m_NextWrited]; in Take()
[all …]
/NW4C-2.0.3/sources/libraries/demo/
Ddemo_AutoTester.cpp287 nw::dev::Screenshot* shotDisplay = m_ScreenshotManager->GetScreenshot(screenshotIndex); in SendScreenshot()