2 * Copyright 2009 VMware, Inc.
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * on the rights to use, copy, modify, merge, publish, distribute, sub
9 * license, and/or sell copies of the Software, and to permit persons to whom
10 * the Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
19 * VMWARE AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
22 * USE OR OTHER DEALINGS IN THE SOFTWARE.
26 * This file holds structs decelerations and function prototypes for one of
27 * the rbug extensions. Implementation of the functions is in the same folder
28 * in the c file matching this file's name.
30 * The structs what is returned from the demarshal functions. The functions
31 * starting rbug_send_* encodes a call to the write format and sends that to
32 * the supplied connection, while functions starting with rbug_demarshal_*
33 * demarshal data from the wire protocol.
35 * Structs and functions ending with _reply are replies to requests.
38 #ifndef _RBUG_PROTO_SHADER_H_
39 #define _RBUG_PROTO_SHADER_H_
41 #include "rbug/rbug_proto.h"
42 #include "rbug/rbug_core.h"
44 struct rbug_proto_shader_list
46 struct rbug_header header
;
47 rbug_context_t context
;
50 struct rbug_proto_shader_info
52 struct rbug_header header
;
53 rbug_context_t context
;
57 struct rbug_proto_shader_disable
59 struct rbug_header header
;
60 rbug_context_t context
;
65 struct rbug_proto_shader_replace
67 struct rbug_header header
;
68 rbug_context_t context
;
74 struct rbug_proto_shader_list_reply
76 struct rbug_header header
;
78 rbug_shader_t
*shaders
;
82 struct rbug_proto_shader_info_reply
84 struct rbug_header header
;
87 uint32_t original_len
;
89 uint32_t replaced_len
;
93 int rbug_send_shader_list(struct rbug_connection
*__con
,
94 rbug_context_t context
,
97 int rbug_send_shader_info(struct rbug_connection
*__con
,
98 rbug_context_t context
,
102 int rbug_send_shader_disable(struct rbug_connection
*__con
,
103 rbug_context_t context
,
104 rbug_shader_t shader
,
108 int rbug_send_shader_replace(struct rbug_connection
*__con
,
109 rbug_context_t context
,
110 rbug_shader_t shader
,
115 int rbug_send_shader_list_reply(struct rbug_connection
*__con
,
117 rbug_shader_t
*shaders
,
118 uint32_t shaders_len
,
121 int rbug_send_shader_info_reply(struct rbug_connection
*__con
,
124 uint32_t original_len
,
126 uint32_t replaced_len
,
130 struct rbug_proto_shader_list
* rbug_demarshal_shader_list(struct rbug_proto_header
*header
);
132 struct rbug_proto_shader_info
* rbug_demarshal_shader_info(struct rbug_proto_header
*header
);
134 struct rbug_proto_shader_disable
* rbug_demarshal_shader_disable(struct rbug_proto_header
*header
);
136 struct rbug_proto_shader_replace
* rbug_demarshal_shader_replace(struct rbug_proto_header
*header
);
138 struct rbug_proto_shader_list_reply
* rbug_demarshal_shader_list_reply(struct rbug_proto_header
*header
);
140 struct rbug_proto_shader_info_reply
* rbug_demarshal_shader_info_reply(struct rbug_proto_header
*header
);