HomeSort by relevance Sort by last modified time
    Searched refs:in0Type (Results 1 - 2 of 2) sorted by null

  /external/deqp/modules/gles3/functional/
es3fShaderMatrixTests.cpp 884 typedef void (*MatrixShaderEvalFunc) (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type);
892 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type)
894 typename TypeTraits<In0DataType>::Type in0 = (in0Type == INPUTTYPE_DYNAMIC) ? getInputValue<INPUTTYPE_DYNAMIC, In0DataType>(evalCtx, 0)
905 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type)
907 typename TypeTraits<In0DataType>::Type in0 = (in0Type == INPUTTYPE_DYNAMIC) ? getInputValue<INPUTTYPE_DYNAMIC, In0DataType>(evalCtx, 0)
918 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type)
920 typename TypeTraits<In0DataType>::Type in0 = (in0Type == INPUTTYPE_DYNAMIC) ? getInputValue<INPUTTYPE_DYNAMIC, In0DataType>(evalCtx, 0)
931 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type)
933 typename TypeTraits<In0DataType>::Type in0 = (in0Type == INPUTTYPE_DYNAMIC) ? getInputValue<INPUTTYPE_DYNAMIC, In0DataType>(evalCtx, 0)
944 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type
    [all...]
  /external/deqp/modules/gles2/functional/
es2fShaderMatrixTests.cpp 446 template <int Op, int In0Type, int In0DataType, int In1Type, int In1DataType>
449 template <int In0Type, int In0DataType, int In1Type, int In1DataType>
450 struct Evaluator<OP_ADD, In0Type, In0DataType, In1Type, In1DataType>
454 evalCtx.color.xyz() = reduceToVec3(getInputValue<In0Type, In0DataType>(evalCtx, 0) + getInputValue<In1Type, In1DataType>(evalCtx, 1));
458 template <int In0Type, int In0DataType, int In1Type, int In1DataType>
459 struct Evaluator<OP_SUB, In0Type, In0DataType, In1Type, In1DataType>
463 evalCtx.color.xyz() = reduceToVec3(getInputValue<In0Type, In0DataType>(evalCtx, 0) - getInputValue<In1Type, In1DataType>(evalCtx, 1));
467 template <int In0Type, int In0DataType, int In1Type, int In1DataType>
468 struct Evaluator<OP_MUL, In0Type, In0DataType, In1Type, In1DataType>
472 evalCtx.color.xyz() = reduceToVec3(getInputValue<In0Type, In0DataType>(evalCtx, 0) * getInputValue<In1Type, In1DataType>(evalCtx, 1))
    [all...]

Completed in 598 milliseconds