| 139 | //////////////////////////////////////////////////////////// |
| 140 | |
| 141 | OPENPGL_INLINE Field::Field(Device *device, const FieldConfig &cfg) |
| 142 | { |
| 143 | OPENPGL_ASSERT(device); |
| 144 | OPENPGL_ASSERT(device->m_deviceHandle); |
| 145 | m_fieldHandle = pglDeviceNewField(device->m_deviceHandle, cfg.m_args); |
| 146 | } |
| 147 | |
| 148 | OPENPGL_INLINE Field::Field(Device *device, const std::string &fieldFileName) |
| 149 | { |
nothing calls this directly
no outgoing calls
no test coverage detected