/third_party/mesa3d/src/mesa/swrast/ |
D | s_logic.c | 164 LOGIC_OP_LOOP(ctx->Color.LogicOp, 1); in logicop_uint1() 172 LOGIC_OP_LOOP(ctx->Color.LogicOp, 2); in logicop_uint2() 180 LOGIC_OP_LOOP(ctx->Color.LogicOp, 4); in logicop_uint4()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/ |
D | SystemZInstrInfo.cpp | 911 struct LogicOp { struct 912 LogicOp() = default; 913 LogicOp(unsigned regSize, unsigned immLSB, unsigned immSize) in LogicOp() function 925 static LogicOp interpretAndImmediate(unsigned Opcode) { in interpretAndImmediate() 927 case SystemZ::NILMux: return LogicOp(32, 0, 16); in interpretAndImmediate() 928 case SystemZ::NIHMux: return LogicOp(32, 16, 16); in interpretAndImmediate() 929 case SystemZ::NILL64: return LogicOp(64, 0, 16); in interpretAndImmediate() 930 case SystemZ::NILH64: return LogicOp(64, 16, 16); in interpretAndImmediate() 931 case SystemZ::NIHL64: return LogicOp(64, 32, 16); in interpretAndImmediate() 932 case SystemZ::NIHH64: return LogicOp(64, 48, 16); in interpretAndImmediate() [all …]
|
/third_party/mesa3d/src/mesa/drivers/dri/nouveau/ |
D | nv20_state_raster.c | 41 PUSH_DATA (push, ctx->Color.LogicOp); in nv20_emit_logic_opcode()
|
D | nv10_state_raster.c | 129 PUSH_DATA (push, ctx->Color.LogicOp); in nv10_emit_logic_opcode()
|
/third_party/openGLES/extensions/EXT/ |
D | EXT_blend_logic_op.txt | 26 logical operation is as specified by LogicOp. While only the XOR 55 logic operation as specified by LogicOp.
|
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/ |
D | EXT_blend_logic_op.txt | 26 logical operation is as specified by LogicOp. While only the XOR 55 logic operation as specified by LogicOp.
|
D | EXT_blend_equation_separate.txt | 236 where OP denotes the logical operation controlled by LogicOp (see
|
/third_party/mesa3d/docs/relnotes/ |
D | 3.5 | 132 The ctx->Driver.LogicOp() function has been removed. It used to 135 flag. Drivers should instead examine the LogicOp state themselves 139 points, lines or triangles using Xlib, the LogicOp function isn't needed.
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/ |
D | gl_enum_utils_autogen.h | 118 LogicOp, enumerator
|
D | gl_enum_utils_autogen.cpp | 4357 case GLenumGroup::LogicOp: in GLenumToString()
|
D | entry_points_enum_autogen.h | 692 LogicOp, enumerator
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/ |
D | gl_enum_utils_autogen.h | 113 LogicOp, enumerator
|
D | gl_enum_utils_autogen.cpp | 2953 case GLenumGroup::LogicOp: in GLenumToString()
|
/third_party/mesa3d/src/mesa/main/ |
D | blend.c | 908 if (ctx->Color.LogicOp == opcode) in logic_op() 939 ctx->Color.LogicOp = opcode; in logic_op() 1249 ctx->Color.LogicOp = GL_COPY; in _mesa_init_color()
|
/third_party/skia/third_party/externals/angle2/src/tests/gles1_conformance_tests/ |
D | ConformanceTests.cpp | 273 TEST_P(GLES1ConformanceTest, LogicOp) in TEST_P() argument
|
D | CovglTests.cpp | 342 TEST_P(GLES1CovglTest, LogicOp) in TEST_P() argument
|
/third_party/flutter/skia/third_party/externals/angle2/src/tests/gles1_conformance_tests/ |
D | ConformanceTests.cpp | 260 TEST_P(GLES1ConformanceTest, LogicOp) in TEST_P() argument
|
/third_party/flutter/skia/third_party/externals/angle2/src/libGLESv2/ |
D | entry_points_gles_1_0_autogen.h | 68 ANGLE_EXPORT void GL_APIENTRY LogicOp(GLenum opcode);
|
D | entry_points_gles_1_0_autogen.cpp | 876 void GL_APIENTRY LogicOp(GLenum opcode) in LogicOp() function 878 EVENT("(GLenum opcode = %s)", GLenumToString(GLenumGroup::LogicOp, opcode)); in LogicOp() 890 ANGLE_CAPTURE(LogicOp, isCallValid, context, opcodePacked); in LogicOp()
|
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/d3d12/ |
D | RenderPipelineD3D12.cpp | 231 blendDesc.LogicOp = D3D12_LOGIC_OP_NOOP; in ComputeColorDesc()
|
/third_party/mesa3d/src/mesa/drivers/x11/ |
D | xm_line.c | 517 && ctx->Color.LogicOp == GL_XOR in get_line_func()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/ |
D | RenderPipelineD3D12.cpp | 244 blendDesc.LogicOp = D3D12_LOGIC_OP_NOOP; in ComputeColorDesc()
|
/third_party/skia/third_party/externals/swiftshader/include/vulkan/ |
D | vulkan_enums.hpp | 3848 enum class LogicOp enum 3868 VULKAN_HPP_INLINE std::string to_string( LogicOp value ) in to_string() 3872 case LogicOp::eClear: return "Clear"; in to_string() 3873 case LogicOp::eAnd: return "And"; in to_string() 3874 case LogicOp::eAndReverse: return "AndReverse"; in to_string() 3875 case LogicOp::eCopy: return "Copy"; in to_string() 3876 case LogicOp::eAndInverted: return "AndInverted"; in to_string() 3877 case LogicOp::eNoOp: return "NoOp"; in to_string() 3878 case LogicOp::eXor: return "Xor"; in to_string() 3879 case LogicOp::eOr: return "Or"; in to_string() [all …]
|
/third_party/vulkan-headers/include/vulkan/ |
D | vulkan_enums.hpp | 3897 enum class LogicOp enum 3917 VULKAN_HPP_INLINE std::string to_string( LogicOp value ) in to_string() 3921 case LogicOp::eClear: return "Clear"; in to_string() 3922 case LogicOp::eAnd: return "And"; in to_string() 3923 case LogicOp::eAndReverse: return "AndReverse"; in to_string() 3924 case LogicOp::eCopy: return "Copy"; in to_string() 3925 case LogicOp::eAndInverted: return "AndInverted"; in to_string() 3926 case LogicOp::eNoOp: return "NoOp"; in to_string() 3927 case LogicOp::eXor: return "Xor"; in to_string() 3928 case LogicOp::eOr: return "Or"; in to_string() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
D | PPCISelDAGToDAG.cpp | 2494 SDValue computeLogicOpInGPR(SDValue LogicOp); 2668 SDValue IntegerCompareEliminator::computeLogicOpInGPR(SDValue LogicOp) { in computeLogicOpInGPR() argument 2669 assert(isLogicOp(LogicOp.getOpcode()) && in computeLogicOpInGPR() 2671 assert(LogicOp.getValueType() == MVT::i1 && in computeLogicOpInGPR() 2673 SDLoc dl(LogicOp); in computeLogicOpInGPR() 2677 bool IsBitwiseNegation = isBitwiseNot(LogicOp); in computeLogicOpInGPR() 2698 LHS = getLogicOperand(LogicOp.getOperand(0)); in computeLogicOpInGPR() 2699 RHS = getLogicOperand(LogicOp.getOperand(1)); in computeLogicOpInGPR() 2716 switch (LogicOp.getOpcode()) { in computeLogicOpInGPR()
|