mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 08:38:20 +00:00
[host] added support for cursor pitch
This commit is contained in:
parent
b5a5d4cda2
commit
f633c63d51
@ -304,6 +304,7 @@ GrabStatus DXGI::GrabFrame(FrameInfo & frame)
|
|||||||
frame.cursor.shape = m_pointer;
|
frame.cursor.shape = m_pointer;
|
||||||
frame.cursor.w = shapeInfo.Width;
|
frame.cursor.w = shapeInfo.Width;
|
||||||
frame.cursor.h = shapeInfo.Height;
|
frame.cursor.h = shapeInfo.Height;
|
||||||
|
frame.cursor.pitch = shapeInfo.Pitch;
|
||||||
frame.cursor.dataSize = m_pointerSize;
|
frame.cursor.dataSize = m_pointerSize;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -31,6 +31,7 @@ struct CursorInfo
|
|||||||
|
|
||||||
enum CursorType type;
|
enum CursorType type;
|
||||||
unsigned int w, h;
|
unsigned int w, h;
|
||||||
|
unsigned int pitch;
|
||||||
void * shape;
|
void * shape;
|
||||||
unsigned int dataSize;
|
unsigned int dataSize;
|
||||||
};
|
};
|
||||||
|
@ -254,6 +254,7 @@ bool Service::Process()
|
|||||||
m_header->cursor.type = frame.cursor.type;
|
m_header->cursor.type = frame.cursor.type;
|
||||||
m_header->cursor.w = frame.cursor.w;
|
m_header->cursor.w = frame.cursor.w;
|
||||||
m_header->cursor.h = frame.cursor.h;
|
m_header->cursor.h = frame.cursor.h;
|
||||||
|
m_header->cursor.pitch = frame.cursor.pitch;
|
||||||
if (frame.cursor.dataSize > KVMFR_CURSOR_BUFFER)
|
if (frame.cursor.dataSize > KVMFR_CURSOR_BUFFER)
|
||||||
{
|
{
|
||||||
DEBUG_ERROR("Cursor shape size exceeds buffer size");
|
DEBUG_ERROR("Cursor shape size exceeds buffer size");
|
||||||
|
Loading…
Reference in New Issue
Block a user