Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
c68b350a87a7be18b5caaada9af1bbde8ec43af9
/
.
/
frc971
/
orin
/
gpu_image.h
blob: 732b2564062adad5ddb196fc9376fd7c9db13e81 [
file
] [
log
] [
blame
]
#ifndef
FRC971_ORIN_GPU_IMAGE_H_
#define
FRC971_ORIN_GPU_IMAGE_H_
template
<
typename
T
>
struct
GpuImage
{
typedef
T type
;
T
*
data
;
size_t
rows
;
size_t
cols
;
// Step is in elements, not bytes.
size_t
step
;
};
#endif
// FRC971_ORIN_GPU_IMAGE_H_