Browse Source

Added missing file.

Branimir Karadžić 9 years ago
parent
commit
5905f98f0c
1 changed files with 24 additions and 0 deletions
  1. 24 0
      src/renderer_gnm.cpp

+ 24 - 0
src/renderer_gnm.cpp

@@ -0,0 +1,24 @@
+/*
+ * Copyright 2011-2016 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ */
+
+#include "bgfx_p.h"
+
+#if BGFX_CONFIG_RENDERER_GNM
+#	include "../../bgfx-ext/src/renderer_gnm1.cpp"
+#else
+
+namespace bgfx { namespace gnm
+{
+	RendererContextI* rendererCreate()
+	{
+		return NULL;
+	}
+
+	void rendererDestroy()
+	{
+	}
+} /* namespace gnm */ } // namespace bgfx
+
+#endif // BGFX_CONFIG_RENDERER_GNM