Skip to content

Commit

Permalink
Changed version to 2.16 (from 2.16-dev)
Browse files Browse the repository at this point in the history
  • Loading branch information
buddhi1980 committed Dec 22, 2018
1 parent fa6ea7f commit 246c7d6
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion mandelbulber2/deploy/README
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

MANDELBULBER 2.16-dev
MANDELBULBER 2.16

1. What is Mandelbulber
-----------------------
Expand Down
2 changes: 1 addition & 1 deletion mandelbulber2/deploy/README-osx.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

MANDELBULBER 2.16-dev
MANDELBULBER 2.16

1. What is Mandelbulber
-----------------------
Expand Down
2 changes: 1 addition & 1 deletion mandelbulber2/deploy/README-win32.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

MANDELBULBER 2.16-dev
MANDELBULBER 2.16

1. What is Mandelbulber
-----------------------
Expand Down
4 changes: 2 additions & 2 deletions mandelbulber2/msvc/mandelbulber2.rc
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Mandelbulber Team"
VALUE "FileDescription", "Mandelbulber generates three-dimensional fractals."
VALUE "FileVersion", "2.16-dev"
VALUE "FileVersion", "2.16"
VALUE "InternalName", "mandelbulber2.exe"
VALUE "LegalCopyright", "Copyright (C) 2018 Mandelbulber Team"
VALUE "OriginalFilename", "mandelbulber2.exe"
VALUE "ProductName", "Mandelbulber"
VALUE "ProductVersion", "2.16-dev"
VALUE "ProductVersion", "2.16"
END
END
BLOCK "VarFileInfo"
Expand Down
3 changes: 3 additions & 0 deletions mandelbulber2/opencl/engines/fast_engine.cl
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@
* Fast kernel for rendering opencl with missing effects
*/

// defined to force recompilation of kernels on NVidia cards with new releases
#define MANDELBULBER_VERSION 2.16

int GetInteger(int byte, __global char *array)
{
__global int *intPointer = (__global int *)&array[byte];
Expand Down
3 changes: 3 additions & 0 deletions mandelbulber2/opencl/engines/full_engine.cl
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@
* Full kernel for rendering opencl with missing effects
*/

//defined to force recompilation of kernels on NVidia cards with new releases
#define MANDELBULBER_VERSION 2.16

int GetInteger(int byte, __global char *array)
{
__global int *intPointer = (__global int *)&array[byte];
Expand Down
3 changes: 3 additions & 0 deletions mandelbulber2/opencl/engines/limited_engine.cl
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@
* Fast kernel for rendering opencl with missing effects
*/

// defined to force recompilation of kernels on NVidia cards with new releases
#define MANDELBULBER_VERSION 2.16

int GetInteger(int byte, __global char *array)
{
__global int *intPointer = (__global int *)&array[byte];
Expand Down
2 changes: 1 addition & 1 deletion mandelbulber2/src/system.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
#define MANDELBULBER2_SRC_SYSTEM_HPP_

#define MANDELBULBER_VERSION 2.16
#define MANDELBULBER_VERSION_STRING "2.16-dev"
#define MANDELBULBER_VERSION_STRING "2.16"
#define TO_STRING(a) #a

#ifdef _WIN32 /* WINDOWS */
Expand Down

0 comments on commit 246c7d6

Please sign in to comment.