mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-09-15 02:23:51 +00:00
Oops, broke the build
This commit is contained in:
parent
636613d434
commit
d39bfb5d2c
@ -6,6 +6,8 @@
|
||||
class CPVSVisSet {
|
||||
public:
|
||||
CPVSVisSet(int);
|
||||
// TODO: real? see CPVSAreaSet::GetLightSet
|
||||
CPVSVisSet(int numBits, int numLights, const char* leafPtr);
|
||||
|
||||
void SetFromMemory(int numBits, int numLights, const char* leafPtr);
|
||||
|
||||
|
@ -141,6 +141,10 @@ public:
|
||||
void Something() override;
|
||||
void PrepareDynamicLights(const rstl::vector< CLight >& lights) override;
|
||||
|
||||
void AllocatePhazonSuitMaskTexture();
|
||||
|
||||
void SetRequestRGBA6(bool req) { x318_26_requestRGBA6 = req; }
|
||||
|
||||
private:
|
||||
CResFactory& x8_factory;
|
||||
IObjectStore& xc_objStore;
|
||||
@ -187,7 +191,6 @@ private:
|
||||
bool x318_30_inAreaDraw : 1;
|
||||
bool x318_31_persistRGBA6 : 1;
|
||||
|
||||
void AllocatePhazonSuitMaskTexture();
|
||||
void GenerateReflectionTex();
|
||||
void GenerateFogVolumeRampTex();
|
||||
void GenerateSphereRampTex();
|
||||
|
@ -126,7 +126,7 @@ void CErrorOutputWindow::Draw() const {
|
||||
case 3:
|
||||
CGraphics::SetIsBeginSceneClearFb(false);
|
||||
if (gpRender != NULL) {
|
||||
gpRender->x318_26_requestRGBA6 = true;
|
||||
gpRender->SetRequestRGBA6(true);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
@ -37,8 +37,6 @@ rstl::auto_ptr< CPVSAreaSet > CPVSAreaSet::MakeAreaSet(const char* data, int len
|
||||
const CPVSVisOctree& CPVSAreaSet::GetVisOctree(const uint) const { return x20_octree; }
|
||||
|
||||
CPVSVisSet CPVSAreaSet::GetLightSet(int lightIdx) const {
|
||||
CPVSVisSet ret;
|
||||
ret.SetFromMemory(x20_octree.GetNumObjects(), x20_octree.GetNumLights(),
|
||||
return CPVSVisSet(x20_octree.GetNumObjects(), x20_octree.GetNumLights(),
|
||||
x1c_lightLeaves + x10_leafSize * lightIdx);
|
||||
return ret;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user