projects
/
platform
/
upstream
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
06daa03
)
llvmpipe: Add new caps PIPE_CAP_LINEAR_IMAGE_(PITCH_ALIGNMENT|BASE_ADDRESS_ALIGNMENT)
author
Antonio Gomes
<antoniospg100@gmail.com>
Sat, 7 Jan 2023 02:54:24 +0000
(23:54 -0300)
committer
Marge Bot
<emma+marge@anholt.net>
Tue, 7 Mar 2023 18:24:56 +0000
(18:24 +0000)
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20378>
src/gallium/drivers/llvmpipe/lp_screen.c
patch
|
blob
|
history
diff --git
a/src/gallium/drivers/llvmpipe/lp_screen.c
b/src/gallium/drivers/llvmpipe/lp_screen.c
index
568f4e2
..
8423c6d
100644
(file)
--- a/
src/gallium/drivers/llvmpipe/lp_screen.c
+++ b/
src/gallium/drivers/llvmpipe/lp_screen.c
@@
-226,6
+226,10
@@
llvmpipe_get_param(struct pipe_screen *screen, enum pipe_cap param)
return 64;
case PIPE_CAP_TEXTURE_BUFFER_OBJECTS:
return 1;
+ case PIPE_CAP_LINEAR_IMAGE_PITCH_ALIGNMENT:
+ return 1;
+ case PIPE_CAP_LINEAR_IMAGE_BASE_ADDRESS_ALIGNMENT:
+ return 1;
/* Adressing that many 64bpp texels fits in an i32 so this is a reasonable value */
case PIPE_CAP_MAX_TEXEL_BUFFER_ELEMENTS_UINT:
return 134217728;