* keep these functions separated so that they are easier to locate. ~C. *
***************************************************************************/
-/* Draw-based drawing for SW TCL chipsets. */
+/* Draw-based drawing for SW TCL chipsets.
+ * XXX currently broken as fucking hell. */
boolean r300_swtcl_draw_range_elements(struct pipe_context* pipe,
struct pipe_buffer* indexBuffer,
unsigned indexSize,
* USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
+/* r300_vbo: Various helpers for emitting vertex buffers. Needs cleanup,
+ * refactoring, etc. */
+
#include "r300_vbo.h"
#include "pipe/p_format.h"
finish_vertex_attribs_setup(r300->vertex_info, r300->aos_count);
}
+/* XXX WTF are these doing? */
static void setup_vertex_array(struct r300_context *r300, struct pipe_vertex_element *element)
{
}
{
}
+/* XXX move/integrate this with the checks in r300_state_inlines */
static boolean format_is_supported(enum pipe_format format, int nr_components)
{
if (pf_layout(format) != PIPE_FORMAT_LAYOUT_RGBAZS)
struct pipe_buffer* indexBuffer,
unsigned indexSize)
{
+ /* XXX I call BS; why is this different from the assert in r300_render? */
assert(indexSize = 2);
- if (!r300->winsys->add_buffer(r300->winsys, indexBuffer, RADEON_GEM_DOMAIN_GTT, 0))
- {
+ if (!r300->winsys->add_buffer(r300->winsys, indexBuffer,
+ RADEON_GEM_DOMAIN_GTT, 0)) {
assert(0);
}
- if (!r300->winsys->validate(r300->winsys))
- {
+ if (!r300->winsys->validate(r300->winsys)) {
assert(0);
}
}
-