SL-10811 - [Render][OSX] Google’s search results page is not fully displayed in the Media Browser if HiDPI is enabled.
SL-10813 - [Render][OSX] HiDPI browser has black bars on the sides. Fixed.master
parent
f3f75acb23
commit
20ca495012
|
|
@ -33,7 +33,10 @@
|
|||
#include "llpluginmessageclasses.h"
|
||||
#include "llcontrol.h"
|
||||
|
||||
extern LLControlGroup gSavedSettings;
|
||||
extern LLControlGroup gSavedSettings;
|
||||
#if LL_DARWIN
|
||||
extern BOOL gHiDPISupport;
|
||||
#endif
|
||||
|
||||
static int LOW_PRIORITY_TEXTURE_SIZE_DEFAULT = 256;
|
||||
|
||||
|
|
@ -365,11 +368,16 @@ void LLPluginClassMedia::setSizeInternal(void)
|
|||
mRequestedMediaHeight = nextPowerOf2(mRequestedMediaHeight);
|
||||
}
|
||||
|
||||
if(mRequestedMediaWidth > 2048)
|
||||
mRequestedMediaWidth = 2048;
|
||||
#if LL_DARWIN
|
||||
if (!gHiDPISupport)
|
||||
#endif
|
||||
{
|
||||
if (mRequestedMediaWidth > 2048)
|
||||
mRequestedMediaWidth = 2048;
|
||||
|
||||
if(mRequestedMediaHeight > 2048)
|
||||
mRequestedMediaHeight = 2048;
|
||||
if (mRequestedMediaHeight > 2048)
|
||||
mRequestedMediaHeight = 2048;
|
||||
}
|
||||
}
|
||||
|
||||
void LLPluginClassMedia::setAutoScale(bool auto_scale)
|
||||
|
|
|
|||
Loading…
Reference in New Issue