Common: Add GL context wrapper implementation

This commit is contained in:
Connor McLaughlin
2020-05-07 22:48:13 +10:00
parent 75ad533f30
commit 4f4c4f4146
22 changed files with 2012 additions and 7 deletions

View File

@ -52,6 +52,8 @@
<ClInclude Include="event.h" />
<ClInclude Include="fifo_queue.h" />
<ClInclude Include="file_system.h" />
<ClInclude Include="gl\context.h" />
<ClInclude Include="gl\context_wgl.h" />
<ClInclude Include="gl\program.h" />
<ClInclude Include="gl\shader_cache.h" />
<ClInclude Include="gl\stream_buffer.h" />
@ -74,6 +76,7 @@
<ClInclude Include="types.h" />
<ClInclude Include="cd_xa.h" />
<ClInclude Include="wav_writer.h" />
<ClInclude Include="window_info.h" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="assert.cpp" />
@ -91,6 +94,8 @@
<ClCompile Include="d3d11\texture.cpp" />
<ClCompile Include="event.cpp" />
<ClCompile Include="file_system.cpp" />
<ClCompile Include="gl\context.cpp" />
<ClCompile Include="gl\context_wgl.cpp" />
<ClCompile Include="gl\program.cpp" />
<ClCompile Include="gl\shader_cache.cpp" />
<ClCompile Include="gl\stream_buffer.cpp" />