Skip to content

Commit c8890b9

Browse files
author
procedural
authored
Fix typedefs for C (#221)
1 parent 0ae7b21 commit c8890b9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/core/include/radeonrays.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ struct _RREvent;
4242
struct _RRContext;
4343
struct _RRCommandStream;
4444

45-
typedef uint32_t RRBuildFlags;
46-
typedef uint32_t RRRayMask;
47-
typedef _RRDevicePtr* RRDevicePtr;
48-
typedef _RRContext* RRContext;
49-
typedef _RREvent* RREvent;
50-
typedef _RRCommandStream* RRCommandStream;
45+
typedef uint32_t RRBuildFlags;
46+
typedef uint32_t RRRayMask;
47+
typedef struct _RRDevicePtr* RRDevicePtr;
48+
typedef struct _RRContext* RRContext;
49+
typedef struct _RREvent* RREvent;
50+
typedef struct _RRCommandStream* RRCommandStream;
5151

5252
enum
5353
{

0 commit comments

Comments
 (0)