imageDataBytes represents image data stored in a byte slice in memory
| 32 | |
| 33 | // imageDataBytes represents image data stored in a byte slice in memory |
| 34 | type imageDataBytes struct { |
| 35 | format imagetype.Type |
| 36 | data []byte |
| 37 | cancel []context.CancelFunc |
| 38 | cancelOnce sync.Once |
| 39 | } |
| 40 | |
| 41 | // imageDataAsyncBuffer is a struct that implements the ImageData interface backed by an AsyncBuffer |
| 42 | type imageDataAsyncBuffer struct { |
nothing calls this directly
no outgoing calls
no test coverage detected