| 1489 | } |
| 1490 | |
| 1491 | void UniformBuffer::writeUniformHandle(uint8_t _type, uint16_t _loc, UniformHandle _handle, uint16_t _num) |
| 1492 | { |
| 1493 | const uint32_t opcode = encodeOpcode(_type, _loc, _num, false); |
| 1494 | write(opcode); |
| 1495 | write(&_handle, sizeof(UniformHandle) ); |
| 1496 | } |
| 1497 | |
| 1498 | void UniformBuffer::writeMarker(const bx::StringView& _name) |
| 1499 | { |