mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
(D3D9 HLSL) Fix two warnings with cxx_BUILD
This commit is contained in:
parent
6002c7e790
commit
81d276fa11
1 changed files with 2 additions and 2 deletions
|
@ -591,7 +591,7 @@ static bool hlsl_d3d9_renderchain_render(
|
|||
|
||||
d3d9_texture_get_surface_level(to_pass->tex, 0, (void**)&target);
|
||||
|
||||
d3d9_device_set_render_target(chain->chain.dev, 0, (void*)target);
|
||||
d3d9_device_set_render_target(chain->chain.dev, 0, target);
|
||||
|
||||
d3d9_convert_geometry(&from_pass->info,
|
||||
&out_width, &out_height,
|
||||
|
@ -629,7 +629,7 @@ static bool hlsl_d3d9_renderchain_render(
|
|||
}
|
||||
|
||||
/* Final pass */
|
||||
d3d9_device_set_render_target(chain->chain.dev, 0, (void*)back_buffer);
|
||||
d3d9_device_set_render_target(chain->chain.dev, 0, back_buffer);
|
||||
|
||||
last_pass = (struct shader_pass*)&chain->chain.passes->
|
||||
data[chain->chain.passes->count - 1];
|
||||
|
|
Loading…
Add table
Reference in a new issue