Welcome to mirror list, hosted at ThFree Co, Russian Federation.

GHOST_NDOFManagerWin32.cpp « intern « ghost « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 43f31cb2368dea6e0c4cfd8b416251955d470e09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* SPDX-License-Identifier: GPL-2.0-or-later */

#include "GHOST_NDOFManagerWin32.h"

GHOST_NDOFManagerWin32::GHOST_NDOFManagerWin32(GHOST_System &sys) : GHOST_NDOFManager(sys)
{
  /* pass */
}

/* Whether multi-axis functionality is available (via the OS or driver)
 * does not imply that a device is plugged in or being used. */
bool GHOST_NDOFManagerWin32::available()
{
  /* Always available since RawInput is built into Windows. */
  return true;
}