added everything

This commit is contained in:
Metario
2017-04-17 06:17:10 -06:00
commit 9c6ff74f19
6121 changed files with 1625704 additions and 0 deletions

29
lib/maxsdk70/include/sse.h Executable file
View File

@@ -0,0 +1,29 @@
/////////////////////////////////////////////////////////////////////////
//
//
// SSE (Streaming SIMD extentions)
//
// Created 9/15/2001 Claude Robillard
//
#ifndef MAX_SSE_H
#define MAX_SSE_H
//////////////////////////////////////////////////////////////
//
// IRendSSEControl compatibility interface
//
//
class IRenderSSEControl
{
public:
// this interface's ID
enum { IID = 0xcafdface };
// This function returns TRUE when user whishes to use SSE for rendering optimizations
virtual BOOL IsSSEEnabled() = 0;
};
#endif