OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EbtBool
(Results
1 - 11
of
11
) sorted by null
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
BaseTypes.h
41
EbtBool
,
57
case
EbtBool
: return "bool"; break;
Intermediate.cpp
165
if (left->getBasicType() !=
EbtBool
|| left->isMatrix() || left->isArray() || left->isVector()) {
173
if (left->getBasicType() == EbtStruct || left->getBasicType() ==
EbtBool
)
293
if (child->getType().getBasicType() !=
EbtBool
|| child->getType().isMatrix() || child->getType().isArray() || child->getType().isVector()) {
316
case EOpConstructBool: newType =
EbtBool
; break;
455
promoteTo =
EbtBool
;
491
case
EbtBool
: newOp = EOpConvBoolToFloat; break;
497
case
EbtBool
:
508
case
EbtBool
: newOp = EOpConvBoolToInt; break;
823
if (operand->getBasicType() !=
EbtBool
)
831
if (operand->getBasicType() ==
EbtBool
)
[
all
...]
ConstantUnion.h
18
void setBConst(bool b) {bConst = b; type =
EbtBool
; }
67
case
EbtBool
:
257
case
EbtBool
: returnValue.setBConst(bConst && constant.bConst); break;
269
case
EbtBool
: returnValue.setBConst(bConst || constant.bConst); break;
glslang.y
212
$$ = context->intermediate.addConstantUnion(unionArray, TType(
EbtBool
, EbpUndefined, EvqConst), $1.line);
634
case
EbtBool
:
[
all
...]
VariableInfo.cpp
51
case
EbtBool
:
SymbolTable.cpp
33
case
EbtBool
: mangledName += 'b'; break;
OutputGLSL.cpp
26
case
EbtBool
: out << "bvec"; break;
185
case
EbtBool
: out << pConstUnion->getBConst(); break;
intermOut.cpp
317
case
EbtBool
:
OutputHLSL.cpp
858
case
EbtBool
:
[
all
...]
ParseHelper.cpp
598
if (type->getBasicType() !=
EbtBool
|| type->isArray() || type->isMatrix() || type->isVector()) {
612
if (pType.type !=
EbtBool
|| pType.array || pType.matrix || (pType.size > 1)) {
[
all
...]
Initialize.cpp
522
symbolTable.insert(*new TVariable(NewPoolTString("gl_FrontFacing"), TType(
EbtBool
, EbpUndefined, EvqFrontFacing, 1)));
Completed in 104 milliseconds