Browse Source
Merge pull request #4432 from bylaws/patch-1
video_core/gpu: Correct the size of the puller registers
pull/15/merge
Rodrigo Locatti
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
src/video_core/gpu.h
|
|
|
@ -252,7 +252,7 @@ public: |
|
|
|
const Tegra::DmaPusher& DmaPusher() const; |
|
|
|
|
|
|
|
struct Regs { |
|
|
|
static constexpr size_t NUM_REGS = 0x100; |
|
|
|
static constexpr size_t NUM_REGS = 0x40; |
|
|
|
|
|
|
|
union { |
|
|
|
struct { |
|
|
|
@ -271,7 +271,7 @@ public: |
|
|
|
u32 semaphore_trigger; |
|
|
|
INSERT_UNION_PADDING_WORDS(0xC); |
|
|
|
|
|
|
|
// The puser and the puller share the reference counter, the pusher only has read |
|
|
|
// The pusher and the puller share the reference counter, the pusher only has read |
|
|
|
// access |
|
|
|
u32 reference_count; |
|
|
|
INSERT_UNION_PADDING_WORDS(0x5); |
|
|
|
|