OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:varNdx
(Results
1 - 4
of
4
) sorted by null
/external/deqp/modules/gles31/functional/
es31fOpaqueTypeIndexingTests.cpp
92
for (int
varNdx
= 0;
varNdx
< numVars;
varNdx
++)
93
str << "uniform highp int " << varPrefix <<
varNdx
<< ";\n";
98
for (int
varNdx
= 0;
varNdx
< numIndices;
varNdx
++)
100
const string varName = varPrefix + de::toString(
varNdx
);
104
gl.uniform1i(loc, indices[
varNdx
]);
[
all
...]
es31fSSBOLayoutCase.cpp
720
for (int
varNdx
= firstVarNdx;
varNdx
< varIndicesEnd;
varNdx
++)
721
blockEntry.activeVarIndices.push_back(
varNdx
);
796
const int
varNdx
= blockLayout.activeVarIndices[entryNdx];
797
const BufferVarLayoutEntry& varEntry = layout.bufferVars[
varNdx
];
[
all
...]
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktOpaqueTypeIndexingTests.cpp
222
for (int
varNdx
= 0;
varNdx
< numVars;
varNdx
++)
223
str << "layout(set = 0, binding = " << bindingLocation++ << ") uniform buf" <<
varNdx
<< " { highp int " << varPrefix <<
varNdx
<< "; }" << ";\n";
228
for (int
varNdx
= 0;
varNdx
< numIndices;
varNdx
++)
229
uniformSetup->addData(new UniformData<int>(bindingLocation++, VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER, indices[
varNdx
]));
[
all
...]
/external/deqp/external/vulkancts/modules/vulkan/ssbo/
vktSSBOLayoutCase.cpp
635
for (int
varNdx
= firstVarNdx;
varNdx
< varIndicesEnd;
varNdx
++)
636
blockEntry.activeVarIndices.push_back(
varNdx
);
711
const int
varNdx
= blockLayout.activeVarIndices[entryNdx];
712
const BufferVarLayoutEntry& varEntry = layout.bufferVars[
varNdx
];
[
all
...]
Completed in 2401 milliseconds