Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.07 KB | None | 0 0
  1. //   struct LightingInfo
  2. //   {
  3. //      
  4. //       float4x4 FirstMatrices[8];    // Offset:    0
  5. //       float4 SomePositions[8];     // Offset:  512
  6. //       uint4 FourNumbers[4];        // Offset:  640
  7. //
  8. //   } myInfo;                // Offset:    0 Size:   704
  9.  
  10. //   struct LightingInfo
  11. //   {
  12. //      
  13. //       float4x4 FirstMatrices[8];    // Offset:    0
  14. //       float4 SomePositions[8];     // Offset:  512
  15. //       uint FourNumbers[4];         // Offset:  640
  16. //
  17. //   } myInfo;                // Offset:    0 Size:   692
  18.  
  19. //   struct LightingInfo
  20. //   {
  21. //      
  22. //       float4x4 FirstMatrices[8];    // Offset:    0
  23. //       uint FourNumbers[4];         // Offset:  512
  24. //       float4 SomePositions[8];     // Offset:  576
  25. //
  26. //   } myInfo;                // Offset:    0 Size:   704
  27.  
  28. //   struct LightingInfo
  29. //   {
  30. //      
  31. //       float4x4 FirstMatrices[8];    // Offset:    0
  32. //       uint4 FourNumbers[4];        // Offset:  512
  33. //       float4 SomePositions[8];     // Offset:  576
  34. //
  35. //   } myInfo;                // Offset:    0 Size:   704
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement