You can use OpenCV quite easily to display images straight from your buffer. It's quite easy to install for Visual Studio with precompiled binaries (or you can do it yourself easily with CMake) and using it is trivial in most cases. For example, suppose you had the following image in memory which you generated somehow.

You can use OpenCV tools to access user-allocated data directly (copying). So, I'm just displaying the image now but there's a host of other things you can do (it's OpenCV!).
The following codes generates an image of a circle of diameter 200 in a square of size 300. The data has been stored in row-major order since that's how OpenCV reads them.
#include <cv.h>
#include <cxcore.h>
#include <highgui.h>
using namespace cv;
int main(int argc, char* argv[])
{
// Create the matrix
const int rows = 300, cols = 300;
unsigned char *data = new unsigned char[rows*cols];
// Make a dummy image of a circle of radius 100 in the matrix
const int r = 100, center_i = rows/2, center_j = cols/2;
const int BKG = 0, CIRC = 255;
unsigned char* ptr = data;
for(int i=0;i<rows;++i)
for(int j=0;j<cols;++j)
{
bool isInOnCirc = ((i-center_i)*(i-center_i)+ (j-center_j)*(j-center_j) <= r*r);
if(isInOnCirc) *ptr++= CIRC;
else *ptr++ = BKG;
}
// Create a cv::Mat on top of the user-allocated data
// CV_8UC1 = 8-bit unsigned char with one channel (layer)
Mat img(rows,cols,CV_8UC1,data);
namedWindow("Image",CV_WINDOW_AUTOSIZE);
imshow("Image",img);
waitKey();
// Cleanup
delete data;
return 0;
}