-
Notifications
You must be signed in to change notification settings - Fork 102
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
Integrating all 59, 60 and 61 reported issues #64
Conversation
…r base64 encoded buffers.
Build is failing.. |
GLTFSDK/Inc/GLTFSDK/BufferBuilder.h
Outdated
@@ -84,6 +84,15 @@ namespace Microsoft | |||
|
|||
ResourceWriter& GetResourceWriter(); | |||
const ResourceWriter& GetResourceWriter() const; | |||
bool setCurrentBufferURI ( const std::string &data ) |
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 think the missing semicolon is the main cause of the build break. Also, please use the same spacing style as the rest of the code.
bool setCurrentBufferURI ( const std::string &data ) | |
bool setCurrentBufferURI(const std::string &data); |
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.
Thank you very much for the comments.
I think i fixed the code, alignment and spaces but it seems that the build still fails (on some files I did not modify, especially for the std::pow functions in the Math.h file). Do you have any suggestions for this issue? Or what is the next step ?
I apologize if this is taking longer than usual, but I am new to github procedures.
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 see a bunch of build errors, but they are all in BufferBuilder.h and .cpp. Have you built this locally?
Closing due to inactivity. Please reopen and fix the issues if you still want to merge this change. |
The commit includes fixes for:
Support for base64 encoded buffers #59
Set child name (rootProperty) #60
Direct access to buffers and accessors #61