c++ - extern class object not working :S -
moving global class object corresponding cpp file can declare extern in order use in multiple files avoid re-declaration compile errors.
models.h
#ifndef models_h #define models_h #include <xnamath.h> class models { public: id3d11buffer* meshvertbuff; id3d11buffer* meshindexbuff; std::vector<int> meshsubsetindexstart; std::vector<int> meshsubsettexture; int meshsubsets; xmmatrix player; }; #endif models.cpp
#include "models.h" models model_1; models model_2; main.cpp
#include "input.h" #include "models.h" #include "player.h" #include "camera.h" extern camera maincamera; extern my_player mainplayer; extern models model_1; extern models model_2; oddly it's not working , can't see why ton of xnamath errors when moved class objects model.cpp, if they're in model.h it's fine cant use in other modules. :s appreciated.
errors -
error 173 error c1003: error count exceeds 100; stopping compilation c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 429 error 103 error c2040: '_xmmatrix::operator ()' : 'int &(uint,uint)' differs in levels of indirection 'int (uint,uint)' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 361 error 28 error c2059: syntax error : ')' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 159 error 37 error c2059: syntax error : ')' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 160 error 57 error c2059: syntax error : ')' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 324 error 110 error c2059: syntax error : ')' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 363 error 114 error c2059: syntax error : ')' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 366 error 118 error c2059: syntax error : ')' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 367 error 119 error c2059: syntax error : '}' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 372 error 121 error c2059: syntax error : '}' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 372 error 104 error c2059: syntax error : 'return' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 361 error 89 error c2061: syntax error : identifier 'const' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 358 error 137 error c2061: syntax error : identifier 'const' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 398 error 139 error c2061: syntax error : identifier 'const' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 400 error 147 error c2061: syntax error : identifier 'const' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 412 error 149 error c2061: syntax error : identifier 'const' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 414 error 162 error c2061: syntax error : identifier 'const' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 430 error 166 error c2061: syntax error : identifier 'const' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 432 error 168 error c2061: syntax error : identifier 'const' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 434 error 49 error c2061: syntax error : identifier 'float' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 316 error 51 error c2061: syntax error : identifier 'float' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 317 error 53 error c2061: syntax error : identifier 'float' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 323 error 58 error c2061: syntax error : identifier 'float' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 325 error 87 error c2061: syntax error : identifier 'float' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 354 error 135 error c2061: syntax error : identifier 'float' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 397 error 145 error c2061: syntax error : identifier 'float' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 411 error 164 error c2061: syntax error : identifier 'float' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 431 error 160 error c2061: syntax error : identifier 'half' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 429 error 141 error c2065: '_x' : undeclared identifier c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 397 error 151 error c2065: '_x' : undeclared identifier c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 411 error 170 error c2065: '_x' : undeclared identifier c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 429 error 142 error c2065: '_y' : undeclared identifier c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 397 error 152 error c2065: '_y' : undeclared identifier c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 411 error 171 error c2065: '_y' : undeclared identifier c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 429 error 107 error c2065: 'const' : undeclared identifier c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 363 error 111 error c2065: 'const' : undeclared identifier c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 366 error 115 error c2065: 'const' : undeclared identifier c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 367 error 153 error c2065: 'parray' : undeclared identifier c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 412 error 34 error c2086: 'int float' : redefinition c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 160 error 97 error c2143: syntax error : missing ';' before '&' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 361 error 106 error c2143: syntax error : missing ';' before '&' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 363 error 123 error c2143: syntax error : missing ';' before '&' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 378 error 91 error c2143: syntax error : missing ';' before '(' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 360 error 29 error c2143: syntax error : missing ';' before '{' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 159 error 38 error c2143: syntax error : missing ';' before '{' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 160 error 120 error c2143: syntax error : missing ';' before '}' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 372 error 108 error c2146: syntax error : missing ')' before identifier '_xmmatrix' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 363 error 112 error c2146: syntax error : missing ')' before identifier '_xmmatrix' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 366 error 116 error c2146: syntax error : missing ')' before identifier '_xmmatrix' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 367 error 26 error c2146: syntax error : missing ')' before identifier 'fdegrees' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 159 error 35 error c2146: syntax error : missing ')' before identifier 'fradians' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 160 error 54 error c2146: syntax error : missing ')' before identifier 's' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 324 error 40 error c2146: syntax error : missing ';' before identifier '__vector4i' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 217 error 60 error c2146: syntax error : missing ';' before identifier '_11' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 342 error 66 error c2146: syntax error : missing ';' before identifier '_21' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 343 error 72 error c2146: syntax error : missing ';' before identifier '_31' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 344 error 78 error c2146: syntax error : missing ';' before identifier '_41' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 345 error 126 error c2146: syntax error : missing ';' before identifier 'half' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 386 error 43 error c2146: syntax error : missing ';' before identifier 'i' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 246 error 84 error c2146: syntax error : missing ';' before identifier 'm' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 347 error 46 error c2146: syntax error : missing ';' before identifier 'u' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 260 error 129 error c2146: syntax error : missing ';' before identifier 'x' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 391 error 154 error c2146: syntax error : missing ';' before identifier 'x' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 423 error 31 error c2146: syntax error : missing ';' before identifier 'xmconverttodegrees' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 160 error 23 error c2146: syntax error : missing ';' before identifier 'xmconverttoradians' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 159 error 132 error c2146: syntax error : missing ';' before identifier 'y' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 392 error 157 error c2146: syntax error : missing ';' before identifier 'y' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 424 error 105 error c2238: unexpected token(s) preceding ';' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 361 error 55 error c2365: 'operator *' : redefinition; previous definition 'function' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 324 error 117 error c2365: 'operator *' : redefinition; previous definition 'function' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 367 error 113 error c2365: 'operator *=' : redefinition; previous definition 'function' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 366 error 24 error c2433: 'float' : '__forceinline' not permitted on data declarations c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 159 error 32 error c2433: 'float' : '__forceinline' not permitted on data declarations c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 160 error 56 error c2440: 'initializing' : cannot convert 'int' 'xmvector' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 324 error 30 error c2447: '{' : missing function header (old-style formal list?) c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 159 error 39 error c2447: '{' : missing function header (old-style formal list?) c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 160 error 125 error c2530: 'cxmmatrix' : references must initialized c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 378 error 136 error c2535: '_xmfloat2::_xmfloat2(void)' : member function defined or declared c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 397 error 138 error c2535: '_xmfloat2::_xmfloat2(void)' : member function defined or declared c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 398 error 161 error c2535: '_xmhalf2::_xmhalf2(void)' : member function defined or declared c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 429 error 163 error c2535: '_xmhalf2::_xmhalf2(void)' : member function defined or declared c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 430 error 165 error c2535: '_xmhalf2::_xmhalf2(void)' : member function defined or declared c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 431 error 167 error c2535: '_xmhalf2::_xmhalf2(void)' : member function defined or declared c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 432 error 88 error c2535: '_xmmatrix::_xmmatrix(void)' : member function defined or declared c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 354 error 90 error c2535: '_xmmatrix::_xmmatrix(void)' : member function defined or declared c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 358 error 146 error c2535: 'xmfloat2a::xmfloat2a(void)' : member function defined or declared c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 411 error 148 error c2535: 'xmfloat2a::xmfloat2a(void)' : member function defined or declared c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 412 error 102 error c2556: 'int &_xmmatrix::operator ()(uint,uint)' : overloaded function differs return type 'int _xmmatrix::operator ()(uint,uint)' c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 361 error 144 error c2614: '_xmfloat2' : illegal member initialization: 'x' not base or member c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 397 error 143 error c2614: '_xmfloat2' : illegal member initialization: 'y' not base or member c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 397 error 172 error c2614: '_xmhalf2' : illegal member initialization: 'y' not base or member c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 429 error 95 error c2719: 'column': formal parameter __declspec(align('16')) won't aligned c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 360 error 100 error c2719: 'column': formal parameter __declspec(align('16')) won't aligned c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 361 error 94 error c2719: 'row': formal parameter __declspec(align('16')) won't aligned c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 360 error 99 error c2719: 'row': formal parameter __declspec(align('16')) won't aligned c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 361 error 50 error c2805: binary 'operator *=' has few parameters c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 316 error 59 error c2805: binary 'operator /' has few parameters c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 325 error 52 error c2805: binary 'operator /=' has few parameters c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 317 error 140 error c2805: binary 'operator =' has few parameters c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 400 error 150 error c2805: binary 'operator =' has few parameters c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 414 error 169 error c2805: binary 'operator =' has few parameters c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 434 error 93 error c3646: 'const' : unknown override specifier c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 360 error 25 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 159 error 27 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 159 error 33 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 160 error 36 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 160 error 41 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 217 error 42 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 217 error 44 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 246 error 45 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 246 error 47 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 260 error 48 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 260 error 61 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 342 error 62 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 342 error 63 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 342 error 64 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 342 error 65 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 342 error 67 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 343 error 68 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 343 error 69 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 343 error 70 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 343 error 71 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 343 error 73 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 344 error 74 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 344 error 75 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 344 error 76 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 344 error 77 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 344 error 79 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 345 error 80 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 345 error 81 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 345 error 82 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 345 error 83 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 345 error 85 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 347 error 86 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 347 error 92 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 360 error 96 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 360 error 98 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 361 error 101 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 361 error 109 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 363 error 122 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 378 error 124 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 378 error 127 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 386 error 128 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 386 error 130 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 391 error 131 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 391 error 133 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 392 error 134 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 392 error 155 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 423 error 156 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 423 error 158 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 424 error 159 error c4430: missing type specifier - int assumed. note: c++ not support default-int c:\program files (x86)\microsoft directx sdk (june 2010)\include\xnamath.h 424 178 intellisense: expected ')' d:\d3d11normalmap\d3d11normalmap\randomvariables.h 40 179 intellisense: expected declaration d:\d3d11normalmap\d3d11normalmap\randomvariables.h 40 177 intellisense: expected identifier d:\d3d11normalmap\d3d11normalmap\randomvariables.h 40 176 intellisense: no suitable constructor exists convert "xmvector (float x, float y, float z, float w)" "__m128" d:\d3d11normalmap\d3d11normalmap\randomvariables.h 40 174 intellisense: #endif directive missing d:\d3d11normalmap\d3d11normalmap\randomvariables.h 3 175 intellisense: declaration has no storage class or type specifier d:\d3d11normalmap\d3d11normalmap\randomvariables.h 34
Comments
Post a Comment