HomeSort by relevance Sort by last modified time
    Searched full:firstinstance (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawInstancedTests.cpp 146 TestVertShader (int numInstances, int firstInstance)
149 , m_firstInstance (firstInstance)
210 void prepareVertexData (int instanceCount, int firstInstance);
252 " float firstInstance;\n"
262 " gl_Position = in_position + vec4(float(gl_InstanceIndex - params.firstInstance) * 2.0 / params.instanceCount, 0.0, 0.0, 0.0);\n"
446 // Require 'drawIndirectFirstInstance' feature to run non-zero firstInstance indirect draw tests.
455 const deUint32 firstInstance = firstInstanceIndices[firstInstanceIndexNdx];
457 prepareVertexData(instanceCount, firstInstance);
507 const float pushConstants[] = { (float)firstInstance, (float)instanceCount };
515 m_vk.cmdDraw(*m_cmdBuffer, (deUint32)m_data.size(), instanceCount, 0u, firstInstance);
    [all...]
vktDrawIndirectTest.cpp 234 0 //firstInstance
241 0 //firstInstance
257 0 //firstInstance
264 0 //firstInstance
291 0, // firstInstance
299 0, // firstInstance
316 0, // firstInstance
324 0, // firstInstance
497 FirstInstanceSupport::getFirstInstance() //firstInstance
504 FirstInstanceSupport::getFirstInstance() //firstInstance
    [all...]
vktDrawShaderDrawParametersTests.cpp 257 // indexCount, instanceCount, firstIndex, vertexOffset, firstInstance
268 // vertexCount, instanceCount, firstVertex, firstInstance
288 const deUint32 firstInstance = 2;
291 m_vk.cmdDrawIndexed(*m_cmdBuffer, NUM_VERTICES, numInstances, NDX_FIRST_INDEX, OFFSET_FIRST_INDEX, firstInstance);
293 m_vk.cmdDraw(*m_cmdBuffer, NUM_VERTICES, numInstances, NDX_FIRST_VERTEX, firstInstance);
vktBasicDrawTests.cpp 136 params.firstInstance = firstI;
153 params.firstInstance = firstIns;
171 cmd.firstInstance = firstI;
193 cmd.firstInstance = firstIns;
655 m_vk.cmdDraw(*m_cmdBuffer, m_data.params.vertexCount, m_data.params.instanceCount, m_data.params.firstVertex, m_data.params.firstInstance);
783 m_vk.cmdDrawIndexed(*m_cmdBuffer, m_data.params.indexCount, m_data.params.instanceCount, m_data.params.firstIndex, m_data.params.vertexOffset, m_data.params.firstInstance);
    [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
MimeTypeMapTest.java 34 MimeTypeMap firstInstance = MimeTypeMap.getSingleton();
37 assertSame(firstInstance, secondInstance);
  /external/gptfdisk/
guid.h 39 static bool firstInstance;
guid.cc 29 bool GUIDData::firstInstance = 1;
32 if (firstInstance) {
34 firstInstance = 0;
  /external/deqp/external/vulkancts/framework/vulkan/
vkTypeUtil.inl 350 inline VkDrawIndexedIndirectCommand makeDrawIndexedIndirectCommand (deUint32 indexCount, deUint32 instanceCount, deUint32 firstIndex, deInt32 vertexOffset, deUint32 firstInstance)
357 res.firstInstance = firstInstance;
361 inline VkDrawIndirectCommand makeDrawIndirectCommand (deUint32 vertexCount, deUint32 instanceCount, deUint32 firstVertex, deUint32 firstInstance)
367 res.firstInstance = firstInstance;
vkDeviceDriverImpl.inl 450 void DeviceDriver::cmdDraw (VkCommandBuffer commandBuffer, deUint32 vertexCount, deUint32 instanceCount, deUint32 firstVertex, deUint32 firstInstance) const
452 m_vk.cmdDraw(commandBuffer, vertexCount, instanceCount, firstVertex, firstInstance);
455 void DeviceDriver::cmdDrawIndexed (VkCommandBuffer commandBuffer, deUint32 indexCount, deUint32 instanceCount, deUint32 firstIndex, deInt32 vertexOffset, deUint32 firstInstance) const
457 m_vk.cmdDrawIndexed(commandBuffer, indexCount, instanceCount, firstIndex, vertexOffset, firstInstance);
    [all...]
vkConcreteDeviceInterface.inl 93 virtual void cmdDraw (VkCommandBuffer commandBuffer, deUint32 vertexCount, deUint32 instanceCount, deUint32 firstVertex, deUint32 firstInstance) const;
94 virtual void cmdDrawIndexed (VkCommandBuffer commandBuffer, deUint32 indexCount, deUint32 instanceCount, deUint32 firstIndex, deInt32 vertexOffset, deUint32 firstInstance) const;
vkVirtualDeviceInterface.inl 93 virtual void cmdDraw (VkCommandBuffer commandBuffer, deUint32 vertexCount, deUint32 instanceCount, deUint32 firstVertex, deUint32 firstInstance) const = 0;
94 virtual void cmdDrawIndexed (VkCommandBuffer commandBuffer, deUint32 indexCount, deUint32 instanceCount, deUint32 firstIndex, deInt32 vertexOffset, deUint32 firstInstance) const = 0;
vkNullDriverImpl.inl 685 VKAPI_ATTR void VKAPI_CALL cmdDraw (VkCommandBuffer commandBuffer, deUint32 vertexCount, deUint32 instanceCount, deUint32 firstVertex, deUint32 firstInstance)
691 DE_UNREF(firstInstance);
694 VKAPI_ATTR void VKAPI_CALL cmdDrawIndexed (VkCommandBuffer commandBuffer, deUint32 indexCount, deUint32 instanceCount, deUint32 firstIndex, deInt32 vertexOffset, deUint32 firstInstance)
701 DE_UNREF(firstInstance);
    [all...]
vkFunctionPointerTypes.inl 110 typedef VKAPI_ATTR void (VKAPI_CALL* CmdDrawFunc) (VkCommandBuffer commandBuffer, deUint32 vertexCount, deUint32 instanceCount, deUint32 firstVertex, deUint32 firstInstance);
111 typedef VKAPI_ATTR void (VKAPI_CALL* CmdDrawIndexedFunc) (VkCommandBuffer commandBuffer, deUint32 indexCount, deUint32 instanceCount, deUint32 firstIndex, deInt32 vertexOffset, deUint32 firstInstance);
    [all...]
vkStructTypes.inl 1175 deUint32 firstInstance;
1183 deUint32 firstInstance;
    [all...]
  /external/skia/src/gpu/vk/
GrVkCommandBuffer.h 97 uint32_t firstInstance) const;
103 uint32_t firstInstance) const;
GrVkCommandBuffer.cpp 271 uint32_t firstInstance) const {
279 firstInstance));
286 uint32_t firstInstance) const {
293 firstInstance));
    [all...]
  /frameworks/base/core/tests/coretests/src/android/view/inputmethod/
