Searched defs:emitCount (Results 1 - 2 of 2) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/geometry/
H A DvktGeometryBasicGeometryShaderTests.cpp431 const deInt32 emitCount[4] = { 6, 0, m_maxEmitCount, 10 }; local
432 const VkBufferCreateInfo bufferCreateInfo = makeBufferCreateInfo(sizeof(emitCount), VK_BUFFER_USAGE_UNIFORM_BUFFER_BIT);
438 deMemcpy(m_allocation->getHostPtr(), &emitCount[0], sizeof(emitCount));
439 flushMappedMemoryRange(vk, device, m_allocation->getMemory(), m_allocation->getOffset(), sizeof(emitCount));
441 const VkDescriptorBufferInfo bufferDescriptorInfo = makeDescriptorBufferInfo(*m_buffer, 0ull, sizeof(emitCount));
707 src << " highp int emitCount = (gl_PrimitiveIDIn == 0) ? (" << m_pattern[0] << ") : (" << m_pattern[1] << ");\n";
709 src << " highp int emitCount = " << m_pattern[0] << ";\n";
710 src << " for (highp int ndx = 0; ndx < emitCount / 2; ndx++)\n"
821 << " mediump int emitCount
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fGeometryShaderTests.cpp845 const int emitCount = m_spec.pattern[packets[packetNdx].primitiveIDIn]; local
847 for (int ndx = 0; ndx < emitCount / 2; ++ndx)
879 str << " highp int emitCount = ";
886 str << " for (highp int ndx = 0; ndx < emitCount / 2; ndx++)\n"
1280 int emitCount = 0; local
1285 emitCount = (int)vertex->outputs[0].get<float>()[(m_instanced) ? (invocationID) : (0)];
1286 color = tcu::Vec4((emitCount < 10) ? (0.0f) : (1.0f), (emitCount > 10) ? (0.0f) : (1.0f), 1.0f, 1.0f);
1295 emitCount = m_emitCount.value.i4[primitiveNdx];
1308 emitCount
[all...]

Completed in 677 milliseconds