Changeset c58ebc3 in opengl-game


Ignore:
Timestamp:
May 6, 2018, 10:21:20 PM (6 years ago)
Author:
Dmitry Portnoy <dmp1488@…>
Branches:
feature/imgui-sdl, master, points-test
Children:
c1ca5b5
Parents:
54b6d6b
Message:

Create an IMGUI folder for the imgui library files.

Files:
3 edited
8 moved

Legend:

Unmodified
Added
Removed
  • NewOpenGLGame.vcxproj

    r54b6d6b rc58ebc3  
    125125  </ItemDefinitionGroup>
    126126  <ItemGroup>
    127     <ClCompile Include="imgui.cpp" />
    128     <ClCompile Include="imgui_demo.cpp" />
    129     <ClCompile Include="imgui_draw.cpp" />
     127    <ClCompile Include="IMGUI\imgui.cpp" />
     128    <ClCompile Include="IMGUI\imgui_demo.cpp" />
     129    <ClCompile Include="IMGUI\imgui_draw.cpp" />
    130130    <ClCompile Include="imgui_impl_glfw_gl3.cpp" />
    131131    <ClCompile Include="logger.cpp" />
     
    136136  </ItemGroup>
    137137  <ItemGroup>
    138     <ClInclude Include="imgui_internal.h" />
     138    <ClInclude Include="IMGUI\imgui.h" />
     139    <ClInclude Include="IMGUI\imgui_internal.h" />
     140    <ClInclude Include="IMGUI\stb_rect_pack.h" />
     141    <ClInclude Include="IMGUI\stb_textedit.h" />
     142    <ClInclude Include="IMGUI\stb_truetype.h" />
    139143    <ClInclude Include="imgui_impl_glfw_gl3.h" />
    140     <ClInclude Include="imgui.h" />
    141144    <ClInclude Include="logger.h" />
    142145    <ClInclude Include="stb_image.h" />
    143     <ClInclude Include="stb_rect_pack.h" />
    144     <ClInclude Include="stb_textedit.h" />
    145     <ClInclude Include="stb_truetype.h" />
    146146  </ItemGroup>
    147147  <ItemGroup>
  • imgui_example.cpp

    r54b6d6b rc58ebc3  
    33// (GLFW is a cross-platform general purpose library for handling windows, inputs, OpenGL/Vulkan graphics context creation, etc.)
    44
    5 #include "imgui.h"
     5#include "IMGUI/imgui.h"
    66#include "imgui_impl_glfw_gl3.h"
    77#include <stdio.h>
  • imgui_impl_glfw_gl3.cpp

    r54b6d6b rc58ebc3  
    3737#endif
    3838
    39 #include "imgui.h"
     39#include "IMGUI/imgui.h"
    4040#include "imgui_impl_glfw_gl3.h"
    4141
Note: See TracChangeset for help on using the changeset viewer.