| 128 | typedef public std::unique_ptr<void, handle_closer> ScopedHandle; |
| 129 | |
| 130 | inline HANDLE safe_handle( HANDLE h ) { return (h == INVALID_HANDLE_VALUE) ? 0 : h; } |
| 131 | |
| 132 | template<UINT TNameLength> |
| 133 | inline void SetDebugObjectName(_In_ ID3D11DeviceChild* resource, _In_ const char (&name)[TNameLength]) |
no outgoing calls
no test coverage detected