~ubuntu-branches/ubuntu/trusty/openscenegraph/trusty

« back to all changes in this revision

Viewing changes to OpenSceneGraph/src/osgWrappers/osgGA/EventQueue.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Cyril Brulebois
  • Date: 2008-07-29 04:34:38 UTC
  • mfrom: (1.1.6 upstream) (2.1.3 lenny)
  • Revision ID: james.westby@ubuntu.com-20080729043438-no1h9h0dpsrlzp1y
* Non-maintainer upload.
* No longer try to detect (using /proc/cpuinfo when available) how many
  CPUs are available, fixing the FTBFS (due to -j0) on various platforms
  (Closes: #477353). The right way to do it is to support parallel=n in
  DEB_BUILD_OPTIONS (see Debian Policy §4.9.1), and adequate support has
  been implemented.
* Add patch to fix FTBFS due to the build system now refusing to handle
  whitespaces (Policy CMP0004 say the logs), thanks to Andreas Putzo who
  provided it (Closes: #482239):
   - debian/patches/fix-cmp0004-build-failure.dpatch
* Remove myself from Uploaders, as requested a while ago, done by Luk in
  his 2.2.0-2.1 NMU, which was never acknowledged.

Show diffs side-by-side

added added

removed removed

Lines of Context:
113
113
                  __void__penPressure__float__double,
114
114
                  "Method for adapting pen pressure events, placing this event on the back of the event queue, with specified time. ",
115
115
                  "");
 
116
        I_Method3(void, penOrientation, IN, float, tiltX, IN, float, tiltY, IN, float, rotation,
 
117
                  Properties::NON_VIRTUAL,
 
118
                  __void__penOrientation__float__float__float,
 
119
                  "Method for adapting pen orientation events, placing this event on the back of the event queue. ",
 
120
                  "");
 
121
        I_Method4(void, penOrientation, IN, float, tiltX, IN, float, tiltY, IN, float, rotation, IN, double, time,
 
122
                  Properties::NON_VIRTUAL,
 
123
                  __void__penOrientation__float__float__float__double,
 
124
                  "Method for adapting pen orientation events, placing this event on the back of the event queue, with specified time. ",
 
125
                  "");
116
126
        I_Method2(void, penProximity, IN, osgGA::GUIEventAdapter::TabletPointerType, pt, IN, bool, isEntering,
117
127
                  Properties::NON_VIRTUAL,
118
128
                  __void__penProximity__GUIEventAdapter_TabletPointerType__bool,
231
241
        I_Method0(osgGA::GUIEventAdapter *, createEvent,
232
242
                  Properties::NON_VIRTUAL,
233
243
                  __GUIEventAdapter_P1__createEvent,
234
 
                  "convinience method for create an event ready to fill in. ",
 
244
                  "convenience method for create an event ready to fill in. ",
235
245
                  "Clones the getCurrentEventState() to produce a up to date event state. ");
236
246
        I_Method1(void, setCurrentEventState, IN, osgGA::GUIEventAdapter *, ea,
237
247
                  Properties::NON_VIRTUAL,