File size: 8,190 Bytes
0c51b93 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 |
// to fix min max windows macros
#define NOMINMAX
// SDL
//#include "../external/SDL2-2.0.4/include/SDL_syswm.h"
#include "../external/SDL2-2.0.4/include/SDL.h"
// This
#include "shadersDemoContext.h"
// Stubs for unsupported renderers
//#if PLATFORM_LINUX
#ifdef __linux__
DemoContext* CreateDemoContextD3D11() { assert(0); return 0; };
DemoContext* CreateDemoContextD3D12() { assert(0); return 0; };
#else
#if FLEX_DX
DemoContext* CreateDemoContextOGL() { assert(0); return 0; };
#endif
#endif
extern DemoContext* CreateDemoContextOGL();
extern DemoContext* CreateDemoContextD3D11();
extern DemoContext* CreateDemoContextD3D12();
DemoContext* s_context = NULL;
void CreateDemoContext(int type)
{
DemoContext* context = 0;
#ifndef ANDROID
switch (type)
{
case 0: context = CreateDemoContextOGL(); break;
case 1: context = CreateDemoContextD3D11(); break;
case 2: context = CreateDemoContextD3D12(); break;
default: assert(0);
}
#endif
s_context = context;
}
DemoContext* GetDemoContext()
{
return s_context;
}
void ReshapeRender(SDL_Window* window)
{
int width, height;
SDL_GetWindowSize(window, &width, &height);
s_context->onSizeChanged(width, height, false);
}
void DestroyRender()
{
if (s_context)
{
delete s_context;
s_context = nullptr;
}
}
void StartFrame(Vec4 colorIn) { s_context->startFrame(colorIn); }
void EndFrame() { s_context->endFrame(); }
void PresentFrame(bool fullSync) { s_context->presentFrame(fullSync); }
void FlushGraphicsAndWait() { s_context->flushGraphicsAndWait(); }
void ReadFrame(int* backbuffer, int width, int height) { s_context->readFrame(backbuffer, width, height); }
void GetViewRay(int x, int y, Vec3& origin, Vec3& dir) { return s_context->getViewRay(x, y, origin, dir); }
void SetFillMode(bool wire) { s_context->setFillMode(wire); }
void SetCullMode(bool enabled) { s_context->setCullMode(enabled); }
void SetView(Matrix44 view, Matrix44 projection) { return s_context->setView(view, projection); }
FluidRenderer* CreateFluidRenderer(uint32_t width, uint32_t height) { return s_context->createFluidRenderer(width, height); }
void DestroyFluidRenderer(FluidRenderer* renderer) { return s_context->destroyFluidRenderer(renderer); }
FluidRenderBuffers* CreateFluidRenderBuffers(int numParticles, bool enableInterop) { return s_context->createFluidRenderBuffers(numParticles, enableInterop); }
void UpdateFluidRenderBuffers(FluidRenderBuffers* buffers, Vec4* particles, float* densities, Vec4* anisotropy1, Vec4* anisotropy2, Vec4* anisotropy3, int numParticles, int* indices, int numIndices)
{
s_context->updateFluidRenderBuffers(buffers, particles, densities, anisotropy1, anisotropy2, anisotropy3, numParticles, indices, numIndices);
}
void UpdateFluidRenderBuffers(FluidRenderBuffers* buffers, NvFlexSolver* flex, bool anisotropy, bool density) { return s_context->updateFluidRenderBuffers(buffers, flex, anisotropy, density); }
void DestroyFluidRenderBuffers(FluidRenderBuffers* buffers) { return s_context->destroyFluidRenderBuffers(buffers); }
ShadowMap* ShadowCreate() { return s_context->shadowCreate(); }
void ShadowDestroy(ShadowMap* map) { s_context->shadowDestroy(map); }
void ShadowBegin(ShadowMap* map) { s_context->shadowBegin(map); }
void ShadowEnd() { s_context->shadowEnd(); }
void BindSolidShader(Vec3 lightPos, Vec3 lightTarget, Matrix44 lightTransform, ShadowMap* shadowMap, float bias, Vec4 fogColor)
{
s_context->bindSolidShader(lightPos, lightTarget, lightTransform, shadowMap, bias, fogColor);
}
void UnbindSolidShader() { s_context->unbindSolidShader(); }
void DrawMesh(const Mesh* m, Vec3 color) { s_context->drawMesh(m, color); }
void DrawCloth(const Vec4* positions, const Vec4* normals, const float* uvs, const int* indices, int numTris, int numPositions, int colorIndex, float expand, bool twosided, bool smooth)
{
s_context->drawCloth(positions, normals, uvs, indices, numTris, numPositions, colorIndex, expand, twosided, smooth);
}
void DrawRope(Vec4* positions, int* indices, int numIndices, float radius, int color)
{
s_context->drawRope(positions, indices, numIndices, radius, color);
}
void DrawPlane(const Vec4& p, bool color) { s_context->drawPlane(p, color); }
void DrawPlanes(Vec4* planes, int n, float bias) { s_context->drawPlanes(planes, n, bias); }
GpuMesh* CreateGpuMesh(const Mesh* m)
{
return m ? s_context->createGpuMesh(m) : nullptr;
}
void DestroyGpuMesh(GpuMesh* m) { s_context->destroyGpuMesh(m); }
void DrawGpuMesh(GpuMesh* m, const Matrix44& xform, const Vec3& color) { s_context->drawGpuMesh(m, xform, color); }
void DrawGpuMeshInstances(GpuMesh* m, const Matrix44* xforms, int n, const Vec3& color) { s_context->drawGpuMeshInstances(m, xforms, n, color); }
void DrawPoints(FluidRenderBuffers* buffers, int n, int offset, float radius, float screenWidth, float screenAspect, float fov, Vec3 lightPos, Vec3 lightTarget, Matrix44 lightTransform, ShadowMap* shadowTex, bool showDensity)
{
s_context->drawPoints(buffers, n, offset, radius, screenWidth, screenAspect, fov, lightPos, lightTarget, lightTransform, shadowTex, showDensity);
}
void RenderEllipsoids(FluidRenderer* renderer, FluidRenderBuffers* buffers, int n, int offset, float radius, float screenWidth, float screenAspect, float fov, Vec3 lightPos, Vec3 lightTarget, Matrix44 lightTransform, ShadowMap* shadowMap, Vec4 color, float blur, float ior, bool debug)
{
s_context->renderEllipsoids(renderer, buffers, n, offset, radius, screenWidth, screenAspect, fov, lightPos, lightTarget, lightTransform, shadowMap, color, blur, ior, debug);
}
DiffuseRenderBuffers* CreateDiffuseRenderBuffers(int numDiffuseParticles, bool& enableInterop) { return s_context->createDiffuseRenderBuffers(numDiffuseParticles, enableInterop); }
void DestroyDiffuseRenderBuffers(DiffuseRenderBuffers* buffers) { return s_context->destroyDiffuseRenderBuffers(buffers); }
void UpdateDiffuseRenderBuffers(DiffuseRenderBuffers* buffers, Vec4* diffusePositions, Vec4* diffuseVelocities, int numDiffuseParticles)
{
s_context->updateDiffuseRenderBuffers(buffers, diffusePositions, diffuseVelocities, numDiffuseParticles);
}
void UpdateDiffuseRenderBuffers(DiffuseRenderBuffers* buffers, NvFlexSolver* solver) { return s_context->updateDiffuseRenderBuffers(buffers, solver); }
int GetNumDiffuseRenderParticles(DiffuseRenderBuffers* buffers) { return s_context->getNumDiffuseRenderParticles(buffers); }
void RenderDiffuse(FluidRenderer* render, DiffuseRenderBuffers* buffers, int n, float radius, float screenWidth, float screenAspect, float fov, Vec4 color, Vec3 lightPos, Vec3 lightTarget, Matrix44 lightTransform, ShadowMap* shadowMap, float motionBlur, float inscatter, float outscatter, bool shadowEnabled, bool front)
{
s_context->drawDiffuse(render, buffers, n, radius, screenWidth, screenAspect, fov, color, lightPos, lightTarget, lightTransform, shadowMap, motionBlur, inscatter, outscatter, shadowEnabled, front);
}
void BeginLines() { s_context->beginLines(); }
void DrawLine(const Vec3& p, const Vec3& q, const Vec4& color) { s_context->drawLine(p, q, color); }
void EndLines() { s_context->endLines(); }
void BeginPoints(float size) {}
void DrawPoint(const Vec3& p, const Vec4& color) {}
void EndPoints() {}
float RendererGetDeviceTimestamps(unsigned long long* begin, unsigned long long* end, unsigned long long* freq)
{
return s_context->rendererGetDeviceTimestamps(begin, end, freq);
}
void* GetGraphicsCommandQueue() { return s_context->getGraphicsCommandQueue(); }
void GraphicsTimerBegin() { s_context->graphicsTimerBegin(); }
void GraphicsTimerEnd() { s_context->graphicsTimerEnd(); }
void StartGpuWork() { s_context->startGpuWork(); }
void EndGpuWork() { s_context->endGpuWork(); }
void DrawImguiGraph() { return s_context->drawImguiGraph(); }
void GetRenderDevice(void** deviceOut, void** contextOut) { return s_context->getRenderDevice(deviceOut, contextOut); }
void InitRender(const RenderInitOptions& options)
{
if (!s_context)
{
assert(false && "A context has not been set with SetDemoContext!");
return;
}
if (!s_context->initialize(options))
{
assert(!"Unable to initialize context!");
delete s_context;
s_context = nullptr;
return;
}
}
|