Click here to Skip to main content
15,896,557 members
Articles / Programming Languages / C++

Generating Fractals with SSE/SSE2

Rate me:
Please Sign up or sign in to vote.
4.94/5 (94 votes)
29 Nov 2005CPOL32 min read 450.7K   2.5K   87  
An article on generating Mandelbrot and Julia sets using Intel's Streaming SIMD Extensions (SSE, SSE2).
//{{NO_DEPENDENCIES}}
// Microsoft Visual C++ generated include file.
// Used by fractals.RC
//
#define IDC_MYICON                      2
#define IDD_IMM86_DIALOG                102
#define IDD_ABOUTBOX                    103
#define IDS_APP_TITLE                   103
#define IDM_ABOUT                       104
#define IDM_EXIT                        105
#define IDS_HELLO                       106
#define IDI_SMALL                       108
#define IDI_FRACTALS                    108
#define IDC_IMM86                       109
#define IDR_IMM86                       109
#define IDR_MAINFRAME                   128
#define IDR_241                         130
#define IDD_PARAMS                      131
#define IDR_TOOLBAR                     132
#define IDC_ZOOM                        133
#define IDR_MENU                        135
#define IDC_C                           1001
#define IDC_X0                          1003
#define IDC_CSTATIC                     1004
#define IDC_X1                          1005
#define ID_C                            32771
#define ID_C_FPU                        32772
#define ID_C_SSE                        32773
#define ID_C_SSE2                       32774
#define ID_Menu                         32775
#define ID_C_DIRECTDRAW                 32776
#define IDC_STATIC                      -1

// Next default values for new objects
// 
#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NEXT_RESOURCE_VALUE        136
#define _APS_NEXT_COMMAND_VALUE         32777
#define _APS_NEXT_CONTROL_VALUE         1006
#define _APS_NEXT_SYMED_VALUE           110
#endif
#endif

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Czech Republic Czech Republic
Peter is the developer of Aba Search and Replace, a tool for replacing text in multiple files. He likes to program in C with a bit of C++, also in x86 assembly language, Python, and PHP.

Comments and Discussions