Searched refs:retWidth (Results 1 – 2 of 2) sorted by relevance
/ide/tools/previewer/mock/rich/ |
D | VirtualScreenImpl.cpp | 195 void VirtualScreenImpl::Send(const void* data, int32_t retWidth, int32_t retHeight) in Send() argument 202 if (retWidth < 1 || retHeight < 1) { in Send() 205 unsigned char* dataTemp = new unsigned char[retWidth * retHeight * jpgPix]; in Send() 207 for (int j = 0; j < retWidth; j++) { in Send() 208 int input_base_pos = i * retWidth * pixelSize + j * pixelSize; in Send() 209 int now_base_pos = i * retWidth * jpgPix + j * jpgPix; in Send() 215 VirtualScreen::RgbToJpg(dataTemp, retWidth, retHeight); in Send() 237 bool VirtualScreenImpl::SendPixmap(const void* data, size_t length, int32_t retWidth, int32_t retHe… in SendPixmap() argument 260 WriteBuffer(retWidth); in SendPixmap() 262 WriteBuffer(retWidth); in SendPixmap() [all …]
|
D | VirtualScreenImpl.h | 38 void Send(const void* data, int32_t retWidth, int32_t retHeight); 39 bool SendPixmap(const void* data, size_t length, int32_t retWidth, int32_t retHeight);
|