gallium: Add PIPE_CAP_BUFFER_SAMPLER_VIEW_RGBA_ONLY
[mesa.git] / src / gallium / drivers / virgl / virgl_tgsi.c
1 /*
2 * Copyright 2014, 2015 Red Hat.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * on the rights to use, copy, modify, merge, publish, distribute, sub
8 * license, and/or sell copies of the Software, and to permit persons to whom
9 * the Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE.
22 */
23
24 /* the virgl hw tgsi vs what the current gallium want will diverge over time.
25 so add a transform stage to remove things we don't want to send unless
26 the receiver supports it.
27 */
28 #include "tgsi/tgsi_transform.h"
29 #include "virgl_context.h"
30 struct virgl_transform_context {
31 struct tgsi_transform_context base;
32 };
33
34 /* for now just strip out the new properties the remote doesn't understand
35 yet */
36 static void
37 virgl_tgsi_transform_property(struct tgsi_transform_context *ctx,
38 struct tgsi_full_property *prop)
39 {
40 switch (prop->Property.PropertyName) {
41 case TGSI_PROPERTY_NUM_CLIPDIST_ENABLED:
42 case TGSI_PROPERTY_NUM_CULLDIST_ENABLED:
43 break;
44 default:
45 ctx->emit_property(ctx, prop);
46 break;
47 }
48 }
49
50 struct tgsi_token *virgl_tgsi_transform(const struct tgsi_token *tokens_in)
51 {
52
53 struct virgl_transform_context transform;
54 const uint newLen = tgsi_num_tokens(tokens_in);
55 struct tgsi_token *new_tokens;
56
57 new_tokens = tgsi_alloc_tokens(newLen);
58 if (!new_tokens)
59 return NULL;
60
61 memset(&transform, 0, sizeof(transform));
62 transform.base.transform_property = virgl_tgsi_transform_property;
63 tgsi_transform_shader(tokens_in, new_tokens, newLen, &transform.base);
64
65 return new_tokens;
66 }