HomeSort by relevance Sort by last modified time
    Searched refs:mLastIRReport (Results 1 - 2 of 2) sorted by null

  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/win32/extras/WiiMote/
wiimote.cpp 89 mLastIRReport.Init();
725 mLastIRReport.mP1X = data[0] << 2 | (data[2] & 0x30) >>4;
726 mLastIRReport.mP1Y = data[1] << 2 | (data[2] & 0xc0) >>6;
727 mLastIRReport.mP1Size = data[2] & 0xf;
729 mLastIRReport.mP2X = data[3] << 2 | (data[5] & 0x30) >>4;
730 mLastIRReport.mP2Y = data[4] << 2 | (data[5] & 0xc0) >>6;
731 mLastIRReport.mP2Size = data[5] & 0xf;
733 mLastIRReport.mP1Found = !(data[0] == 0xff && data[1] == 0xff && data[2] == 0xff);
734 mLastIRReport.mP2Found = !(data[3] == 0xff && data[4] == 0xff && data[5] == 0xff);
740 if (mIRRunning && mLastIRReport.mP1Found
    [all...]
wiimote.h 142 const tIRReport & GetLastIRReport() const { return mLastIRReport;}
271 tIRReport mLastIRReport;

Completed in 59 milliseconds