Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
4e207622
Kaydet (Commit)
4e207622
authored
Şub 15, 2014
tarafından
Markus Mohrhard
Kaydeden (comit)
Markus Mohrhard
Şub 15, 2014
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
remove unused shader
Change-Id: Ib30ff20e099f4b3403a3ca7689f7d8d75d888763
üst
38f8f1b7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
40 deletions
+0
-40
Package_opengl.mk
chart2/Package_opengl.mk
+0
-2
renderFragmentShader.glsl
chart2/opengl/renderFragmentShader.glsl
+0
-18
renderVertexShader.glsl
chart2/opengl/renderVertexShader.glsl
+0
-20
No files found.
chart2/Package_opengl.mk
Dosyayı görüntüle @
4e207622
...
...
@@ -16,8 +16,6 @@ $(eval $(call gb_Package_add_files,chart2_opengl_shader,$(LIBO_BIN_FOLDER)/openg
commonVertexShader.glsl \
debugFragmentShader.glsl \
debugVertexShader.glsl \
renderFragmentShader.glsl \
renderVertexShader.glsl \
symbolFragmentShader.glsl \
symbolVertexShader.glsl \
textFragmentShader.glsl \
...
...
chart2/opengl/renderFragmentShader.glsl
deleted
100644 → 0
Dosyayı görüntüle @
38f8f1b7
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
uniform
sampler2D
RenderTex
;
varying
vec2
vTexCoord
;
void
main
()
{
gl_FragColor
=
vec4
(
texture2D
(
RenderTex
,
vTexCoord
).
rgb
,
1
.
0
);
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
chart2/opengl/renderVertexShader.glsl
deleted
100644 → 0
Dosyayı görüntüle @
38f8f1b7
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
attribute
vec4
vPosition
;
attribute
vec2
texCoord
;
varying
vec2
vTexCoord
;
void
main
()
{
gl_Position
=
vPosition
;
vTexCoord
=
texCoord
;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment