| 505 | |
| 506 | |
| 507 | void glGetFramebufferAttachmentParameteriv(GLenum target, GLenum attachment, |
| 508 | GLenum pname, GLint *params) |
| 509 | { |
| 510 | if(faker::getOGLExcludeCurrent() || faker::getEGLXContextCurrent()) |
| 511 | { |
| 512 | _glGetFramebufferAttachmentParameteriv(target, attachment, pname, params); |
| 513 | return; |
| 514 | } |
| 515 | |
| 516 | TRY(); |
| 517 | |
| 518 | backend::getFramebufferAttachmentParameteriv(target, attachment, pname, params); |
| 519 | |
| 520 | CATCH(); |
| 521 | } |
| 522 | |
| 523 | |
| 524 | void glGetFramebufferParameteriv(GLenum target, GLenum pname, GLint *params) |
nothing calls this directly
no test coverage detected