-
-
Notifications
You must be signed in to change notification settings - Fork 423
[v4.1.x] Additional fixes for 4.1.6 #927
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
base: v4.1.x
Are you sure you want to change the base?
[v4.1.x] Additional fixes for 4.1.6 #927
Conversation
Otherwise, breaks builds with newer Boost versions. Also set policy CMP0167 to NEW and forcing CMake to use the Config package and not the built-in module. Will now require Boost 1.70, but this should be available everywhere.
Also output additional information in both cases (found/not found).
4866888 to
148d180
Compare
Signed-off-by: Kai Blaschke <[email protected]>
148d180 to
e36ad01
Compare
e36ad01 to
0c71b10
Compare
0c71b10 to
d957272
Compare
…hader Only custom waves set the point size to 2, default waveforms still render the 2x2 pattern when using dots. Other draw calls aren't affected as they only draw lines/triangles, but it's good practice to not leave the uniform in an undefined state. Signed-off-by: Kai Blaschke <[email protected]>
All waves were rendered upside-down, breaking presets requiring the wave to be at the top or bottom due to warp movement. Using the flipped transformation matrix for drawing will take care of this globally. Also fixed two small mistakes regarding operators. Signed-off-by: Kai Blaschke <[email protected]>
d957272 to
60b60dc
Compare
Signed-off-by: Kai Blaschke <[email protected]>
Fixes "martin - mayday (shifters escape retouched).milk" and probably some others. Signed-off-by: Kai Blaschke <[email protected]>
Signed-off-by: Kai Blaschke <[email protected]>
Signed-off-by: Kai Blaschke <[email protected]>
Signed-off-by: Kai Blaschke <[email protected]>
…eadability. Signed-off-by: Kai Blaschke <[email protected]>
Signed-off-by: Kai Blaschke <[email protected]>
60b60dc to
68d9832
Compare
|
Added a bunch more fixes from @yoyofr |
revmischa
left a comment
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.
cool
| m_writer.Write("("); | ||
| OutputExpression(argument[0], &functionCall->function->returnType); | ||
| m_writer.Write(")"); | ||
| handled = true; |
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.
could move this to the end
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 don't see how. The other branch writes pow(abs(arg1), arg2) while this here just writes (arg1), and there are two different paths which end up with the pow function being written (arg2 not being a literal expression and arg2 not being exactly 1 or 1.0).
If you could provide a more complete example, that might be helpful.
…eral 1 as exponent Signed-off-by: Kai Blaschke <[email protected]>
8ce4ab8 to
b56c3e8
Compare
Cherry-picked Boost-/build-related fixes and workflow improvements from master. Also bumped the projectm-eval submodule to v1.0.5. The version was already set to 4.1.6 for immediate release after merge.
vertex_point_sizeuniform in untextured draws to the proper value instead of leaving it undefined.