Skip to content

Commit

Permalink
Fix typedefs for C (#221)
Browse files Browse the repository at this point in the history
  • Loading branch information
procedural authored May 17, 2021
1 parent 0ae7b21 commit c8890b9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/core/include/radeonrays.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ struct _RREvent;
struct _RRContext;
struct _RRCommandStream;

typedef uint32_t RRBuildFlags;
typedef uint32_t RRRayMask;
typedef _RRDevicePtr* RRDevicePtr;
typedef _RRContext* RRContext;
typedef _RREvent* RREvent;
typedef _RRCommandStream* RRCommandStream;
typedef uint32_t RRBuildFlags;
typedef uint32_t RRRayMask;
typedef struct _RRDevicePtr* RRDevicePtr;
typedef struct _RRContext* RRContext;
typedef struct _RREvent* RREvent;
typedef struct _RRCommandStream* RRCommandStream;

enum
{
Expand Down

0 comments on commit c8890b9

Please sign in to comment.