OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EbtBool
(Results
1 - 13
of
13
) sorted by null
/external/chromium_org/third_party/angle/src/compiler/
UnfoldShortCircuitAST.cpp
15
const TType boolType(
EbtBool
, EbpUndefined);
19
u, TType(
EbtBool
, EbpUndefined, EvqConst, 1));
26
const TType boolType(
EbtBool
, EbpUndefined);
30
u, TType(
EbtBool
, EbpUndefined, EvqConst, 1));
BaseTypes.h
41
EbtBool
,
60
case
EbtBool
: return "bool"; break;
Intermediate.cpp
168
if (left->getBasicType() !=
EbtBool
|| left->isMatrix() || left->isArray() || left->isVector()) {
176
if (left->getBasicType() == EbtStruct || left->getBasicType() ==
EbtBool
)
290
if (child->getType().getBasicType() !=
EbtBool
|| child->getType().isMatrix() || child->getType().isArray() || child->getType().isVector()) {
313
case EOpConstructBool: newType =
EbtBool
; break;
447
promoteTo =
EbtBool
;
483
case
EbtBool
: newOp = EOpConvBoolToFloat; break;
489
case
EbtBool
:
500
case
EbtBool
: newOp = EOpConvBoolToInt; break;
867
if (operand->getBasicType() !=
EbtBool
)
875
if (operand->getBasicType() ==
EbtBool
)
[
all
...]
ConstantUnion.h
23
void setBConst(bool b) {bConst = b; type =
EbtBool
; }
57
case
EbtBool
:
226
case
EbtBool
: returnValue.setBConst(bConst && constant.bConst); break;
238
case
EbtBool
: returnValue.setBConst(bConst || constant.bConst); break;
glslang.y
243
$$ = context->intermediate.addConstantUnion(unionArray, TType(
EbtBool
, EbpUndefined, EvqConst), @1);
573
case
EbtBool
:
708
$$ = context->intermediate.addConstantUnion(unionArray, TType(
EbtBool
, EbpUndefined, EvqConst), @2);
718
$$ = context->intermediate.addConstantUnion(unionArray, TType(
EbtBool
, EbpUndefined, EvqConst), @2);
728
$$ = context->intermediate.addConstantUnion(unionArray, TType(
EbtBool
, EbpUndefined, EvqConst), @2);
738
$$ = context->intermediate.addConstantUnion(unionArray, TType(
EbtBool
, EbpUndefined, EvqConst), @2);
752
$$ = context->intermediate.addConstantUnion(unionArray, TType(
EbtBool
, EbpUndefined, EvqConst), @2);
762
$$ = context->intermediate.addConstantUnion(unionArray, TType(
EbtBool
, EbpUndefined, EvqConst), @2);
788
$$ = context->intermediate.addConstantUnion(unionArray, TType(
EbtBool
, EbpUndefined, EvqConst), @2);
802
$$ = context->intermediate.addConstantUnion(unionArray, TType(
EbtBool
, EbpUndefined, EvqConst), @2)
[
all
...]
Initialize.cpp
248
TType *bool1 = new TType(
EbtBool
, EbpUndefined, EvqGlobal, 1);
249
TType *bool2 = new TType(
EbtBool
, EbpUndefined, EvqGlobal, 2);
250
TType *bool3 = new TType(
EbtBool
, EbpUndefined, EvqGlobal, 3);
251
TType *bool4 = new TType(
EbtBool
, EbpUndefined, EvqGlobal, 4);
432
symbolTable.insert(*new TVariable(NewPoolTString("gl_FrontFacing"), TType(
EbtBool
, EbpUndefined, EvqFrontFacing, 1)));
glslang_tab.cpp
[
all
...]
SymbolTable.cpp
43
case
EbtBool
: mangledName += 'b'; break;
VariableInfo.cpp
53
case
EbtBool
:
OutputGLSLBase.cpp
149
case
EbtBool
: out << pConstUnion->getBConst(); break;
751
case
EbtBool
: out << "bvec"; break;
intermOut.cpp
324
case
EbtBool
:
OutputHLSL.cpp
[
all
...]
ParseContext.cpp
588
if (type->getBasicType() !=
EbtBool
|| type->isArray() || type->isMatrix() || type->isVector()) {
602
if (pType.type !=
EbtBool
|| pType.array || pType.matrix || (pType.size > 1)) {
[
all
...]
Completed in 469 milliseconds