mirror of
				https://github.com/jojo61/vdr-plugin-softhdcuvid.git
				synced 2025-03-01 10:39:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| 
 | |
| /*
 | |
|  * This file is part of libplacebo.
 | |
|  *
 | |
|  * libplacebo is free software; you can redistribute it and/or
 | |
|  * modify it under the terms of the GNU Lesser General Public
 | |
|  * License as published by the Free Software Foundation; either
 | |
|  * version 2.1 of the License, or (at your option) any later version.
 | |
|  *
 | |
|  * libplacebo is distributed in the hope that it will be useful,
 | |
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the
 | |
|  * GNU Lesser General Public License for more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU Lesser General Public
 | |
|  * License along with libplacebo.  If not, see <http://www.gnu.org/licenses/>.
 | |
|  */
 | |
| 
 | |
| #ifndef LIBPLACEBO_CONFIG_H_
 | |
| #define LIBPLACEBO_CONFIG_H_
 | |
| 
 | |
| // Increased any time the library changes in a fundamental/major way.
 | |
| #define PL_MAJOR_VER 1
 | |
| 
 | |
| // Increased any time the API changes. (Note: Does not reset when PL_MAJOR_VER
 | |
| // is increased)
 | |
| #define PL_API_VER 7
 | |
| 
 | |
| // Increased any time a fix is made to a given API version.
 | |
| #define PL_FIX_VER 0
 | |
| 
 | |
| // Friendly name (`git describe`) for the overall version of the library
 | |
| #define PL_VERSION "v1.7.0-rc1"
 | |
| 
 | |
| // Feature tests. These aren't described in further detail, but may be useful
 | |
| // for programmers wanting to programmatically check for feature support
 | |
| // in their compiled libplacebo versions.
 | |
| #define PL_HAVE_LCMS 1
 | |
| #define PL_HAVE_GLSLANG 1
 | |
| #define PL_HAVE_SHADERC 0
 | |
| #define PL_HAVE_VULKAN 1
 | |
| 
 | |
| #endif // LIBPLACEBO_CONTEXT_H_
 |