Home
last modified time | relevance | path

Searched refs:colorValue (Results 1 – 7 of 7) sorted by relevance

/external/skia/src/gpu/effects/
DGrConstColorProcessor.cpp47 const SkPMColor4f& colorValue = _outer.color(); in onSetData() local
48 if (fColorPrev != colorValue) { in onSetData()
49 fColorPrev = colorValue; in onSetData()
50 pdman.set4fv(fColorVar, 1, colorValue.vec()); in onSetData()
/external/skqp/src/gpu/effects/
DGrConstColorProcessor.cpp47 const SkPMColor4f& colorValue = _outer.color(); in onSetData() local
48 if (fColorPrev != colorValue) { in onSetData()
49 fColorPrev = colorValue; in onSetData()
50 pdman.set4fv(fColorVar, 1, colorValue.vec()); in onSetData()
/external/deqp/framework/randomshaders/
DrsgProgramExecutor.cpp342 ExecConstValueAccess colorValue = execCtx.getValue(fragColorVar); in execute() local
348 tcu::Vec4 c = tcu::Vec4(colorValue.component(0).asFloat(cNdx), in execute()
349 colorValue.component(1).asFloat(cNdx), in execute()
350 colorValue.component(2).asFloat(cNdx), in execute()
351 colorValue.component(3).asFloat(cNdx)); in execute()
/external/mesa3d/src/mesa/drivers/common/
Dmeta.c3450 union gl_color_union colorValue; in cleartexsubimage_color() local
3471 (GLuint (*)[4]) colorValue.ui); in cleartexsubimage_color()
3473 memset(&colorValue, 0, sizeof colorValue); in cleartexsubimage_color()
3475 _mesa_ClearBufferiv(GL_COLOR, 0, colorValue.i); in cleartexsubimage_color()
3477 _mesa_ClearBufferuiv(GL_COLOR, 0, colorValue.ui); in cleartexsubimage_color()
3482 (GLfloat (*)[4]) colorValue.f); in cleartexsubimage_color()
3484 memset(&colorValue, 0, sizeof colorValue); in cleartexsubimage_color()
3485 _mesa_ClearBufferfv(GL_COLOR, 0, colorValue.f); in cleartexsubimage_color()
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ui/
DViewInflater.java634 private int expandColor(String colorValue) { in expandColor() argument
635 return Integer.parseInt(colorValue + colorValue, 16); in expandColor()
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineRenderToImageTests.cpp857 std::ostringstream colorValue; in initPrograms() local
858 colorValue << REFERENCE_COLOR_VALUE; in initPrograms()
860 …const std::string colorInteger = (isUint || isSint ? " * "+colorFormat+"("+colorValue.str()+")" :"… in initPrograms()
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
DvktOpaqueTypeIndexingTests.cpp472 …tImage (Context& context, TextureType texType, tcu::TextureFormat format, const void* colorValue);
544 …estImage (Context& context, TextureType texType, tcu::TextureFormat format, const void* colorValue) in TestImage() argument
574 deMemcpy((deUint8*)alloc->getHostPtr() + ndx*pixelSize, colorValue, pixelSize); in TestImage()