/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fPrimitiveBoundingBoxTests.cpp | 1065 << "Rendering yellow-green grid to " << ((m_renderTarget == RENDERTARGET_DEFAULT) ? ("default frame buffer") : ("fbo")) << ".\n" 1326 const tcu::Vec4 green (0.0f, 1.0f, 0.0f, 1.0f); 1342 const tcu::Vec4& cellColor = ((cellX+cellY)%2 == 0) ? (green) : (yellow); 1444 // expect green, yellow or a combination of these 1567 << "Vertical lines are green, horizontal lines blue. Using additive blending.\n" 1836 const tcu::Vec4 green (0.0f, 1.0f, 0.0f, 1.0f); 1857 data[(ndx * 2 + 0) * VA_NUM_ATTRIB_VECS + VA_COL_VEC_NDX] = green; 1859 data[(ndx * 2 + 1) * VA_NUM_ATTRIB_VECS + VA_COL_VEC_NDX] = green; 2540 << "Half of the points are green, half blue. Using additive blending.\n" 2845 const tcu::Vec4 green (0. [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/binding_model/ |
H A D | vktBindingShaderAccessTests.cpp | 1449 0.0f, 1.0f, 0.0f, 1.0f, // green 1825 msg << "Rendering 2x2 yellow-green grid.\n" 1941 const tcu::Vec4 green (0.0f, 1.0f, 0.0f, 1.0f); 1952 tcu::Vec4(0.0f, 1.0f, 0.0f, 1.0f), // green 1973 sample0 = green; 2799 tcu::Vec4(0.0f, 1.0f, 0.0f, 1.0f), // green 3934 int green = ((gradPos % 2 == 0) ? (127) : (0)) + ((gradPos % 4 < 3) ? (128) : (0)); //!< 3-level M pattern (detects small offset errors) 3938 DE_ASSERT(de::inRange(green, 0, 255)); 3942 if (imageNdx % 4 == 0) green = 255 - green; [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/binding_model/ |
H A D | vktBindingShaderAccessTests.cpp | 1449 0.0f, 1.0f, 0.0f, 1.0f, // green 1825 msg << "Rendering 2x2 yellow-green grid.\n" 1941 const tcu::Vec4 green (0.0f, 1.0f, 0.0f, 1.0f); 1952 tcu::Vec4(0.0f, 1.0f, 0.0f, 1.0f), // green 1973 sample0 = green; 2799 tcu::Vec4(0.0f, 1.0f, 0.0f, 1.0f), // green 3938 int green = ((gradPos % 2 == 0) ? (127) : (0)) + ((gradPos % 4 < 3) ? (128) : (0)); //!< 3-level M pattern (detects small offset errors) 3942 DE_ASSERT(de::inRange(green, 0, 255)); 3946 if (imageNdx % 4 == 0) green = 255 - green; [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/geometry/ |
H A D | vktGeometryLayeredRenderingTests.cpp | 93 { 0.0f, 1.0f, 0.0f, 1.0f }, // green 476 const Vec4 green (0.0f, 1.0f, 0.0f, 1.0f); in verifyImageSingleColoredRow() 485 tcu::clear(errorMask.getAccess(), green); in verifyImageSingleColoredRow() 552 const Vec4 green (0.0f, 1.0f, 0.0f, 1.0f); in verifyImageMultipleBars() 562 tcu::clear(errorMask.getAccess(), green); in verifyImageMultipleBars()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/geometry/ |
H A D | vktGeometryLayeredRenderingTests.cpp | 93 { 0.0f, 1.0f, 0.0f, 1.0f }, // green 476 const Vec4 green (0.0f, 1.0f, 0.0f, 1.0f); in verifyImageSingleColoredRow() 485 tcu::clear(errorMask.getAccess(), green); in verifyImageSingleColoredRow() 552 const Vec4 green (0.0f, 1.0f, 0.0f, 1.0f); in verifyImageMultipleBars() 562 tcu::clear(errorMask.getAccess(), green); in verifyImageMultipleBars()
|
/third_party/vk-gl-cts/modules/gles3/stress/ |
H A D | es3sSpecialFloatTests.cpp | 193 errorMask.setPixel(x, y, tcu::RGBA::green()); in checkResultImage() 339 errorMask.setPixel(x, y, tcu::RGBA::green()); in drawTestPattern() 512 * value 1.0 is put to z and w. The resulting fragment's green channel 749 " highp float green = 1.0 - abs((a1.y + a2.y + a3.y + a4.y + a5.y) - 6.0);\n" 750 " v_out = vec4(a1.x*a3.x + a2.x*a4.x, green, a5.x, 1.0);\n" 775 " highp float green = 1.0 - abs((a1.y + a2.y + a3.y + a4.y + a5.y + a6.y) - 6.0);\n" 776 " fragColor = vec4(a1.x*a3.x + a2.x*a4.x, green, a5.x+a6.x, 1.0);\n" 786 * z and w. The resulting fragment's green channel should be 1.0 942 " highp float green = 1.0 - abs((a1.y + a2.y + a3.y + a4.y + a5.y) - 6.0);\n" 943 " v_out = vec4(a1.x*a3.x + a2.x*a4.x, green, a [all...] |
/foundation/multimedia/image_framework/plugins/common/libs/image/libgifplugin/src/ |
H A D | gif_decoder.cpp | 495 uint32_t GifDecoder::GetPixelColor(uint32_t red, uint32_t green, uint32_t blue, uint32_t alpha) in GetPixelColor() argument 497 return (red << RGBA_R_SHIFT) | (green << RGBA_G_SHIFT) | (blue << RGBA_B_SHIFT) | (alpha << RGBA_A_SHIFT); in GetPixelColor()
|
/foundation/window/window_manager/wm/include/ |
H A D | window_impl.h | 52 uint8_t green; member 58 uint8_t green;
|
/third_party/ffmpeg/libavcodec/ |
H A D | 4xm.c | 720 int green = (2 * (c0 & 0x03E0) + (c1 & 0x03E0)) >> 5; in mix() local 722 return red / 3 * 1024 + green / 3 * 32 + blue / 3; in mix()
|
H A D | scpr3.c | 893 uint32_t *green, uint32_t *blue, in decode_units3() 906 ret = decode_unit3(s, &s->pixel_model3[1][*cx + *cx1], rc->code & 0xFFF, green); in decode_units3() 911 *cx = *green >> 2; in decode_units3() 892 decode_units3(SCPRContext * s, uint32_t *red, uint32_t *green, uint32_t *blue, int *cx, int *cx1) decode_units3() argument
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/ |
H A D | vktRenderPassDitheringTests.cpp | 79 const tcu::Vec4 green (0.0f, 1.0f, 0.0f, 1.0f); in createQuad() 85 const Vertex4RGBA lowerRightVertex = {tcu::Vec4(size, -size, depthValue, 1.0f), green}; in createQuad()
|
/third_party/skia/third_party/externals/angle2/src/common/ |
H A D | mathutil.h | 233 unsigned int convertRGBFloatsTo999E5(float red, float green, float blue); 234 void convert999E5toRGBFloats(unsigned int input, float *red, float *green, float *blue);
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
H A D | vk_utils.cpp | 1505 VkColorComponentFlags GetColorComponentFlags(bool red, bool green, bool blue, bool alpha) in GetColorComponentFlags() argument 1507 return (red ? VK_COLOR_COMPONENT_R_BIT : 0) | (green ? VK_COLOR_COMPONENT_G_BIT : 0) | in GetColorComponentFlags()
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
H A D | DepthStencilFormatsTest.cpp | 810 // leave the green and blue channels undefined in TEST_P() 1007 EXPECT_PIXEL_COLOR_EQ(0, 0, GLColor::green); in TEST_P() 1080 EXPECT_PIXEL_COLOR_EQ(0, 0, GLColor::green); in TEST_P()
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/ |
H A D | Device.cpp | 188 void Device::clearColor(float red, float green, float blue, float alpha, unsigned int rgbaMask) in clearColor() argument 197 rgba[1] = green; in clearColor()
|
/third_party/skia/third_party/externals/libpng/contrib/libtests/ |
H A D | pngimage.c | 1123 sig_bits[1] = sBIT->green; in compare_read() 1130 sig_bits[1] = sBIT->green; in compare_read()
|
/third_party/skia/third_party/externals/freetype/src/sfnt/ |
H A D | ttcolr.c | 1218 g = face->foreground_color.green; in FT_LOCAL_DEF() 1247 g = face->palette[color_index].green; in FT_LOCAL_DEF()
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fShaderBuiltinVarTests.cpp | 685 refImg.setPixel(x, y, tcu::RGBA::green()); in iterate() 697 refImg.setPixel(x, y, tcu::RGBA::green()); in iterate()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/ |
H A D | vktRenderPassDitheringTests.cpp | 79 const tcu::Vec4 green (0.0f, 1.0f, 0.0f, 1.0f); in createQuad() 85 const Vertex4RGBA lowerRightVertex = {tcu::Vec4(size, -size, depthValue, 1.0f), green}; in createQuad()
|
/third_party/vk-gl-cts/framework/opengl/simplereference/ |
H A D | sglrReferenceContext.hpp | 664 virtual void clearColor (float red, float green, float blue, float alpha); 695 virtual void blendColor (float red, float green, float blue, float alpha);
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | GLES1Renderer.cpp | 258 context->vertexAttrib4f(kColorAttribIndex, color.red, color.green, color.blue, in prepareForDraw() 312 uniformBuffers.texEnvColors[i][1] = env.color.green; in prepareForDraw()
|
/third_party/glfw/deps/glad/ |
H A D | gles2.h | 879 typedef void (GLAD_API_PTR *PFNGLBLENDCOLORPROC)(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); 888 typedef void (GLAD_API_PTR *PFNGLCLEARCOLORPROC)(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); 891 typedef void (GLAD_API_PTR *PFNGLCOLORMASKPROC)(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha);
|
/third_party/lame/frontend/ |
H A D | gtkanal.c | 264 static GdkColor yellow, gray, cyan, magenta, orange, pink, red, green, blue, black, oncolor, in plot_frame() local 294 grcolor[1] = &green; in plot_frame() 304 setcolor(pcmbox, &green, 0, 255, 0); in plot_frame() 1206 "is denoted by the blue and green bars.\n\n", -1); in text_window() 1226 "the right window. The green and blue bars show how much distortion is " in text_window() 1231 "by the blue and green bars in the PCM data window). The Spectrum pull " in text_window()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/ |
H A D | vktShaderRenderDerivateTests.cpp | 438 const tcu::IVec4 green (0, 255, 0, 255); in reverifyConstantDerivateWithFlushRelaxations() 448 tcu::clear(errorMask, green); in reverifyConstantDerivateWithFlushRelaxations() 729 tcu::clear(errorMask.getAccess(), tcu::RGBA::green().toVec()); in iterate()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/ |
H A D | capture_gles_2_0_autogen.h | 51 GLfloat green, 89 GLfloat green, 97 GLboolean green,
|