| 2155 | g_functions.m_DrawElements(context, prim_type, first, count, type, index_buffer, instance_count); |
| 2156 | } |
| 2157 | void Draw(HContext context, PrimitiveType prim_type, uint32_t first, uint32_t count, uint32_t instance_count) |
| 2158 | { |
| 2159 | g_functions.m_Draw(context, prim_type, first, count, instance_count); |
| 2160 | } |
| 2161 | void DispatchCompute(HContext context, uint32_t group_count_x, uint32_t group_count_y, uint32_t group_count_z) |
| 2162 | { |
| 2163 | g_functions.m_DispatchCompute(context, group_count_x, group_count_y, group_count_z); |