Searched refs:getHeight (Results 51 - 75 of 374) sorted by relevance

1234567891011>>

/external/skia/samplecode/
H A DSampleSkLayer.cpp125 layer, layer->getParent(), layer->getWidth(), layer->getHeight(),
139 r.set(0, 0, this->getWidth(), this->getHeight());
186 fRootLayer->getHeight()/2 - child->getHeight()/2);
/external/deqp/framework/common/
H A DtcuImageCompare.cpp93 const int height = reference.getHeight();
97 TCU_CHECK_INTERNAL(result.getWidth() == width && result.getHeight() == height && result.getDepth() == depth);
212 TextureLevel errorMask (TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8), reference.getWidth(), reference.getHeight());
287 DE_ASSERT(ref.getHeight() == cmp.getHeight() && ref.getHeight() == diffMask.getHeight());
291 for (int y = 0; y < cmp.getHeight(); y++)
329 TextureLevel diffMask (TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8), reference.getWidth(), reference.getHeight());
413 int height = reference.getHeight();
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DFramebuffer.cpp400 if (colorbuffer->getWidth() == 0 || colorbuffer->getHeight() == 0)
432 if (colorbuffer->getWidth() != width || colorbuffer->getHeight() != height)
470 height = colorbuffer->getHeight();
480 if (mDepthbuffer->getWidth() == 0 || mDepthbuffer->getHeight() == 0)
519 height = mDepthbuffer->getHeight();
523 else if (width != mDepthbuffer->getWidth() || height != mDepthbuffer->getHeight())
535 if (mStencilbuffer->getWidth() == 0 || mStencilbuffer->getHeight() == 0)
575 height = mStencilbuffer->getHeight();
579 else if (width != mStencilbuffer->getWidth() || height != mStencilbuffer->getHeight())
/external/deqp/modules/gles3/functional/
H A Des3fReadPixelsTests.cpp170 const int coordY1 = (int)((-0.5f * reference.getHeight() / 2.0f) + reference.getHeight() / 2.0f);
172 const int coordY2 = (int)(( 0.5f * reference.getHeight() / 2.0f) + reference.getHeight() / 2.0f);
179 for (int y = 0; y < reference.getHeight(); y++)
270 GLU_CHECK_CALL(glViewport(0, 0, reference.getWidth(), reference.getHeight()));
289 for (int y = 0; y < reference.getHeight(); y++)
308 for (int y = 0; y < reference.getHeight(); y++)
325 for (int y = 0; y < reference.getHeight(); y++)
H A Des3fFboInvalidateTests.cpp196 readPixels(dst, 0, 0, getWidth(), getHeight());
232 glTexImage2D (GL_TEXTURE_2D, 0, GL_RGBA8, getWidth(), getHeight(), 0, GL_RGBA, GL_UNSIGNED_BYTE, DE_NULL);
291 readPixels(dst, 0, 0, getWidth(), getHeight());
310 int invalidateY = getHeight() / 4;
312 int invalidateH = getHeight() / 2;
345 readPixels(dst, 0, 0, getWidth(), getHeight());
374 int invalidateY = getHeight() / 4;
376 int invalidateH = getHeight() / 2;
390 glTexImage2D (GL_TEXTURE_2D, 0, GL_RGBA8, getWidth(), getHeight(), 0, GL_RGBA, GL_UNSIGNED_BYTE, DE_NULL);
435 readPixels(dst, 0, 0, getWidth(), getHeight());
[all...]
H A Des3fFragDepthTests.cpp130 int viewportH = de::min(128, renderTarget.getHeight());
132 int viewportY = rnd.getInt(0, renderTarget.getHeight()-viewportH);
236 for (int y = 0; y < referenceFrame.getHeight(); y++)
238 float yf = ((float)y + 0.5f) / referenceFrame.getHeight();
301 int viewportH = de::min(128, renderTarget.getHeight());
303 int viewportY = rnd.getInt(0, renderTarget.getHeight()-viewportH);
402 for (int y = 0; y < referenceFrame.getHeight(); y++)
407 float yf = ((float)y + 0.5f) / (float)referenceFrame.getHeight();
H A Des3fShaderBuiltinVarTests.cpp298 const int height = m_context.getRenderTarget().getHeight();
351 for (int y = 0; y < refImg.getHeight(); y++)
356 const float yf = (float(refImg.getHeight()-y-1)+.5f) / float(refImg.getHeight());
395 const int height = m_context.getRenderTarget().getHeight();
446 for (int y = 0; y < refImg.getHeight(); y++)
451 const float yf = (float(refImg.getHeight()-y-1)+.5f) / float(refImg.getHeight());
485 const int height = de::min(256, m_context.getRenderTarget().getHeight());
539 const int viewportY = rnd.getInt(0, m_context.getRenderTarget().getHeight()
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fShaderBuiltinVarTests.cpp275 const int height = m_context.getRenderTarget().getHeight();
325 for (int y = 0; y < refImg.getHeight(); y++)
330 const float yf = (float(refImg.getHeight()-y-1)+.5f) / float(refImg.getHeight());
369 const int height = m_context.getRenderTarget().getHeight();
417 for (int y = 0; y < refImg.getHeight(); y++)
422 const float yf = (float(refImg.getHeight()-y-1)+.5f) / float(refImg.getHeight());
456 const int height = de::min(256, m_context.getRenderTarget().getHeight());
507 const int viewportY = rnd.getInt(0, m_context.getRenderTarget().getHeight()
[all...]
H A Des2fDepthRangeTests.cpp146 const int viewportH = de::min(128, renderTarget.getHeight());
148 const int viewportY = rnd.getInt(0, renderTarget.getHeight()-viewportH);
229 for (int y = 0; y < referenceFrame.getHeight(); y++)
231 float yf = ((float)y + 0.5f) / referenceFrame.getHeight();
295 const int viewportH = de::min(128, renderTarget.getHeight());
297 const int viewportY = rnd.getInt(0, renderTarget.getHeight()-viewportH);
376 for (int y = 0; y < referenceFrame.getHeight(); y++)
381 float yf = ((float)y + 0.5f) / (float)referenceFrame.getHeight();
/external/deqp/modules/egl/
H A DteglColorClearCase.cpp126 case EGL_OPENGL_ES_BIT: gles1::readPixels (dst, 0, 0, dst.getWidth(), dst.getHeight()); break;
127 case EGL_OPENGL_ES2_BIT: gles2::readPixels (dst, 0, 0, dst.getWidth(), dst.getHeight()); break;
128 case EGL_OPENGL_ES3_BIT_KHR: gles2::readPixels (dst, 0, 0, dst.getWidth(), dst.getHeight()); break;
129 case EGL_OPENVG_BIT: vg::readPixels (dst, 0, 0, dst.getWidth(), dst.getHeight()); break;
145 int height = surface.getHeight();
291 int height = surface.getHeight();
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
H A DContentWrapperView.java178 return mViewToShow == null ? 0 : mViewToShow.getHeight();
187 return mViewToHide == null ? 0 : mViewToHide.getHeight();
/external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
H A DTestTouchUtils.java81 int y = v.getHeight() / 2;
121 int y = v.getHeight() / 2;
/external/chromium_org/third_party/angle/samples/angle/multiple_draw_buffers/
H A DMultipleDrawBuffers.cpp84 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, getWindow()->getWidth(), getWindow()->getHeight(), 0, GL_RGBA, GL_UNSIGNED_BYTE, NULL);
136 size_t height = getWindow()->getHeight();
/external/chromium_org/third_party/angle/tests/angle_tests/
H A DANGLETest.cpp15 ResizeWindow(mEGLWindow->getWidth(), mEGLWindow->getHeight());
172 return mEGLWindow->getHeight();
/external/glide/library/tests/src/com/bumptech/glide/load/engine/bitmap_recycle/
H A DSizeStrategyTest.java22 assertEquals(bitmap, strategy.get(bitmap.getWidth(), bitmap.getHeight(), Bitmap.Config.ARGB_8888));
60 assertEquals(99, result.getHeight());
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
H A DVisualSampleEntry.java82 public int getHeight() { method in class:VisualSampleEntry
191 IsoTypeWriter.writeUInt16(byteBuffer, getHeight());
/external/chromium_org/chrome/test/android/javatests/src/org/chromium/chrome/test/util/
H A DTranslateUtil.java53 float yPos = text.getHeight() / (float) 2;
/external/chromium_org/printing/android/java/src/org/chromium/printing/
H A DPrintingContext.java94 public int getHeight() { method in class:PrintingContext
/external/chromium_org/third_party/angle/samples/angle/sample_util/
H A DSampleApplication.cpp83 if (!mOSWindow->initialize(mName, mEGLWindow->getWidth(), mEGLWindow->getHeight()))
/external/chromium_org/third_party/angle/samples/angle/simple_texture_2d/
H A DSimpleTexture2D.cpp96 glViewport(0, 0, getWindow()->getWidth(), getWindow()->getHeight());
/external/chromium_org/third_party/angle/samples/angle/simple_texture_cubemap/
H A DSimpleTextureCubemap.cpp90 glViewport(0, 0, getWindow()->getWidth(), getWindow()->getHeight());
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A DImage.h35 GLsizei getHeight() const { return mHeight; } function in class:rx::Image
/external/chromium_org/third_party/angle/tests/perf_tests/
H A DSimpleBenchmark.cpp65 if (!mOSWindow->initialize(mName, mEGLWindow->getWidth(), mEGLWindow->getHeight()))
/external/chromium_org/third_party/angle/util/
H A DEGLWindow.h57 size_t getHeight() const { return mHeight; } function in class:EGLWindow
/external/chromium_org/third_party/skia/include/utils/
H A DSkLayer.h41 SkScalar getHeight() const { return m_size.height(); } function in class:SkLayer

Completed in 807 milliseconds

1234567891011>>