| 249 | } |
| 250 | |
| 251 | void SymbolsTexture::Fail(ref_ptr<dp::GraphicsContext> context) |
| 252 | { |
| 253 | m_definition.clear(); |
| 254 | int32_t alphaTexture = 0; |
| 255 | Texture::Params p; |
| 256 | p.m_allocator = GetDefaultAllocator(context); |
| 257 | p.m_format = dp::TextureFormat::RGBA8; |
| 258 | p.m_width = 1; |
| 259 | p.m_height = 1; |
| 260 | |
| 261 | Create(context, p, make_ref(&alphaTexture)); |
| 262 | } |
| 263 | } // namespace dp |
nothing calls this directly
no test coverage detected