#include "colormac.h"
#include "imports.h"
#include "macros.h"
+#include "image.h"
#include "swrast_setup/swrast_setup.h"
#include "math/m_translate.h"
return 0;
}
-static GLuint comp_bytes(struct dt *dt)
-{
- switch (dt->type) {
- case GL_UNSIGNED_BYTE:
- return 1;
-
- case GL_SHORT:
- return 2;
-
- case GL_FLOAT:
- return 4;
-
- default:
- assert(0);
- break;
- }
-
- return 0;
-}
-
static GLuint t_aos_size(struct dt *dt)
{
switch (dt->type) {
rmesa->state.aos[i].aos_size = t_aos_size(&VB->AttribPtr[tab[i]]);
- comp_size = comp_bytes(&VB->AttribPtr[tab[i]]);
+ comp_size = _mesa_sizeof_type(VB->AttribPtr[tab[i]].type);
#if MESA_LITTLE_ENDIAN
for (fix = 0; fix <= 4 - VB->AttribPtr[tab[i]].size; fix++) {
#include "vtxfmt.h"
#include "api_validate.h"
#include "state.h"
+#include "image.h"
#define CONV_VB(a, b) rvb->AttribPtr[(a)].size = vb->b->size, \
rvb->AttribPtr[(a)].type = GL_FLOAT, \
_mesa_install_exec_vtxfmt( ctx, &TNL_CONTEXT(ctx)->exec_vtxfmt );
}
-static int elt_bytes(GLenum type)
-{
- switch (type) {
- case GL_UNSIGNED_BYTE:
- return 1;
- case GL_UNSIGNED_SHORT:
- return 2;
- case GL_UNSIGNED_INT:
- return 4;
- default:
- _mesa_problem(NULL, "bad elt type in %s", __FUNCTION__);
- return 0;
- }
- return 0;
-}
-
static void radeonDrawRangeElements(GLenum mode, GLuint min, GLuint max, GLsizei count, GLenum type, const GLvoid *c_indices)
{
GET_CURRENT_CONTEXT(ctx);
mode == GL_QUADS ||
mode == GL_TRIANGLES) {
- if (!_mesa_validate_DrawRangeElements( ctx, mode, min, max, count, type, indices ))
- return;
-
while (count) {
i = r300_get_num_verts(rmesa, MIN2(count, 65535), mode);
radeonDrawRangeElements(mode, min, max, i, type, indices);
- indices += i * elt_bytes(type);
+ indices += i * _mesa_sizeof_type(type);
count -= i;
}
return ;