Simon Ser

Results 571 issues of Simon Ser

`openpgp.MessageDetails` is very easy to mis-use. Ref https://github.com/emersion/go-pgpmail/issues/5

`EXT_image_dma_buf_import` allows one to import DMA-BUFs, but doesn't allow one to enumerate the list of supported formats. `EXT_image_dma_buf_import_modifiers` fixes this by adding `eglQueryDmaBufFormatsEXT`. The ability to enumerate formats is key...

enhancement

`EGL_EXT_image_dma_buf_import` has a number of hints: ``` EGL_YUV_COLOR_SPACE_HINT_EXT 0x327B EGL_SAMPLE_RANGE_HINT_EXT 0x327C EGL_YUV_CHROMA_HORIZONTAL_SITING_HINT_EXT 0x327D EGL_YUV_CHROMA_VERTICAL_SITING_HINT_EXT 0x327E ``` However there is no way for an EGL client to figure out which hints...

enhancement

How should a driver handle device unplug when it supports EXT_device_enumeration? * Should the EGLDevice handles of the unplugged device remain valid? * When is it safe from a driver...

Section 3.2 explains how formats such as Y'CbCr 4:2:0 are described with _two_ Y' planes under the specification (when other conventional APIs would only use one Y' plane). Table 96...

OpenGL ES 2.0 core only defines `GL_STREAM_WRITE`. `NV_pixel_buffer_object` advertises that it allows "Asynchronous glReadPixels". The code examples use `GL_STREAM_READ`. However including both `` and `` isn't enough to get access...

[`EGL_KHR_partial_update`](https://registry.khronos.org/EGL/extensions/KHR/EGL_KHR_partial_update.txt) allows tilers to more efficiently re-use a surface buffer as a render target. It assumes `EGLSurface` is used, and doesn't support FBOs. It would be nice to have an...

This works: ``` go type UploadForm struct { Title string `form:"Title"` TextUpload *multipart.FileHeader `form:"TextUpload"` } ``` But this produces an empty struct: ``` go type UploadForm struct { Title string...

IMAP4rev2 removes RECENT. Would be nice to be able to disable RECENT checks in imaptest, to have passing tests on IMAP4rev2 servers.