Cache size of char
BlittableValueType<char> caches the size of the type parameter. This way, we avoid calling Marshal.SizeOf repeatedly for every keyboard event.
This commit is contained in:
parent
128d96994b
commit
7582decf55
1 changed files with 3 additions and 3 deletions
|
@ -685,7 +685,7 @@ namespace OpenTK.Platform.MacOS.Carbon
|
||||||
|
|
||||||
OSStatus result = API.GetEventParameter(inEvent,
|
OSStatus result = API.GetEventParameter(inEvent,
|
||||||
EventParamName.KeyMacCharCode, EventParamType.typeChar, IntPtr.Zero,
|
EventParamName.KeyMacCharCode, EventParamType.typeChar, IntPtr.Zero,
|
||||||
(uint)System.Runtime.InteropServices.Marshal.SizeOf(typeof(char)), IntPtr.Zero,
|
(uint)BlittableValueType<char>.Stride, IntPtr.Zero,
|
||||||
(IntPtr)codeAddr);
|
(IntPtr)codeAddr);
|
||||||
|
|
||||||
if (result != OSStatus.NoError)
|
if (result != OSStatus.NoError)
|
||||||
|
|
Loading…
Reference in a new issue