summaryrefslogtreecommitdiff
path: root/indra/llwindow/llwindow.h
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2020-07-07 19:45:06 +0300
committerAndrey Kleshchev <andreykproductengine@lindenlab.com>2020-07-10 14:12:07 +0300
commitdf986a402a2706fe12a7dae0caec181da8c0e5f0 (patch)
tree86b5faf4785df6901deff77f7a3ca622fa18933e /indra/llwindow/llwindow.h
parentf66fd46b2da630962302cb5da7a5de006337a1b7 (diff)
SL-5894 Changed joystick init to select device with apropriate manufacturer and type
Diffstat (limited to 'indra/llwindow/llwindow.h')
-rw-r--r--indra/llwindow/llwindow.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/llwindow/llwindow.h b/indra/llwindow/llwindow.h
index a05ba8cbba..90107a7c29 100644
--- a/indra/llwindow/llwindow.h
+++ b/indra/llwindow/llwindow.h
@@ -168,6 +168,10 @@ public:
// Get system UI size based on DPI (for 96 DPI UI size should be 1.0)
virtual F32 getSystemUISize() { return 1.0; }
+
+ // windows only DirectInput8 for joysticks
+ virtual void* getDirectInput8() { return NULL; };
+ virtual bool getInputDevices(U32 device_type_filter, void * devices_callback) { return false; };
protected:
LLWindow(LLWindowCallbacks* callbacks, BOOL fullscreen, U32 flags);
virtual ~LLWindow();