mirror of
https://github.com/86Box/86Box.git
synced 2026-02-24 02:18:20 -07:00
start actual notification code
This commit is contained in:
@@ -1549,6 +1549,9 @@ void nv3_class_017_method(uint32_t name, uint32_t method_id, nv3_ramin_co
|
||||
void nv3_class_018_method(uint32_t name, uint32_t method_id, nv3_ramin_context_t context, nv3_grobj_t grobj);
|
||||
void nv3_class_01c_method(uint32_t name, uint32_t method_id, nv3_ramin_context_t context, nv3_grobj_t grobj);
|
||||
|
||||
// Notification Engine
|
||||
void nv3_notify_if_needed(nv3_grobj_t grobj);
|
||||
|
||||
// NV3 PFIFO
|
||||
void nv3_pfifo_init();
|
||||
uint32_t nv3_pfifo_read(uint32_t address);
|
||||
|
||||
@@ -39,7 +39,7 @@ void nv3_generic_method(uint32_t name, uint32_t method_id, nv3_ramin_context_t c
|
||||
}
|
||||
}
|
||||
|
||||
void nv3_notify()
|
||||
void nv3_notify_if_needed(nv3_grobj_t grobj)
|
||||
{
|
||||
|
||||
}
|
||||
@@ -588,6 +588,8 @@ void nv3_pgraph_arbitrate_method(uint32_t param, uint16_t method, uint8_t channe
|
||||
fatal("NV3 (nv3_pgraph_arbitrate_method): Attempted to execute method on invalid, or unimplemented, class ID %s", nv3_class_names[class_id]);
|
||||
return;
|
||||
}
|
||||
|
||||
nv3_notify_if_needed(grobj);
|
||||
}
|
||||
|
||||
/* Arbitrates graphics object submission to the right object types */
|
||||
|
||||
Reference in New Issue
Block a user