/third_party/vk-gl-cts/framework/common/ |
D | tcuPixelFormat.hpp | 39 int blueBits; member 45 , blueBits(blue) in PixelFormat() 53 , blueBits(0) in PixelFormat() 83 channelThreshold(blueBits), in getColorThreshold() 121 convertChannel(col.getBlue(), blueBits), in convertColor() 129 blueBits == other.blueBits && in operator ==()
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
D | Format.h | 36 GLuint blueBits, 89 GLuint blueBits; member 113 GLuint blueBits, in GetChannelCount() argument 119 return (redBits > 0 ? 1 : 0) + (greenBits > 0 ? 1 : 0) + (blueBits > 0 ? 1 : 0) + in GetChannelCount() 134 GLuint blueBits, in Format() argument 155 blueBits(blueBits), in Format() 164 blueBits, in Format() 183 ASSERT(redBits > 0 || (greenBits == 0 && blueBits == 0)); in isLUMA()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
D | Format.h | 36 GLuint blueBits, 93 GLuint blueBits; member 119 GLuint blueBits, in GetChannelCount() argument 125 return (redBits > 0 ? 1 : 0) + (greenBits > 0 ? 1 : 0) + (blueBits > 0 ? 1 : 0) + in GetChannelCount() 140 GLuint blueBits, in Format() argument 163 blueBits(blueBits), in Format() 172 blueBits, in Format() 193 ASSERT(redBits > 0 || (greenBits == 0 && blueBits == 0)); in isLUMA()
|
D | d3d_format.cpp | 28 blueBits(0), in D3DFormat() 41 GLuint blueBits, in D3DFormat() argument 52 blueBits(blueBits), in D3DFormat()
|
D | d3d_format.h | 28 GLuint blueBits, 43 GLuint blueBits; member
|
/third_party/flutter/glfw/tests/ |
D | monitors.c | 59 mode->redBits + mode->greenBits + mode->blueBits, in format_mode() 60 mode->redBits, mode->greenBits, mode->blueBits, in format_mode() 129 glfwWindowHint(GLFW_BLUE_BITS, mode->blueBits); in test_modes() 175 glGetIntegerv(GL_BLUE_BITS, ¤t.blueBits); in test_modes() 181 current.blueBits != mode->blueBits) in test_modes() 184 current.redBits, current.greenBits, current.blueBits, in test_modes() 185 mode->redBits, mode->greenBits, mode->blueBits); in test_modes()
|
/third_party/vk-gl-cts/framework/platform/ohos/rosen_context/ |
D | rosen_context_impl.cpp | 165 if (pixelFormat_.blueBits != -1) in SetConfig() 168 frameBufferAttribs.push_back(pixelFormat_.blueBits); in SetConfig() 230 if (pixelFormat_.blueBits != blue) in SetConfig() 232 if (pixelFormat_.blueBits != -1) in SetConfig() 233 printf("Failed to eglChooseConfig blueBits %d != %d\n", pixelFormat_.blueBits, blue); in SetConfig() 234 pixelFormat_.blueBits = blue; in SetConfig() 279 …if (pixelFormat_.redBits == 8 && pixelFormat_.greenBits == 8 && pixelFormat_.blueBits == 8 && pixe… in InitNativeWindow() 284 …else if (pixelFormat_.redBits == 5 && pixelFormat_.greenBits == 6 && pixelFormat_.blueBits == 5 &&… in InitNativeWindow() 289 …else if (pixelFormat_.redBits == 4 && pixelFormat_.greenBits == 4 && pixelFormat_.blueBits == 4 &&… in InitNativeWindow()
|
/third_party/flutter/skia/docs/examples/ |
D | Color_Type_RGB_101010.cpp | 19 uint32_t blueBits[] = { pack101010x(0x000, 0x000, 0x3FF), pack101010x(0x000, 0x000, 0x2ff), in draw() local 24 SkPixmap bluePixmap(imageInfo, &blueBits, imageInfo.minRowBytes()); in draw() 25 if (bitmap.installPixels(imageInfo, (void*) blueBits, imageInfo.minRowBytes())) { in draw()
|
D | Color_Type_RGBA_1010102.cpp | 21 uint32_t blueBits[] = { pack1010102(0x000, 0x000, 0x3FF, 0x3), in draw() local 28 SkPixmap bluePixmap(imageInfo, &blueBits, imageInfo.minRowBytes()); in draw() 29 if (bitmap.installPixels(imageInfo, (void*) blueBits, imageInfo.minRowBytes())) { in draw()
|
/third_party/skia/docs/examples/ |
D | Color_Type_RGB_101010.cpp | 19 uint32_t blueBits[] = { pack101010x(0x000, 0x000, 0x3FF), pack101010x(0x000, 0x000, 0x2ff), in draw() local 24 SkPixmap bluePixmap(imageInfo, &blueBits, imageInfo.minRowBytes()); in draw() 25 if (bitmap.installPixels(imageInfo, (void*) blueBits, imageInfo.minRowBytes())) { in draw()
|
D | Color_Type_RGBA_1010102.cpp | 21 uint32_t blueBits[] = { pack1010102(0x000, 0x000, 0x3FF, 0x3), in draw() local 28 SkPixmap bluePixmap(imageInfo, &blueBits, imageInfo.minRowBytes()); in draw() 29 if (bitmap.installPixels(imageInfo, (void*) blueBits, imageInfo.minRowBytes())) { in draw()
|
/third_party/vk-gl-cts/framework/opengl/ |
D | gluRenderConfig.cpp | 37 config->blueBits == RenderConfig::DONT_CARE && in parseConfigBitsFromName() 48 int blueBits; in parseConfigBitsFromName() member 64 config->blueBits = colorCfgs[ndx].blueBits; in parseConfigBitsFromName()
|
D | gluRenderConfig.hpp | 86 int blueBits; member 103 , blueBits (DONT_CARE) in RenderConfig()
|
/third_party/vk-gl-cts/framework/platform/ohos/context/ |
D | tcuOhosNativeContext.cpp | 71 printf("config.blueBits = %d\n", config.blueBits); in OhosRendContext() 116 .blueBits = 8, in OhosRendContext() 130 if (config.blueBits != -1) in OhosRendContext() 132 pf.blueBits = config.blueBits; in OhosRendContext()
|
/third_party/flutter/glfw/src/ |
D | mir_monitor.c | 96 mode->blueBits = 5; in FillInRGBBitsFromPixelFormat() 101 mode->blueBits = 5; in FillInRGBBitsFromPixelFormat() 106 mode->blueBits = 4; in FillInRGBBitsFromPixelFormat() 117 mode->blueBits = 8; in FillInRGBBitsFromPixelFormat()
|
D | monitor.c | 44 const int fbpp = fm->redBits + fm->greenBits + fm->blueBits; in compareVideoModes() 45 const int sbpp = sm->redBits + sm->greenBits + sm->blueBits; in compareVideoModes() 248 if (desired->blueBits != GLFW_DONT_CARE) in _glfwChooseVideoMode() 249 colorDiff += abs(current->blueBits - desired->blueBits); in _glfwChooseVideoMode()
|
D | context.c | 231 if (desired->blueBits != GLFW_DONT_CARE) in _glfwChooseFBConfig() 233 colorDiff += (desired->blueBits - current->blueBits) * in _glfwChooseFBConfig() 234 (desired->blueBits - current->blueBits); in _glfwChooseFBConfig()
|
D | win32_monitor.c | 112 dm.dmBitsPerPel = best->redBits + best->greenBits + best->blueBits; in _glfwSetVideoModeWin32() 282 &mode.blueBits); in _glfwPlatformGetVideoModes() 343 &mode->blueBits); in _glfwPlatformGetVideoMode()
|
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
D | glcConfigList.hpp | 103 , blueBits(blueBits_) in AOSPConfig() 117 , blueBits(0) in AOSPConfig() 130 deInt32 blueBits; member
|
D | glcConfigListWGL.cpp | 63 (fmtInfo.redBits > 8 || fmtInfo.greenBits > 8 || fmtInfo.blueBits > 8 || fmtInfo.alphaBits > 8)) in getDefaultWglConfigList() 80 …FIGTYPE_WGL, pixelFormat, SURFACETYPE_WINDOW, fmtInfo.redBits, fmtInfo.greenBits, fmtInfo.blueBits, in getDefaultWglConfigList()
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/ |
D | formatutils9.h | 39 GLuint blueBits, 54 GLuint blueBits; member
|
/third_party/vk-gl-cts/framework/platform/win32/ |
D | tcuWGL.hpp | 111 int blueBits; member in tcu::wgl::PixelFormatInfo 150 , blueBits (0) in PixelFormatInfo()
|
/third_party/vk-gl-cts/framework/platform/ios/ |
D | tcuIOSPlatform.mm | 166 const bool cb = config.blueBits != glu::RenderConfig::DONT_CARE; 171 (!cb || config.blueBits == 8) && 177 (!cb || config.blueBits == 5) && 246 gl.getRenderbufferParameteriv(GL_RENDERBUFFER, GL_RENDERBUFFER_BLUE_SIZE, &pixelFormat.blueBits);
|
/third_party/vk-gl-cts/framework/platform/surfaceless/ |
D | tcuSurfacelessPlatform.cpp | 247 config.blueBits, in EglRenderContext() 317 frame_buffer_attribs.push_back(config.blueBits); in EglRenderContext() 354 (glu::RenderConfig::DONT_CARE == config.blueBits || blue == config.blueBits) && in EglRenderContext()
|
/third_party/flutter/skia/third_party/externals/angle2/util/ |
D | EGLWindow.cpp | 23 blueBits(-1), in ConfigParameters() 206 (mConfigParams.blueBits >= 0) ? mConfigParams.blueBits : EGL_DONT_CARE, in initializeSurface() 244 eglGetConfigAttrib(mDisplay, mConfig, EGL_BLUE_SIZE, &mConfigParams.blueBits); in initializeSurface()
|