Emil Velikov
3dc2630e45
gallium/radeon: use explicit drm_major, drm_minor check
...
Just like everywhere else in the radeon codebase.
v2: Don't forget about drm_major == 3 (Alex)
Cc: Alex Deucher <alexander.deucher@amd.com >
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com >
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
2016-03-09 17:25:22 +00:00
Emil Velikov
b9c5c4af6d
egl/x11: check the return value of xcb_dri2_get_buffers_reply()
...
... before using it. The function can return NULL, which we should check
prior to refererencing it in the next function(s).
Cc: Fabian Vogt <fvogt@suse.com >
Cc: "11.1 11.2" <mesa-stable@lists.freedesktop.org >
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=93667
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com >
Reviewed-by: Eduardo Lima Mitev <elima@igalia.com >
2016-03-09 17:25:22 +00:00
Emil Velikov
373f118c6c
gallium: do not wrap header inclusion in
...
Add one missing extern C guard within include/pipe/p_video_enums.h, and
remove the wrapping throughout gallium.
On Haiku one could even use the gallium debug_printf() although
that's another topic.
v2: Leave dbghelp.h as is (Jose)
Cc: Jose Fonseca <jfonseca@vmware.com >
Cc: Brian Paul <brianp@vmware.com >
Cc: Alexander von Gluck IV <kallisti5@unixzen.com >
Signed-off-by: Emil Velikov <emil.velikov@collabora.com >
Reviewed-by: Jose Fonseca <jfonseca@vmware.com >
2016-03-09 17:21:39 +00:00
Dieter Nützel
69d389c52f
opencl: fix .gitignore for .install-gallium-links
...
Fixes: 0b6157e971 "install-gallium-links: port changes from install-lib-links"
v2: move this to the top level .gitignore and added Fixes:
like Emil Velikov <emil.l.velikov@gmail.com > suggested
Signed-off-by: Dieter Nützel <Dieter@nuetzel-hh.de >
Reviewed-by: Eduardo Lima Mitev <elima@igalia.com >
Reviewed-by: Emil Velikov <emil.velikov@collabora.com >
2016-03-09 17:16:52 +00:00
Emil Velikov
f3e23ead53
egl: remove remnants of MESA_drm_display
...
Last set in st/egl, unused in mesa-demos and superseded by
EGL_KHR_platform_gbm.
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com >
2016-03-09 17:16:51 +00:00
Emil Velikov
2295a4b1e1
egl: remove final pieces of KHR_vg_parent_image
...
Similar to previous commit - unused/unset for a long time.
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com >
2016-03-09 17:16:51 +00:00
Emil Velikov
c85544a10c
glapi: remove the final function offset tags
...
A commit earlier this year reworked out python scripts to use a separate
file for these. Followed by removing support from the parser, and
removing all of the offset tags.
Seems like we either missed a few, or people added them by mistake.
Either way let's nuke the ones that are still around.
Cc: Ian Romanick <ian.d.romanick@intel.com >
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com >
2016-03-09 17:16:51 +00:00
Emil Velikov
3ffab9a89c
winsys/amdgpu/addrlib: do not wrap header inclusion in extern "C"
...
Signed-off-by: Emil Velikov <emil.velikov@collabora.com >
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
2016-03-09 17:16:51 +00:00
Emil Velikov
a07192bd63
mesa/main: do not wrap header inclusion in extern "C"
...
Signed-off-by: Emil Velikov <emil.velikov@collabora.com >
2016-03-09 17:16:51 +00:00
Emil Velikov
5351dc1522
i915: limit extern "C" hack only for libdrm headers
...
Signed-off-by: Emil Velikov <emil.velikov@collabora.com >
2016-03-09 17:16:51 +00:00
Emil Velikov
cf215d92f6
xmesa: do not wrap header inclusion in extern "C"
...
Signed-off-by: Emil Velikov <emil.velikov@collabora.com >
2016-03-09 17:16:50 +00:00
Emil Velikov
2af3a0ca6f
util/sha: do not wrap header inclusion in extern "C"
...
Signed-off-by: Emil Velikov <emil.velikov@collabora.com >
2016-03-09 17:16:50 +00:00
Emil Velikov
d426c17550
egl/wayland: do not wrap header inclusion in extern "C"
...
Signed-off-by: Emil Velikov <emil.velikov@collabora.com >
2016-03-09 17:16:50 +00:00
Emil Velikov
750da80b34
gbm: do not wrap header inclusion in extern "C"
...
Signed-off-by: Emil Velikov <emil.velikov@collabora.com >
2016-03-09 17:16:50 +00:00
Nicolai Hähnle
9f06e7f5c1
st/mesa: shader image atoms must be before framebuffer update
...
The reason is that the shader image atoms call st_finalize_texture, which
may set ST_NEW_FRAMEBUFFER.
This fixes an assertion triggered by a subtest of piglit's
arb_shader_image_load_store-invalid.
v2: add comment explaining order constraints (suggested by Ilia)
Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu >
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
2016-03-09 11:40:06 -05:00
Nicolai Hähnle
4eb416bd9d
gallivm: special case TGSI_OPCODE_STORE
...
This instruction has the resource (buffer or image) as a destination to
represent the writemask for SSBO writes. However, this is obviously not
a "real" destination for the purpose of emitting LLVM IR.
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
2016-03-09 11:39:55 -05:00
Nicolai Hähnle
10b2b584ee
tgsi: set correct output mode for RESQ
...
Acked-by: Ilia Mirkin <imirkin@alum.mit.edu >
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
2016-03-09 11:39:43 -05:00
Marek Olšák
dcb2b77823
gallium: add CAPs returning PCI device location
...
Reviewed-by: Brian Paul <brianp@vmware.com >
2016-03-09 15:02:28 +01:00
Marek Olšák
737b6ed13e
winsys/amdgpu: get PCI info
...
This will be queried by the OpenCL stack using an interop call.
I have tested that the values match lspci.
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com >
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com >
2016-03-09 15:02:28 +01:00
Marek Olšák
ec74deeb24
radeonsi: set amdgpu metadata before exporting a texture
...
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com >
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com >
2016-03-09 15:02:28 +01:00
Nicolai Hähnle
ff7e9412be
radeonsi: extract the texture descriptor computation into its own function
...
This will allow this code to be re-used for shader images.
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com >
2016-03-09 15:02:27 +01:00
Nicolai Hähnle
1197c69bdd
radeonsi: extract the buffer descriptor computation into its own function
...
This will allow it to be re-used for shader image descriptors.
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com >
2016-03-09 15:02:27 +01:00
Nicolai Hähnle
2bf8ee34b8
radeonsi: remove resource field from si_sampler_view
...
view->resource is redundant with view->base.texture, so get rid of it.
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com >
2016-03-09 15:02:27 +01:00
Marek Olšák
2dec5e09e1
radeonsi: accept pipe_resource in si_sampler_view_add_buffer
...
and rename .._buffers -> .._buffer
Based loosely on Nicolai's patch. This will make it easier to cherry-pick
Nicolai's patches from his image support branch.
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com >
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com >
2016-03-09 15:02:27 +01:00
Marek Olšák
f18fc70d6f
radeonsi: disable DCC on handle export if expecting write access
...
This should be okay except that sampler views and images are not re-set.
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com >
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com >
2016-03-09 15:02:27 +01:00
Bas Nieuwenhuizen
1e48ec7571
radeonsi: add DCC decompression (v2)
...
This is currently not needed but will be necessary when we have
features that do not work with DCC enabled, such as image stores
and sharing non-scanout surfaces.
v2: Marek: rebase, remove decompression from si_flush_resource (not needed)
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com >
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com >
2016-03-09 15:02:27 +01:00
Marek Olšák
b744ac9f44
radeonsi: allocate DCC in the same backing buffer as the texture
...
To allow sharing textures with DCC enabled.
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com >
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com >
2016-03-09 15:02:27 +01:00
Marek Olšák
60c08aa90b
gallium/radeon: disable CMASK on handle export if sharing doesn't allow it (v2)
...
v2: remove the list of all contexts
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com >
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com >
2016-03-09 15:02:27 +01:00
Marek Olšák
970b979da1
gallium/radeon: eliminate fast color clear before sharing
...
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com >
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com >
2016-03-09 15:02:27 +01:00
Marek Olšák
abac6bf67a
gallium/radeon: don't use fast color clear if sharing doesn't allow it
...
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com >
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com >
2016-03-09 15:02:27 +01:00
Marek Olšák
d4e847ea33
gallium/radeon: disallow handle export for MSAA & depth textures
...
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com >
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com >
2016-03-09 15:02:27 +01:00
Marek Olšák
d95f593758
gallium/radeon: remember that texture_from_handle was called and its flags
...
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com >
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com >
2016-03-09 15:02:26 +01:00
Marek Olšák
c034d3dde0
gallium/radeon: check that handle usage doesn't change for a resource
...
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com >
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com >
2016-03-09 15:02:26 +01:00
Marek Olšák
6b187bbd9f
gallium/radeon: disallow reallocation of shared buffers
...
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com >
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com >
2016-03-09 15:02:26 +01:00
Marek Olšák
ecbd3aba17
gallium/radeon: if we can't discard a whole resource, discard the range instead
...
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com >
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com >
2016-03-09 15:02:26 +01:00
Marek Olšák
afdaffcbdb
gallium/radeon: buffer valid range tracking only works with unshared buffers
...
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com >
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com >
2016-03-09 15:02:26 +01:00
Marek Olšák
be73d35829
gallium/radeon: don't set texture metadata for buffers
...
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com >
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com >
2016-03-09 15:02:26 +01:00
Marek Olšák
f914779c75
gallium/radeon: set texture metadata only once
...
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com >
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com >
2016-03-09 15:02:26 +01:00
Marek Olšák
69d8b75114
gallium/radeon: clean up r600_texture_get_handle
...
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com >
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com >
2016-03-09 15:02:26 +01:00
Marek Olšák
e3cee38e13
gallium/radeon: move code initializing texture metadata to its own function
...
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com >
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com >
2016-03-09 15:02:26 +01:00
Marek Olšák
f4aa3256ef
winsys/amdgpu: allow drivers to set/get opaque metadata
...
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com >
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com >
2016-03-09 15:02:26 +01:00
Marek Olšák
bd1feb2827
gallium/radeon: rename winsys buffer_get/set_tiling to buffer_get/set_metadata
...
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com >
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com >
2016-03-09 15:02:26 +01:00
Marek Olšák
6011d7cf25
gallium/radeon: remove rcs parameter from radeon_winsys::buffer_set_tiling
...
This was needed for DRM < 2.12.0 where the kernel was rewriting tiling flags
in IBs.
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com >
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com >
2016-03-09 15:02:25 +01:00
Marek Olšák
260ef9c9be
gallium/radeon: use a structure for passing tiling flags from/to winsys
...
and call it radeon_bo_metadata
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com >
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com >
2016-03-09 15:02:25 +01:00
Marek Olšák
82db518f15
gallium: add external usage flags to resource_from(get)_handle (v2)
...
This will allow drivers to make better decisions about texture sharing
for DRI2, DRI3, Wayland, and OpenCL.
v2: add read/write flags, take advantage of __DRI_IMAGE_USE_BACKBUFFER
Reviewed-by: Axel Davy <axel.davy@ens.fr >
2016-03-09 15:02:25 +01:00
Axel Davy
d943ac432d
dri: add backbuffer use flag
...
This will be used by the next commit.
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com >
2016-03-09 15:02:25 +01:00
Timothy Arceri
2188c77a0e
glsl: dont allow undefined array sizes in ES
...
This applies the rule to empty declarations.
Fixes:
dEQP-GLES3.functional.shaders.arrays.invalid.empty_declaration_without_var_name_vertex
dEQP-GLES3.functional.shaders.arrays.invalid.empty_declaration_without_var_name_fragment
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org >
2016-03-09 20:30:42 +11:00
Jason Ekstrand
248ab61740
anv/cmd_buffer: Pull the core of flush_state into genX_cmd_buffer
2016-03-08 17:10:05 -08:00
Jason Ekstrand
28cbc45b3c
anv/cmd_buffer: Split flush_state into two functions
2016-03-08 16:54:07 -08:00
Jason Ekstrand
42b4c0fa6e
anv: Pull all of the genX_foo functions into anv_genX.h
...
This way we only have to declare them each once and we get it for all gens
at a single go.
2016-03-08 16:49:08 -08:00