CursorAnchorInfoTest.java 375 final CursorAnchorInfo firstInstance = builder.build();
376 assertEquals(MATRIX1, firstInstance.getMatrix());
380 assertEquals(MATRIX1, firstInstance.getMatrix());
384 assertEquals(MATRIX1, firstInstance.getMatrix());
  /external/vulkan-validation-layers/tests/
vkrenderframework.h 170 void Draw(uint32_t vertexCount, uint32_t instanceCount, uint32_t firstVertex, uint32_t firstInstance);
172 uint32_t firstInstance);
vkrenderframework.cpp     [all...]
  /external/vulkan-validation-layers/demos/smoke/
Meshes.cpp 441 draw.firstInstance = 0;
487 draw.firstIndex, draw.vertexOffset, draw.firstInstance);
  /frameworks/native/vulkan/nulldrv/
null_driver_gen.h 137 VKAPI_ATTR void CmdDraw(VkCommandBuffer commandBuffer, uint32_t vertexCount, uint32_t instanceCount, uint32_t firstVertex, uint32_t firstInstance);
138 VKAPI_ATTR void CmdDrawIndexed(VkCommandBuffer commandBuffer, uint32_t indexCount, uint32_t instanceCount, uint32_t firstIndex, int32_t vertexOffset, uint32_t firstInstance);
  /frameworks/native/vulkan/libvulkan/
api_gen.cpp 388 VKAPI_ATTR void CmdDraw(VkCommandBuffer commandBuffer, uint32_t vertexCount, uint32_t instanceCount, uint32_t firstVertex, uint32_t firstInstance);
389 VKAPI_ATTR void CmdDrawIndexed(VkCommandBuffer commandBuffer, uint32_t indexCount, uint32_t instanceCount, uint32_t firstIndex, int32_t vertexOffset, uint32_t firstInstance);
    [all...]
  /external/vulkan-validation-layers/loader/
trampoline.c     [all...]
  /external/vulkan-validation-layers/tests/layers/
wrap_objects.cpp     [all...]
  /external/mesa3d/src/amd/vulkan/
radv_cmd_buffer.c     [all...]

Completed in 1038 milliseconds

1 2 3 4