WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
134381
HIDGamepads should populate themselves with initial input values
https://bugs.webkit.org/show_bug.cgi?id=134381
Summary
HIDGamepads should populate themselves with initial input values
Brady Eidson
Reported
2014-06-26 20:58:12 PDT
HIDGamepads should populate themselves with initial input values. At construction time, for each element they own they should query the HIDElement on the device.
Attachments
Patch v1
(3.33 KB, patch)
2014-06-26 22:27 PDT
,
Brady Eidson
no flags
Details
Formatted Diff
Diff
Patch v2 - Now with 100% more ChangeLog
(4.26 KB, patch)
2014-06-26 22:30 PDT
,
Brady Eidson
darin
: review+
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Brady Eidson
Comment 1
2014-06-26 22:27:07 PDT
Created
attachment 233961
[details]
Patch v1
Brady Eidson
Comment 2
2014-06-26 22:30:26 PDT
Created
attachment 233962
[details]
Patch v2 - Now with 100% more ChangeLog
Brady Eidson
Comment 3
2014-06-26 23:02:33 PDT
Ignore the can't-buildness that EWS sees - In my tree this patch is built on previous patches. I will pass it through EWS before landing.
Darin Adler
Comment 4
2014-06-27 09:54:45 PDT
Comment on
attachment 233962
[details]
Patch v2 - Now with 100% more ChangeLog View in context:
https://bugs.webkit.org/attachment.cgi?id=233962&action=review
Patch didn’t apply in EWS.
> Source/WebCore/platform/mac/HIDGamepad.cpp:75 > + IOHIDValueRef value;
I think a local just before each call to IOHIDDeviceGetValue would be nicer than sharing this local.
> Source/WebCore/platform/mac/HIDGamepad.cpp:79 > + IOHIDElementRef element = button->iohidElement.get(); > + if (IOHIDDeviceGetValue(IOHIDElementGetDevice(element), element, &value) == kIOReturnSuccess) > + valueChanged(value);
I know this sounds a little silly, but a helper that takes an const HIDGamepadElement& and does all this would make the code tigther and easier to read.
> Source/WebCore/platform/mac/HIDGamepad.h:80 > struct HIDGamepadAxis : public HIDGamepadElement {
Normally with struct inheritance we would omit the "public" (it's the default).
Brady Eidson
Comment 5
2014-06-27 13:53:59 PDT
http://trac.webkit.org/changeset/170551
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug