| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
Eliminates lots of warnings due to anv_meta.c's inclusion of nir.h.
I like the extra warnings, and they should probably get fixed. However,
git-grep reveals that no other Mesa directory uses -Wextra. Building
Vulkan produces a lot of compiler warnings from core Mesa headers that
no other Mesa developer sees, and hence no other Mesa developer will
fix.
|
|
|
|
|
|
|
|
| |
anv_meta no longer uses GLSL shaders, and the build system no longer
converts them to SPIR-V. So remove anv_meta_spirv_autogen.h from
Makefile.am.
(cherry picked from commit 2fc8122f66331e76ac436ea77ad5b57a011b188a)
|
|
|
|
|
|
| |
This was very useful to get us up-and-going. However, now that we can use
NIR directly for meta shaders, we don't need this anymore and we might as
well drop the glslc dependency.
|
|
|
|
| |
This commit just adds the NIR pass but does none of the uniform setup
|
|
|
|
| |
Turns out this was why I had accidentally broken the universe. Oops...
|
|
|
|
|
|
|
| |
Pulling in libwayland causes undefined symbols in applications that are
linked against vulkan alone. Ideally, we would like to dlopen a platform
support library or something like that. For now, this works and should get
crucible running again.
|
| |
|
|
|
|
|
|
|
|
|
|
| |
Unfortunately, this is a very large commit and removes the old LunarG WSI
extension. This is because there are a couple of entrypoints that have the
same name between the two extensions so implementing them both is
impractiacl.
Support is still incomplete, but this is enough to get vkcube up and going
again.
|
| |
|
| |
|
|
|
|
|
| |
We are also now using glslc for compiling the Vulkan driver like we do in
curcible.
|
|
|
|
|
|
|
| |
With all the previous commits in place, we can now drop in support for
multiple platforms. First up is gen7 (Ivybridge).
Signed-off-by: Kristian Høgsberg Kristensen <[email protected]>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
We'll organize gen specific code in three files per gen: pipeline,
cmd_buffer and state, eg:
gen8_cmd_buffer.c
gen8_pipeline.c
gen8_state.c
where gen8_cmd_buffer.c holds all vkCmd* entry points, gne8_pipeline.c
all gen specific code related to pipeline building and remaining state
code (sampler, surface state, dynamic state) in gen8_state.c.
Signed-off-by: Kristian Høgsberg Kristensen <[email protected]>
|
|
|
|
| |
Signed-off-by: Kristian Høgsberg Kristensen <[email protected]>
|
|
|
|
|
|
| |
These are now available in intel_aubdump from intel-gpu-tools.
Signed-off-by: Kristian Høgsberg Kristensen <[email protected]>
|
|
|
|
| |
This prevents make from stomping on nir_spirv.h
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
Previously, the command buffer implementation was split between
anv_cmd_buffer.c and anv_cmd_emit.c. However, this naming convention was
confusing because none of the Vulkan entrypoints for anv_cmd_buffer were
actually in anv_cmd_buffer.c. This changes it so that anv_cmd_buffer.c is
what you think it is and the internals are in anv_batch_chain.c.
|
|
|
|
|
|
| |
Jason started the task by creating anv_cmd_buffer.c and anv_cmd_emit.c.
This patch finishes the task by renaming all other files except
gen*_pack.h and glsl_scraper.py.
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Commit 1286bd, which deleted vk.c, broke the build. Update the Makefile
to fix it.
|
|
|
|
|
| |
We now have crucible up and running and all vk sub-cases have been moved
over. Delete this crufty old hack of a test case.
|
| |
|
| |
|
|
|
|
| |
We are not yet using SPIR-V for meta but this is a first step.
|
| |
|
| |
|
| |
|
|
|
|
|
| |
We move the format table and vkGetFormatInfo to their own file in the
process.
|
|
|
|
|
| |
This lets us generate a hash table for vkGetProcAddress and lets us call
public functions internally without the public entrypoint overhead.
|
|
|
|
| |
I need this for building a testsuite.
|
|
|