-
Notifications
You must be signed in to change notification settings - Fork 565
New issue
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
ColorPicker in GDI Rendring #620
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd be happy to bring this in. Anyone else care for a review?
@@ -389,7 +389,7 @@ extern "C" { | |||
#define NK_POINTER_TYPE unsigned __int32 | |||
#elif defined(__GNUC__) || defined(__clang__) | |||
#if defined(__x86_64__) || defined(__ppc64__) || defined(__PPC64__) || defined(__aarch64__) | |||
#define NK_POINTER_TYPE unsigned long | |||
#define NK_POINTER_TYPE unsigned long long |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The changes in nuklear.h
will have to be replicated in the src
directory too.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm unsure about changing this as part of the GDI demo updates. Going to recommend pushing that to a different change request.
#define NK_POINTER_TYPE unsigned long long | |
#define NK_POINTER_TYPE unsigned long |
@@ -374,7 +374,7 @@ extern "C" { | |||
#define NK_SIZE_TYPE unsigned __int32 | |||
#elif defined(__GNUC__) || defined(__clang__) | |||
#if defined(__x86_64__) || defined(__ppc64__) || defined(__PPC64__) || defined(__aarch64__) | |||
#define NK_SIZE_TYPE unsigned long | |||
#define NK_SIZE_TYPE unsigned long long |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#define NK_SIZE_TYPE unsigned long long | |
#define NK_SIZE_TYPE unsigned long |
/// TODO: 'IStream' {aka 'struct IStream'} has no member named 'lpVtbl'GCC | ||
stream->Release(); | ||
//stream->lpVtbl->Release(stream); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like there's a remaining TODO?
I have fixed a problem with the ColorPicker in GDI rendering.