mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 22:09:19 -07:00
818c89313e
Removes the duplicate swxfregs global variable/struct from the software backend in favor of the ones from VideoCommon.
18 lines
370 B
C
18 lines
370 B
C
// Copyright 2013 Dolphin Emulator Project
|
|
// Licensed under GPLv2
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "Common/Common.h"
|
|
|
|
#include "VideoCommon/XFMemory.h"
|
|
|
|
void InitXFMemory();
|
|
|
|
void XFWritten(u32 transferSize, u32 baseAddress);
|
|
|
|
void SWLoadXFReg(u32 transferSize, u32 baseAddress, u32 *pData);
|
|
|
|
void SWLoadIndexedXF(u32 val, int array);
|