| 
									
										
										
										
											2022-02-11 09:07:11 +11:00
										 |  |  | /* SPDX-License-Identifier: GPL-2.0-or-later */ | 
					
						
							| 
									
										
										
										
											2021-05-14 11:15:00 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** \file
 | 
					
						
							|  |  |  |  * \ingroup bpygpu | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2021-07-20 22:52:31 +10:00
										 |  |  |  * - Use `bpygpu_` for local API. | 
					
						
							|  |  |  |  * - Use `BPyGPU` for public API. | 
					
						
							| 
									
										
										
										
											2021-05-14 11:15:00 -03:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <Python.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "BLI_utildefines.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "GPU_platform.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "gpu_py_platform.h" /* own include */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* -------------------------------------------------------------------- */ | 
					
						
							|  |  |  | /** \name Functions
 | 
					
						
							|  |  |  |  * \{ */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-17 14:44:28 +10:00
										 |  |  | PyDoc_STRVAR(pygpu_platform_vendor_get_doc, | 
					
						
							|  |  |  |              ".. function:: vendor_get()\n" | 
					
						
							|  |  |  |              "\n" | 
					
						
							|  |  |  |              "   Get GPU vendor.\n" | 
					
						
							|  |  |  |              "\n" | 
					
						
							|  |  |  |              "   :return: Vendor name.\n" | 
					
						
							|  |  |  |              "   :rtype: str\n"); | 
					
						
							| 
									
										
										
										
											2021-05-15 14:13:22 -03:00
										 |  |  | static PyObject *pygpu_platform_vendor_get(PyObject *UNUSED(self)) | 
					
						
							| 
									
										
										
										
											2021-05-14 11:15:00 -03:00
										 |  |  | { | 
					
						
							|  |  |  |   return PyUnicode_FromString(GPU_platform_vendor()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-17 14:44:28 +10:00
										 |  |  | PyDoc_STRVAR(pygpu_platform_renderer_get_doc, | 
					
						
							|  |  |  |              ".. function:: renderer_get()\n" | 
					
						
							|  |  |  |              "\n" | 
					
						
							|  |  |  |              "   Get GPU to be used for rendering.\n" | 
					
						
							|  |  |  |              "\n" | 
					
						
							|  |  |  |              "   :return: GPU name.\n" | 
					
						
							|  |  |  |              "   :rtype: str\n"); | 
					
						
							| 
									
										
										
										
											2021-05-15 14:13:22 -03:00
										 |  |  | static PyObject *pygpu_platform_renderer_get(PyObject *UNUSED(self)) | 
					
						
							| 
									
										
										
										
											2021-05-14 11:15:00 -03:00
										 |  |  | { | 
					
						
							|  |  |  |   return PyUnicode_FromString(GPU_platform_renderer()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-17 14:44:28 +10:00
										 |  |  | PyDoc_STRVAR(pygpu_platform_version_get_doc, | 
					
						
							|  |  |  |              ".. function:: version_get()\n" | 
					
						
							|  |  |  |              "\n" | 
					
						
							|  |  |  |              "   Get GPU driver version.\n" | 
					
						
							|  |  |  |              "\n" | 
					
						
							|  |  |  |              "   :return: Driver version.\n" | 
					
						
							|  |  |  |              "   :rtype: str\n"); | 
					
						
							| 
									
										
										
										
											2021-05-15 14:13:22 -03:00
										 |  |  | static PyObject *pygpu_platform_version_get(PyObject *UNUSED(self)) | 
					
						
							| 
									
										
										
										
											2021-05-14 11:15:00 -03:00
										 |  |  | { | 
					
						
							|  |  |  |   return PyUnicode_FromString(GPU_platform_version()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** \} */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* -------------------------------------------------------------------- */ | 
					
						
							|  |  |  | /** \name Module
 | 
					
						
							|  |  |  |  * \{ */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct PyMethodDef pygpu_platform__tp_methods[] = { | 
					
						
							| 
									
										
										
										
											2021-08-17 14:46:46 +10:00
										 |  |  |     {"vendor_get", | 
					
						
							|  |  |  |      (PyCFunction)pygpu_platform_vendor_get, | 
					
						
							|  |  |  |      METH_NOARGS, | 
					
						
							| 
									
										
										
										
											2021-08-17 14:44:28 +10:00
										 |  |  |      pygpu_platform_vendor_get_doc}, | 
					
						
							| 
									
										
										
										
											2021-08-17 14:46:46 +10:00
										 |  |  |     {"renderer_get", | 
					
						
							|  |  |  |      (PyCFunction)pygpu_platform_renderer_get, | 
					
						
							|  |  |  |      METH_NOARGS, | 
					
						
							| 
									
										
										
										
											2021-08-17 14:44:28 +10:00
										 |  |  |      pygpu_platform_renderer_get_doc}, | 
					
						
							| 
									
										
										
										
											2021-08-17 14:46:46 +10:00
										 |  |  |     {"version_get", | 
					
						
							|  |  |  |      (PyCFunction)pygpu_platform_version_get, | 
					
						
							|  |  |  |      METH_NOARGS, | 
					
						
							| 
									
										
										
										
											2021-08-17 14:44:28 +10:00
										 |  |  |      pygpu_platform_version_get_doc}, | 
					
						
							| 
									
										
										
										
											2021-05-14 11:15:00 -03:00
										 |  |  |     {NULL, NULL, 0, NULL}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(pygpu_platform__tp_doc, "This module provides access to GPU Platform definitions."); | 
					
						
							|  |  |  | static PyModuleDef pygpu_platform_module_def = { | 
					
						
							|  |  |  |     PyModuleDef_HEAD_INIT, | 
					
						
							|  |  |  |     .m_name = "gpu.platform", | 
					
						
							|  |  |  |     .m_doc = pygpu_platform__tp_doc, | 
					
						
							|  |  |  |     .m_methods = pygpu_platform__tp_methods, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *bpygpu_platform_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   PyObject *submodule; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   submodule = PyModule_Create(&pygpu_platform_module_def); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   return submodule; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** \} */ |