Hi, im trying to pool vertices for a meshsystem, and i need to produce unique hashkeys for datatypes looking something like this:
Code:
struct vert
{
     float x,y,z;
}
The resulting key can be any integral type.
Im working under some memory contrains and can't really add more data to the struct, such as an identifier.
Any suggestions?