Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2015-12-06 23:20:19 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2015-12-08 21:00:56 +0300
commit0dfc8d69392a57e0210644428571dd455cb61241 (patch)
treedf3bdd30f3bbae7693a786b1aa6a8ab0b8921805 /source/blender/gpu/CMakeLists.txt
parentb25e4b310f87fc86942acd29fccf1474ea5120df (diff)
OpenGL: split off framebuffer, shader and texture code into separate files.
Diffstat (limited to 'source/blender/gpu/CMakeLists.txt')
-rw-r--r--source/blender/gpu/CMakeLists.txt18
1 files changed, 12 insertions, 6 deletions
diff --git a/source/blender/gpu/CMakeLists.txt b/source/blender/gpu/CMakeLists.txt
index 60fa77babd9..6d3a5d37d66 100644
--- a/source/blender/gpu/CMakeLists.txt
+++ b/source/blender/gpu/CMakeLists.txt
@@ -46,16 +46,19 @@ set(INC_SYS
)
set(SRC
+ intern/gpu_basic_shader.c
intern/gpu_buffers.c
intern/gpu_codegen.c
+ intern/gpu_compositing.c
+ intern/gpu_debug.c
intern/gpu_draw.c
intern/gpu_extensions.c
+ intern/gpu_framebuffer.c
intern/gpu_init_exit.c
intern/gpu_material.c
- intern/gpu_basic_shader.c
intern/gpu_select.c
- intern/gpu_compositing.c
- intern/gpu_debug.c
+ intern/gpu_shader.c
+ intern/gpu_texture.c
shaders/gpu_program_smoke_frag.glsl
shaders/gpu_program_smoke_color_frag.glsl
@@ -78,16 +81,19 @@ set(SRC
shaders/gpu_shader_vsm_store_vert.glsl
shaders/gpu_shader_fx_depth_resolve.glsl
+ GPU_basic_shader.h
GPU_buffers.h
- GPU_draw.h
+ GPU_compositing.h
GPU_debug.h
+ GPU_draw.h
GPU_extensions.h
+ GPU_framebuffer.h
GPU_glew.h
GPU_init_exit.h
GPU_material.h
- GPU_basic_shader.h
GPU_select.h
- GPU_compositing.h
+ GPU_shader.h
+ GPU_texture.h
intern/gpu_codegen.h
intern/gpu_private.h
)