-
Notifications
You must be signed in to change notification settings - Fork 61
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
Detect RV300 and VC4 hardware and disable slow half float vertex on them #1347
Conversation
7ab7dd7
to
9da022d
Compare
src/engine/sys/sdl_glimp.cpp
Outdated
|
||
if ( !halfFloatVertexEnabled ) | ||
{ | ||
logger.Warn( "Missing half-float vertex, using float vertex instead." ); |
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.
How about Notice for this one. We shouldn't use Warn so much unless there is a serious problem.
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 like to have a bolder log for such things, especially when it is reporting about making decisions, it makes it easier to catch them in logs. Though I agree Warn is maybe too much.
9da022d
to
d4a3c5c
Compare
I addressed the various comments. |
Forgot to push something? I don't see any new stuff. |
d4a3c5c
to
3cbd0a7
Compare
Indeed, now fixed. |
LGTM |
Import from:
ARB_half_float_vertex
#1179