/third_party/vk-gl-cts/external/openglcts/modules/gles31/ |
H A D | es31cSeparateShaderObjsTests.cpp | 2205 // The program bound with glUseProgram will draw green, the programs in iterate() 2213 // Ouput green in the fragment shader in iterate() 2257 // useProgram takes precedence and the buffer should be green in iterate() 2258 if (!checkSurface(renderedFrame, tcu::RGBA::green())) in iterate() 2260 TCU_FAIL("StateInteraction failed; surface should be green"); in iterate() 2398 // Render green in iterate() 2423 // expect green in iterate() 2424 if (!checkSurface(renderedFrame, tcu::RGBA::green())) in iterate() 2426 TCU_FAIL("StateInteraction failed; surface should be green"); in iterate()
|
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
H A D | glcInternalformatTests.cpp | 690 GLfloat green = inColor[1]; in convertUint_5_9_9_9_rev() local 697 GLfloat green_c = deFloatMax(0, deFloatMin(sharedExpMax, green)); in convertUint_5_9_9_9_rev()
|
H A D | glcViewportArrayTests.cpp | 232 * @param green Green channel 236 void Utils::framebuffer::clearColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) in clearColor() argument 240 gl.clearColor(red, green, blue, alpha); in clearColor()
|
/third_party/mesa3d/include/D3D9/ |
H A D | d3d9types.h | 1600 WORD green[256]; member
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
H A D | gl4cShaderSubroutineTests.hpp | 73 void clearColor(glw::GLfloat red, glw::GLfloat green, glw::GLfloat blue, glw::GLfloat alpha);
|
H A D | gl4cEnhancedLayoutsTests.hpp | 257 void ClearColor(glw::GLfloat red, glw::GLfloat green, glw::GLfloat blue, glw::GLfloat alpha); 267 static void ClearColor(const glw::Functions& gl, glw::GLfloat red, glw::GLfloat green, glw::GLfloat blue,
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
H A D | vk_utils.h | 1046 VkColorComponentFlags GetColorComponentFlags(bool red, bool green, bool blue, bool alpha);
|
H A D | vk_cache_utils.cpp | 2280 mInputAssemblyAndColorBlendStateInfo.blendConstants[1] = color.green; 3252 mBorderColor.green = 0.0f; 3420 customBorderColorInfo.customBorderColor.float32[1] = mBorderColor.green;
|
/third_party/skia/third_party/externals/libpng/ |
H A D | pngset.c | 1037 trans_color->green > sample_max || in png_set_tRNS()
|
H A D | pngtest.c | 1379 (int)trans_color->green > sample_max || in test_one_file()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | Context.cpp | 5400 void Context::blendColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) in blendColor() argument 5402 mState.setBlendColor(red, green, blue, alpha); in blendColor() 5459 void Context::clearColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) in clearColor() argument 5461 mState.setColorClearValue(red, green, blue, alpha); in clearColor() 5474 void Context::colorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha) in colorMask() argument 5476 mState.setColorMask(ConvertToBool(red), ConvertToBool(green), ConvertToBool(blue), in colorMask()
|
/third_party/skia/modules/skparagraph/tests/ |
H A D | SkParagraphTest.cpp | 5735 SkPaint green; in UNIX_ONLY_TEST() local 5736 green.setColor(SK_ColorGREEN); in UNIX_ONLY_TEST() 5737 green.setStyle(SkPaint::kStroke_Style); in UNIX_ONLY_TEST() 5738 green.setAntiAlias(true); in UNIX_ONLY_TEST() 5739 green.setStrokeWidth(1); in UNIX_ONLY_TEST() 5744 canvas.get()->drawLine(x0, y, x1, y, green); in UNIX_ONLY_TEST()
|
/foundation/ability/ability_runtime/test/unittest/frameworks_kits_ability_native_test/ |
H A D | ability_test.cpp | 2243 int green = 0; in HWTEST_F() local 2245 EXPECT_EQ(ability->SetWindowBackgroundColor(red, green, blue), -1); in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/core/components/custom_paint/ |
H A D | rosen_render_offscreen_canvas.cpp | 943 // a pixel include 4 data blue, green, red, alpha in GetImageData() 946 auto green = pixels[i + 1]; in GetImageData() local 949 imageData->data.emplace_back(Color::FromARGB(alpha, red, green, blue).GetValue()); in GetImageData()
|
/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/engine/jsi/ |
H A D | jsi_canvas_bridge.cpp | 1640 auto green = StringUtils::StringToInt(array[4 * flag + 1]); in JsPutImageData() local 1644 imageData.data.emplace_back(Color::FromARGB(alpha, red, green, blue).GetValue()); in JsPutImageData() 1735 // a pixel includes 4 data: red/green/blue/alpha
|
H A D | jsi_offscreen_canvas_bridge.cpp | 1474 auto green = StringUtils::StringToInt(array[4 * flag + 1]); in JsPutImageData() local 1478 imageData.data.emplace_back(Color::FromARGB(alpha, red, green, blue).GetValue()); in JsPutImageData() 1547 // a pixel includes 4 data: red/green/blue/alpha
|
/third_party/backends/backend/genesys/ |
H A D | gl646.cpp | 1941 expg = sensor.exposure.green; in led_calibration() 1951 calib_sensor.exposure.green = expg; in led_calibration()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/ |
H A D | vktShaderRenderTextureGatherTests.cpp | 638 tcu::clear(errorMask.getAccess(), tcu::RGBA::green().toVec()); in verifyGatherOffsets() 716 tcu::clear(errorMask.getAccess(), tcu::RGBA::green().toVec()); in verifyGatherOffsetsCompare()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/ |
H A D | Renderer9.cpp | 1966 : clearParams.colorF.green), in clear() 3154 gl::unorm<8>(clearColorValue.green), gl::unorm<8>(clearColorValue.blue)); in clearRenderTarget()
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
H A D | TransformFeedbackTest.cpp | 3281 EXPECT_PIXEL_RECT_EQ(0, h / 2, w / 4, h / 2, GLColor::green); in TEST_P() 3510 EXPECT_PIXEL_RECT_EQ(kFBOSize / 2, 0, kFBOSize / 2, kFBOSize, GLColor::green); in TEST_P()
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fCopyImageTests.cpp | 685 const float green = rng.getFloat(info.valueMin.y(), info.valueMax.y()); 689 const Vec4 color (red, green, blue, alpha);
|
H A D | es31fTextureBorderClampTests.cpp | 1125 tcu::clear(errorMask.getAccess(), tcu::RGBA::green().toVec()); 1190 tcu::clear(errorMask.getAccess(), tcu::RGBA::green().toVec());
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/ |
H A D | vktDynamicRenderingTests.cpp | 181 const VkClearAttachment green = in ClearAttachmentData() local 187 colorDepthClear1.push_back(green); in ClearAttachmentData()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderrender/ |
H A D | vktShaderRenderTextureGatherTests.cpp | 638 tcu::clear(errorMask.getAccess(), tcu::RGBA::green().toVec()); in verifyGatherOffsets() 716 tcu::clear(errorMask.getAccess(), tcu::RGBA::green().toVec()); in verifyGatherOffsetsCompare()
|
/third_party/vk-gl-cts/framework/opengl/simplereference/ |
H A D | sglrReferenceContext.cpp | 2629 void ReferenceContext::clearColor (float red, float green, float blue, float alpha) 2632 de::clamp(green, 0.0f, 1.0f), 2979 void ReferenceContext::blendColor (float red, float green, float blue, float alpha) 2982 de::clamp(green, 0.0f, 1.0f),
|