HomeSort by relevance Sort by last modified time
    Searched refs:surfaceWidth (Results 1 - 25 of 30) sorted by null

1 2

  /external/skia/src/gpu/
GrSurfacePriv.h 23 static bool AdjustReadPixelParams(int surfaceWidth,
29 static bool AdjustWritePixelParams(int surfaceWidth,
GrSurface.cpp 73 template<typename T> static bool adjust_params(int surfaceWidth,
84 SkIRect bounds = SkIRect::MakeWH(surfaceWidth, surfaceHeight);
99 bool GrSurfacePriv::AdjustReadPixelParams(int surfaceWidth,
105 return adjust_params<void>(surfaceWidth, surfaceHeight, bpp, left, top, width, height, data,
109 bool GrSurfacePriv::AdjustWritePixelParams(int surfaceWidth,
115 return adjust_params<const void>(surfaceWidth, surfaceHeight, bpp, left, top, width, height,
  /developers/build/prebuilts/gradle/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/
LocalPlayer.java 483 int surfaceWidth = mLayout.getWidth();
489 if (surfaceWidth * height < surfaceHeight * width) {
492 lp.width = surfaceWidth;
493 lp.height = surfaceWidth * height / width;
558 int surfaceWidth = getWindow().getDecorView().getWidth();
560 if (surfaceWidth * height < surfaceHeight * width) {
561 lp.width = surfaceWidth;
562 lp.height = surfaceWidth * height / width;
  /developers/samples/android/media/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/
LocalPlayer.java 483 int surfaceWidth = mLayout.getWidth();
489 if (surfaceWidth * height < surfaceHeight * width) {
492 lp.width = surfaceWidth;
493 lp.height = surfaceWidth * height / width;
558 int surfaceWidth = getWindow().getDecorView().getWidth();
560 if (surfaceWidth * height < surfaceHeight * width) {
561 lp.width = surfaceWidth;
562 lp.height = surfaceWidth * height / width;
  /development/samples/browseable/MediaRouter/src/com.example.android.mediarouter/player/
LocalPlayer.java 483 int surfaceWidth = mLayout.getWidth();
489 if (surfaceWidth * height < surfaceHeight * width) {
492 lp.width = surfaceWidth;
493 lp.height = surfaceWidth * height / width;
558 int surfaceWidth = getWindow().getDecorView().getWidth();
560 if (surfaceWidth * height < surfaceHeight * width) {
561 lp.width = surfaceWidth;
562 lp.height = surfaceWidth * height / width;
  /frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/media/
LocalPlayer.java 496 int surfaceWidth = mLayout.getWidth();
502 if (surfaceWidth * height < surfaceHeight * width) {
505 lp.width = surfaceWidth;
506 lp.height = surfaceWidth * height / width;
579 int surfaceWidth = getWindow().getDecorView().getWidth();
581 if (surfaceWidth * height < surfaceHeight * width) {
582 lp.width = surfaceWidth;
583 lp.height = surfaceWidth * height / width;
  /external/webrtc/talk/app/webrtc/java/android/org/webrtc/
EglBase.java 121 public abstract int surfaceWidth();
EglBase10.java 193 public int surfaceWidth() {
EglBase14.java 137 public int surfaceWidth() {
SurfaceTextureHelper.java 250 if (eglBase.surfaceWidth() != stride/4 ||
SurfaceViewRenderer.java 481 if (eglBase.surfaceWidth() != surfaceSize.x || eglBase.surfaceHeight() != surfaceSize.y) {
  /frameworks/base/libs/input/
SpriteController.h 184 surfaceWidth(0), surfaceHeight(0), surfaceDrawn(false), surfaceVisible(false) {
198 int32_t surfaceWidth;
240 mLocked.state.surfaceWidth = width;
SpriteController.cpp 139 update.state.surfaceWidth = update.state.icon.bitmap.width();
144 update.state.surfaceWidth, update.state.surfaceHeight);
159 if (update.state.surfaceWidth < desiredWidth
169 status, update.state.surfaceWidth, update.state.surfaceHeight,
172 update.state.surfaceWidth = desiredWidth;
336 update.state.surfaceWidth, update.state.surfaceHeight,
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineReferenceRenderer.cpp 163 ReferenceRenderer::ReferenceRenderer(int surfaceWidth,
169 : m_surfaceWidth (surfaceWidth)
210 m_depthStencilBuffer.setStorage(m_depthStencilFormat, actualSamples, surfaceWidth, surfaceHeight);
218 m_depthStencilBuffer.setStorage(m_depthStencilFormat, actualSamples, surfaceWidth, surfaceHeight);
227 m_depthStencilBuffer.setStorage(m_depthStencilFormat, actualSamples, surfaceWidth, surfaceHeight);
vktPipelineReferenceRenderer.hpp 226 ReferenceRenderer (int surfaceWidth,
  /external/webrtc/talk/app/webrtc/androidtests/src/org/webrtc/
SurfaceTextureHelperTest.java 134 assertEquals(eglOesBase.surfaceWidth(), width);
201 assertEquals(eglOesBase.surfaceWidth(), width);
381 assertEquals(eglBase.surfaceWidth(), width);
GlRectDrawerTest.java 235 assertEquals(eglBase.surfaceWidth(), width);
  /hardware/intel/common/libmix/videodecoder/
VideoDecoderBase.cpp 136 mVideoFormatInfo.surfaceWidth = buffer->graphicBufferWidth;
166 mVideoFormatInfo.surfaceWidth = buffer->graphicBufferWidth;
804 if (mStoreMetaData || (!mStoreMetaData && (mVideoFormatInfo.surfaceWidth < mVideoFormatInfo.width || mVideoFormatInfo.surfaceHeight < mVideoFormatInfo.height))) {
914 mVASurfaceAttrib->width = mVideoFormatInfo.surfaceWidth;
948 mVideoFormatInfo.surfaceWidth,
965 mVideoFormatInfo.surfaceWidth = mVideoFormatInfo.width;
974 mVideoFormatInfo.surfaceWidth,
992 mVideoFormatInfo.surfaceWidth,
1002 mVideoFormatInfo.surfaceWidth,
    [all...]
VideoDecoderDefs.h 208 uint32_t surfaceWidth;
VideoDecoderMPEG2.cpp 132 needFlush = (mVideoFormatInfo.width > mVideoFormatInfo.surfaceWidth)
VideoDecoderWMV.cpp 134 needFlush = (mVideoFormatInfo.width > mVideoFormatInfo.surfaceWidth)
  /frameworks/rs/
rsProgramVertex.cpp 219 float surfaceWidth = (float)rsc->getCurrentSurfaceWidth();
223 m.loadOrtho(0, surfaceWidth, surfaceHeight, 0, -1, 1);
  /frameworks/base/core/java/android/view/
SurfaceView.java 597 final int surfaceWidth = mSurfaceFrame.right;
599 realSizeChanged = mLastSurfaceWidth != surfaceWidth
601 mLastSurfaceWidth = surfaceWidth;
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
ImageWallpaper.java 210 int surfaceWidth = Math.max(displayInfo.logicalWidth, mBackgroundWidth);
217 surfaceHolder.setFixedSize(surfaceWidth, surfaceHeight);
218 mLastRequestedWidth = surfaceWidth;
    [all...]
  /external/deqp/modules/egl/
teglGLES2SharedRenderingPerfTests.cpp 97 int surfaceWidth;
466 EGL_WIDTH, config.surfaceWidth,
1025 log << TestLog::Message << "Surface size: " << config.surfaceWidth << "x" << config.surfaceHeight << TestLog::EndMessage;
1110 basicConfig.surfaceWidth = 256;
    [all...]

Completed in 1143 milliseconds

1 2