diff options
author | Jason Ekstrand <[email protected]> | 2018-06-25 15:14:38 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2018-07-18 09:47:28 -0700 |
commit | aaa6fac8f65e6a28ba73eef6a0e6da4bef4fc992 (patch) | |
tree | 99bb4c05aa8c4d589beb5afecca42b3fc31fecaf /src/intel/blorp/blorp.h | |
parent | 9fbe2a20078242594db788e5abec41651cbc6991 (diff) |
intel/blorp: Take an explicit filter parameter in blorp_blit
This lets us move the glBlitFramebuffer nonsense into the GL driver and
make the usage of BLORP mutch more explicit and obvious as to what it's
doing.
Reviewed-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/intel/blorp/blorp.h')
-rw-r--r-- | src/intel/blorp/blorp.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/intel/blorp/blorp.h b/src/intel/blorp/blorp.h index 6e2f888d17f..ee343a4a6bb 100644 --- a/src/intel/blorp/blorp.h +++ b/src/intel/blorp/blorp.h @@ -139,7 +139,8 @@ blorp_blit(struct blorp_batch *batch, float src_x1, float src_y1, float dst_x0, float dst_y0, float dst_x1, float dst_y1, - uint32_t filter, bool mirror_x, bool mirror_y); + enum blorp_filter filter, + bool mirror_x, bool mirror_y); void blorp_copy(struct blorp_batch *batch, |