(d3d9_cg_renderchain.cpp) Fix header includes
This commit is contained in:
parent
0b3e90dbf4
commit
d4ecc6398d
|
@ -31,8 +31,8 @@
|
||||||
#include <compat/strl.h>
|
#include <compat/strl.h>
|
||||||
#include <string/stdstring.h>
|
#include <string/stdstring.h>
|
||||||
|
|
||||||
#include "../d3d.h"
|
#include "../drivers/d3d.h"
|
||||||
#include "../d3d_shaders/opaque.cg.d3d9.h"
|
#include "../drivers/d3d_shaders/opaque.cg.d3d9.h"
|
||||||
|
|
||||||
#include "../video_renderchain_driver.h"
|
#include "../video_renderchain_driver.h"
|
||||||
#include "../video_driver.h"
|
#include "../video_driver.h"
|
||||||
|
@ -40,7 +40,9 @@
|
||||||
#include "../../verbosity.h"
|
#include "../../verbosity.h"
|
||||||
|
|
||||||
#define cg_d3d9_set_param_1f(param, x) if (param) cgD3D9SetUniform(param, x)
|
#define cg_d3d9_set_param_1f(param, x) if (param) cgD3D9SetUniform(param, x)
|
||||||
namespace {
|
|
||||||
|
namespace
|
||||||
|
{
|
||||||
struct lut_info
|
struct lut_info
|
||||||
{
|
{
|
||||||
LPDIRECT3DTEXTURE tex;
|
LPDIRECT3DTEXTURE tex;
|
||||||
|
@ -67,6 +69,7 @@ namespace {
|
||||||
std::vector<unsigned> attrib_map;
|
std::vector<unsigned> attrib_map;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef struct cg_renderchain
|
typedef struct cg_renderchain
|
||||||
{
|
{
|
||||||
LPDIRECT3DDEVICE dev;
|
LPDIRECT3DDEVICE dev;
|
||||||
|
|
Loading…
Reference in New Issue