Jacques Lucke
a1aa4a2597
RNA: Cleanup PointerRNA struct
...
The old layout of `PointerRNA` was confusing for historic reasons:
```
typedef struct PointerRNA {
struct {
void *data;
} id;
struct StructRNA *type;
void *data;
} PointerRNA;
```
This patch updates it to:
```
typedef struct PointerRNA {
struct ID *owner_id;
struct StructRNA *type;
void *data;
} PointerRNA;
```
Throughout the code base `id.data` was replaced with `owner_id`.
Furthermore, many explicit pointer type casts were added which
were implicit before. Some type casts to `ID *` were removed.
Reviewers: brecht, campbellbarton
Differential Revision: https://developer.blender.org/D5558
2019-08-23 09:52:12 +02:00
..
2019-04-17 06:21:24 +02:00
2019-04-17 06:21:24 +02:00
2019-04-17 06:21:24 +02:00
2019-04-17 06:21:24 +02:00
2019-04-17 06:21:24 +02:00
2019-04-17 06:21:24 +02:00
2019-05-22 14:28:10 +10:00
2019-02-18 08:22:12 +11:00
2019-04-17 06:21:24 +02:00
2019-02-18 08:22:12 +11:00
2019-04-29 20:01:10 +10:00
2019-04-17 06:21:24 +02:00
2019-04-17 06:21:24 +02:00
2019-04-17 06:21:24 +02:00
2019-04-17 06:21:24 +02:00
2019-04-17 06:21:24 +02:00
2019-04-17 06:21:24 +02:00
2019-04-17 06:21:24 +02:00
2019-04-17 06:21:24 +02:00
2019-04-17 06:21:24 +02:00
2019-04-17 06:21:24 +02:00
2019-02-18 08:22:12 +11:00
2019-08-17 00:57:05 +10:00
2019-04-17 06:21:24 +02:00
2019-06-21 10:18:53 +10:00
2019-04-17 06:21:24 +02:00
2019-04-17 08:24:14 +02:00
2019-04-17 06:21:24 +02:00
2019-04-29 20:01:10 +10:00
2019-04-17 06:21:24 +02:00
2019-04-29 20:01:10 +10:00
2019-04-17 06:21:24 +02:00
2019-08-01 18:39:21 +10:00
2019-08-23 09:52:12 +02:00
2019-04-17 06:21:24 +02:00
2019-04-17 06:21:24 +02:00
2019-06-21 10:18:53 +10:00
2019-04-17 06:21:24 +02:00
2019-04-17 06:21:24 +02:00
2019-08-23 09:52:12 +02:00
2019-04-17 06:21:24 +02:00
2019-08-18 04:26:34 +10:00
2019-02-18 08:22:12 +11:00
2019-08-14 23:32:24 +10:00
2019-04-17 06:21:24 +02:00
2019-04-17 06:21:24 +02:00
2019-04-17 06:21:24 +02:00
2019-08-14 23:32:24 +10:00
2019-04-17 06:21:24 +02:00
2019-08-23 09:52:12 +02:00
2019-04-17 06:21:24 +02:00
2019-08-14 23:32:24 +10:00
2019-04-23 09:15:45 -06:00
2019-04-17 06:21:24 +02:00
2019-08-23 09:52:12 +02:00
2019-04-17 06:21:24 +02:00
2019-04-17 06:21:24 +02:00
2019-04-17 06:21:24 +02:00
2019-06-12 09:43:49 +10:00
2019-04-17 06:21:24 +02:00
2019-08-23 09:52:12 +02:00
2019-04-29 20:01:10 +10:00
2019-07-23 20:31:27 +10:00
2019-04-17 06:21:24 +02:00
2019-04-17 06:21:24 +02:00
2019-02-18 08:22:12 +11:00
2019-04-29 20:01:10 +10:00
2019-04-17 06:21:24 +02:00
2019-08-01 14:02:41 +10:00
2019-04-17 06:21:24 +02:00
2019-04-26 15:31:13 +02:00
2019-05-01 11:13:14 +10:00