vncinput.cc (9330:4a3269a11230) vncinput.cc (9356:b279bad40aa3)
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 32 unchanged lines hidden (view full) ---

41/** @file
42 * Implementiation of a VNC input
43 */
44
45#include <sys/types.h>
46
47#include "base/vnc/vncinput.hh"
48#include "base/output.hh" //simout
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 32 unchanged lines hidden (view full) ---

41/** @file
42 * Implementiation of a VNC input
43 */
44
45#include <sys/types.h>
46
47#include "base/vnc/vncinput.hh"
48#include "base/output.hh" //simout
49#include "base/trace.hh"
49#include "debug/VNC.hh"
50
51using namespace std;
52
53VncInput::VncInput(const Params *p)
54 : SimObject(p), keyboard(NULL), mouse(NULL),
55 vc(NULL), fbPtr(NULL), videoMode(VideoConvert::UnknownMode),
56 _videoWidth(1), _videoHeight(1), captureEnabled(p->frame_capture),

--- 74 unchanged lines hidden ---
50#include "debug/VNC.hh"
51
52using namespace std;
53
54VncInput::VncInput(const Params *p)
55 : SimObject(p), keyboard(NULL), mouse(NULL),
56 vc(NULL), fbPtr(NULL), videoMode(VideoConvert::UnknownMode),
57 _videoWidth(1), _videoHeight(1), captureEnabled(p->frame_capture),

--- 74 unchanged lines hidden ---