Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

Recent questions tagged OpenGL

0 votes
927 views
1 answer
    OpenGL has array textures, denoted in shaders by specific sampler types: sampler2DArray array_texture; But GLSL also ... are they different? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
799 views
1 answer
    I have an FBO which has been created in the following way: glGenRenderbuffers(1, &m_depthStencilBuffer); ... program with textureRect. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
794 views
1 answer
    I have an OpenGL ES2.0 app that is working on devices running various Android versions from 2.2 up to 4.1. However ... 0); bitmap.recycle(); } } See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
930 views
1 answer
    I was browsing this page on how to use Uniform Buffer Objects in openGL and saw the following struct: struct ... a "practically portable" deal? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.2k views
1 answer
    I have a matrix struct: typedef struct Matrix { float m[16]; } Matrix; When I try to call this function: memcpy ... tempMatrix.m, sizeof(m->m)); See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
776 views
1 answer
    Problem: I'm trying to render a dynamic Julia fractal in real time. Because the fractal is constantly ... my questions remain unanswered. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
754 views
1 answer
    I want to send a buffer list (to the GPU/vertex shader) which contains information about vertex position, world ... slow for 1000's objects). See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.1k views
1 answer
    I have this simple triangle drawing code and it produces an error "redeclaration of C++ built-in type short ". ... glutMainLoop(); return 1; } See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
812 views
1 answer
    I want to draw several objects and then transform them by selecting the specific one with a keyboard index. Let' ... only one object was drawn. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
936 views
1 answer
    The effect I want to achieve is vertex color with sharp contours. So inside the triangle the fragment shader ... easier way to achieve this? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.1k views
1 answer
    I have been trying to get a 16bit float (half-floating point) as an attribute into my GLSL vertex shader. ... ? Am I missing something obvious? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
784 views
1 answer
    I am trying to use Unfolding Map Library with eclipse with Processing 2.2.1 as Graphics Library. But this ... i missing. Anybody Please Help. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
887 views
1 answer
    I'm using modern OpenGL 4.3 core. I just realized that 1024p x 1024p tileset is too small for my needs. So, I ... .w; color += var_c_off; })"; See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
846 views
1 answer
    What is the maximum number of programs that can be compiled in GLSL ES? So lets say I create 100 ... amount of active compiled programs? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
708 views
1 answer
    I have the following 3D object: The material of my 3D object is coded like this with Qt3D: void MyClass::addMaterial( ... or GLSL. I'm not sure. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
728 views
1 answer
    I have checked this similar question, but the suggestions did not solve my problem: Low precision and clamping when writing ... "); return 0; } See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.0k views
1 answer
    I am using a statically linked library for GLEW and therefore I have to define GLEW_STATIC to compile my ... anyone explain the reason? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
687 views
1 answer
    I know that iPhone uses OpenGL ES 2.0, but I don't know the version of the underlying language GLSL. Is it 1.3, 1.4, 2.0, or other? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
655 views
1 answer
    The title says everything, but just to be clear I'll add some extra words. In this case, resize means: ... not very happy with the solution. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
662 views
1 answer
    I would like to create a shader like that that takes world coordinates and creates waves. I would like to analyse the ... one. UV = vertexUV; } See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
706 views
1 answer
    I'm trying to master OGLES2 for NDK and stuck with GLSL shaders. The situation is similar to the one already ... some of its features... See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
776 views
1 answer
    The following is the code I am using to take a screen shot using GLSurfaceView. But I dont know why the ... learning to work on android. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.4k views
1 answer
    This ffmpeg example demonstrates how to do hardware decoding: https://github.com/FFmpeg/FFmpeg/blob/release/4.2/doc/ ... I guess it's possible. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
679 views
1 answer
    I am trying to implement instancing in my OpenGL program. I got it to work, and then decided to make my GLSL code ... (modelVP + i, 1); } See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
704 views
1 answer
    For a graphics course, we are implementing a particle system in WebGL. Doing the particle simulation calculations ... feedback is not available? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
632 views
1 answer
    I just installed it with apt-get on debian linux with apt-get install libqt4-opengl the rest of PyQt4 is available, ... . any idea what to do? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
602 views
1 answer
    have been struggling with this issue for quite some time now and couldn't find an answer so far. Basically, ... . Any help appreciated. Thanks! See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
559 views
1 answer
    have been struggling with this issue for quite some time now and couldn't find an answer so far. Basically, ... . Any help appreciated. Thanks! See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
Ask a question:
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...