Home
last modified time | relevance | path

Searched refs:screenHeight (Results 1 – 12 of 12) sorted by relevance

/external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/
DBloomFilter.java93 private int screenHeight; field in BloomFilter
114 screenHeight = (int) Math.max(1, (h / downSamplingFactor)); in initFilter()
118 …preGlowPass.init(renderManager.getRenderer(), screenWidth, screenHeight, Format.RGBA8, Format.Dept… in initFilter() local
142 …extractPass.init(renderManager.getRenderer(), screenWidth, screenHeight, Format.RGBA8, Format.Dept… in initFilter() local
157 …horizontalBlur.init(renderManager.getRenderer(), screenWidth, screenHeight, Format.RGBA8, Format.D… in initFilter() local
167 vBlurMat.setFloat("Size", screenHeight); in initFilter()
172 …verticalalBlur.init(renderManager.getRenderer(), screenWidth, screenHeight, Format.RGBA8, Format.D… in initFilter() local
/external/jmonkeyengine/engine/src/core-effects/com/jme3/post/ssao/
DSSAOFilter.java125 int screenHeight = h; in initFilter() local
129 …Manager.getRenderer(), (int) (screenWidth / downSampleFactor), (int) (screenHeight / downSampleFac… in initFilter()
135 float farX = farY * ((float) screenWidth / (float) screenHeight); in initFilter()
159 …Manager.getRenderer(), (int) (screenWidth / downSampleFactor), (int) (screenHeight / downSampleFac… in initFilter()
/external/webkit/Source/WebKit2/WebProcess/WebPage/mac/
DAccessibilityWebPageObject.mm169 CGFloat screenHeight = [[[NSScreen screens] objectAtIndex:0] frame].size.height;
170 remotePosition.y = (screenHeight - remotePosition.y) - remoteSize.height;
172 point.y = screenHeight - point.y;
/external/webkit/Source/WebCore/editing/mac/
DSelectionControllerMac.mm40 CGFloat screenHeight = NSHeight([[screens objectAtIndex:0] frame]);
41 bounds.origin.y = (screenHeight - (bounds.origin.y + bounds.size.height));
/external/webkit/Source/WebKit/mac/WebCoreSupport/
DWebViewFactory.mm123 CGFloat screenHeight = NSHeight([[screens objectAtIndex:0] frame]);
124 bounds.origin.y = (screenHeight - (bounds.origin.y + bounds.size.height));
/external/webkit/Source/WebKit/android/WebCoreSupport/
DPlatformBridge.cpp156 return webViewCore->screenHeight(); in screenHeightInDocCoord()
/external/webkit/Source/WebKit/android/jni/
DWebViewCore.h308 float scale, int realScreenWidth, int screenHeight, int anchorX,
550 int screenHeight() const { return m_screenHeight; } in screenHeight() function
DWebViewCore.cpp1124 int textWrapWidth, float scale, int screenWidth, int screenHeight, in setSizeScreenWidthAndScale() argument
1139 m_screenHeight = screenHeight; in setSizeScreenWidthAndScale()
1151 if (osh != screenHeight || osw != screenWidth) in setSizeScreenWidthAndScale()
1196 window->setVisibleSize(screenWidth, screenHeight); in setSizeScreenWidthAndScale()
1234 window->setVisibleSize(screenWidth, screenHeight); in setSizeScreenWidthAndScale()
4493 jint screenHeight, jint anchorX, jint anchorY, jboolean ignoreHeight) in SetSize() argument
4499 screenWidth, screenHeight, anchorX, anchorY, ignoreHeight); in SetSize()
/external/chromium/chrome/browser/automation/
Dui_controls_mac.mm274 CGFloat screenHeight =
276 g_mouse_location = NSMakePoint(x, screenHeight - y); // flip!
/external/webkit/Tools/DumpRenderTree/chromium/
DWebViewHost.cpp72 static const int screenHeight = 1080; variable
682 info.rect = WebRect(0, 0, screenWidth, screenHeight); in screenInfo()
686 screenHeight - screenUnavailableBorder * 2); in screenInfo()
/external/webkit/Source/WebCore/accessibility/mac/
DAccessibilityObjectWrapper.mm1178 CGFloat screenHeight = [[[NSScreen screens] objectAtIndex:0] frame].size.height;
1179 remotePosition.y = (screenHeight - remotePosition.y) - remoteSize.height;
1189 point.y = screenHeight - (point.y + remotePosition.y + rect.height() - scrollPosition.y);
/external/chromium/chrome/browser/ui/cocoa/bookmarks/
Dbookmark_bar_folder_controller_unittest.mm455 CGFloat screenHeight = NSHeight(screenFrame);
464 EXPECT_LT(NSHeight([window frame]), screenHeight);