Tagged Questions
The tao tag has no wiki summary.
10
votes
1answer
3k views
Is the Tao framework dead?
I'm looking into experimenting with Tao but I am somewhat put-off by its dead-looking state. It hasn't been updated since 2008 and it looks like their website stopped functioning at roughly the same ...
3
votes
1answer
337 views
Is there any readable Tao.FFMPEG how to?
So FFmpeg is grate lib and there are some wrappers for it in C#. Tao is one of my choise. But how to use it
0) In general
1) with live http streams
2) with FLV format
There is Tao.FFmpeg help ...
3
votes
3answers
3k views
When Should One Call glGetError?
glLoadIdentity says
GL_INVALID_OPERATION is generated if
glLoadIdentity is executed between the
execution of glBegin and the
corresponding execution of glEnd.
But GL_INVALID_OPERATION is ...
3
votes
3answers
1k views
Which would be the best 2D graphics library?
Okay, I bet this question might have been asked dozens of times before, but at the end of the day, I am still confused.
I am working on a charting/plotting application. My application will also have ...
2
votes
1answer
511 views
C++ CORBA (ACE/TAO) questions
Im using ACE TAO as the CORBA implementation. I would like to find out if anyone know of any options to set Maximum Message Size and Maximum number of Connections.
omniORB has two options for these, ...
2
votes
3answers
1k views
OpenGl 16 bit display via Tao/C#
I have some scientific image data that's coming out of a detector device in a 16 bit range which then gets rendered in an image. In order to display this data, I'm using OpenGL, because it should ...
2
votes
4answers
295 views
Changing a CORBA interface without recompiling
I'd like to add a method to my existing server's CORBA interface. Will that require recompiling all clients?
I'm using TAO.
1
vote
0answers
202 views
SimpleOpenGlControl on Usercontrol
I am creating an usercontrol contains a "Tao.Platform.Windows.SimpleOpenGlControl" .
In my control's constructor, I have
InitializeComponent();
ogl1.InitializeContexts();
.
My problem:
When I use ...
1
vote
2answers
253 views
C# OpenGL Texture Does not show up
In this example I've tried as much as I can to simplify the problem in the hope that someone can solve it for me.
I could not find a simple working example of C# OpenGL code to display a texture.
So ...
1
vote
1answer
102 views
mdi child form don't work via opengl app in .NET
This is my first question.
I start to computer graphics programming with opengl via Tao Framework.
Everything going well but today I tried to work with MDI forms. My application crashed. It is a bit ...
1
vote
2answers
98 views
C++ CORBA DII issues
Could all those CORBA experts out there please help me with this one.
I have a multithreaded application with some code that sends a message to a server and waits for a response back. I can see that ...
1
vote
1answer
1k views
Should I use .NET/Mono/Tao/OpenTK/… something else?
I'm pretty confused by the multitude of frameworks to choose from:
I would like to be cross platform, possible even try to make an application for my mobile phone. Probably a game, but could be ...
1
vote
1answer
464 views
ACE TAO Corba Ubuntu 10.4 undefined reference to CORBA::Object::_refcount_value()
I am having a few problems getting the example programs that come with the libTao provided in the package manager. I have used ace tao in the past with windows so have some experience with it already.
...
1
vote
1answer
877 views
Tao OpenGL Framework SimpleOpenGLControl - When will it redraw, when won't it?
I think my last question may have been to specific, so ignoring that one all together, I have a new question that is more general:
I am using C# with Visual Studio Express 2008.
I am also using the ...
1
vote
1answer
371 views
midl error 2025 when compiling idl file on win32 (midl doesn't like string<40>)
The idl files I have compile fine with linux tools, but when I try to compile using midl I get an error
error MIDL2025 : syntax error : expecting a declarator or * near "<"
the line is:
...
1
vote
2answers
497 views
glDrawPixels causes AccessViolationException
I am using glDrawPixels to display an image. I know, I should probably be using textures but there are reasons I'm not. Well at least not for now. Anyways, image being displayed is frequently being ...
0
votes
3answers
212 views
Beginning RTS game student project [closed]
I have experience with XNA and Unity3D. I have also built my own engine with Tao and C#. I am in last year of college and I want to make a small RTS game demo, nothing fancy I won't bother much with ...
0
votes
1answer
43 views
alutLoadMemoryFromFile problem
This is part of a function that loads sound for my sprite game made in C# and Tao.
int format;
float frequency;
int size;
IntPtr data = Alut.alutLoadMemoryFromFile(path, out format, out size, out ...
0
votes
1answer
91 views
run program opengl in C# using framework Tao in 64 bits
I have a program opengl in C# using framework Tao,
when i run the code in the platform target to x86, i have not a problem,but when i run the code in the platform target to x32, it stops abruptly and ...
0
votes
1answer
92 views
Not able to connect to java 1.3 NamingService using C++ TAO Client
I have been trying to make my C++ TAO (v1.6) client connect to java tnameserv running on JDK1.3.But the C++ TAO client is not able to resolve the naming service. It is throwing the following ...
0
votes
0answers
29 views
OpenAl open device error
With Tao.OpenAl in c# I get errror "There was an error opening the ALC device". What should I be looking for to fix this?
Thank you
0
votes
0answers
77 views
Load sound problem in OpenAL
I have problem loading a sound with OpenAL:
// in SoundManager.cs
public void LoadSound(string soundId, string path)
{
// Generate a buffer.
int buffer = -1;
...
0
votes
2answers
70 views
Question about glBindTexture
This is a method I use to draw sprites:
public void DrawSprite(Sprite sprite)
{
Gl.glBegin(Gl.GL_TRIANGLES);
{
for (int i = 0; i < ...
0
votes
2answers
114 views
Graphics libraries on Windows vs Linux
Tao and OpenTK are two graphics libraries you can use with c# on Windows. Both not active, Tao last release is 2008 and OpenTK 2010.
But I see Mesa is active for Linux, so I wonder what should I use ...
0
votes
1answer
49 views
Jacorb/Tao Interoperability
I have Appl A which is JacORB client and Appl B is the TAO server .
Details of execution:
a) Appl A initially creates the object_reference for server process (Appl B) using its corbaloc URL ...
0
votes
1answer
50 views
Is it possible to get a full compliance between Rhapsody generated IDL files and CORBA 3.1?
I've tried to compile generated IDL files from Rhapsody 7.1.1 with the last version of TAO IDL Compiler (released package version 6.0.2), but I get some errors because anonymous types are deprecated ...
0
votes
0answers
169 views
C# OpenGL Load Texture Error
I am having difficulty loading a texture using the following code:
if (!Il.ilLoadImage("test.jpg"))
{
System.Diagnostics.Debug.Assert(false,"Could not open file, [" + path + ...
0
votes
2answers
274 views
Can't find reference Tao.OpenGl and Tao.Platform.Windows in Add reference window in MSV C# 2010 Express Edtn
Downloaded and installed the Tao framework. But visual studio shows no clue about it. I thought it will find automatically. Does it have anything to do with GAC? Here is a snapshot:
0
votes
2answers
761 views
Trying to set VBO:s in C# using TAO and OpenGL TK framework
I'm trying to set my vertices, indices and texture points to VBO:s and the draw them with my draw method, all this in C# under TAO/OpenGL TK framwork. But my screen shows only a black screen. I've ...
0
votes
1answer
307 views
How do I perform picking with the Tao framework (or OpenTK)
Can anyone help me achieve picking using the Tao framework (or OpenTK) ?
0
votes
1answer
336 views
C++ segmentation fault when trying to resolve a CORBA reference
When im trying to resolve a CORBA reference I receive a segmentation fault. Either im blind or I have done something really stupid for this not work. Im using ACE 5.7.9 TAO 1.7.9 for CORBA. Wondering ...
0
votes
1answer
71 views
Deadlock in TAO when colocated
I have a CORBA server that makes a twoway call to another server from a notification thread that is created in the servant. This works fine normally. I have just modified the server to be co-located ...
0
votes
1answer
480 views
How to Re-order the network interfaces returned by WSAIoctl with SIO_GET_INTERFACE_LIST control code
Is there a way to dictate the order of the network interfaces returned by the Win32 WinSock WSAIoctl function's SIO_GET_INTERFACE_LIST functionality?
Background:
We've got a heterogeneous CORBA ...
0
votes
0answers
99 views
Using ACE ORB Event Service on HPUX 11.xx from Java
I have an Avaya PDS12 using HPUX 11.11 which I have installed an old version of ACE ORB on. I am trying to develop a Java client that uses the event service to get notification of calls being placed ...
0
votes
3answers
1k views
opengl in C# using Tao.OpenGL
I am working on an OpenGL project for a computer graphics course, and I have not been actively programming for around a years time (military training). I am drawing an absolute blank on how to include ...
0
votes
2answers
423 views
Setting fullscreen in Tao Opengl
Using the SimpleOpenGlControl from Tao.Platform.Windows, how can I set it to fullscreen mode, or will I have to use glut?
My Solution
FormBorderStyle = FormBorderStyle.None;
WindowState = ...
0
votes
0answers
697 views
Textures not working in opengl/Tao for C# on intel chipsets
I've got a lot of OpenGl rendering code in a C# .NET 3.5 sp1 application. Some of the code can be found in this question.
Huge problem: The code is not running at all on intel chipsets, such as the ...