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

1 2

  /device/generic/goldfish-opengl/system/egl/
eglDisplay.cpp 501 EGLint redSize, blueSize, greenSize, alphaSize;
503 if ( !(getAttribValue(config, m_attribs.valueFor(EGL_RED_SIZE), &redSize) &&
513 if ((redSize==8)&&(greenSize==8)&&(blueSize==8)&&(alphaSize==8)) *format = PIXEL_FORMAT_RGBA_8888; //XXX: BGR?
514 else if ((redSize==8)&&(greenSize==8)&&(blueSize==8)&&(alphaSize==0)) *format = PIXEL_FORMAT_RGBX_8888; //XXX or PIXEL_FORMAT_RGB_888
515 else if ((redSize==5)&&(greenSize==6)&&(blueSize==5)&&(alphaSize==0)) *format = PIXEL_FORMAT_RGB_565;
516 else if ((redSize==5)&&(greenSize==5)&&(blueSize==5)&&(alphaSize==1)) *format = PIXEL_FORMAT_RGBA_5551;
517 else if ((redSize==4)&&(greenSize==4)&&(blueSize==4)&&(alphaSize==4)) *format = PIXEL_FORMAT_RGBA_4444;
525 EGLint redSize, blueSize, greenSize, alphaSize;
527 if ( !(getAttribValue(config, m_attribs.valueFor(EGL_RED_SIZE), &redSize) &&
537 if ((redSize == greenSize) && (redSize == blueSize) &
    [all...]
  /external/deqp/framework/egl/
egluConfigFilter.hpp 52 int redSize (void) const;
64 tcu::RGBA colorBits (void) const { return tcu::RGBA(redSize(), greenSize(), blueSize(), alphaSize()); }
egluConfigInfo.hpp 43 deInt32 redSize;
89 , redSize (0)
egluConfigFilter.cpp 75 int CandidateConfig::redSize (void) const { return get(EGL_RED_SIZE); }
egluConfigInfo.cpp 41 case EGL_RED_SIZE: return redSize;
90 egl.getConfigAttrib(display, config, EGL_RED_SIZE, &dst->redSize);
  /cts/tests/tests/opengl/src/android/opengl/cts/
Egl10Utils.java 76 int redSize = findValue(configSpec, EGL10.EGL_RED_SIZE);
91 if ((r == redSize) && (g == greenSize) && (b == blueSize) && (a == alphaSize)) {
  /external/deqp/modules/egl/
teglSimpleConfigCase.cpp 121 return c.redSize() == Red &&
130 return c.redSize() != Red ||
teglQueryConfigTests.cpp 442 const EGLint redSize = getValue(config, EGL_RED_SIZE);
462 if (redSize <= 0 || greenSize <= 0 || blueSize <= 0)
468 if (bufferSize != (redSize + greenSize + blueSize + alphaSize))
482 if (redSize != 0 || greenSize != 0 || blueSize != 0)
514 const EGLint redSize = getValue(config, EGL_RED_SIZE);
520 if ( (redValue < 0 || redValue >= (1 << redSize))
teglRenderCase.cpp 374 return c.redSize() == Red &&
383 return c.redSize() != Red ||
teglConfigList.cpp 85 info.redSize = val;
teglChooseConfigReference.cpp 187 return (a.m_info.redSize * mask[0] + a.m_info.greenSize * mask[1] + a.m_info.blueSize * mask[2] + a.m_info.alphaSize * mask[3])
188 > (b.m_info.redSize * mask[0] + b.m_info.greenSize * mask[1] + b.m_info.blueSize * mask[2] + b.m_info.alphaSize * mask[3]);
teglCreateContextExtTests.cpp 1012 return c.redSize() == Red &&
    [all...]
teglWideColorTests.cpp 695 info.redSize = eglu::getConfigAttribInt(egl, m_eglDisplay, config, EGL_RED_SIZE);
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
MffContext.java 267 * @param redSize The size of the red channel in bits.
274 public static void setEGLConfigChooser(int redSize,
280 RenderTarget.setEGLConfigChooser(redSize,
RenderTarget.java 178 public static void setEGLConfigChooser(int redSize, int greenSize, int blueSize, int alphaSize,
180 sRedSize = redSize;
  /external/deqp/framework/qphelper/
qpTestLog.h 159 int redSize;
qpTestLog.c     [all...]
  /external/deqp/executor/
xeTestCaseResult.hpp 353 int redSize;
387 , redSize (0)
xeTestLogWriter.cpp 383 << Writer::Attribute("RedSize", de::toString(config.redSize))
xeTestResultParser.cpp 614 config->redSize = toInt(getAttribute("RedSize"));
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
GLSurfaceViewCustom.java 433 * and exactly the specified redSize, greenSize, blueSize and alphaSize.
443 public void setEGLConfigChooser(int redSize, int greenSize, int blueSize,
445 setEGLConfigChooser(new ComponentSizeChooser(redSize, greenSize,
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
GLSurfaceView.java 371 public void setEGLConfigChooser(int redSize, int greenSize, int blueSize,
373 setEGLConfigChooser(new ComponentSizeChooser(redSize, greenSize,
822 public ComponentSizeChooser(int redSize, int greenSize, int blueSize,
825 EGL10.EGL_RED_SIZE, redSize,
833 mRedSize = redSize;
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLSurfaceView.java 430 * and exactly the specified redSize, greenSize, blueSize and alphaSize.
440 public void setEGLConfigChooser(int redSize, int greenSize, int blueSize,
442 setEGLConfigChooser(new ComponentSizeChooser(redSize, greenSize,
    [all...]
  /frameworks/native/services/surfaceflinger/
DisplayDevice.cpp 620 EGLint redSize, greenSize, blueSize, alphaSize;
621 eglGetConfigAttrib(mDisplay, mConfig, EGL_RED_SIZE, &redSize);
630 mNativeWindow.get(), redSize, greenSize, blueSize, alphaSize, mOrientation,
  /external/deqp/framework/platform/lnx/X11/
tcuLnxX11GlxPlatform.cpp 487 int redSize = visual.getAttrib(GLX_RED_SIZE);
493 int minRGB = de::min(redSize, de::min(greenSize, blueSize));

Completed in 697 milliseconds

1 2