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

  /external/swiftshader/src/OpenGL/compiler/
ConstantUnion.h 42 case EbtBool: setFConst(static_cast<float>(constant.getBConst())); break;
52 case EbtBool: setIConst(static_cast<int>(constant.getBConst())); break;
62 case EbtBool: setUConst(static_cast<unsigned int>(constant.getBConst())); break;
67 case EbtBool:
72 case EbtBool: setBConst(constant.getBConst()); break;
82 case EbtBool: setBConst(constant.getBConst()); break;
97 void setBConst(bool b) {bConst = b; type = EbtBool; }
113 case EbtBool: return (bConst == true) ? reinterpret_cast<const float&>(FFFFFFFFh) : 0;
150 case EbtBool:
370 case EbtBool: returnValue.setBConst(bConst && constant.bConst); break
    [all...]
Intermediate.cpp 167 case EbtBool:
350 if (left->getBasicType() != EbtBool || left->isMatrix() || left->isArray() || left->isVector()) {
365 if (left->getBasicType() == EbtStruct || left->getBasicType() == EbtBool) {
371 if (left->getBasicType() == EbtStruct || left->getBasicType() == EbtBool || left->getBasicType() == EbtFloat) {
490 if (child->getType().getBasicType() != EbtBool || child->getType().isMatrix() || child->getType().isArray() || child->getType().isVector()) {
891 if (operand->getBasicType() != EbtBool)
903 if (operand->getBasicType() == EbtBool)
989 setType(TType(EbtBool, EbpUndefined));
999 if (left->getBasicType() != EbtBool || right->getBasicType() != EbtBool)
    [all...]
BaseTypes.h 52 EbtBool,
114 case EbtBool: return "bool";
SymbolTable.cpp 61 case EbtBool: mangledName += 'b'; break;
SymbolTable.h 273 case EbtGenBType: return new TType(EbtBool, size);
294 case EbtBVec: return new TType(EbtBool, size);
ParseHelper.cpp 611 if (type->getBasicType() != EbtBool || type->isArray() || type->isMatrix() || type->isVector()) {
625 if (pType.type != EbtBool || pType.array || (pType.primarySize > 1) || (pType.secondarySize > 1)) {
    [all...]
glslang.y 270 $$ = context->intermediate.addConstantUnion(unionArray, TType(EbtBool, EbpUndefined, EvqConstExpr), @1);
    [all...]
OutputASM.cpp 117 case EbtBool:
245 Constant(bool b) : TIntermConstantUnion(constants, TType(EbtBool, EbpHigh, EvqConstExpr, 1, 1, false))
    [all...]
intermOut.cpp 377 case EbtBool:
Initialize.cpp 200 TType *bool1 = new TType(EbtBool);
477 symbolTable.insert(COMMON_BUILTINS, new TVariable(NewPoolTString("gl_FrontFacing"), TType(EbtBool, EbpUndefined, EvqFrontFacing, 1)));
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
Intermediate.cpp 287 if (child->getType().getBasicType() != EbtBool || child->getType().isMatrix() || child->getType().isArray() || child->getType().isVector()) {
315 case EOpConstructBool: newType = EbtBool; break;
514 promoteTo = EbtBool;
651 else if (source == EShSourceHlsl && node->getType().getBasicType() == EbtBool) {
683 case EbtBool: newOp = EOpConvBoolToDouble; break;
702 case EbtBool: newOp = EOpConvBoolToFloat; break;
722 case EbtBool: newOp = EOpConvBoolToFloat16; break;
734 case EbtBool:
756 case EbtBool: newOp = EOpConvBoolToInt; break;
775 case EbtBool: newOp = EOpConvBoolToUint; break
    [all...]
Constant.cpp 145 TType constBool(EbtBool, EvqConst);
307 case EbtBool: newConstArray[i].setBConst((leftUnionArray[i] == rightUnionArray[i]) ? false : true); break;
494 case EbtBool: newConstArray[i].setBConst(!unionArray[i].getBConst()); break;
830 if (children[2]->getAsTyped()->getBasicType() == EbtBool)
    [all...]
reflection.cpp 552 case EbtBool: return GL_BOOL_VEC2 + offset;
648 case EbtBool: return GL_BOOL;
    [all...]
SymbolTable.cpp 74 case EbtBool: mangledName += 'b'; break;
glslang.y     [all...]
ParseHelper.cpp     [all...]
intermOut.cpp     [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/Include/
ConstantUnion.h 81 type = EbtBool;
177 case EbtBool:
513 case EbtBool: returnValue.setBConst(bConst && constant.bConst); break;
525 case EbtBool: returnValue.setBConst(bConst || constant.bConst); break;
BaseTypes.h 60 EbtBool,
Types.h     [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/hlsl/
hlslGrammar.cpp 811 basicType = EbtBool;
    [all...]
hlslParseHelper.cpp     [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/SPIRV/
GlslangToSpv.cpp     [all...]

Completed in 204 milliseconds