Cleanup: incorrect naming of storage_buf parameters.
They were named vert.
This commit is contained in:
@@ -48,17 +48,17 @@ class StorageBuf {
|
||||
};
|
||||
|
||||
/* Syntactic sugar. */
|
||||
static inline GPUStorageBuf *wrap(StorageBuf *vert)
|
||||
static inline GPUStorageBuf *wrap(StorageBuf *storage_buf)
|
||||
{
|
||||
return reinterpret_cast<GPUStorageBuf *>(vert);
|
||||
return reinterpret_cast<GPUStorageBuf *>(storage_buf);
|
||||
}
|
||||
static inline StorageBuf *unwrap(GPUStorageBuf *vert)
|
||||
static inline StorageBuf *unwrap(GPUStorageBuf *storage_buf)
|
||||
{
|
||||
return reinterpret_cast<StorageBuf *>(vert);
|
||||
return reinterpret_cast<StorageBuf *>(storage_buf);
|
||||
}
|
||||
static inline const StorageBuf *unwrap(const GPUStorageBuf *vert)
|
||||
static inline const StorageBuf *unwrap(const GPUStorageBuf *storage_buf)
|
||||
{
|
||||
return reinterpret_cast<const StorageBuf *>(vert);
|
||||
return reinterpret_cast<const StorageBuf *>(storage_buf);
|
||||
}
|
||||
|
||||
#undef DEBUG_NAME_LEN
|
||||
|
||||
Reference in New Issue
Block a user