mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 12:59:01 +00:00
librw update
This commit is contained in:
parent
3a5a122887
commit
d8749c2305
2 changed files with 7 additions and 1 deletions
2
librw
2
librw
|
@ -1 +1 @@
|
||||||
Subproject commit 84c582c1d7a64a213523b8e4c8211f8b7a4fdcd1
|
Subproject commit 6ff378bb16007ad003b1a71996944a20f2e76556
|
|
@ -790,6 +790,12 @@ RpMaterial *RpMatFXMaterialSetEnvMapFrame( RpMaterial *material, RwFrame *frame
|
||||||
mfx->setEnvFrame(frame);
|
mfx->setEnvFrame(frame);
|
||||||
return material;
|
return material;
|
||||||
}
|
}
|
||||||
|
RpMaterial *RpMatFXMaterialSetEnvMapFrameBufferAlpha( RpMaterial *material, RwBool useFrameBufferAlpha )
|
||||||
|
{
|
||||||
|
MatFX *mfx = MatFX::get(material);
|
||||||
|
mfx->setEnvFBAlpha(useFrameBufferAlpha);
|
||||||
|
return material;
|
||||||
|
}
|
||||||
RpMaterial *RpMatFXMaterialSetEnvMapCoefficient( RpMaterial *material, RwReal coef )
|
RpMaterial *RpMatFXMaterialSetEnvMapCoefficient( RpMaterial *material, RwReal coef )
|
||||||
{
|
{
|
||||||
MatFX *mfx = MatFX::get(material);
|
MatFX *mfx = MatFX::get(material);
|
||||||
|
|
Loading…
Reference in a new issue