We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I was typing up esUtil.h on my raspberry pi, and I noticed the following
opengles3-book/Common/Include/esUtil.h
Lines 184 to 185 in 423d936
The function here incorrectly takes in void(ESCALLBACK *drawFunc)(ESContext *, unsigned char, int, int). This should be the following, instead:
void(ESCALLBACK *drawFunc)(ESContext *, unsigned char, int, int)
void ESUTIL_API esRegisterKeyFunc ( ESContext *esContext, void ( ESCALLBACK *keyFunc ) ( ESContext *, unsigned char, int, int ) );
Oddly enough, the documentation comment shows the correct keyFunc parameter:
keyFunc
Lines 179 to 183 in 423d936
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I was typing up esUtil.h on my raspberry pi, and I noticed the following
opengles3-book/Common/Include/esUtil.h
Lines 184 to 185 in 423d936
The function here incorrectly takes in
void(ESCALLBACK *drawFunc)(ESContext *, unsigned char, int, int)
. This should be the following, instead:Oddly enough, the documentation comment shows the correct
keyFunc
parameter:opengles3-book/Common/Include/esUtil.h
Lines 179 to 183 in 423d936
The text was updated successfully, but these errors were encountered: