00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 #include "draw/draw_pt.h"
00034 #include "draw/draw_private.h"
00035
00036
00037
00038
00039
00040 static unsigned elt_uint( const void *elts, unsigned idx )
00041 {
00042 return *(((const uint *)elts) + idx);
00043 }
00044
00045 static unsigned elt_ushort( const void *elts, unsigned idx )
00046 {
00047 return *(((const ushort *)elts) + idx);
00048 }
00049
00050 static unsigned elt_ubyte( const void *elts, unsigned idx )
00051 {
00052 return *(((const ubyte *)elts) + idx);
00053 }
00054
00055 static unsigned elt_vert( const void *elts, unsigned idx )
00056 {
00057 return (const ubyte *)elts - (const ubyte *)NULL + idx;
00058 }
00059
00060 pt_elt_func draw_pt_elt_func( struct draw_context *draw )
00061 {
00062 switch (draw->pt.user.eltSize) {
00063 case 0: return &elt_vert;
00064 case 1: return &elt_ubyte;
00065 case 2: return &elt_ushort;
00066 case 4: return &elt_uint;
00067 default: return NULL;
00068 }
00069 }
00070
00071 const void *draw_pt_elt_ptr( struct draw_context *draw,
00072 unsigned start )
00073 {
00074 const char *elts = draw->pt.user.elts;
00075
00076 switch (draw->pt.user.eltSize) {
00077 case 0:
00078 return (const void *)(((const ubyte *)NULL) + start);
00079 case 1:
00080 return (const void *)(((const ubyte *)elts) + start);
00081 case 2:
00082 return (const void *)(((const ushort *)elts) + start);
00083 case 4:
00084 return (const void *)(((const uint *)elts) + start);
00085 default:
00086 return NULL;
00087 }
00088 }