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
VideoBackend: remove unused config vars. #235
VideoBackend: remove unused config vars. #235
Conversation
| @@ -468,7 +468,7 @@ static TextureCache::TCacheEntryBase* ReturnEntry(unsigned int stage, TextureCac | |||
| if (!(texformat == GX_TF_RGBA8 && from_tmem)) | |||
| { | |||
| pcfmt = TexDecoder_Decode(temp, src_data, expandedWidth, | |||
| expandedHeight, texformat, tlutaddr, tlutfmt, g_ActiveConfig.backend_info.bUseRGBATextures); | |||
| expandedHeight, texformat, tlutaddr, tlutfmt, true); | |||
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
|
Updated version; per comments, leaves bUseRGBATextures intact for the moment. |
|
LGTM |
| @@ -154,9 +154,6 @@ class VideoConfigDiag : public wxDialog | |||
| choice_aamode->Enable(vconfig.backend_info.AAModes.size() > 1); | |||
| text_aamode->Enable(vconfig.backend_info.AAModes.size() > 1); | |||
|
|
|||
| // pixel lighting | |||
| pixel_lighting->Enable(vconfig.backend_info.bSupportsPixelLighting); | |||
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
|
LGTM once the two variables I pointed at are un-membered. |
No point to keeping around variables which are always "true".
|
Removed member variables as requested. |
VideoBackend: Remove unused config variables.
No point to keeping around variables which are always "true".