Displaying 3 results from an estimated 3 matches for "bind_sampler_st".
2013 Oct 06
8
[Bug 70212] New: glxinfo triggers assert in cso_release_all after 3f0627c2ad6
...re dumped)
I've bisected the regression to this commit:
3f0627c2ad605b006737312c478907859411ffa8 is the first bad commit
commit 3f0627c2ad605b006737312c478907859411ffa8
Author: Brian Paul <brianp at vmware.com>
Date: Thu Sep 12 18:09:33 2013 -0600
nouveau: implement pipe_context::bind_sampler_states()
:040000 040000 b09183c220eb383907e212299a3ed5d66bd26c18
cbfe533aeb6e5ff8648ac8efdf60a28b86ffe5e0 M src
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freedesktop.o...
2014 Nov 27
0
[Mesa-dev] [RFC] tegra: Initial support
...t *pcontext,
> + const struct pipe_sampler_state *cso)
> +{
> + struct tegra_context *context = to_tegra_context(pcontext);
> +
> + return context->gpu->create_sampler_state(context->gpu, cso);
> +}
> +
> +static void
> +tegra_bind_sampler_states(struct pipe_context *pcontext,
> + unsigned shader,
> + unsigned start_slot,
> + unsigned num_samplers,
> + void **samplers)
> +{
> + struct tegra_context *context = to_tegra_...
2014 Nov 27
7
[RFC] tegra: Initial support
...;gpu, so);
+}
+
+static void *
+tegra_create_sampler_state(struct pipe_context *pcontext,
+ const struct pipe_sampler_state *cso)
+{
+ struct tegra_context *context = to_tegra_context(pcontext);
+
+ return context->gpu->create_sampler_state(context->gpu, cso);
+}
+
+static void
+tegra_bind_sampler_states(struct pipe_context *pcontext,
+ unsigned shader,
+ unsigned start_slot,
+ unsigned num_samplers,
+ void **samplers)
+{
+ struct tegra_context *context = to_tegra_context(pcontext);
+
+ context->gpu->bind_sampler_states(context->gpu, shader, start_slot,
+ num_samp...