Searched refs:mHeight (Results 1 - 25 of 38) sorted by last modified time

12

/external/replicaisland/src/com/replica/replicaisland/
H A DBackgroundCollisionComponent.java29 private int mHeight; field in class:BackgroundCollisionComponent
61 mHeight = height;
106 mHeight = height;
145 final int top = bottom + mHeight;
147 final float centerOffsetY = ((mHeight) / 2.0f) + bottom;
H A DDrawableBitmap.java29 private int mHeight; field in class:DrawableBitmap
39 mHeight = height;
112 final float height = mHeight;
163 mHeight = height;
176 return mHeight;
180 mHeight = height;
220 || position.y + mHeight < 0 || position.y > mViewHeight) {
229 vertFlip ? 0 : mHeight,
231 vertFlip ? -mHeight : mHeight);
[all...]
H A DGLSurfaceView.java1082 mHeight = 0;
1181 && (mWidth > 0) && (mHeight > 0)
1210 h = mHeight;
1386 mHeight = h;
1523 private int mHeight; field in class:GLSurfaceView.GLThread
H A DGameRenderer.java40 private int mHeight; field in class:GameRenderer
68 mHeight = gameHeight;
204 DrawableBitmap.beginDrawing(gl, mWidth, mHeight);
270 //mHeight = h;
273 float scaleY = (float)h / mHeight;
275 final int viewportHeight = (int)(mHeight * scaleY);
286 float ratio = (float) mWidth / mHeight;
H A DScrollerComponent.java26 private int mHeight; field in class:ScrollerComponent
60 mHeight = 0;
79 mHeight = height;
103 background.setHeight(mHeight);
H A DSpriteComponent.java30 private int mHeight; field in class:SpriteComponent
44 mHeight = height;
60 mHeight = 0;
112 bitmap.setHeight(mHeight);
174 return mHeight;
179 mHeight = height;
H A DTiledVertexGrid.java29 private int mHeight; field in class:TiledVertexGrid
45 mHeight = height;
190 final int vertTileCount = (int)Math.ceil((float)mHeight / mTileHeight);
/external/chromium_org/third_party/angle/util/
H A DEGLWindow.cpp27 mHeight(height),
H A DEGLWindow.h39 void setHeight(size_t height) { mHeight = height; }
57 size_t getHeight() const { return mHeight; }
81 size_t mHeight; member in class:EGLWindow
H A DOSWindow.cpp11 mHeight(0)
25 return mHeight;
48 mHeight = event.Size.Height;
H A DOSWindow.h42 int mHeight; member in class:OSWindow
/external/chromium_org/third_party/angle/util/win32/
H A DWin32Window.cpp504 if (width == mWidth && height == mHeight)
551 MoveWindow(mNativeWindow, 0, 0, mWidth, mHeight, FALSE);
/external/chromium_org/third_party/angle/src/libEGL/
H A DSurface.cpp43 mHeight = height;
51 : mDisplay(display), mWindow(NULL), mConfig(config), mShareHandle(shareHandle), mWidth(width), mHeight(height), mPostSubBufferSupported(EGL_FALSE)
120 height = mHeight;
159 mHeight = backbufferHeight;
182 mHeight = backbufferHeight;
200 if (y + height > mHeight)
202 height = mHeight - y;
352 return swapRect(0, 0, mWidth, mHeight);
402 return mHeight;
H A DSurface.h89 EGLint mHeight; // Height of surface member in class:egl::Surface
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DRenderbuffer.cpp113 mHeight = 0;
135 return mHeight;
182 mHeight = mRenderTarget->getHeight();
196 mHeight = height;
222 mHeight = mDepthStencil->getHeight();
235 mHeight = mDepthStencil->getHeight();
H A DRenderbuffer.h90 GLsizei mHeight; member in class:gl::RenderbufferStorage
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A DImage.cpp19 mHeight = 0;
H A DImage.h35 GLsizei getHeight() const { return mHeight; }
57 GLsizei mHeight; member in class:rx::Image
H A DRenderTarget.h24 mHeight = 0;
34 GLsizei getHeight() const { return mHeight; }
39 gl::Extents getExtents() const { return gl::Extents(mWidth, mHeight, mDepth); }
52 GLsizei mHeight; member in class:rx::RenderTarget
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
H A DImage11.cpp176 mAssociatedStorage->copySubresourceLevel(mStagingTexture, mStagingSubresource, mAssociatedStorageLevel, mAssociatedStorageLayerTarget, 0, 0, 0, mWidth, mHeight, mDepth);
206 mHeight != height ||
218 mHeight = height;
431 if (mWidth > 0 && mHeight > 0 && mDepth > 0)
438 GLsizei height = mHeight;
H A DRenderTarget11.cpp216 mHeight = height;
263 mHeight = height;
399 mHeight = height;
H A DSwapChain11.cpp40 mHeight = -1;
101 const int previousHeight = mHeight;
283 mHeight = backbufferHeight;
290 sourceBox.top = std::max(previousHeight - mHeight, 0);
296 const int yoffset = std::max(mHeight - previousHeight, 0);
303 swapRect(0, 0, mWidth, mHeight);
538 float y1 = (y / float(mHeight)) * 2.0f - 1.0f;
540 float y2 = ((y + height) / float(mHeight)) * 2.0f - 1.0f;
543 float v1 = y / float(mHeight);
545 float v2 = (y + height) / float(mHeight);
[all...]
H A DSwapChain11.h40 EGLint getHeight() const { return mHeight; }
53 EGLint mHeight; member in class:rx::SwapChain11
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A DImage9.cpp135 mHeight != height ||
143 mHeight = height;
175 if (mWidth != 0 && mHeight != 0)
179 GLsizei requestHeight = mHeight;
204 entireRect.bottom = mHeight;
210 d3dFormatInfo.dataInitializerFunction(mWidth, mHeight, 1, reinterpret_cast<uint8_t*>(lockedRect.pBits),
291 if ((GLsizei)desc.Width == mWidth && (GLsizei)desc.Height == mHeight)
H A DRenderTarget9.cpp31 mHeight = description.Height;
98 mHeight = height;

Completed in 173 milliseconds

12