( id api.CmdID, thread uint64, fb FramebufferId, res replay.Result)
| 56 | } |
| 57 | |
| 58 | func (t *readFramebuffer) depth( |
| 59 | id api.CmdID, |
| 60 | thread uint64, |
| 61 | fb FramebufferId, |
| 62 | res replay.Result) { |
| 63 | |
| 64 | t.Add(id, func(ctx context.Context, out transform.Writer) { |
| 65 | postFBData(ctx, id, thread, 0, 0, fb, GLenum_GL_DEPTH_ATTACHMENT, t.targetVersion, out, res) |
| 66 | }) |
| 67 | } |
| 68 | |
| 69 | func (t *readFramebuffer) color( |
| 70 | id api.CmdID, |
no test coverage detected